From 3307cc1677d25912e1c8cf079e0b37671917ef5a Mon Sep 17 00:00:00 2001 From: Dokploy Bot Date: Fri, 27 Feb 2026 06:21:28 +0000 Subject: [PATCH] chore: sync OpenAPI specification [skip ci] Source: Dokploy/dokploy@8ab139e222b977a7bd634412c03cc8de19d367ec Updated: 2026-02-27 06:21:28 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 e7907b1..b739e72 100644 --- a/apps/docs/public/openapi.json +++ b/apps/docs/public/openapi.json @@ -39827,6 +39827,83 @@ } } }, + "/stripe/getCurrentPlan": { + "get": { + "operationId": "stripe-getCurrentPlan", + "tags": [ + "stripe" + ], + "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" + } + } + } + } + } + } + }, "/stripe/getProducts": { "get": { "operationId": "stripe-getProducts",