chore: generate
This commit is contained in:
@@ -848,12 +848,12 @@ export class Session extends HeyApiClient {
|
|||||||
parameters?: {
|
parameters?: {
|
||||||
directory?: string
|
directory?: string
|
||||||
workspace?: string
|
workspace?: string
|
||||||
roots?: boolean
|
roots?: "true" | "false"
|
||||||
start?: number
|
start?: number
|
||||||
cursor?: number
|
cursor?: number
|
||||||
search?: string
|
search?: string
|
||||||
limit?: number
|
limit?: number
|
||||||
archived?: boolean
|
archived?: "true" | "false"
|
||||||
},
|
},
|
||||||
options?: Options<never, ThrowOnError>,
|
options?: Options<never, ThrowOnError>,
|
||||||
) {
|
) {
|
||||||
@@ -1647,7 +1647,7 @@ export class Session2 extends HeyApiClient {
|
|||||||
parameters?: {
|
parameters?: {
|
||||||
directory?: string
|
directory?: string
|
||||||
workspace?: string
|
workspace?: string
|
||||||
roots?: boolean
|
roots?: "true" | "false"
|
||||||
start?: number
|
start?: number
|
||||||
search?: string
|
search?: string
|
||||||
limit?: number
|
limit?: number
|
||||||
|
|||||||
@@ -3217,7 +3217,7 @@ export type ExperimentalSessionListData = {
|
|||||||
/**
|
/**
|
||||||
* Only return root sessions (no parentID)
|
* Only return root sessions (no parentID)
|
||||||
*/
|
*/
|
||||||
roots?: boolean
|
roots?: "true" | "false"
|
||||||
/**
|
/**
|
||||||
* Filter sessions updated on or after this timestamp (milliseconds since epoch)
|
* Filter sessions updated on or after this timestamp (milliseconds since epoch)
|
||||||
*/
|
*/
|
||||||
@@ -3237,7 +3237,7 @@ export type ExperimentalSessionListData = {
|
|||||||
/**
|
/**
|
||||||
* Include archived sessions (default false)
|
* Include archived sessions (default false)
|
||||||
*/
|
*/
|
||||||
archived?: boolean
|
archived?: "true" | "false"
|
||||||
}
|
}
|
||||||
url: "/experimental/session"
|
url: "/experimental/session"
|
||||||
}
|
}
|
||||||
@@ -3285,7 +3285,7 @@ export type SessionListData = {
|
|||||||
/**
|
/**
|
||||||
* Only return root sessions (no parentID)
|
* Only return root sessions (no parentID)
|
||||||
*/
|
*/
|
||||||
roots?: boolean
|
roots?: "true" | "false"
|
||||||
/**
|
/**
|
||||||
* Filter sessions updated on or after this timestamp (milliseconds since epoch)
|
* Filter sessions updated on or after this timestamp (milliseconds since epoch)
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -2168,7 +2168,8 @@
|
|||||||
"in": "query",
|
"in": "query",
|
||||||
"name": "roots",
|
"name": "roots",
|
||||||
"schema": {
|
"schema": {
|
||||||
"type": "boolean"
|
"type": "string",
|
||||||
|
"enum": ["true", "false"]
|
||||||
},
|
},
|
||||||
"description": "Only return root sessions (no parentID)"
|
"description": "Only return root sessions (no parentID)"
|
||||||
},
|
},
|
||||||
@@ -2208,7 +2209,8 @@
|
|||||||
"in": "query",
|
"in": "query",
|
||||||
"name": "archived",
|
"name": "archived",
|
||||||
"schema": {
|
"schema": {
|
||||||
"type": "boolean"
|
"type": "string",
|
||||||
|
"enum": ["true", "false"]
|
||||||
},
|
},
|
||||||
"description": "Include archived sessions (default false)"
|
"description": "Include archived sessions (default false)"
|
||||||
}
|
}
|
||||||
@@ -2308,7 +2310,8 @@
|
|||||||
"in": "query",
|
"in": "query",
|
||||||
"name": "roots",
|
"name": "roots",
|
||||||
"schema": {
|
"schema": {
|
||||||
"type": "boolean"
|
"type": "string",
|
||||||
|
"enum": ["true", "false"]
|
||||||
},
|
},
|
||||||
"description": "Only return root sessions (no parentID)"
|
"description": "Only return root sessions (no parentID)"
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user