feat: add raw session args/opts

This commit is contained in:
Nathan Flurry 2026-02-04 23:41:11 -08:00
parent 7378abee46
commit d51203c628
30 changed files with 4968 additions and 329 deletions

View file

@ -131,6 +131,7 @@ export interface components {
action: components["schemas"]["FileAction"];
diff?: string | null;
path: string;
target_path?: string | null;
/** @enum {string} */
type: "file_ref";
}) | {
@ -183,7 +184,7 @@ export interface components {
hasMore: boolean;
};
/** @enum {string} */
FileAction: "read" | "write" | "patch";
FileAction: "read" | "write" | "patch" | "rename" | "delete";
HealthResponse: {
status: string;
};