From 4c4e1b47e38462dc8db98ea9af662ba0ffbe52dc Mon Sep 17 00:00:00 2001 From: Dokploy Bot Date: Tue, 12 May 2026 19:14:30 +0000 Subject: [PATCH] chore: sync OpenAPI specification [skip ci] Source: Dokploy/dokploy@7a568aadacf355ee6678646128c90a735405f5ae Updated: 2026-05-12 19:14:30 UTC --- apps/docs/public/openapi.json | 93 +++++++++++++++++++++++++++++++++++ 1 file changed, 93 insertions(+) diff --git a/apps/docs/public/openapi.json b/apps/docs/public/openapi.json index 0767ce6..a9e7968 100644 --- a/apps/docs/public/openapi.json +++ b/apps/docs/public/openapi.json @@ -10479,6 +10479,99 @@ } } }, + "/compose.previewTemplate": { + "post": { + "operationId": "compose-previewTemplate", + "tags": [ + "compose" + ], + "security": [ + { + "Authorization": [] + } + ], + "parameters": [], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "base64": { + "type": "string" + }, + "appName": { + "type": "string" + }, + "serverId": { + "type": "string" + } + }, + "required": [ + "base64", + "appName" + ] + } + } + } + }, + "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" + } + } + } + } + } + } + }, "/compose.import": { "post": { "operationId": "compose-import",