chore: generate

This commit is contained in:
opencode-agent[bot] 2026-05-05 02:37:07 +00:00
parent 75d141b574
commit 2d0a757eb2
2 changed files with 83 additions and 124 deletions

View file

@ -1875,9 +1875,11 @@ export type SyncEventSessionNextModelSwitched = {
data: {
timestamp: number
sessionID: string
id: string
providerID: string
variant?: string
model: {
id: string
providerID: string
variant: string
}
}
}
@ -1948,7 +1950,7 @@ export type SyncEventSessionNextStepStarted = {
model: {
id: string
providerID: string
variant?: string
variant: string
}
snapshot?: string
}
@ -1987,10 +1989,7 @@ export type SyncEventSessionNextStepFailed = {
data: {
timestamp: number
sessionID: string
error: {
type: string
message: string
}
error: SessionErrorUnknown
}
}
@ -2188,10 +2187,7 @@ export type SyncEventSessionNextToolFailed = {
timestamp: number
sessionID: string
callID: string
error: {
type: string
message: string
}
error: SessionErrorUnknown
provider: {
executed: boolean
metadata?: {
@ -2616,9 +2612,11 @@ export type EventSessionNextModelSwitched = {
properties: {
timestamp: number
sessionID: string
id: string
providerID: string
variant?: string
model: {
id: string
providerID: string
variant: string
}
}
}
@ -2693,7 +2691,7 @@ export type EventSessionNextStepStarted = {
model: {
id: string
providerID: string
variant?: string
variant: string
}
snapshot?: string
}
@ -2720,16 +2718,18 @@ export type EventSessionNextStepEnded = {
}
}
export type SessionErrorUnknown = {
type: "unknown"
message: string
}
export type EventSessionNextStepFailed = {
id: string
type: "session.next.step.failed"
properties: {
timestamp: number
sessionID: string
error: {
type: string
message: string
}
error: SessionErrorUnknown
}
}
@ -2900,10 +2900,7 @@ export type EventSessionNextToolFailed = {
timestamp: number
sessionID: string
callID: string
error: {
type: string
message: string
}
error: SessionErrorUnknown
provider: {
executed: boolean
metadata?: {
@ -2994,7 +2991,7 @@ export type SessionInfo = {
model?: {
id: string
providerID: string
variant?: string
variant: string
}
time: {
created: number
@ -3030,7 +3027,7 @@ export type SessionMessageModelSwitched = {
model: {
id: string
providerID: string
variant?: string
variant: string
}
}
@ -3124,10 +3121,7 @@ export type SessionMessageToolStateError = {
structured: {
[key: string]: unknown
}
error: {
type: string
message: string
}
error: SessionErrorUnknown
}
export type SessionMessageAssistantTool = {
@ -3167,7 +3161,7 @@ export type SessionMessageAssistant = {
model: {
id: string
providerID: string
variant?: string
variant: string
}
content: Array<SessionMessageAssistantText | SessionMessageAssistantReasoning | SessionMessageAssistantTool>
snapshot?: {
@ -3185,10 +3179,7 @@ export type SessionMessageAssistant = {
write: number
}
}
error?: {
type: string
message: string
}
error?: SessionErrorUnknown
}
export type SessionMessageCompaction = {

View file

@ -13998,17 +13998,24 @@
"sessionID": {
"type": "string"
},
"id": {
"type": "string"
},
"providerID": {
"type": "string"
},
"variant": {
"type": "string"
"model": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"providerID": {
"type": "string"
},
"variant": {
"type": "string"
}
},
"required": ["id", "providerID", "variant"],
"additionalProperties": false
}
},
"required": ["timestamp", "sessionID", "id", "providerID"],
"required": ["timestamp", "sessionID", "model"],
"additionalProperties": false
}
},
@ -14231,7 +14238,7 @@
"type": "string"
}
},
"required": ["id", "providerID"],
"required": ["id", "providerID", "variant"],
"additionalProperties": false
},
"snapshot": {
@ -14357,17 +14364,7 @@
"type": "string"
},
"error": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"message": {
"type": "string"
}
},
"required": ["type", "message"],
"additionalProperties": false
"$ref": "#/components/schemas/SessionErrorUnknown"
}
},
"required": ["timestamp", "sessionID", "error"],
@ -14979,17 +14976,7 @@
"type": "string"
},
"error": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"message": {
"type": "string"
}
},
"required": ["type", "message"],
"additionalProperties": false
"$ref": "#/components/schemas/SessionErrorUnknown"
},
"provider": {
"type": "object",
@ -16267,17 +16254,24 @@
"sessionID": {
"type": "string"
},
"id": {
"type": "string"
},
"providerID": {
"type": "string"
},
"variant": {
"type": "string"
"model": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"providerID": {
"type": "string"
},
"variant": {
"type": "string"
}
},
"required": ["id", "providerID", "variant"],
"additionalProperties": false
}
},
"required": ["timestamp", "sessionID", "id", "providerID"],
"required": ["timestamp", "sessionID", "model"],
"additionalProperties": false
}
},
@ -16496,7 +16490,7 @@
"type": "string"
}
},
"required": ["id", "providerID"],
"required": ["id", "providerID", "variant"],
"additionalProperties": false
},
"snapshot": {
@ -16580,6 +16574,20 @@
"required": ["id", "type", "properties"],
"additionalProperties": false
},
"SessionErrorUnknown": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": ["unknown"]
},
"message": {
"type": "string"
}
},
"required": ["type", "message"],
"additionalProperties": false
},
"EventSessionNextStepFailed": {
"type": "object",
"properties": {
@ -16600,17 +16608,7 @@
"type": "string"
},
"error": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"message": {
"type": "string"
}
},
"required": ["type", "message"],
"additionalProperties": false
"$ref": "#/components/schemas/SessionErrorUnknown"
}
},
"required": ["timestamp", "sessionID", "error"],
@ -17113,17 +17111,7 @@
"type": "string"
},
"error": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"message": {
"type": "string"
}
},
"required": ["type", "message"],
"additionalProperties": false
"$ref": "#/components/schemas/SessionErrorUnknown"
},
"provider": {
"type": "object",
@ -17376,7 +17364,7 @@
"type": "string"
}
},
"required": ["id", "providerID"],
"required": ["id", "providerID", "variant"],
"additionalProperties": false
},
"time": {
@ -17472,7 +17460,7 @@
"type": "string"
}
},
"required": ["id", "providerID"],
"required": ["id", "providerID", "variant"],
"additionalProperties": false
}
},
@ -17731,17 +17719,7 @@
"type": "object"
},
"error": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"message": {
"type": "string"
}
},
"required": ["type", "message"],
"additionalProperties": false
"$ref": "#/components/schemas/SessionErrorUnknown"
}
},
"required": ["status", "input", "content", "structured", "error"],
@ -17854,7 +17832,7 @@
"type": "string"
}
},
"required": ["id", "providerID"],
"required": ["id", "providerID", "variant"],
"additionalProperties": false
},
"content": {
@ -17921,17 +17899,7 @@
"additionalProperties": false
},
"error": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"message": {
"type": "string"
}
},
"required": ["type", "message"],
"additionalProperties": false
"$ref": "#/components/schemas/SessionErrorUnknown"
}
},
"required": ["id", "time", "type", "agent", "model", "content"],