@botpress/api 1.22.0 → 1.24.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 +794 -14
- package/dist/src/gen/admin/state.d.ts +94 -0
- package/dist/src/gen/files/state.d.ts +14 -0
- package/dist/src/gen/runtime/state.d.ts +14 -0
- package/dist/src/gen/state.d.ts +94 -0
- package/dist/src/gen/tables/state.d.ts +14 -0
- package/package.json +1 -1
- package/src/gen/admin/metadata.json +1 -1
- package/src/gen/admin/openapi.json +1 -1
- package/src/gen/admin/state.ts +103 -1
- package/src/gen/files/openapi.json +1 -1
- package/src/gen/files/state.ts +17 -1
- package/src/gen/metadata.json +1 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/runtime/openapi.json +1 -1
- package/src/gen/runtime/state.ts +17 -1
- package/src/gen/state.ts +103 -1
- package/src/gen/tables/openapi.json +1 -1
- package/src/gen/tables/state.ts +17 -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.24.0",
|
|
1220
1220
|
"prefix": "v1"
|
|
1221
1221
|
},
|
|
1222
1222
|
"errors": [
|
|
@@ -1583,6 +1583,22 @@ export const state = {
|
|
|
1583
1583
|
"type": "object",
|
|
1584
1584
|
"additionalProperties": true
|
|
1585
1585
|
},
|
|
1586
|
+
"interfaces": {
|
|
1587
|
+
"type": "object",
|
|
1588
|
+
"additionalProperties": {
|
|
1589
|
+
"type": "object",
|
|
1590
|
+
"properties": {
|
|
1591
|
+
"integrationId": {
|
|
1592
|
+
"type": "string"
|
|
1593
|
+
}
|
|
1594
|
+
},
|
|
1595
|
+
"required": [
|
|
1596
|
+
"integrationId"
|
|
1597
|
+
],
|
|
1598
|
+
"additionalProperties": false
|
|
1599
|
+
},
|
|
1600
|
+
"description": "A mapping of plugin interface aliases to their backing integrations"
|
|
1601
|
+
},
|
|
1586
1602
|
"id": {
|
|
1587
1603
|
"type": "string",
|
|
1588
1604
|
"minLength": 28,
|