mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-22 19:55:11 +00:00
chore: generate
This commit is contained in:
parent
3e1972fd92
commit
a3430db73a
2 changed files with 27 additions and 4 deletions
|
|
@ -1700,6 +1700,12 @@ export type McpServerNotFoundError = {
|
|||
message: string
|
||||
}
|
||||
|
||||
export type ProjectNotFoundError = {
|
||||
_tag: "ProjectNotFoundError"
|
||||
projectID: string
|
||||
message: string
|
||||
}
|
||||
|
||||
export type PtyNotFoundError = {
|
||||
_tag: "PtyNotFoundError"
|
||||
ptyID: string
|
||||
|
|
@ -5447,9 +5453,9 @@ export type ProjectUpdateErrors = {
|
|||
*/
|
||||
400: EffectHttpApiErrorBadRequest | InvalidRequestError
|
||||
/**
|
||||
* Not found
|
||||
* ProjectNotFoundError
|
||||
*/
|
||||
404: NotFoundError
|
||||
404: ProjectNotFoundError
|
||||
}
|
||||
|
||||
export type ProjectUpdateError = ProjectUpdateErrors[keyof ProjectUpdateErrors]
|
||||
|
|
|
|||
|
|
@ -3630,11 +3630,11 @@
|
|||
}
|
||||
},
|
||||
"404": {
|
||||
"description": "Not found",
|
||||
"description": "ProjectNotFoundError",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/NotFoundError"
|
||||
"$ref": "#/components/schemas/ProjectNotFoundError"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -15429,6 +15429,23 @@
|
|||
"required": ["_tag", "name", "message"],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"ProjectNotFoundError": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"_tag": {
|
||||
"type": "string",
|
||||
"enum": ["ProjectNotFoundError"]
|
||||
},
|
||||
"projectID": {
|
||||
"type": "string"
|
||||
},
|
||||
"message": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": ["_tag", "projectID", "message"],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"PtyNotFoundError": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue