diff options
| author | opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com> | 2026-04-28 01:50:04 +0000 |
|---|---|---|
| committer | opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com> | 2026-04-28 01:50:04 +0000 |
| commit | bad4599bf9aaf25f50432a4626d16fe91d65f391 (patch) | |
| tree | e06c2e80efa53f4e9efc0c5d0d10b5c65d423c5c /packages/sdk/openapi.json | |
| parent | 892fd85ba7446bc593a1e76af0a2bc2c2bfc4c49 (diff) | |
| download | opencode-bad4599bf9aaf25f50432a4626d16fe91d65f391.tar.gz opencode-bad4599bf9aaf25f50432a4626d16fe91d65f391.zip | |
chore: generate
Diffstat (limited to 'packages/sdk/openapi.json')
| -rw-r--r-- | packages/sdk/openapi.json | 33 |
1 files changed, 27 insertions, 6 deletions
diff --git a/packages/sdk/openapi.json b/packages/sdk/openapi.json index afa36ef1d..2ff440e6c 100644 --- a/packages/sdk/openapi.json +++ b/packages/sdk/openapi.json @@ -2168,8 +2168,15 @@ "in": "query", "name": "roots", "schema": { - "type": "string", - "enum": ["true", "false"] + "anyOf": [ + { + "type": "boolean" + }, + { + "type": "string", + "enum": ["true", "false"] + } + ] }, "description": "Only return root sessions (no parentID)" }, @@ -2209,8 +2216,15 @@ "in": "query", "name": "archived", "schema": { - "type": "string", - "enum": ["true", "false"] + "anyOf": [ + { + "type": "boolean" + }, + { + "type": "string", + "enum": ["true", "false"] + } + ] }, "description": "Include archived sessions (default false)" } @@ -2310,8 +2324,15 @@ "in": "query", "name": "roots", "schema": { - "type": "string", - "enum": ["true", "false"] + "anyOf": [ + { + "type": "boolean" + }, + { + "type": "string", + "enum": ["true", "false"] + } + ] }, "description": "Only return root sessions (no parentID)" }, |
