From 3196addab78cd8c582ad960726ae12cee694dd9f Mon Sep 17 00:00:00 2001 From: Dokploy Bot Date: Sat, 4 Apr 2026 03:30:11 +0000 Subject: [PATCH] chore: sync OpenAPI specification [skip ci] Source: Dokploy/dokploy@964d79d552bd8a062b8b9995ef5ed44fa47e0b66 Updated: 2026-04-04 03:30:11 UTC --- apps/docs/public/openapi.json | 77 +++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) diff --git a/apps/docs/public/openapi.json b/apps/docs/public/openapi.json index 1ebc18c..a114659 100644 --- a/apps/docs/public/openapi.json +++ b/apps/docs/public/openapi.json @@ -38826,6 +38826,83 @@ } } }, + "/settings.getDockerDiskUsage": { + "get": { + "operationId": "settings-getDockerDiskUsage", + "tags": [ + "settings" + ], + "security": [ + { + "Authorization": [] + } + ], + "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" + } + } + } + } + } + } + }, "/settings.saveSSHPrivateKey": { "post": { "operationId": "settings-saveSSHPrivateKey",