chore: generate

This commit is contained in:
opencode-agent[bot]
2026-05-21 17:25:26 +00:00
parent 82b796ce31
commit 7e35cff4f5
2 changed files with 79 additions and 0 deletions

View File

@@ -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]