@botpress/api 1.29.0 → 1.31.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/.turbo/turbo-openapi.log +5 -5
- package/dist/index.js +71 -15
- package/dist/src/gen/admin/state.d.ts +7 -0
- package/dist/src/gen/files/state.d.ts +7 -0
- package/dist/src/gen/runtime/state.d.ts +15 -0
- package/dist/src/gen/state.d.ts +15 -0
- package/dist/src/gen/tables/state.d.ts +7 -0
- package/package.json +1 -1
- package/src/gen/admin/openapi.json +1 -1
- package/src/gen/admin/state.ts +11 -3
- package/src/gen/files/openapi.json +1 -1
- package/src/gen/files/state.ts +11 -3
- package/src/gen/openapi.json +1 -1
- package/src/gen/runtime/openapi.json +1 -1
- package/src/gen/runtime/state.ts +19 -3
- package/src/gen/state.ts +19 -3
- package/src/gen/tables/openapi.json +1 -1
- package/src/gen/tables/state.ts +11 -3
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.31.0",
|
|
1220
1220
|
"prefix": "v1"
|
|
1221
1221
|
},
|
|
1222
1222
|
"errors": [
|
|
@@ -1589,11 +1589,19 @@ export const state = {
|
|
|
1589
1589
|
"type": "object",
|
|
1590
1590
|
"properties": {
|
|
1591
1591
|
"integrationId": {
|
|
1592
|
-
"type": "string"
|
|
1592
|
+
"type": "string",
|
|
1593
|
+
"minLength": 28,
|
|
1594
|
+
"maxLength": 36
|
|
1595
|
+
},
|
|
1596
|
+
"interfaceId": {
|
|
1597
|
+
"type": "string",
|
|
1598
|
+
"minLength": 28,
|
|
1599
|
+
"maxLength": 36
|
|
1593
1600
|
}
|
|
1594
1601
|
},
|
|
1595
1602
|
"required": [
|
|
1596
|
-
"integrationId"
|
|
1603
|
+
"integrationId",
|
|
1604
|
+
"interfaceId"
|
|
1597
1605
|
],
|
|
1598
1606
|
"additionalProperties": false
|
|
1599
1607
|
},
|