File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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+
17031709export 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
54555461export type ProjectUpdateError = ProjectUpdateErrors [ keyof ProjectUpdateErrors ]
Original file line number Diff line number Diff line change 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 }
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": {
You can’t perform that action at this time.
0 commit comments