chore: sync OpenAPI specification [skip ci]

Source: Dokploy/dokploy@7a62f47e43

Updated: 2026-02-19 21:01:54 UTC
This commit is contained in:
Dokploy Bot
2026-02-19 21:01:54 +00:00
parent d065126fcf
commit 8ecec534bf

View File

@@ -20667,6 +20667,14 @@
"schema": {
"type": "object",
"properties": {
"tier": {
"type": "string",
"enum": [
"legacy",
"hobby",
"startup"
]
},
"productId": {
"type": "string"
},
@@ -20679,6 +20687,7 @@
}
},
"required": [
"tier",
"productId",
"serverQuantity",
"isAnnual"
@@ -20727,6 +20736,63 @@
}
}
},
"/stripe.upgradeSubscription": {
"post": {
"operationId": "stripe-upgradeSubscription",
"tags": [
"stripe"
],
"security": [
{
"Authorization": []
}
],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"tier": {
"type": "string",
"enum": [
"hobby",
"startup"
]
},
"serverQuantity": {
"type": "number",
"minimum": 1
},
"isAnnual": {
"type": "boolean"
}
},
"required": [
"tier",
"serverQuantity",
"isAnnual"
],
"additionalProperties": false
}
}
}
},
"parameters": [],
"responses": {
"200": {
"description": "Successful response",
"content": {
"application/json": {}
}
},
"default": {
"$ref": "#/components/responses/error"
}
}
}
},
"/stripe.canCreateMoreServers": {
"get": {
"operationId": "stripe-canCreateMoreServers",