From c18a6807101a74db8c3feec276fe32ab4e0a96dd Mon Sep 17 00:00:00 2001 From: Dokploy Bot Date: Sun, 5 Apr 2026 03:27:32 +0000 Subject: [PATCH] chore: sync OpenAPI specification [skip ci] Source: Dokploy/dokploy@31fdf69286f3f7090fd238a17cc6bfc042b3a0da Updated: 2026-04-05 03:27:32 UTC --- apps/docs/public/openapi.json | 86 +++++++++++++++++++++++++++++++++++ 1 file changed, 86 insertions(+) diff --git a/apps/docs/public/openapi.json b/apps/docs/public/openapi.json index 1f032f5..769e60f 100644 --- a/apps/docs/public/openapi.json +++ b/apps/docs/public/openapi.json @@ -43931,6 +43931,92 @@ } } }, + "/swarm.getContainerStats": { + "get": { + "operationId": "swarm-getContainerStats", + "tags": [ + "swarm" + ], + "security": [ + { + "Authorization": [] + } + ], + "parameters": [ + { + "in": "query", + "name": "serverId", + "schema": { + "type": "string" + } + } + ], + "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" + } + } + } + } + } + } + }, "/user.all": { "get": { "operationId": "user-all",