From b47fbcc2aa4d80b50b224eeae39b3e277ad6f586 Mon Sep 17 00:00:00 2001 From: Dokploy Bot Date: Sun, 5 Apr 2026 19:59:48 +0000 Subject: [PATCH] chore: sync OpenAPI specification [skip ci] Source: Dokploy/dokploy@30d54932816232473c2bbc1ae100e44730d231bf Updated: 2026-04-05 19:59:48 UTC --- apps/docs/public/openapi.json | 97 +++++++++++++++++++++++++++++++++++ 1 file changed, 97 insertions(+) diff --git a/apps/docs/public/openapi.json b/apps/docs/public/openapi.json index 9e33dca..417de9d 100644 --- a/apps/docs/public/openapi.json +++ b/apps/docs/public/openapi.json @@ -8317,6 +8317,103 @@ } } }, + "/compose.saveEnvironment": { + "post": { + "operationId": "compose-saveEnvironment", + "tags": [ + "compose" + ], + "security": [ + { + "Authorization": [] + } + ], + "parameters": [], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "composeId": { + "type": "string" + }, + "env": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ] + } + }, + "required": [ + "composeId", + "env" + ] + } + } + } + }, + "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.delete": { "post": { "operationId": "compose-delete",