Skip to content

Commit 8ecec53

Browse files
author
Dokploy Bot
committed
chore: sync OpenAPI specification [skip ci]
Source: Dokploy/dokploy@7a62f47 Updated: 2026-02-19 21:01:54 UTC
1 parent d065126 commit 8ecec53

1 file changed

Lines changed: 66 additions & 0 deletions

File tree

apps/docs/public/openapi.json

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20667,6 +20667,14 @@
2066720667
"schema": {
2066820668
"type": "object",
2066920669
"properties": {
20670+
"tier": {
20671+
"type": "string",
20672+
"enum": [
20673+
"legacy",
20674+
"hobby",
20675+
"startup"
20676+
]
20677+
},
2067020678
"productId": {
2067120679
"type": "string"
2067220680
},
@@ -20679,6 +20687,7 @@
2067920687
}
2068020688
},
2068120689
"required": [
20690+
"tier",
2068220691
"productId",
2068320692
"serverQuantity",
2068420693
"isAnnual"
@@ -20727,6 +20736,63 @@
2072720736
}
2072820737
}
2072920738
},
20739+
"/stripe.upgradeSubscription": {
20740+
"post": {
20741+
"operationId": "stripe-upgradeSubscription",
20742+
"tags": [
20743+
"stripe"
20744+
],
20745+
"security": [
20746+
{
20747+
"Authorization": []
20748+
}
20749+
],
20750+
"requestBody": {
20751+
"required": true,
20752+
"content": {
20753+
"application/json": {
20754+
"schema": {
20755+
"type": "object",
20756+
"properties": {
20757+
"tier": {
20758+
"type": "string",
20759+
"enum": [
20760+
"hobby",
20761+
"startup"
20762+
]
20763+
},
20764+
"serverQuantity": {
20765+
"type": "number",
20766+
"minimum": 1
20767+
},
20768+
"isAnnual": {
20769+
"type": "boolean"
20770+
}
20771+
},
20772+
"required": [
20773+
"tier",
20774+
"serverQuantity",
20775+
"isAnnual"
20776+
],
20777+
"additionalProperties": false
20778+
}
20779+
}
20780+
}
20781+
},
20782+
"parameters": [],
20783+
"responses": {
20784+
"200": {
20785+
"description": "Successful response",
20786+
"content": {
20787+
"application/json": {}
20788+
}
20789+
},
20790+
"default": {
20791+
"$ref": "#/components/responses/error"
20792+
}
20793+
}
20794+
}
20795+
},
2073020796
"/stripe.canCreateMoreServers": {
2073120797
"get": {
2073220798
"operationId": "stripe-canCreateMoreServers",

0 commit comments

Comments
 (0)