@botpress/api 1.72.0 → 1.72.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +18 -10
- package/dist/src/gen/billing/state.d.ts +4 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -279445,7 +279445,7 @@ var state = {
|
|
|
279445
279445
|
"title": "Botpress Runtime API",
|
|
279446
279446
|
"description": "API for Botpress Runtime",
|
|
279447
279447
|
"server": "https://api.botpress.cloud",
|
|
279448
|
-
"version": "1.72.
|
|
279448
|
+
"version": "1.72.1",
|
|
279449
279449
|
"prefix": "v1"
|
|
279450
279450
|
},
|
|
279451
279451
|
"defaultParameters": {
|
|
@@ -289557,6 +289557,8 @@ var state2 = {
|
|
|
289557
289557
|
"SET_SPENDING_LIMIT",
|
|
289558
289558
|
"SET_AI_SPENDING_LIMIT",
|
|
289559
289559
|
"UPDATE_WORKSPACE_BILLING_READONLY",
|
|
289560
|
+
"UPDATE_WORKSPACE_PLAN_READONLY",
|
|
289561
|
+
"UPDATE_WORKSPACE_ADDONS_READONLY",
|
|
289560
289562
|
"EXECUTE_AUTO_RECHARGE_SUCCESS",
|
|
289561
289563
|
"EXECUTE_AUTO_RECHARGE_FAILED"
|
|
289562
289564
|
]
|
|
@@ -295992,7 +295994,7 @@ var state2 = {
|
|
|
295992
295994
|
"title": "Botpress Admin API",
|
|
295993
295995
|
"description": "API for Botpress Cloud Manager",
|
|
295994
295996
|
"server": "https://api.botpress.cloud",
|
|
295995
|
-
"version": "1.72.
|
|
295997
|
+
"version": "1.72.1",
|
|
295996
295998
|
"prefix": "v1"
|
|
295997
295999
|
},
|
|
295998
296000
|
"defaultParameters": {
|
|
@@ -301513,7 +301515,7 @@ var state3 = {
|
|
|
301513
301515
|
"title": "Botpress Files API",
|
|
301514
301516
|
"description": "API for Botpress Files",
|
|
301515
301517
|
"server": "https://api.botpress.cloud",
|
|
301516
|
-
"version": "1.72.
|
|
301518
|
+
"version": "1.72.1",
|
|
301517
301519
|
"prefix": "v1"
|
|
301518
301520
|
},
|
|
301519
301521
|
"defaultParameters": {
|
|
@@ -303809,7 +303811,7 @@ var state4 = {
|
|
|
303809
303811
|
"title": "Botpress Tables API",
|
|
303810
303812
|
"description": "API for Botpress Tables",
|
|
303811
303813
|
"server": "https://api.botpress.cloud",
|
|
303812
|
-
"version": "1.72.
|
|
303814
|
+
"version": "1.72.1",
|
|
303813
303815
|
"prefix": "v1"
|
|
303814
303816
|
},
|
|
303815
303817
|
"defaultParameters": {
|
|
@@ -316224,6 +316226,8 @@ var state5 = {
|
|
|
316224
316226
|
"SET_SPENDING_LIMIT",
|
|
316225
316227
|
"SET_AI_SPENDING_LIMIT",
|
|
316226
316228
|
"UPDATE_WORKSPACE_BILLING_READONLY",
|
|
316229
|
+
"UPDATE_WORKSPACE_PLAN_READONLY",
|
|
316230
|
+
"UPDATE_WORKSPACE_ADDONS_READONLY",
|
|
316227
316231
|
"EXECUTE_AUTO_RECHARGE_SUCCESS",
|
|
316228
316232
|
"EXECUTE_AUTO_RECHARGE_FAILED"
|
|
316229
316233
|
]
|
|
@@ -325380,7 +325384,7 @@ var state5 = {
|
|
|
325380
325384
|
"title": "Botpress API",
|
|
325381
325385
|
"description": "API for Botpress Cloud",
|
|
325382
325386
|
"server": "https://api.botpress.cloud",
|
|
325383
|
-
"version": "1.72.
|
|
325387
|
+
"version": "1.72.1",
|
|
325384
325388
|
"prefix": "v1"
|
|
325385
325389
|
},
|
|
325386
325390
|
"errors": [
|
|
@@ -329839,21 +329843,25 @@ var state6 = {
|
|
|
329839
329843
|
"operations": {
|
|
329840
329844
|
"getBillingReadonly": {
|
|
329841
329845
|
"name": "getBillingReadonly",
|
|
329842
|
-
"description": "Get whether
|
|
329846
|
+
"description": "Get whether plan and addons are readonly for the authenticated workspace",
|
|
329843
329847
|
"method": "get",
|
|
329844
329848
|
"path": "/v2/billing/readonly",
|
|
329845
329849
|
"response": {
|
|
329846
|
-
"description": "Whether
|
|
329850
|
+
"description": "Whether plan and addons are readonly for this workspace",
|
|
329847
329851
|
"status": 200,
|
|
329848
329852
|
"schema": {
|
|
329849
329853
|
"type": "object",
|
|
329850
329854
|
"properties": {
|
|
329851
|
-
"
|
|
329855
|
+
"planReadonly": {
|
|
329856
|
+
"type": "boolean"
|
|
329857
|
+
},
|
|
329858
|
+
"addonsReadonly": {
|
|
329852
329859
|
"type": "boolean"
|
|
329853
329860
|
}
|
|
329854
329861
|
},
|
|
329855
329862
|
"required": [
|
|
329856
|
-
"
|
|
329863
|
+
"planReadonly",
|
|
329864
|
+
"addonsReadonly"
|
|
329857
329865
|
],
|
|
329858
329866
|
"title": "getBillingReadonlyResponse",
|
|
329859
329867
|
"additionalProperties": false
|
|
@@ -331622,7 +331630,7 @@ var state6 = {
|
|
|
331622
331630
|
"title": "Botpress Billing Public API",
|
|
331623
331631
|
"description": "API for Botpress Billing",
|
|
331624
331632
|
"server": "https://api.botpress.cloud",
|
|
331625
|
-
"version": "1.72.
|
|
331633
|
+
"version": "1.72.1",
|
|
331626
331634
|
"prefix": "v2"
|
|
331627
331635
|
},
|
|
331628
331636
|
"defaultParameters": {
|