refactor(team): drop dead bootstrap skip-permissions field
This commit is contained in:
parent
8c136f0a41
commit
bc3b6ae4e6
1 changed files with 0 additions and 7 deletions
|
|
@ -1254,7 +1254,6 @@ type RuntimeBootstrapSpec = {
|
||||||
model?: string;
|
model?: string;
|
||||||
effort?: EffortLevel;
|
effort?: EffortLevel;
|
||||||
agentLanguage?: string;
|
agentLanguage?: string;
|
||||||
skipPermissions?: boolean;
|
|
||||||
worktree?: string | null;
|
worktree?: string | null;
|
||||||
extraCliArgs?: string[];
|
extraCliArgs?: string[];
|
||||||
};
|
};
|
||||||
|
|
@ -1303,9 +1302,6 @@ function buildDeterministicCreateBootstrapSpec(
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
: {}),
|
: {}),
|
||||||
...(request.skipPermissions !== undefined
|
|
||||||
? { skipPermissions: request.skipPermissions }
|
|
||||||
: {}),
|
|
||||||
...(request.worktree ? { worktree: request.worktree } : {}),
|
...(request.worktree ? { worktree: request.worktree } : {}),
|
||||||
...(request.extraCliArgs ? { extraCliArgs: parseCliArgs(request.extraCliArgs) } : {}),
|
...(request.extraCliArgs ? { extraCliArgs: parseCliArgs(request.extraCliArgs) } : {}),
|
||||||
},
|
},
|
||||||
|
|
@ -1360,9 +1356,6 @@ function buildDeterministicLaunchBootstrapSpec(
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
: {}),
|
: {}),
|
||||||
...(request.skipPermissions !== undefined
|
|
||||||
? { skipPermissions: request.skipPermissions }
|
|
||||||
: {}),
|
|
||||||
...(request.worktree ? { worktree: request.worktree } : {}),
|
...(request.worktree ? { worktree: request.worktree } : {}),
|
||||||
...(request.extraCliArgs ? { extraCliArgs: parseCliArgs(request.extraCliArgs) } : {}),
|
...(request.extraCliArgs ? { extraCliArgs: parseCliArgs(request.extraCliArgs) } : {}),
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue