chore: generate

This commit is contained in:
opencode-agent[bot] 2026-05-21 09:43:40 +00:00
commit 516af86d53
2 changed files with 65 additions and 23 deletions

View file

@ -8227,6 +8227,16 @@
}
}
}
},
"503": {
"description": "ServiceUnavailableError",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ServiceUnavailableError"
}
}
}
}
},
"description": "Create a v2 session message and queue it for the agent loop.",
@ -8323,6 +8333,16 @@
}
}
}
},
"503": {
"description": "ServiceUnavailableError",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ServiceUnavailableError"
}
}
}
}
},
"description": "Compact a v2 session conversation.",
@ -8400,6 +8420,16 @@
}
}
}
},
"503": {
"description": "ServiceUnavailableError",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ServiceUnavailableError"
}
}
}
}
},
"description": "Wait for a v2 session agent loop to become idle.",
@ -15685,6 +15715,23 @@
"required": ["_tag", "sessionID", "message"],
"additionalProperties": false
},
"ServiceUnavailableError": {
"type": "object",
"properties": {
"_tag": {
"type": "string",
"enum": ["ServiceUnavailableError"]
},
"message": {
"type": "string"
},
"service": {
"type": "string"
}
},
"required": ["_tag", "message"],
"additionalProperties": false
},
"V2SessionMessagesResponse": {
"type": "object",
"properties": {
@ -15710,23 +15757,6 @@
"required": ["items", "cursor"],
"additionalProperties": false
},
"ServiceUnavailableError": {
"type": "object",
"properties": {
"_tag": {
"type": "string",
"enum": ["ServiceUnavailableError"]
},
"message": {
"type": "string"
},
"service": {
"type": "string"
}
},
"required": ["_tag", "message"],
"additionalProperties": false
},
"ProviderNotFoundError": {
"type": "object",
"properties": {