@botpress/api 1.16.0 → 1.17.0
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 +361 -9
- package/dist/src/gen/admin/state.d.ts +140 -0
- package/dist/src/gen/files/state.d.ts +24 -0
- package/dist/src/gen/runtime/state.d.ts +24 -0
- package/dist/src/gen/state.d.ts +140 -0
- package/dist/src/gen/tables/state.d.ts +24 -0
- package/package.json +1 -1
- package/src/gen/admin/openapi.json +1 -1
- package/src/gen/admin/state.ts +143 -3
- package/src/gen/files/openapi.json +1 -1
- package/src/gen/files/state.ts +25 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/runtime/openapi.json +1 -1
- package/src/gen/runtime/state.ts +25 -1
- package/src/gen/state.ts +143 -3
- package/src/gen/tables/openapi.json +1 -1
- package/src/gen/tables/state.ts +25 -1
package/src/gen/tables/state.ts
CHANGED
|
@@ -1216,7 +1216,7 @@ export const state = {
|
|
|
1216
1216
|
"title": "Botpress API",
|
|
1217
1217
|
"description": "API for Botpress Cloud",
|
|
1218
1218
|
"server": "https://api.botpress.cloud",
|
|
1219
|
-
"version": "1.
|
|
1219
|
+
"version": "1.17.0",
|
|
1220
1220
|
"prefix": "v1"
|
|
1221
1221
|
},
|
|
1222
1222
|
"errors": [
|
|
@@ -2626,6 +2626,14 @@ export const state = {
|
|
|
2626
2626
|
"additionalProperties": false
|
|
2627
2627
|
}
|
|
2628
2628
|
},
|
|
2629
|
+
"attributes": {
|
|
2630
|
+
"type": "object",
|
|
2631
|
+
"additionalProperties": {
|
|
2632
|
+
"type": "string",
|
|
2633
|
+
"maxLength": 200
|
|
2634
|
+
},
|
|
2635
|
+
"description": "Optional attributes"
|
|
2636
|
+
},
|
|
2629
2637
|
"dev": {
|
|
2630
2638
|
"type": "boolean",
|
|
2631
2639
|
"description": "Indicates if the integration is a development integration; Dev integrations run locally"
|
|
@@ -2915,6 +2923,14 @@ export const state = {
|
|
|
2915
2923
|
"description": "Template string optionaly used at build time by integrations implementing this interface to pick a name for actions and events.",
|
|
2916
2924
|
"additionalProperties": false
|
|
2917
2925
|
},
|
|
2926
|
+
"attributes": {
|
|
2927
|
+
"type": "object",
|
|
2928
|
+
"additionalProperties": {
|
|
2929
|
+
"type": "string",
|
|
2930
|
+
"maxLength": 200
|
|
2931
|
+
},
|
|
2932
|
+
"description": "Optional attributes"
|
|
2933
|
+
},
|
|
2918
2934
|
"title": {
|
|
2919
2935
|
"type": "string",
|
|
2920
2936
|
"minLength": 1,
|
|
@@ -3270,6 +3286,14 @@ export const state = {
|
|
|
3270
3286
|
"description": "Conversation object configuration",
|
|
3271
3287
|
"additionalProperties": false
|
|
3272
3288
|
},
|
|
3289
|
+
"attributes": {
|
|
3290
|
+
"type": "object",
|
|
3291
|
+
"additionalProperties": {
|
|
3292
|
+
"type": "string",
|
|
3293
|
+
"maxLength": 200
|
|
3294
|
+
},
|
|
3295
|
+
"description": "Optional attributes"
|
|
3296
|
+
},
|
|
3273
3297
|
"title": {
|
|
3274
3298
|
"type": "string",
|
|
3275
3299
|
"minLength": 1,
|