Skip to content

Commit

Permalink
Update OpenAPI JSON
Browse files Browse the repository at this point in the history
  • Loading branch information
kjac committed Sep 9, 2024
1 parent c34e1eb commit 909c3a9
Showing 1 changed file with 62 additions and 2 deletions.
64 changes: 62 additions & 2 deletions src/Umbraco.Cms.Api.Management/OpenApi.json
Original file line number Diff line number Diff line change
Expand Up @@ -25176,6 +25176,41 @@
]
}
},
"/umbraco/management/api/v1/server/upgrade-check": {
"get": {
"tags": [
"Server"
],
"operationId": "GetServerUpgradeCheck",
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"oneOf": [
{
"$ref": "#/components/schemas/UpgradeCheckResponseModel"
}
]
}
}
}
},
"401": {
"description": "The resource is protected and requires an authentication token"
},
"403": {
"description": "The authenticated user do not have access to this resource"
}
},
"security": [
{
"Backoffice User": [ ]
}
]
}
},
"/umbraco/management/api/v1/item/static-file": {
"get": {
"tags": [
Expand Down Expand Up @@ -42446,12 +42481,17 @@
},
"ServerConfigurationResponseModel": {
"required": [
"allowPasswordReset"
"allowPasswordReset",
"versionCheckPeriod"
],
"type": "object",
"properties": {
"allowPasswordReset": {
"type": "boolean"
},
"versionCheckPeriod": {
"type": "integer",
"format": "int32"
}
},
"additionalProperties": false
Expand Down Expand Up @@ -44514,6 +44554,26 @@
},
"additionalProperties": false
},
"UpgradeCheckResponseModel": {
"required": [
"comment",
"type",
"url"
],
"type": "object",
"properties": {
"type": {
"type": "string"
},
"comment": {
"type": "string"
},
"url": {
"type": "string"
}
},
"additionalProperties": false
},
"UpgradeSettingsResponseModel": {
"required": [
"currentState",
Expand Down Expand Up @@ -45275,4 +45335,4 @@
}
}
}
}
}

0 comments on commit 909c3a9

Please sign in to comment.