mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 18:01:30 +00:00
fix: use sandbox-agent CLI for credential extraction in tests and add delay for permission approval
This commit is contained in:
parent
bfd2a80bf1
commit
0faa608822
3 changed files with 90 additions and 18 deletions
|
|
@ -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: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue