diff --git a/Directory.Packages.props b/Directory.Packages.props index a0586d62..5322a91e 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -3,19 +3,19 @@ true true 2.2.0 - 1.0.11 + 1.0.13 - - + + - + - - + + @@ -40,39 +40,44 @@ - + - + - - - - + + + + + - - - - - - - - + + + + + + + + - + - + - + @@ -90,10 +95,10 @@ - + - + \ No newline at end of file diff --git a/src/Primitives/CrestApps.Core.AI.Copilot/Services/CopilotOrchestrator.cs b/src/Primitives/CrestApps.Core.AI.Copilot/Services/CopilotOrchestrator.cs index f6d70749..c564c26f 100644 --- a/src/Primitives/CrestApps.Core.AI.Copilot/Services/CopilotOrchestrator.cs +++ b/src/Primitives/CrestApps.Core.AI.Copilot/Services/CopilotOrchestrator.cs @@ -422,7 +422,7 @@ private static async Task ApplyAllowAllPermissionsAsync(CopilotSession session, return; } - await session.Rpc.Permissions.SetAllowAllAsync(GitHub.Copilot.Rpc.PermissionsAllowAllMode.On, source: GitHub.Copilot.Rpc.PermissionsSetAllowAllSource.Rpc, cancellationToken: cancellationToken); + await session.Rpc.Permissions.SetModeAsync(PermissionMode.AllowAll, source: GitHub.Copilot.Rpc.PermissionModeSource.Rpc, cancellationToken: cancellationToken); } #pragma warning restore GHCP001