Skip to content

Commit a3430db

Browse files
chore: generate
1 parent 3e1972f commit a3430db

2 files changed

Lines changed: 27 additions & 4 deletions

File tree

packages/sdk/js/src/v2/gen/types.gen.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1700,6 +1700,12 @@ export type McpServerNotFoundError = {
17001700
message: string
17011701
}
17021702

1703+
export type ProjectNotFoundError = {
1704+
_tag: "ProjectNotFoundError"
1705+
projectID: string
1706+
message: string
1707+
}
1708+
17031709
export type PtyNotFoundError = {
17041710
_tag: "PtyNotFoundError"
17051711
ptyID: string
@@ -5447,9 +5453,9 @@ export type ProjectUpdateErrors = {
54475453
*/
54485454
400: EffectHttpApiErrorBadRequest | InvalidRequestError
54495455
/**
5450-
* Not found
5456+
* ProjectNotFoundError
54515457
*/
5452-
404: NotFoundError
5458+
404: ProjectNotFoundError
54535459
}
54545460

54555461
export type ProjectUpdateError = ProjectUpdateErrors[keyof ProjectUpdateErrors]

packages/sdk/openapi.json

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3630,11 +3630,11 @@
36303630
}
36313631
},
36323632
"404": {
3633-
"description": "Not found",
3633+
"description": "ProjectNotFoundError",
36343634
"content": {
36353635
"application/json": {
36363636
"schema": {
3637-
"$ref": "#/components/schemas/NotFoundError"
3637+
"$ref": "#/components/schemas/ProjectNotFoundError"
36383638
}
36393639
}
36403640
}
@@ -15429,6 +15429,23 @@
1542915429
"required": ["_tag", "name", "message"],
1543015430
"additionalProperties": false
1543115431
},
15432+
"ProjectNotFoundError": {
15433+
"type": "object",
15434+
"properties": {
15435+
"_tag": {
15436+
"type": "string",
15437+
"enum": ["ProjectNotFoundError"]
15438+
},
15439+
"projectID": {
15440+
"type": "string"
15441+
},
15442+
"message": {
15443+
"type": "string"
15444+
}
15445+
},
15446+
"required": ["_tag", "projectID", "message"],
15447+
"additionalProperties": false
15448+
},
1543215449
"PtyNotFoundError": {
1543315450
"type": "object",
1543415451
"properties": {

0 commit comments

Comments
 (0)