@botpress/api 1.28.1 → 1.28.2
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/.turbo/turbo-openapi.log +6 -6
- package/dist/index.js +205 -29
- package/dist/src/gen/admin/state.d.ts +76 -8
- package/dist/src/gen/files/state.d.ts +8 -0
- package/dist/src/gen/runtime/state.d.ts +8 -0
- package/dist/src/gen/state.d.ts +76 -8
- package/dist/src/gen/tables/state.d.ts +8 -0
- package/package.json +1 -1
- package/src/gen/admin/openapi.json +1 -1
- package/src/gen/admin/state.ts +89 -13
- package/src/gen/files/openapi.json +1 -1
- package/src/gen/files/state.ts +9 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/runtime/openapi.json +1 -1
- package/src/gen/runtime/state.ts +9 -1
- package/src/gen/state.ts +89 -13
- package/src/gen/tables/openapi.json +1 -1
- package/src/gen/tables/state.ts +9 -1
package/src/gen/files/state.ts
CHANGED
|
@@ -1778,7 +1778,7 @@ export const state = {
|
|
|
1778
1778
|
"title": "Botpress API",
|
|
1779
1779
|
"description": "API for Botpress Cloud",
|
|
1780
1780
|
"server": "https://api.botpress.cloud",
|
|
1781
|
-
"version": "1.28.
|
|
1781
|
+
"version": "1.28.2",
|
|
1782
1782
|
"prefix": "v1"
|
|
1783
1783
|
},
|
|
1784
1784
|
"errors": [
|
|
@@ -2212,6 +2212,10 @@ export const state = {
|
|
|
2212
2212
|
},
|
|
2213
2213
|
"description": "A mapping of plugin aliases to their configuration"
|
|
2214
2214
|
},
|
|
2215
|
+
"maxExecutionTime": {
|
|
2216
|
+
"type": "number",
|
|
2217
|
+
"description": "Maximum execution time of the bot (in seconds)."
|
|
2218
|
+
},
|
|
2215
2219
|
"user": {
|
|
2216
2220
|
"type": "object",
|
|
2217
2221
|
"properties": {
|
|
@@ -2663,6 +2667,10 @@ export const state = {
|
|
|
2663
2667
|
},
|
|
2664
2668
|
"additionalProperties": false
|
|
2665
2669
|
},
|
|
2670
|
+
"maxExecutionTime": {
|
|
2671
|
+
"type": "number",
|
|
2672
|
+
"description": "Maximum execution time of the integration (in seconds)."
|
|
2673
|
+
},
|
|
2666
2674
|
"url": {
|
|
2667
2675
|
"type": "string",
|
|
2668
2676
|
"maxLength": 2000,
|