chore: generate

This commit is contained in:
opencode-agent[bot]
2026-05-29 21:02:33 +00:00
parent 9d5f3c1833
commit b2a06351b5
2 changed files with 34 additions and 3 deletions
+9 -2
View File
@@ -1960,6 +1960,13 @@ export type Workspace = {
timeUsed: number | "NaN" | "Infinity" | "-Infinity" | "Infinity" | "-Infinity" | "NaN" timeUsed: number | "NaN" | "Infinity" | "-Infinity" | "Infinity" | "-Infinity" | "NaN"
} }
export type WorkspaceCreateError = {
name: "WorkspaceCreateError"
data: {
message: string
}
}
export type WorkspaceWarpError = { export type WorkspaceWarpError = {
name: "WorkspaceWarpError" name: "WorkspaceWarpError"
data: { data: {
@@ -8042,9 +8049,9 @@ export type ExperimentalWorkspaceCreateData = {
export type ExperimentalWorkspaceCreateErrors = { export type ExperimentalWorkspaceCreateErrors = {
/** /**
* BadRequest | InvalidRequestError * WorkspaceCreateError | BadRequest | InvalidRequestError
*/ */
400: EffectHttpApiErrorBadRequest | InvalidRequestError 400: WorkspaceCreateError | EffectHttpApiErrorBadRequest | InvalidRequestError
} }
export type ExperimentalWorkspaceCreateError = export type ExperimentalWorkspaceCreateError =
+25 -1
View File
@@ -10038,11 +10038,14 @@
} }
}, },
"400": { "400": {
"description": "BadRequest | InvalidRequestError", "description": "WorkspaceCreateError | BadRequest | InvalidRequestError",
"content": { "content": {
"application/json": { "application/json": {
"schema": { "schema": {
"anyOf": [ "anyOf": [
{
"$ref": "#/components/schemas/WorkspaceCreateError"
},
{ {
"$ref": "#/components/schemas/effect_HttpApiError_BadRequest" "$ref": "#/components/schemas/effect_HttpApiError_BadRequest"
}, },
@@ -16237,6 +16240,27 @@
"required": ["id", "type", "name", "projectID", "timeUsed"], "required": ["id", "type", "name", "projectID", "timeUsed"],
"additionalProperties": false "additionalProperties": false
}, },
"WorkspaceCreateError": {
"type": "object",
"properties": {
"name": {
"type": "string",
"enum": ["WorkspaceCreateError"]
},
"data": {
"type": "object",
"properties": {
"message": {
"type": "string"
}
},
"required": ["message"],
"additionalProperties": false
}
},
"required": ["name", "data"],
"additionalProperties": false
},
"WorkspaceWarpError": { "WorkspaceWarpError": {
"type": "object", "type": "object",
"properties": { "properties": {