@botpress/api 1.10.0 → 1.12.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 +124 -586
- package/dist/src/gen/admin/state.d.ts +22 -0
- package/dist/src/gen/runtime/state.d.ts +1 -5
- package/dist/src/gen/state.d.ts +23 -5
- package/package.json +1 -1
- package/src/gen/admin/openapi.json +1 -1
- package/src/gen/admin/state.ts +31 -1
- package/src/gen/files/openapi.json +1 -1
- package/src/gen/files/state.ts +1 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/runtime/openapi.json +1 -1
- package/src/gen/runtime/state.ts +3 -7
- package/src/gen/state.ts +33 -7
- package/src/gen/tables/openapi.json +1 -1
- package/src/gen/tables/state.ts +1 -1
package/src/gen/runtime/state.ts
CHANGED
|
@@ -1772,13 +1772,9 @@ export const state = {
|
|
|
1772
1772
|
},
|
|
1773
1773
|
"sandboxIdentifiers": {
|
|
1774
1774
|
"type": "object",
|
|
1775
|
-
"additionalProperties": {
|
|
1776
|
-
"type": "object",
|
|
1777
|
-
"nullable": true,
|
|
1778
|
-
"additionalProperties": false
|
|
1779
|
-
},
|
|
1780
1775
|
"nullable": true,
|
|
1781
|
-
"description": "**EXPERIMENTAL** Sandbox identifiers for the integration. Setting this to null will remove all sandbox identifiers.
|
|
1776
|
+
"description": "**EXPERIMENTAL** Sandbox identifiers for the integration. Setting this to null will remove all sandbox identifiers. This is an experimental feature meant to be used by specific integrations.",
|
|
1777
|
+
"additionalProperties": false
|
|
1782
1778
|
}
|
|
1783
1779
|
},
|
|
1784
1780
|
"title": "configureIntegrationBody",
|
|
@@ -2608,7 +2604,7 @@ export const state = {
|
|
|
2608
2604
|
"title": "Botpress API",
|
|
2609
2605
|
"description": "API for Botpress Cloud",
|
|
2610
2606
|
"server": "https://api.botpress.cloud",
|
|
2611
|
-
"version": "1.
|
|
2607
|
+
"version": "1.12.0",
|
|
2612
2608
|
"prefix": "v1"
|
|
2613
2609
|
},
|
|
2614
2610
|
"errors": [
|
package/src/gen/state.ts
CHANGED
|
@@ -1772,13 +1772,9 @@ export const state = {
|
|
|
1772
1772
|
},
|
|
1773
1773
|
"sandboxIdentifiers": {
|
|
1774
1774
|
"type": "object",
|
|
1775
|
-
"additionalProperties": {
|
|
1776
|
-
"type": "object",
|
|
1777
|
-
"nullable": true,
|
|
1778
|
-
"additionalProperties": false
|
|
1779
|
-
},
|
|
1780
1775
|
"nullable": true,
|
|
1781
|
-
"description": "**EXPERIMENTAL** Sandbox identifiers for the integration. Setting this to null will remove all sandbox identifiers.
|
|
1776
|
+
"description": "**EXPERIMENTAL** Sandbox identifiers for the integration. Setting this to null will remove all sandbox identifiers. This is an experimental feature meant to be used by specific integrations.",
|
|
1777
|
+
"additionalProperties": false
|
|
1782
1778
|
}
|
|
1783
1779
|
},
|
|
1784
1780
|
"title": "configureIntegrationBody",
|
|
@@ -14485,14 +14481,44 @@ export const state = {
|
|
|
14485
14481
|
"items": {
|
|
14486
14482
|
"type": "object",
|
|
14487
14483
|
"properties": {
|
|
14484
|
+
"key": {
|
|
14485
|
+
"type": "string"
|
|
14486
|
+
},
|
|
14488
14487
|
"date": {
|
|
14489
14488
|
"type": "string"
|
|
14490
14489
|
},
|
|
14491
14490
|
"value": {
|
|
14492
14491
|
"type": "number"
|
|
14492
|
+
},
|
|
14493
|
+
"metadata": {
|
|
14494
|
+
"type": "object",
|
|
14495
|
+
"properties": {
|
|
14496
|
+
"botId": {
|
|
14497
|
+
"type": "string"
|
|
14498
|
+
},
|
|
14499
|
+
"type": {
|
|
14500
|
+
"type": "string",
|
|
14501
|
+
"enum": [
|
|
14502
|
+
"IntegrationAction",
|
|
14503
|
+
"FileIndexing"
|
|
14504
|
+
]
|
|
14505
|
+
},
|
|
14506
|
+
"subtype": {
|
|
14507
|
+
"type": "string"
|
|
14508
|
+
},
|
|
14509
|
+
"source": {
|
|
14510
|
+
"type": "string"
|
|
14511
|
+
}
|
|
14512
|
+
},
|
|
14513
|
+
"required": [
|
|
14514
|
+
"botId",
|
|
14515
|
+
"type",
|
|
14516
|
+
"subtype"
|
|
14517
|
+
]
|
|
14493
14518
|
}
|
|
14494
14519
|
},
|
|
14495
14520
|
"required": [
|
|
14521
|
+
"key",
|
|
14496
14522
|
"date",
|
|
14497
14523
|
"value"
|
|
14498
14524
|
]
|
|
@@ -17438,7 +17464,7 @@ export const state = {
|
|
|
17438
17464
|
"title": "Botpress API",
|
|
17439
17465
|
"description": "API for Botpress Cloud",
|
|
17440
17466
|
"server": "https://api.botpress.cloud",
|
|
17441
|
-
"version": "1.
|
|
17467
|
+
"version": "1.12.0",
|
|
17442
17468
|
"prefix": "v1"
|
|
17443
17469
|
},
|
|
17444
17470
|
"errors": [
|