diff options
| author | opencode <[email protected]> | 2025-08-12 17:14:23 +0000 |
|---|---|---|
| committer | opencode <[email protected]> | 2025-08-12 17:14:23 +0000 |
| commit | 3a2b2f13f252e17237dcd4ccce24b1694f6a46f6 (patch) | |
| tree | f9ecdd95841bd963507277e7e32cd71f36a6b122 /packages/sdk/js/src | |
| parent | be13e71fb93d9102650b77f8ea8a3f23fb7fad8d (diff) | |
| download | opencode-3a2b2f13f252e17237dcd4ccce24b1694f6a46f6.tar.gz opencode-3a2b2f13f252e17237dcd4ccce24b1694f6a46f6.zip | |
release: v0.4.34
Diffstat (limited to 'packages/sdk/js/src')
| -rw-r--r-- | packages/sdk/js/src/gen/types.gen.ts | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/packages/sdk/js/src/gen/types.gen.ts b/packages/sdk/js/src/gen/types.gen.ts index 5bc67b1d8..ddf7ac08b 100644 --- a/packages/sdk/js/src/gen/types.gen.ts +++ b/packages/sdk/js/src/gen/types.gen.ts @@ -912,6 +912,15 @@ export type AgentConfig = { */ description?: string mode?: string + permission?: { + edit?: string + bash?: + | string + | { + [key: string]: string + } + webfetch?: string + } [key: string]: | unknown | string @@ -921,6 +930,15 @@ export type AgentConfig = { } | boolean | string + | { + edit?: string + bash?: + | string + | { + [key: string]: string + } + webfetch?: string + } | undefined } @@ -1061,6 +1079,13 @@ export type Agent = { mode: string topP?: number temperature?: number + permission: { + edit: string + bash: { + [key: string]: string + } + webfetch?: string + } model?: { modelID: string providerID: string |
