2
0

🚸 (billing) Improve feedback when subscription is "past_due"

This commit is contained in:
Baptiste Arnaud
2023-09-12 13:17:14 +02:00
parent 6375a2425f
commit 0ccc2efa45
11 changed files with 86 additions and 33 deletions

View File

@ -30689,11 +30689,19 @@
"cancelDate": {
"type": "string",
"format": "date-time"
},
"status": {
"type": "string",
"enum": [
"active",
"past_due"
]
}
},
"required": [
"isYearly",
"currency"
"currency",
"status"
],
"additionalProperties": false
},
@ -32760,7 +32768,7 @@
}
}
},
"/typebots/{typebotId}/blocks/{blockId}/openai/models": {
"/openai/models": {
"get": {
"operationId": "openAI-listModels",
"summary": "List OpenAI models",
@ -32773,22 +32781,6 @@
}
],
"parameters": [
{
"name": "typebotId",
"in": "path",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "blockId",
"in": "path",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "credentialsId",
"in": "query",
@ -32804,6 +32796,23 @@
"schema": {
"type": "string"
}
},
{
"name": "baseUrl",
"in": "query",
"required": false,
"schema": {
"type": "string",
"default": "https://api.openai.com/v1"
}
},
{
"name": "apiVersion",
"in": "query",
"required": false,
"schema": {
"type": "string"
}
}
],
"responses": {