@botpress/api 1.43.0 → 1.44.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 +6 -6
- package/dist/index.js +501 -338
- package/dist/src/gen/admin/state.d.ts +53 -0
- package/dist/src/gen/files/state.d.ts +28 -0
- package/dist/src/gen/runtime/state.d.ts +28 -0
- package/dist/src/gen/state.d.ts +53 -0
- package/dist/src/gen/tables/state.d.ts +28 -0
- package/package.json +1 -1
- package/src/gen/admin/openapi.json +1 -1
- package/src/gen/admin/state.ts +61 -1
- package/src/gen/files/openapi.json +1 -1
- package/src/gen/files/state.ts +33 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/runtime/openapi.json +1 -1
- package/src/gen/runtime/state.ts +33 -1
- package/src/gen/state.ts +61 -1
- package/src/gen/tables/openapi.json +1 -1
- package/src/gen/tables/state.ts +33 -1
package/src/gen/admin/state.ts
CHANGED
|
@@ -4996,6 +4996,14 @@ export const state = {
|
|
|
4996
4996
|
"properties": {
|
|
4997
4997
|
"integrationId": {
|
|
4998
4998
|
"type": "string"
|
|
4999
|
+
},
|
|
5000
|
+
"integrationAlias": {
|
|
5001
|
+
"type": "string",
|
|
5002
|
+
"description": "When an alias is provided, the plugin will use the integration corresponding to this alias. If not provided, the first integration matching the integrationId will be used."
|
|
5003
|
+
},
|
|
5004
|
+
"integrationInterfaceAlias": {
|
|
5005
|
+
"type": "string",
|
|
5006
|
+
"description": "When an alias is provided, the plugin will use the integration interface corresponding to this alias."
|
|
4999
5007
|
}
|
|
5000
5008
|
},
|
|
5001
5009
|
"required": [
|
|
@@ -5004,6 +5012,26 @@ export const state = {
|
|
|
5004
5012
|
"additionalProperties": false
|
|
5005
5013
|
},
|
|
5006
5014
|
"description": "A mapping of plugin interface aliases to their backing integrations"
|
|
5015
|
+
},
|
|
5016
|
+
"integrations": {
|
|
5017
|
+
"type": "object",
|
|
5018
|
+
"additionalProperties": {
|
|
5019
|
+
"type": "object",
|
|
5020
|
+
"properties": {
|
|
5021
|
+
"integrationId": {
|
|
5022
|
+
"type": "string"
|
|
5023
|
+
},
|
|
5024
|
+
"integrationAlias": {
|
|
5025
|
+
"type": "string"
|
|
5026
|
+
}
|
|
5027
|
+
},
|
|
5028
|
+
"required": [
|
|
5029
|
+
"integrationId",
|
|
5030
|
+
"integrationAlias"
|
|
5031
|
+
],
|
|
5032
|
+
"additionalProperties": false
|
|
5033
|
+
},
|
|
5034
|
+
"description": "A mapping of plugin integration aliases to their backing integrations"
|
|
5007
5035
|
}
|
|
5008
5036
|
},
|
|
5009
5037
|
"required": [
|
|
@@ -14013,7 +14041,7 @@ export const state = {
|
|
|
14013
14041
|
"title": "Botpress API",
|
|
14014
14042
|
"description": "API for Botpress Cloud",
|
|
14015
14043
|
"server": "https://api.botpress.cloud",
|
|
14016
|
-
"version": "1.
|
|
14044
|
+
"version": "1.44.0",
|
|
14017
14045
|
"prefix": "v1"
|
|
14018
14046
|
},
|
|
14019
14047
|
"errors": [
|
|
@@ -14514,6 +14542,14 @@ export const state = {
|
|
|
14514
14542
|
"minLength": 28,
|
|
14515
14543
|
"maxLength": 36
|
|
14516
14544
|
},
|
|
14545
|
+
"integrationAlias": {
|
|
14546
|
+
"type": "string",
|
|
14547
|
+
"maxLength": 200
|
|
14548
|
+
},
|
|
14549
|
+
"integrationInterfaceAlias": {
|
|
14550
|
+
"type": "string",
|
|
14551
|
+
"maxLength": 200
|
|
14552
|
+
},
|
|
14517
14553
|
"interfaceId": {
|
|
14518
14554
|
"type": "string",
|
|
14519
14555
|
"minLength": 28,
|
|
@@ -14522,12 +14558,36 @@ export const state = {
|
|
|
14522
14558
|
},
|
|
14523
14559
|
"required": [
|
|
14524
14560
|
"integrationId",
|
|
14561
|
+
"integrationAlias",
|
|
14525
14562
|
"interfaceId"
|
|
14526
14563
|
],
|
|
14527
14564
|
"additionalProperties": false
|
|
14528
14565
|
},
|
|
14529
14566
|
"description": "A mapping of plugin interface aliases to their backing integrations"
|
|
14530
14567
|
},
|
|
14568
|
+
"integrations": {
|
|
14569
|
+
"type": "object",
|
|
14570
|
+
"additionalProperties": {
|
|
14571
|
+
"type": "object",
|
|
14572
|
+
"properties": {
|
|
14573
|
+
"integrationId": {
|
|
14574
|
+
"type": "string",
|
|
14575
|
+
"minLength": 28,
|
|
14576
|
+
"maxLength": 36
|
|
14577
|
+
},
|
|
14578
|
+
"integrationAlias": {
|
|
14579
|
+
"type": "string",
|
|
14580
|
+
"maxLength": 200
|
|
14581
|
+
}
|
|
14582
|
+
},
|
|
14583
|
+
"required": [
|
|
14584
|
+
"integrationId",
|
|
14585
|
+
"integrationAlias"
|
|
14586
|
+
],
|
|
14587
|
+
"additionalProperties": false
|
|
14588
|
+
},
|
|
14589
|
+
"description": "A mapping of plugin integration aliases to their backing integrations"
|
|
14590
|
+
},
|
|
14531
14591
|
"id": {
|
|
14532
14592
|
"type": "string",
|
|
14533
14593
|
"minLength": 28,
|