chore: generate
This commit is contained in:
@@ -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 =
|
||||||
|
|||||||
@@ -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": {
|
||||||
|
|||||||
Reference in New Issue
Block a user