From 86e1327008465c4e03bafabf67e5a438539562f7 Mon Sep 17 00:00:00 2001 From: Dokploy Bot Date: Sat, 11 Apr 2026 06:51:28 +0000 Subject: [PATCH] chore: sync OpenAPI specification [skip ci] Source: Dokploy/dokploy@f404b231a65c7391d23669e68211ed4cc8bb0bdd Updated: 2026-04-11 06:51:27 UTC --- apps/docs/public/openapi.json | 89 +++++++++++++++++++++++++++++++++++ 1 file changed, 89 insertions(+) diff --git a/apps/docs/public/openapi.json b/apps/docs/public/openapi.json index 17cc63f..7b5e803 100644 --- a/apps/docs/public/openapi.json +++ b/apps/docs/public/openapi.json @@ -44762,6 +44762,92 @@ } } }, + "/stripe.updateInvoiceNotifications": { + "post": { + "operationId": "stripe-updateInvoiceNotifications", + "tags": [ + "stripe" + ], + "security": [ + { + "Authorization": [] + } + ], + "parameters": [], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "enabled": { + "type": "boolean" + } + }, + "required": [ + "enabled" + ] + } + } + } + }, + "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" + } + } + } + }, + "500": { + "description": "Internal server error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/error.INTERNAL_SERVER_ERROR" + } + } + } + } + } + } + }, "/stripe.getInvoices": { "get": { "operationId": "stripe-getInvoices", @@ -45969,6 +46055,9 @@ "serversQuantity": { "type": "number" }, + "sendInvoiceNotifications": { + "type": "boolean" + }, "password": { "type": "string" },