From e3d947f698e70ae6379a0dc1873cf24b54056317 Mon Sep 17 00:00:00 2001 From: Dokploy Bot Date: Wed, 17 Dec 2025 04:10:00 +0000 Subject: [PATCH] chore: sync OpenAPI specification [skip ci] Source: Dokploy/dokploy@854bd88e0a786dc368bd07b7bc18a3c410532576 Updated: 2025-12-17 04:10:00 UTC --- apps/docs/public/openapi.json | 45 +++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/apps/docs/public/openapi.json b/apps/docs/public/openapi.json index 85f1cb5..913f09b 100644 --- a/apps/docs/public/openapi.json +++ b/apps/docs/public/openapi.json @@ -14856,6 +14856,51 @@ } } }, + "/registry.testRegistryById": { + "post": { + "operationId": "registry-testRegistryById", + "tags": [ + "registry" + ], + "security": [ + { + "Authorization": [] + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "registryId": { + "type": "string", + "minLength": 1 + }, + "serverId": { + "type": "string" + } + }, + "additionalProperties": false + } + } + } + }, + "parameters": [], + "responses": { + "200": { + "description": "Successful response", + "content": { + "application/json": {} + } + }, + "default": { + "$ref": "#/components/responses/error" + } + } + } + }, "/cluster.getNodes": { "get": { "operationId": "cluster-getNodes",