chore: generate

This commit is contained in:
opencode-agent[bot] 2026-05-06 01:35:13 +00:00
commit 6e7c9eb820
4 changed files with 74 additions and 54 deletions

View file

@ -3241,7 +3241,7 @@
}
},
"404": {
"description": "Not found",
"description": "NotFoundError",
"content": {
"application/json": {
"schema": {
@ -3394,7 +3394,7 @@
}
},
"404": {
"description": "Not found",
"description": "NotFoundError",
"content": {
"application/json": {
"schema": {
@ -3479,7 +3479,7 @@
}
},
"404": {
"description": "Not found",
"description": "NotFoundError",
"content": {
"application/json": {
"schema": {
@ -4454,7 +4454,7 @@
}
},
"404": {
"description": "Not found",
"description": "NotFoundError",
"content": {
"application/json": {
"schema": {
@ -4526,7 +4526,7 @@
}
},
"404": {
"description": "Not found",
"description": "NotFoundError",
"content": {
"application/json": {
"schema": {
@ -4597,7 +4597,7 @@
}
},
"404": {
"description": "Not found",
"description": "NotFoundError",
"content": {
"application/json": {
"schema": {
@ -4952,7 +4952,7 @@
}
},
"404": {
"description": "Not found",
"description": "NotFoundError",
"content": {
"application/json": {
"schema": {
@ -5200,7 +5200,7 @@
}
},
"404": {
"description": "Not found",
"description": "NotFoundError",
"content": {
"application/json": {
"schema": {
@ -5342,6 +5342,16 @@
}
}
}
},
"404": {
"description": "NotFoundError",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/NotFoundError"
}
}
}
}
},
"description": "Create a new session by forking an existing session at a specific message point.",
@ -5592,7 +5602,7 @@
}
},
"404": {
"description": "Not found",
"description": "NotFoundError",
"content": {
"application/json": {
"schema": {
@ -5663,7 +5673,7 @@
}
},
"404": {
"description": "Not found",
"description": "NotFoundError",
"content": {
"application/json": {
"schema": {
@ -5737,7 +5747,7 @@
}
},
"404": {
"description": "Not found",
"description": "NotFoundError",
"content": {
"application/json": {
"schema": {
@ -7897,7 +7907,7 @@
}
},
"404": {
"description": "Not found",
"description": "NotFoundError",
"content": {
"application/json": {
"schema": {
@ -12904,6 +12914,25 @@
"required": ["error"],
"additionalProperties": false
},
"NotFoundError": {
"type": "object",
"required": ["name", "data"],
"properties": {
"name": {
"type": "string",
"enum": ["NotFoundError"]
},
"data": {
"type": "object",
"required": ["message"],
"properties": {
"message": {
"type": "string"
}
}
}
}
},
"effect_HttpApiError_Forbidden": {
"type": "object",
"properties": {
@ -18026,25 +18055,6 @@
"enum": [false]
}
}
},
"NotFoundError": {
"type": "object",
"required": ["name", "data"],
"properties": {
"name": {
"type": "string",
"enum": ["NotFoundError"]
},
"data": {
"type": "object",
"required": ["message"],
"properties": {
"message": {
"type": "string"
}
}
}
}
}
}
},