@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/admin/state.ts
CHANGED
|
@@ -13784,7 +13784,7 @@ export const state = {
|
|
|
13784
13784
|
"title": "Botpress API",
|
|
13785
13785
|
"description": "API for Botpress Cloud",
|
|
13786
13786
|
"server": "https://api.botpress.cloud",
|
|
13787
|
-
"version": "1.
|
|
13787
|
+
"version": "1.31.0",
|
|
13788
13788
|
"prefix": "v1"
|
|
13789
13789
|
},
|
|
13790
13790
|
"errors": [
|
|
@@ -14267,11 +14267,19 @@ export const state = {
|
|
|
14267
14267
|
"type": "object",
|
|
14268
14268
|
"properties": {
|
|
14269
14269
|
"integrationId": {
|
|
14270
|
-
"type": "string"
|
|
14270
|
+
"type": "string",
|
|
14271
|
+
"minLength": 28,
|
|
14272
|
+
"maxLength": 36
|
|
14273
|
+
},
|
|
14274
|
+
"interfaceId": {
|
|
14275
|
+
"type": "string",
|
|
14276
|
+
"minLength": 28,
|
|
14277
|
+
"maxLength": 36
|
|
14271
14278
|
}
|
|
14272
14279
|
},
|
|
14273
14280
|
"required": [
|
|
14274
|
-
"integrationId"
|
|
14281
|
+
"integrationId",
|
|
14282
|
+
"interfaceId"
|
|
14275
14283
|
],
|
|
14276
14284
|
"additionalProperties": false
|
|
14277
14285
|
},
|