chore: sync OpenAPI specification [skip ci]

Source: Dokploy/dokploy@24b02f5523

Updated: 2026-06-17 05:16:07 UTC
This commit is contained in:
Dokploy Bot
2026-06-17 05:16:07 +00:00
parent c7088565ac
commit e3e3c87581

View File

@@ -39745,6 +39745,99 @@
}
}
},
"/server.updateBuildsConcurrency": {
"post": {
"operationId": "server-updateBuildsConcurrency",
"tags": [
"server"
],
"security": [
{
"Authorization": []
}
],
"parameters": [],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"serverId": {
"type": "string",
"minLength": 1
},
"buildsConcurrency": {
"type": "integer",
"minimum": 1,
"maximum": 100
}
},
"required": [
"serverId",
"buildsConcurrency"
]
}
}
}
},
"responses": {
"200": {
"description": "Successful response",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {},
"additionalProperties": false
}
}
}
},
"400": {
"description": "Invalid input data",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/error.BAD_REQUEST"
}
}
}
},
"401": {
"description": "Authorization not provided",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/error.UNAUTHORIZED"
}
}
}
},
"403": {
"description": "Insufficient access",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/error.FORBIDDEN"
}
}
}
},
"500": {
"description": "Internal server error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/error.INTERNAL_SERVER_ERROR"
}
}
}
}
}
}
},
"/server.publicIp": {
"get": {
"operationId": "server-publicIp",
@@ -41604,6 +41697,94 @@
}
}
},
"/settings.updateBuildsConcurrency": {
"post": {
"operationId": "settings-updateBuildsConcurrency",
"tags": [
"settings"
],
"security": [
{
"Authorization": []
}
],
"parameters": [],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"buildsConcurrency": {
"type": "integer",
"minimum": 1,
"maximum": 100
}
},
"required": [
"buildsConcurrency"
]
}
}
}
},
"responses": {
"200": {
"description": "Successful response",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {},
"additionalProperties": false
}
}
}
},
"400": {
"description": "Invalid input data",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/error.BAD_REQUEST"
}
}
}
},
"401": {
"description": "Authorization not provided",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/error.UNAUTHORIZED"
}
}
}
},
"403": {
"description": "Insufficient access",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/error.FORBIDDEN"
}
}
}
},
"500": {
"description": "Internal server error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/error.INTERNAL_SERVER_ERROR"
}
}
}
}
}
}
},
"/settings.updateEnforceSSO": {
"post": {
"operationId": "settings-updateEnforceSSO",