From 11dce4617d1865436b89a6e741b3cfb4df578568 Mon Sep 17 00:00:00 2001 From: Dokploy Bot Date: Sun, 7 Dec 2025 10:40:01 +0000 Subject: [PATCH 01/10] chore: sync OpenAPI specification [skip ci] Source: Dokploy/dokploy@f84c65912143658d5d4d5ec6985b6353c92dbc15 Updated: 2025-12-07 10:40:01 UTC --- apps/docs/public/openapi.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/apps/docs/public/openapi.json b/apps/docs/public/openapi.json index ab05be9..5c6986a 100644 --- a/apps/docs/public/openapi.json +++ b/apps/docs/public/openapi.json @@ -9302,7 +9302,10 @@ "type": "string", "minLength": 1 }, - "name": { + "firstName": { + "type": "string" + }, + "lastName": { "type": "string" }, "isRegistered": { @@ -9519,6 +9522,9 @@ }, "currentPassword": { "type": "string" + }, + "name": { + "type": "string" } }, "additionalProperties": false From a32c94d5900241dd0a7f38ea397e169660210caf Mon Sep 17 00:00:00 2001 From: Dokploy Bot Date: Sun, 7 Dec 2025 18:53:11 +0000 Subject: [PATCH 02/10] chore: sync OpenAPI specification [skip ci] Source: Dokploy/dokploy@5360df7a539bc4e490757c7285b884bca58a5a0e Updated: 2025-12-07 18:53:11 UTC From 490e8ae58ec91fd54c28929401ef096b93446107 Mon Sep 17 00:00:00 2001 From: Dokploy Bot Date: Sun, 7 Dec 2025 19:45:52 +0000 Subject: [PATCH 03/10] chore: sync OpenAPI specification [skip ci] Source: Dokploy/dokploy@c4351482fa7b6b08e754d6e1e12e32d45c6f4d5d Updated: 2025-12-07 19:45:52 UTC --- apps/docs/public/openapi.json | 208 ++++++++++++++++++++++++++++++++++ 1 file changed, 208 insertions(+) diff --git a/apps/docs/public/openapi.json b/apps/docs/public/openapi.json index 5c6986a..e653540 100644 --- a/apps/docs/public/openapi.json +++ b/apps/docs/public/openapi.json @@ -16582,6 +16582,214 @@ } } }, + "/notification.createCustom": { + "post": { + "operationId": "notification-createCustom", + "tags": [ + "notification" + ], + "security": [ + { + "Authorization": [] + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "appBuildError": { + "type": "boolean" + }, + "databaseBackup": { + "type": "boolean" + }, + "dokployRestart": { + "type": "boolean" + }, + "name": { + "type": "string" + }, + "appDeploy": { + "type": "boolean" + }, + "dockerCleanup": { + "type": "boolean" + }, + "serverThreshold": { + "type": "boolean" + }, + "endpoint": { + "type": "string", + "minLength": 1 + }, + "headers": { + "type": "object", + "additionalProperties": { + "type": "string" + } + } + }, + "required": [ + "name", + "endpoint" + ], + "additionalProperties": false + } + } + } + }, + "parameters": [], + "responses": { + "200": { + "description": "Successful response", + "content": { + "application/json": {} + } + }, + "default": { + "$ref": "#/components/responses/error" + } + } + } + }, + "/notification.updateCustom": { + "post": { + "operationId": "notification-updateCustom", + "tags": [ + "notification" + ], + "security": [ + { + "Authorization": [] + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "appBuildError": { + "type": "boolean" + }, + "databaseBackup": { + "type": "boolean" + }, + "dokployRestart": { + "type": "boolean" + }, + "name": { + "type": "string" + }, + "appDeploy": { + "type": "boolean" + }, + "dockerCleanup": { + "type": "boolean" + }, + "serverThreshold": { + "type": "boolean" + }, + "endpoint": { + "type": "string", + "minLength": 1 + }, + "headers": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "notificationId": { + "type": "string", + "minLength": 1 + }, + "customId": { + "type": "string", + "minLength": 1 + }, + "organizationId": { + "type": "string" + } + }, + "required": [ + "notificationId", + "customId" + ], + "additionalProperties": false + } + } + } + }, + "parameters": [], + "responses": { + "200": { + "description": "Successful response", + "content": { + "application/json": {} + } + }, + "default": { + "$ref": "#/components/responses/error" + } + } + } + }, + "/notification.testCustomConnection": { + "post": { + "operationId": "notification-testCustomConnection", + "tags": [ + "notification" + ], + "security": [ + { + "Authorization": [] + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "endpoint": { + "type": "string", + "minLength": 1 + }, + "headers": { + "type": "object", + "additionalProperties": { + "type": "string" + } + } + }, + "required": [ + "endpoint" + ], + "additionalProperties": false + } + } + } + }, + "parameters": [], + "responses": { + "200": { + "description": "Successful response", + "content": { + "application/json": {} + } + }, + "default": { + "$ref": "#/components/responses/error" + } + } + } + }, "/notification.createLark": { "post": { "operationId": "notification-createLark", From 919217174af835511d4c6cb1589e8f82c7fe24a6 Mon Sep 17 00:00:00 2001 From: Dokploy Bot Date: Mon, 8 Dec 2025 02:08:20 +0000 Subject: [PATCH 04/10] chore: sync OpenAPI specification [skip ci] Source: Dokploy/dokploy@c9aaee149ac59ae38ae83aa363dc25779ef63177 Updated: 2025-12-08 02:08:20 UTC From ce6706d6f5a7761441318e7b05772a0143ececa4 Mon Sep 17 00:00:00 2001 From: Dokploy Bot Date: Mon, 8 Dec 2025 04:45:34 +0000 Subject: [PATCH 05/10] chore: sync OpenAPI specification [skip ci] Source: Dokploy/dokploy@1d9b9ff9b6d576a6edca88cbaf06926417a10695 Updated: 2025-12-08 04:45:33 UTC --- apps/docs/public/openapi.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/apps/docs/public/openapi.json b/apps/docs/public/openapi.json index e653540..1bee42e 100644 --- a/apps/docs/public/openapi.json +++ b/apps/docs/public/openapi.json @@ -20628,6 +20628,10 @@ "enabled": { "type": "boolean" }, + "timezone": { + "type": "string", + "nullable": true + }, "createdAt": { "type": "string" } @@ -20733,6 +20737,10 @@ "enabled": { "type": "boolean" }, + "timezone": { + "type": "string", + "nullable": true + }, "createdAt": { "type": "string" } From af66a09d80f60c6e8dba2ef37286880b13eb7eb7 Mon Sep 17 00:00:00 2001 From: Dokploy Bot Date: Mon, 8 Dec 2025 06:03:02 +0000 Subject: [PATCH 06/10] chore: sync OpenAPI specification [skip ci] Source: Dokploy/dokploy@e666cfb37463db7a80c637131f783bab67162671 Updated: 2025-12-08 06:03:02 UTC From 2ae424d75f0546910b08b6bc14e083f886b8a203 Mon Sep 17 00:00:00 2001 From: Dokploy Bot Date: Mon, 8 Dec 2025 06:06:30 +0000 Subject: [PATCH 07/10] chore: sync OpenAPI specification [skip ci] Source: Dokploy/dokploy@c42e859215155b292435b2fcc921098a0b93de9d Updated: 2025-12-08 06:06:30 UTC From d599b465e93447056d6d60ad3131a86d22c079ba Mon Sep 17 00:00:00 2001 From: Dokploy Bot Date: Mon, 8 Dec 2025 06:08:47 +0000 Subject: [PATCH 08/10] chore: sync OpenAPI specification [skip ci] Source: Dokploy/dokploy@07bf520e9bb7810d482ea9a93babb6d64e5817ed Updated: 2025-12-08 06:08:47 UTC From 955239fe1c4921d4083fb928d01130672d0b5d3f Mon Sep 17 00:00:00 2001 From: Dokploy Bot Date: Mon, 8 Dec 2025 06:12:07 +0000 Subject: [PATCH 09/10] chore: sync OpenAPI specification [skip ci] Source: Dokploy/dokploy@bd4964f70f073b7b13f919743904ebf46fb681c1 Updated: 2025-12-08 06:12:07 UTC From a729a69fde4f79c1d2275c70e7999bbba1babb0c Mon Sep 17 00:00:00 2001 From: Dokploy Bot Date: Mon, 8 Dec 2025 20:37:57 +0000 Subject: [PATCH 10/10] chore: sync OpenAPI specification [skip ci] Source: Dokploy/dokploy@1352b859e2195c453dc981f238e1f8e911a61c67 Updated: 2025-12-08 20:37:57 UTC