chore: generate
This commit is contained in:
@@ -1806,6 +1806,12 @@ export type SubtaskPartInput = {
|
||||
command?: string
|
||||
}
|
||||
|
||||
export type SessionBusyError = {
|
||||
_tag: "SessionBusyError"
|
||||
sessionID: string
|
||||
message: string
|
||||
}
|
||||
|
||||
export type V2SessionsResponse = {
|
||||
items: Array<SessionInfo>
|
||||
cursor: {
|
||||
@@ -6387,6 +6393,10 @@ export type SessionDeleteMessageErrors = {
|
||||
* NotFoundError
|
||||
*/
|
||||
404: NotFoundError
|
||||
/**
|
||||
* SessionBusyError
|
||||
*/
|
||||
409: SessionBusyError
|
||||
}
|
||||
|
||||
export type SessionDeleteMessageError = SessionDeleteMessageErrors[keyof SessionDeleteMessageErrors]
|
||||
@@ -6786,6 +6796,10 @@ export type SessionShellErrors = {
|
||||
* NotFoundError
|
||||
*/
|
||||
404: NotFoundError
|
||||
/**
|
||||
* SessionBusyError
|
||||
*/
|
||||
409: SessionBusyError
|
||||
}
|
||||
|
||||
export type SessionShellError = SessionShellErrors[keyof SessionShellErrors]
|
||||
@@ -6826,6 +6840,10 @@ export type SessionRevertErrors = {
|
||||
* NotFoundError
|
||||
*/
|
||||
404: NotFoundError
|
||||
/**
|
||||
* SessionBusyError
|
||||
*/
|
||||
409: SessionBusyError
|
||||
}
|
||||
|
||||
export type SessionRevertError = SessionRevertErrors[keyof SessionRevertErrors]
|
||||
@@ -6860,6 +6878,10 @@ export type SessionUnrevertErrors = {
|
||||
* NotFoundError
|
||||
*/
|
||||
404: NotFoundError
|
||||
/**
|
||||
* SessionBusyError
|
||||
*/
|
||||
409: SessionBusyError
|
||||
}
|
||||
|
||||
export type SessionUnrevertError = SessionUnrevertErrors[keyof SessionUnrevertErrors]
|
||||
|
||||
Reference in New Issue
Block a user