From bb9a3ce7dbfb2dbf36c144927af7fad3b2791573 Mon Sep 17 00:00:00 2001 From: Dokploy Bot Date: Tue, 17 Feb 2026 04:31:59 +0000 Subject: [PATCH] chore: sync OpenAPI specification [skip ci] Source: Dokploy/dokploy@8713d3e1aab0f6f8c51f5cb0630922b0427d07f5 Updated: 2026-02-17 04:31:59 UTC --- apps/docs/public/openapi.json | 134 ++++++++++++++++++++++++++++++++++ 1 file changed, 134 insertions(+) diff --git a/apps/docs/public/openapi.json b/apps/docs/public/openapi.json index 05d48ad..6384479 100644 --- a/apps/docs/public/openapi.json +++ b/apps/docs/public/openapi.json @@ -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",