chore: sync OpenAPI specification [skip ci]

Source: Dokploy/dokploy@8713d3e1aa

Updated: 2026-02-17 04:31:59 UTC
This commit is contained in:
Dokploy Bot
2026-02-17 04:31:59 +00:00
parent d09fdd8b7f
commit bb9a3ce7db

View File

@@ -2683,6 +2683,50 @@
}
}
},
"/application.clearDeployments": {
"post": {
"operationId": "application-clearDeployments",
"tags": [
"application"
],
"security": [
{
"Authorization": []
}
],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"applicationId": {
"type": "string"
}
},
"required": [
"applicationId"
],
"additionalProperties": false
}
}
}
},
"parameters": [],
"responses": {
"200": {
"description": "Successful response",
"content": {
"application/json": {}
}
},
"default": {
"$ref": "#/components/responses/error"
}
}
}
},
"/application.killBuild": {
"post": {
"operationId": "application-killBuild",
@@ -8403,6 +8447,51 @@
}
}
},
"/compose.clearDeployments": {
"post": {
"operationId": "compose-clearDeployments",
"tags": [
"compose"
],
"security": [
{
"Authorization": []
}
],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"composeId": {
"type": "string",
"minLength": 1
}
},
"required": [
"composeId"
],
"additionalProperties": false
}
}
}
},
"parameters": [],
"responses": {
"200": {
"description": "Successful response",
"content": {
"application/json": {}
}
},
"default": {
"$ref": "#/components/responses/error"
}
}
}
},
"/compose.killBuild": {
"post": {
"operationId": "compose-killBuild",
@@ -11766,6 +11855,51 @@
}
}
},
"/deployment.removeDeployment": {
"post": {
"operationId": "deployment-removeDeployment",
"tags": [
"deployment"
],
"security": [
{
"Authorization": []
}
],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"deploymentId": {
"type": "string",
"minLength": 1
}
},
"required": [
"deploymentId"
],
"additionalProperties": false
}
}
}
},
"parameters": [],
"responses": {
"200": {
"description": "Successful response",
"content": {
"application/json": {}
}
},
"default": {
"$ref": "#/components/responses/error"
}
}
}
},
"/previewDeployment.all": {
"get": {
"operationId": "previewDeployment-all",