From 37997ec7a4563f447d39d783ee754f856edd63ec Mon Sep 17 00:00:00 2001 From: Dokploy Bot Date: Mon, 6 Apr 2026 00:17:50 +0000 Subject: [PATCH] chore: sync OpenAPI specification [skip ci] Source: Dokploy/dokploy@4a1b42899b033f47e91da4f2240a6357216665a2 Updated: 2026-04-06 00:17:50 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 417de9d..9f07b24 100644 --- a/apps/docs/public/openapi.json +++ b/apps/docs/public/openapi.json @@ -43057,6 +43057,83 @@ } } }, + "/sshKey.allForApps": { + "get": { + "operationId": "sshKey-allForApps", + "tags": [ + "sshKey" + ], + "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" + } + } + } + } + } + } + }, "/sshKey.generate": { "post": { "operationId": "sshKey-generate",