From b18994bea7835e978bbce23cfb6342bd83523a05 Mon Sep 17 00:00:00 2001 From: Dokploy Bot Date: Thu, 19 Mar 2026 04:28:43 +0000 Subject: [PATCH] chore: sync OpenAPI specification [skip ci] Source: Dokploy/dokploy@e47263ae5f955d66670d7c9e31fe3afba7abb897 Updated: 2026-03-19 04:28:43 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 e61fe70..261ecbe 100644 --- a/apps/docs/public/openapi.json +++ b/apps/docs/public/openapi.json @@ -29089,6 +29089,83 @@ } } }, + "/settings.checkInfrastructureHealth": { + "get": { + "operationId": "settings-checkInfrastructureHealth", + "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.setupGPU": { "post": { "operationId": "settings-setupGPU",