chore: generate

This commit is contained in:
opencode-agent[bot]
2026-03-11 23:17:42 +00:00
parent cb67465675
commit 34fa5de9c5
2 changed files with 102 additions and 106 deletions

View File

@@ -2970,9 +2970,6 @@ export type SessionChildrenResponse = SessionChildrenResponses[keyof SessionChil
export type SessionTodoData = {
body?: never
path: {
/**
* Session ID
*/
sessionID: string
}
query?: {
@@ -3011,9 +3008,6 @@ export type SessionInitData = {
messageID: string
}
path: {
/**
* Session ID
*/
sessionID: string
}
query?: {
@@ -3199,9 +3193,6 @@ export type SessionSummarizeData = {
auto?: boolean
}
path: {
/**
* Session ID
*/
sessionID: string
}
query?: {
@@ -3236,9 +3227,6 @@ export type SessionSummarizeResponse = SessionSummarizeResponses[keyof SessionSu
export type SessionMessagesData = {
body?: never
path: {
/**
* Session ID
*/
sessionID: string
}
query?: {
@@ -3295,9 +3283,6 @@ export type SessionPromptData = {
parts: Array<TextPartInput | FilePartInput | AgentPartInput | SubtaskPartInput>
}
path: {
/**
* Session ID
*/
sessionID: string
}
query?: {
@@ -3335,9 +3320,6 @@ export type SessionPromptResponse = SessionPromptResponses[keyof SessionPromptRe
export type SessionDeleteMessageData = {
body?: never
path: {
/**
* Session ID
*/
sessionID: string
/**
* Message ID
@@ -3376,9 +3358,6 @@ export type SessionDeleteMessageResponse = SessionDeleteMessageResponses[keyof S
export type SessionMessageData = {
body?: never
path: {
/**
* Session ID
*/
sessionID: string
/**
* Message ID
@@ -3420,9 +3399,6 @@ export type SessionMessageResponse = SessionMessageResponses[keyof SessionMessag
export type PartDeleteData = {
body?: never
path: {
/**
* Session ID
*/
sessionID: string
/**
* Message ID
@@ -3465,9 +3441,6 @@ export type PartDeleteResponse = PartDeleteResponses[keyof PartDeleteResponses]
export type PartUpdateData = {
body?: Part
path: {
/**
* Session ID
*/
sessionID: string
/**
* Message ID
@@ -3528,9 +3501,6 @@ export type SessionPromptAsyncData = {
parts: Array<TextPartInput | FilePartInput | AgentPartInput | SubtaskPartInput>
}
path: {
/**
* Session ID
*/
sessionID: string
}
query?: {
@@ -3580,9 +3550,6 @@ export type SessionCommandData = {
}>
}
path: {
/**
* Session ID
*/
sessionID: string
}
query?: {
@@ -3627,9 +3594,6 @@ export type SessionShellData = {
command: string
}
path: {
/**
* Session ID
*/
sessionID: string
}
query?: {