From 8c3353da0454f42a4ec727ff4bb1833b7e4654ee Mon Sep 17 00:00:00 2001 From: Dokploy Bot Date: Thu, 19 Mar 2026 04:50:52 +0000 Subject: [PATCH] chore: sync OpenAPI specification [skip ci] Source: Dokploy/dokploy@7c55eba50603e6e67085e319237c9accc3cd0d23 Updated: 2026-03-19 04:50:52 UTC --- apps/docs/public/openapi.json | 94 +++++++++++++++++++++++++++++++++++ 1 file changed, 94 insertions(+) diff --git a/apps/docs/public/openapi.json b/apps/docs/public/openapi.json index 261ecbe..814129b 100644 --- a/apps/docs/public/openapi.json +++ b/apps/docs/public/openapi.json @@ -5712,6 +5712,100 @@ } } }, + "/application.dropDeployment": { + "post": { + "operationId": "application-dropDeployment", + "tags": [ + "application" + ], + "security": [ + { + "Authorization": [] + } + ], + "parameters": [], + "requestBody": { + "required": true, + "content": { + "multipart/form-data": { + "schema": { + "type": "object", + "properties": { + "applicationId": { + "type": "string" + }, + "zip": { + "type": "string", + "format": "binary" + }, + "dropBuildPath": { + "type": "string" + } + }, + "required": [ + "applicationId", + "zip" + ] + } + } + } + }, + "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" + } + } + } + } + } + } + }, "/application.updateTraefikConfig": { "post": { "operationId": "application-updateTraefikConfig",