From a1e5259e7a012fe23e21b267195017cfe8ecb7f0 Mon Sep 17 00:00:00 2001 From: Dokploy Bot Date: Sun, 7 Dec 2025 09:11:59 +0000 Subject: [PATCH] chore: sync OpenAPI specification [skip ci] Source: Dokploy/dokploy@a5353e5457461629982e5db12828c21800cd4bae Updated: 2025-12-07 09:11:59 UTC --- apps/docs/public/openapi.json | 52 +++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/apps/docs/public/openapi.json b/apps/docs/public/openapi.json index f1b8bae..ab05be9 100644 --- a/apps/docs/public/openapi.json +++ b/apps/docs/public/openapi.json @@ -20241,6 +20241,58 @@ } } }, + "/organization.updateMemberRole": { + "post": { + "operationId": "organization-updateMemberRole", + "tags": [ + "organization" + ], + "security": [ + { + "Authorization": [] + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "memberId": { + "type": "string" + }, + "role": { + "type": "string", + "enum": [ + "admin", + "member" + ] + } + }, + "required": [ + "memberId", + "role" + ], + "additionalProperties": false + } + } + } + }, + "parameters": [], + "responses": { + "200": { + "description": "Successful response", + "content": { + "application/json": {} + } + }, + "default": { + "$ref": "#/components/responses/error" + } + } + } + }, "/organization.setDefault": { "post": { "operationId": "organization-setDefault",