Ask separately for confirmation (#6949)

Co-authored-by: Douwe Osinga <douwe@squareup.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Douwe Osinga
2026-02-05 17:57:24 +01:00
committed by GitHub
parent b4e5d64c69
commit 24b3e0228c
11 changed files with 269 additions and 249 deletions
File diff suppressed because one or more lines are too long
+3 -1
View File
@@ -112,7 +112,7 @@ export type ConfigResponse = {
};
export type ConfirmToolActionRequest = {
action: string;
action: Permission;
id: string;
principalType?: PrincipalType;
sessionId: string;
@@ -662,6 +662,8 @@ export type ParseRecipeResponse = {
recipe: Recipe;
};
export type Permission = 'always_allow' | 'allow_once' | 'cancel' | 'deny_once' | 'always_deny';
/**
* Enum representing the possible permission levels for a tool.
*/