chore: sync OpenAPI specification [skip ci]

Source: Dokploy/dokploy@a5353e5457

Updated: 2025-12-07 09:11:59 UTC
This commit is contained in:
Dokploy Bot
2025-12-07 09:11:59 +00:00
parent 087c80256e
commit a1e5259e7a

View File

@@ -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",