diff options
| author | Dax <[email protected]> | 2026-01-13 15:55:48 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-01-13 15:55:48 -0500 |
| commit | 0a3c72d6787aa3cf39b9517e32f0ad5d8dbb6184 (patch) | |
| tree | 3f000f847c8e72a875682cf715a8778080b85d4c /packages/sdk | |
| parent | 66b7a4991ee5903d0239c0d7b98c95b9c5f9e43c (diff) | |
| download | opencode-0a3c72d6787aa3cf39b9517e32f0ad5d8dbb6184.tar.gz opencode-0a3c72d6787aa3cf39b9517e32f0ad5d8dbb6184.zip | |
feat: add plan mode with enter/exit tools (#8281)
Diffstat (limited to 'packages/sdk')
| -rw-r--r-- | packages/sdk/js/src/v2/gen/types.gen.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/packages/sdk/js/src/v2/gen/types.gen.ts b/packages/sdk/js/src/v2/gen/types.gen.ts index e423fecea..acc29d9b4 100644 --- a/packages/sdk/js/src/v2/gen/types.gen.ts +++ b/packages/sdk/js/src/v2/gen/types.gen.ts @@ -545,6 +545,10 @@ export type QuestionInfo = { * Allow selecting multiple choices */ multiple?: boolean + /** + * Allow typing a custom answer (default: true) + */ + custom?: boolean } export type QuestionRequest = { @@ -706,6 +710,7 @@ export type PermissionRuleset = Array<PermissionRule> export type Session = { id: string + slug: string projectID: string directory: string parentID?: string |
