fix: use sandbox-agent CLI for credential extraction in tests and add delay for permission approval

This commit is contained in:
Nathan Flurry 2026-01-29 07:39:07 -08:00
parent bfd2a80bf1
commit 0faa608822
3 changed files with 90 additions and 18 deletions

View file

@ -286,6 +286,16 @@ export interface components {
SessionStartedData: {
metadata?: unknown;
};
StderrOutput: {
/** @description First N lines of stderr (if truncated) or full stderr (if not truncated) */
head?: string | null;
/** @description Last N lines of stderr (only present if truncated) */
tail?: string | null;
/** @description Total number of lines in stderr */
total_lines?: number | null;
/** @description Whether the output was truncated */
truncated: boolean;
};
/** @enum {string} */
TerminatedBy: "agent" | "daemon";
TurnStreamQuery: {