From fd1a4d3a5e2f033f01e6a0571826ec6d72a4b229 Mon Sep 17 00:00:00 2001 From: Dokploy Bot Date: Wed, 4 Mar 2026 04:39:45 +0000 Subject: [PATCH] chore: sync OpenAPI specification [skip ci] Source: Dokploy/dokploy@c34a01a173775a3156610f1a4fe8a73bf0a43c88 Updated: 2026-03-04 04:39:45 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 5bb38df..af25cde 100644 --- a/apps/docs/public/openapi.json +++ b/apps/docs/public/openapi.json @@ -43695,6 +43695,83 @@ } } }, + "/organization.active": { + "get": { + "operationId": "organization-active", + "tags": [ + "organization" + ], + "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" + } + } + } + } + } + } + }, "/licenseKey.activate": { "post": { "operationId": "licenseKey-activate",