From a9ea86231fbb7d11b088aadfab59df7dd87ad3a3 Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 18 Mar 2026 03:53:39 +0000 Subject: [PATCH] Update API specifications with fern api update --- openapi.json | 2069 +++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 1727 insertions(+), 342 deletions(-) diff --git a/openapi.json b/openapi.json index 364b83d..f2f9aaa 100644 --- a/openapi.json +++ b/openapi.json @@ -6,6 +6,8 @@ "api-key-create", "api-key-delete", "api-key-update", + "oauth-consent-deny", + "oauth-consent-grant", "organization-create", "organization-delete", "organization-update", @@ -91,6 +93,8 @@ "api-key-create", "api-key-delete", "api-key-update", + "oauth-consent-deny", + "oauth-consent-grant", "organization-create", "organization-delete", "organization-update", @@ -1431,6 +1435,9 @@ { "$ref": "#/components/schemas/ActionApiKey" }, + { + "$ref": "#/components/schemas/ActionOAuth" + }, { "$ref": "#/components/schemas/ActionOrganization" }, @@ -1715,6 +1722,9 @@ "performedByAuthProvider": { "type": "string" }, + "performedByClientId": { + "type": "string" + }, "performedById": { "type": "string" }, @@ -3645,6 +3655,86 @@ } ] }, + "ActionOAuthConsentGrantProps": { + "properties": { + "clientName": { + "type": "string" + }, + "landscapeId": { + "type": "string" + } + }, + "required": [ + "clientName", + "landscapeId" + ], + "type": "object" + }, + "ActionOAuthConsentGrant": { + "properties": { + "id": { + "type": "string" + }, + "props": { + "$ref": "#/components/schemas/ActionOAuthConsentGrantProps" + }, + "type": { + "enum": [ + "oauth-consent-grant" + ], + "type": "string" + } + }, + "required": [ + "id", + "props", + "type" + ], + "type": "object" + }, + "ActionOAuthConsentDenyProps": { + "properties": { + "clientName": { + "type": "string" + } + }, + "required": [ + "clientName" + ], + "type": "object" + }, + "ActionOAuthConsentDeny": { + "properties": { + "id": { + "type": "string" + }, + "props": { + "$ref": "#/components/schemas/ActionOAuthConsentDenyProps" + }, + "type": { + "enum": [ + "oauth-consent-deny" + ], + "type": "string" + } + }, + "required": [ + "id", + "props", + "type" + ], + "type": "object" + }, + "ActionOAuth": { + "oneOf": [ + { + "$ref": "#/components/schemas/ActionOAuthConsentDeny" + }, + { + "$ref": "#/components/schemas/ActionOAuthConsentGrant" + } + ] + }, "ActionOrganizationCreateContext": { "properties": { "name": { @@ -4657,6 +4747,10 @@ "commit": { "type": "number" }, + "content": { + "description": "The markdown content of the ADR", + "type": "string" + }, "description": { "description": "The description of the ADR", "type": "string" @@ -4689,6 +4783,10 @@ "commit": { "type": "number" }, + "content": { + "description": "The markdown content of the ADR", + "type": "string" + }, "description": { "description": "The description of the ADR", "type": "string" @@ -4730,6 +4828,10 @@ "commit": { "type": "number" }, + "content": { + "description": "The markdown content of the ADR", + "type": "string" + }, "description": { "description": "The description of the ADR", "type": "string" @@ -13809,6 +13911,9 @@ "performedByAuthProvider": { "type": "string" }, + "performedByClientId": { + "type": "string" + }, "performedById": { "type": "string" }, @@ -17176,6 +17281,10 @@ }, "UserSession": { "properties": { + "clientId": { + "description": "Client ID for OAuth sessions", + "type": "string" + }, "createdAt": { "format": "date-time", "type": "string" @@ -17191,6 +17300,10 @@ "description": "IP address of the client", "type": "string" }, + "landscapeId": { + "description": "Landscape ID for OAuth sessions", + "type": "string" + }, "providerId": { "description": "ID for the auth provider", "type": "string" @@ -23522,6 +23635,21 @@ { "$ref": "#/components/schemas/ActionModelObjectsExportProps" }, + { + "$ref": "#/components/schemas/ActionOAuth" + }, + { + "$ref": "#/components/schemas/ActionOAuthConsentDeny" + }, + { + "$ref": "#/components/schemas/ActionOAuthConsentDenyProps" + }, + { + "$ref": "#/components/schemas/ActionOAuthConsentGrant" + }, + { + "$ref": "#/components/schemas/ActionOAuthConsentGrantProps" + }, { "$ref": "#/components/schemas/ActionOrganization" }, @@ -25622,6 +25750,7 @@ "type": "string" }, "ImportLink": { + "additionalProperties": false, "properties": { "customName": { "description": "Friendly name for the link set by the user", @@ -25642,6 +25771,7 @@ "type": "object" }, "ImportIcon": { + "additionalProperties": false, "properties": { "technologyId": { "type": "string" @@ -25663,6 +25793,7 @@ ] }, "ModelConnectionImport": { + "additionalProperties": false, "properties": { "description": { "description": "Detailed description", @@ -25729,6 +25860,7 @@ "type": "object" }, "ModelObjectImport": { + "additionalProperties": false, "properties": { "caption": { "description": "Display description", @@ -25770,7 +25902,7 @@ "type": "string" }, "parentId": { - "description": "Parent model object ID, must follow the IcePanel hierarchy.\n\nDomain: parent must be missing/null\n\nActor/System/Group: parent must be a domain\n\nApp/Store: parent must be a system\n\nComponent: parent must be an app or store", + "description": "Parent model object ID, must follow the IcePanel hierarchy.\n\nDomain: parent must be missing/null\n\nActor/System: parent must be a domain\n\nGroup: parent must be a domain or another group\n\nApp/Store: parent must be a system\n\nComponent: parent must be an app or store", "nullable": true, "type": "string" }, @@ -25807,6 +25939,7 @@ "type": "object" }, "TagImport": { + "additionalProperties": false, "properties": { "color": { "$ref": "#/components/schemas/TagColor" @@ -25837,6 +25970,7 @@ "type": "object" }, "TagGroupImport": { + "additionalProperties": false, "properties": { "icon": { "$ref": "#/components/schemas/TagGroupIcon" @@ -25862,6 +25996,7 @@ "type": "object" }, "LandscapeImportData": { + "additionalProperties": false, "example": { "modelConnections": [ { @@ -26966,6 +27101,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -27072,6 +27217,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -27189,6 +27344,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -27296,6 +27461,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -27403,6 +27578,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -28106,6 +28291,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -28228,6 +28423,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -28350,6 +28555,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -28479,6 +28694,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -28619,6 +28844,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -28741,6 +28976,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -28866,6 +29111,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -28976,6 +29231,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -29086,6 +29351,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -29204,6 +29479,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -29332,6 +29617,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -29450,6 +29745,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -29597,6 +29902,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -29718,6 +30033,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -29857,6 +30182,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -30006,6 +30341,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -30132,6 +30477,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -30245,6 +30600,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -30368,6 +30733,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -30567,6 +30942,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -30718,6 +31103,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "409": { "content": { "application/json": { @@ -30829,6 +31224,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -30942,6 +31347,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -31064,6 +31479,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -31182,6 +31607,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -31394,6 +31829,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -31543,6 +31988,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -31669,6 +32124,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -31769,6 +32234,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -31887,6 +32362,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -32021,6 +32506,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -32143,6 +32638,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -32266,6 +32771,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -32379,6 +32894,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -32489,6 +33014,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -32602,6 +33137,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -32712,6 +33257,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -32832,6 +33387,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -33025,6 +33590,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -33173,6 +33748,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -33291,6 +33876,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -34513,6 +35108,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -34753,6 +35358,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -35232,6 +35847,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -35332,6 +35957,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -35455,6 +36090,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -35565,6 +36210,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -35666,6 +36321,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -35767,6 +36432,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -35868,6 +36543,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -35962,6 +36647,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -36054,6 +36749,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -36138,6 +36843,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -36250,6 +36965,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -36354,6 +37079,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -36523,6 +37258,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -36615,6 +37360,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -36739,6 +37494,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -36996,6 +37761,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -37260,6 +38035,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -37387,6 +38172,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -37500,6 +38295,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -37634,6 +38439,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -37807,6 +38622,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -37956,6 +38781,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -38087,6 +38922,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -38185,6 +39030,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -38319,6 +39174,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -38446,6 +39311,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -38693,6 +39568,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -38814,6 +39699,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -39090,6 +39985,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -39197,6 +40102,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -39296,6 +40211,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -39396,6 +40321,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -39517,6 +40452,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "422": { "content": { "application/json": { @@ -39621,6 +40566,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -39724,6 +40679,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -39819,6 +40784,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -39942,6 +40917,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -40057,6 +41042,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -40209,6 +41204,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -40314,6 +41319,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -40881,6 +41896,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -41077,6 +42102,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -41273,6 +42308,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -41381,6 +42426,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -41486,6 +42541,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -41583,6 +42648,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -41686,6 +42761,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -41799,6 +42884,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -41900,6 +42995,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -42006,6 +43111,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -42132,6 +43247,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -42239,6 +43364,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -42364,6 +43499,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -42479,6 +43624,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -42589,6 +43744,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -42754,11 +43919,139 @@ "description": "Internal Server" } }, - "summary": "Create", - "x-fern-request-name": "ShareLinkCreateRequest", - "x-fern-sdk-method-name": "create" + "summary": "Create", + "x-fern-request-name": "ShareLinkCreateRequest", + "x-fern-sdk-method-name": "create" + }, + "patch": { + "security": [ + { + "ApiKeyAuth": [] + }, + { + "BearerAuth": [] + } + ], + "tags": [ + "Share Link" + ], + "x-eov-operation-handler": "shareLink", + "x-fern-audiences": [ + "public" + ], + "x-fern-sdk-group-name": "shareLink", + "operationId": "shareLinkUpdate", + "parameters": [ + { + "in": "path", + "name": "landscapeId", + "required": true, + "schema": { + "type": "string" + } + }, + { + "in": "path", + "name": "versionId", + "required": true, + "schema": { + "type": "string" + } + }, + { + "in": "query", + "name": "resetShortId", + "required": false, + "schema": { + "type": "boolean" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ShareLinkPartial" + } + } + }, + "required": true + }, + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "shareLink": { + "$ref": "#/components/schemas/ShareLink" + } + }, + "required": [ + "shareLink" + ], + "type": "object" + } + } + }, + "description": "OK" + }, + "401": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Unauthorized" + }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, + "404": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Not Found" + }, + "422": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Unprocessable Entity" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Internal Server" + } + }, + "summary": "Update", + "x-fern-request-name": "ShareLinkUpdateRequest", + "x-fern-sdk-method-name": "update" }, - "patch": { + "delete": { "security": [ { "ApiKeyAuth": [] @@ -42775,7 +44068,7 @@ "public" ], "x-fern-sdk-group-name": "shareLink", - "operationId": "shareLinkUpdate", + "operationId": "shareLinkDelete", "parameters": [ { "in": "path", @@ -42792,39 +44085,13 @@ "schema": { "type": "string" } - }, - { - "in": "query", - "name": "resetShortId", - "required": false, - "schema": { - "type": "boolean" - } } ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ShareLinkPartial" - } - } - }, - "required": true - }, "responses": { "200": { "content": { "application/json": { "schema": { - "properties": { - "shareLink": { - "$ref": "#/components/schemas/ShareLink" - } - }, - "required": [ - "shareLink" - ], "type": "object" } } @@ -42882,98 +44149,6 @@ "description": "Internal Server" } }, - "summary": "Update", - "x-fern-request-name": "ShareLinkUpdateRequest", - "x-fern-sdk-method-name": "update" - }, - "delete": { - "security": [ - { - "ApiKeyAuth": [] - }, - { - "BearerAuth": [] - } - ], - "tags": [ - "Share Link" - ], - "x-eov-operation-handler": "shareLink", - "x-fern-audiences": [ - "public" - ], - "x-fern-sdk-group-name": "shareLink", - "operationId": "shareLinkDelete", - "parameters": [ - { - "in": "path", - "name": "landscapeId", - "required": true, - "schema": { - "type": "string" - } - }, - { - "in": "path", - "name": "versionId", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "type": "object" - } - } - }, - "description": "OK" - }, - "401": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - }, - "description": "Unauthorized" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - }, - "description": "Not Found" - }, - "422": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - }, - "description": "Unprocessable Entity" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - }, - "description": "Internal Server" - } - }, "summary": "Delete", "x-fern-request-name": "ShareLinkDeleteRequest", "x-fern-sdk-method-name": "delete" @@ -43059,6 +44234,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -43172,6 +44357,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -43295,6 +44490,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -43416,6 +44621,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -43547,6 +44762,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -43668,6 +44893,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -43781,6 +45016,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -43891,6 +45136,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -44001,6 +45256,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -44119,6 +45384,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -44247,6 +45522,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -44365,6 +45650,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -44462,6 +45757,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -44676,6 +45981,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -45221,6 +46536,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -45367,224 +46692,244 @@ "description": "Internal Server" } }, - "summary": "Create", - "x-fern-request-name": "VersionRevertCreateRequest", - "x-fern-sdk-method-name": "create" - } - }, - "/landscapes/{landscapeId}/version/reverts/{versionRevertId}": { - "get": { - "security": [ - { - "ApiKeyAuth": [] - }, - { - "BearerAuth": [] - } - ], - "tags": [ - "Version Reverts" - ], - "x-eov-operation-handler": "versionReverts", - "x-fern-audiences": [ - "public" - ], - "x-fern-sdk-group-name": [ - "versions", - "reverts" - ], - "operationId": "versionRevertFind", - "parameters": [ - { - "in": "path", - "name": "landscapeId", - "required": true, - "schema": { - "type": "string" - } - }, - { - "in": "path", - "name": "versionRevertId", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "properties": { - "versionRevert": { - "$ref": "#/components/schemas/VersionRevert" - } - }, - "required": [ - "versionRevert" - ], - "type": "object" - } - } - }, - "description": "OK" - }, - "401": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - }, - "description": "Unauthorized" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - }, - "description": "Not Found" - }, - "422": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - }, - "description": "Unprocessable Entity" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - }, - "description": "Internal Server" - } - }, - "summary": "Get", - "x-fern-request-name": "VersionRevertFindRequest", - "x-fern-sdk-method-name": "get" - }, - "patch": { - "security": [ - { - "ApiKeyAuth": [] - }, - { - "BearerAuth": [] - } - ], - "tags": [ - "Version Reverts" - ], - "x-eov-operation-handler": "versionReverts", - "x-fern-audiences": [ - "public" - ], - "x-fern-sdk-group-name": [ - "versions", - "reverts" - ], - "operationId": "versionRevertUpdate", - "parameters": [ - { - "in": "path", - "name": "landscapeId", - "required": true, - "schema": { - "type": "string" - } - }, - { - "in": "path", - "name": "versionRevertId", - "required": true, - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/VersionRevertPartial" - } - } - }, - "required": true - }, - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "properties": { - "versionRevert": { - "$ref": "#/components/schemas/VersionRevert" - } - }, - "required": [ - "versionRevert" - ], - "type": "object" - } - } - }, - "description": "OK" - }, - "401": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - }, - "description": "Unauthorized" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - }, - "description": "Not Found" - }, - "422": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - }, - "description": "Unprocessable Entity" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - }, - "description": "Internal Server" - } - }, + "summary": "Create", + "x-fern-request-name": "VersionRevertCreateRequest", + "x-fern-sdk-method-name": "create" + } + }, + "/landscapes/{landscapeId}/version/reverts/{versionRevertId}": { + "get": { + "security": [ + { + "ApiKeyAuth": [] + }, + { + "BearerAuth": [] + } + ], + "tags": [ + "Version Reverts" + ], + "x-eov-operation-handler": "versionReverts", + "x-fern-audiences": [ + "public" + ], + "x-fern-sdk-group-name": [ + "versions", + "reverts" + ], + "operationId": "versionRevertFind", + "parameters": [ + { + "in": "path", + "name": "landscapeId", + "required": true, + "schema": { + "type": "string" + } + }, + { + "in": "path", + "name": "versionRevertId", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "versionRevert": { + "$ref": "#/components/schemas/VersionRevert" + } + }, + "required": [ + "versionRevert" + ], + "type": "object" + } + } + }, + "description": "OK" + }, + "401": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Unauthorized" + }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, + "404": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Not Found" + }, + "422": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Unprocessable Entity" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Internal Server" + } + }, + "summary": "Get", + "x-fern-request-name": "VersionRevertFindRequest", + "x-fern-sdk-method-name": "get" + }, + "patch": { + "security": [ + { + "ApiKeyAuth": [] + }, + { + "BearerAuth": [] + } + ], + "tags": [ + "Version Reverts" + ], + "x-eov-operation-handler": "versionReverts", + "x-fern-audiences": [ + "public" + ], + "x-fern-sdk-group-name": [ + "versions", + "reverts" + ], + "operationId": "versionRevertUpdate", + "parameters": [ + { + "in": "path", + "name": "landscapeId", + "required": true, + "schema": { + "type": "string" + } + }, + { + "in": "path", + "name": "versionRevertId", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/VersionRevertPartial" + } + } + }, + "required": true + }, + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "versionRevert": { + "$ref": "#/components/schemas/VersionRevert" + } + }, + "required": [ + "versionRevert" + ], + "type": "object" + } + } + }, + "description": "OK" + }, + "401": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Unauthorized" + }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, + "404": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Not Found" + }, + "422": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Unprocessable Entity" + }, + "500": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Internal Server" + } + }, "summary": "Update", "x-fern-request-name": "VersionRevertUpdateRequest", "x-fern-sdk-method-name": "update" @@ -45651,6 +46996,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -45875,6 +47230,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -45985,6 +47350,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": { @@ -46182,6 +47557,16 @@ }, "description": "Unauthorized" }, + "403": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + }, + "description": "Forbidden" + }, "404": { "content": { "application/json": {