chore: generate

This commit is contained in:
opencode-agent[bot]
2026-04-28 00:54:28 +00:00
parent faca24d487
commit 0eaa47d857
3 changed files with 12 additions and 9 deletions

View File

@@ -848,12 +848,12 @@ export class Session extends HeyApiClient {
parameters?: {
directory?: string
workspace?: string
roots?: boolean
roots?: "true" | "false"
start?: number
cursor?: number
search?: string
limit?: number
archived?: boolean
archived?: "true" | "false"
},
options?: Options<never, ThrowOnError>,
) {
@@ -1647,7 +1647,7 @@ export class Session2 extends HeyApiClient {
parameters?: {
directory?: string
workspace?: string
roots?: boolean
roots?: "true" | "false"
start?: number
search?: string
limit?: number

View File

@@ -3217,7 +3217,7 @@ export type ExperimentalSessionListData = {
/**
* Only return root sessions (no parentID)
*/
roots?: boolean
roots?: "true" | "false"
/**
* Filter sessions updated on or after this timestamp (milliseconds since epoch)
*/
@@ -3237,7 +3237,7 @@ export type ExperimentalSessionListData = {
/**
* Include archived sessions (default false)
*/
archived?: boolean
archived?: "true" | "false"
}
url: "/experimental/session"
}
@@ -3285,7 +3285,7 @@ export type SessionListData = {
/**
* Only return root sessions (no parentID)
*/
roots?: boolean
roots?: "true" | "false"
/**
* Filter sessions updated on or after this timestamp (milliseconds since epoch)
*/

View File

@@ -2168,7 +2168,8 @@
"in": "query",
"name": "roots",
"schema": {
"type": "boolean"
"type": "string",
"enum": ["true", "false"]
},
"description": "Only return root sessions (no parentID)"
},
@@ -2208,7 +2209,8 @@
"in": "query",
"name": "archived",
"schema": {
"type": "boolean"
"type": "string",
"enum": ["true", "false"]
},
"description": "Include archived sessions (default false)"
}
@@ -2308,7 +2310,8 @@
"in": "query",
"name": "roots",
"schema": {
"type": "boolean"
"type": "string",
"enum": ["true", "false"]
},
"description": "Only return root sessions (no parentID)"
},