chore: sync OpenAPI specification [skip ci]

Source: Dokploy/dokploy@30d5493281

Updated: 2026-04-05 19:59:48 UTC
This commit is contained in:
Dokploy Bot
2026-04-05 19:59:48 +00:00
parent b19faf1377
commit b47fbcc2aa

View File

@@ -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",