chore: sync OpenAPI specification [skip ci]

Source: Dokploy/dokploy@9b4a37eebf

Updated: 2026-02-26 04:09:38 UTC
This commit is contained in:
Dokploy Bot
2026-02-26 04:09:38 +00:00
parent 0c5722661a
commit cf88c81a06

View File

@@ -23725,6 +23725,111 @@
}
}
},
"/mounts/listByServiceId": {
"get": {
"operationId": "mounts-listByServiceId",
"tags": [
"mounts"
],
"security": [
{
"Authorization": []
}
],
"parameters": [
{
"in": "query",
"name": "serviceId",
"schema": {
"type": "string",
"minLength": 1
},
"required": true
},
{
"in": "query",
"name": "serviceType",
"schema": {
"type": "string",
"enum": [
"application",
"postgres",
"mysql",
"mariadb",
"mongo",
"redis",
"compose"
]
},
"required": true
}
],
"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"
}
}
}
},
"404": {
"description": "Not found",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/error.NOT_FOUND"
}
}
}
},
"500": {
"description": "Internal server error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/error.INTERNAL_SERVER_ERROR"
}
}
}
}
}
}
},
"/certificates/create": {
"post": {
"operationId": "certificates-create",