@botpress/api 0.18.3 → 0.18.4
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 +7 -2
- package/dist/src/gen/state.d.ts +4 -0
- package/package.json +1 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/state.ts +7 -2
package/dist/index.js
CHANGED
|
@@ -276795,6 +276795,10 @@ var state = {
|
|
|
276795
276795
|
"type": "string",
|
|
276796
276796
|
"nullable": true
|
|
276797
276797
|
},
|
|
276798
|
+
"value": {
|
|
276799
|
+
"type": "string",
|
|
276800
|
+
"nullable": true
|
|
276801
|
+
},
|
|
276798
276802
|
"action": {
|
|
276799
276803
|
"type": "string",
|
|
276800
276804
|
"enum": [
|
|
@@ -276816,7 +276820,8 @@ var state = {
|
|
|
276816
276820
|
"UPDATE_PAYMENT_METHOD",
|
|
276817
276821
|
"UPDATE_WORKSPACE",
|
|
276818
276822
|
"UPGRADE_WORKSPACE_PLAN",
|
|
276819
|
-
"SET_SPENDING_LIMIT"
|
|
276823
|
+
"SET_SPENDING_LIMIT",
|
|
276824
|
+
"SET_AI_SPENDING_LIMIT"
|
|
276820
276825
|
]
|
|
276821
276826
|
}
|
|
276822
276827
|
},
|
|
@@ -279350,7 +279355,7 @@ var state = {
|
|
|
279350
279355
|
"title": "Botpress API",
|
|
279351
279356
|
"description": "API for Botpress Cloud",
|
|
279352
279357
|
"server": "https://api.botpress.cloud",
|
|
279353
|
-
"version": "0.18.
|
|
279358
|
+
"version": "0.18.4",
|
|
279354
279359
|
"prefix": "v1"
|
|
279355
279360
|
},
|
|
279356
279361
|
"errors": [
|
package/dist/src/gen/state.d.ts
CHANGED