@botpress/api 1.28.0 → 1.28.2
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 +51 -0
- package/dist/index.js +205 -29
- package/dist/src/gen/admin/state.d.ts +76 -8
- package/dist/src/gen/files/state.d.ts +8 -0
- package/dist/src/gen/runtime/state.d.ts +8 -0
- package/dist/src/gen/state.d.ts +76 -8
- package/dist/src/gen/tables/state.d.ts +8 -0
- package/package.json +1 -2
- package/src/gen/admin/openapi.json +1 -1
- package/src/gen/admin/state.ts +89 -13
- package/src/gen/files/openapi.json +1 -1
- package/src/gen/files/state.ts +9 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/runtime/openapi.json +1 -1
- package/src/gen/runtime/state.ts +9 -1
- package/src/gen/state.ts +89 -13
- package/src/gen/tables/openapi.json +1 -1
- package/src/gen/tables/state.ts +9 -1
package/src/gen/runtime/state.ts
CHANGED
|
@@ -2602,7 +2602,7 @@ export const state = {
|
|
|
2602
2602
|
"title": "Botpress API",
|
|
2603
2603
|
"description": "API for Botpress Cloud",
|
|
2604
2604
|
"server": "https://api.botpress.cloud",
|
|
2605
|
-
"version": "1.28.
|
|
2605
|
+
"version": "1.28.2",
|
|
2606
2606
|
"prefix": "v1"
|
|
2607
2607
|
},
|
|
2608
2608
|
"errors": [
|
|
@@ -3083,6 +3083,10 @@ export const state = {
|
|
|
3083
3083
|
},
|
|
3084
3084
|
"description": "A mapping of plugin aliases to their configuration"
|
|
3085
3085
|
},
|
|
3086
|
+
"maxExecutionTime": {
|
|
3087
|
+
"type": "number",
|
|
3088
|
+
"description": "Maximum execution time of the bot (in seconds)."
|
|
3089
|
+
},
|
|
3086
3090
|
"user": {
|
|
3087
3091
|
"type": "object",
|
|
3088
3092
|
"properties": {
|
|
@@ -3534,6 +3538,10 @@ export const state = {
|
|
|
3534
3538
|
},
|
|
3535
3539
|
"additionalProperties": false
|
|
3536
3540
|
},
|
|
3541
|
+
"maxExecutionTime": {
|
|
3542
|
+
"type": "number",
|
|
3543
|
+
"description": "Maximum execution time of the integration (in seconds)."
|
|
3544
|
+
},
|
|
3537
3545
|
"url": {
|
|
3538
3546
|
"type": "string",
|
|
3539
3547
|
"maxLength": 2000,
|
package/src/gen/state.ts
CHANGED
|
@@ -3339,6 +3339,10 @@ export const state = {
|
|
|
3339
3339
|
},
|
|
3340
3340
|
"additionalProperties": false
|
|
3341
3341
|
},
|
|
3342
|
+
"maxExecutionTime": {
|
|
3343
|
+
"type": "number",
|
|
3344
|
+
"description": "Maximum execution time of the integration (in seconds)."
|
|
3345
|
+
},
|
|
3342
3346
|
"url": {
|
|
3343
3347
|
"type": "string",
|
|
3344
3348
|
"maxLength": 2000,
|
|
@@ -4080,6 +4084,10 @@ export const state = {
|
|
|
4080
4084
|
},
|
|
4081
4085
|
"additionalProperties": false
|
|
4082
4086
|
},
|
|
4087
|
+
"maxExecutionTime": {
|
|
4088
|
+
"type": "number",
|
|
4089
|
+
"description": "Maximum execution time of the integration (in seconds)."
|
|
4090
|
+
},
|
|
4083
4091
|
"url": {
|
|
4084
4092
|
"type": "string",
|
|
4085
4093
|
"maxLength": 2000,
|
|
@@ -7231,6 +7239,10 @@ export const state = {
|
|
|
7231
7239
|
"blocked": {
|
|
7232
7240
|
"type": "boolean"
|
|
7233
7241
|
},
|
|
7242
|
+
"maxExecutionTime": {
|
|
7243
|
+
"type": "integer",
|
|
7244
|
+
"description": "Maximum execution time (in seconds)."
|
|
7245
|
+
},
|
|
7234
7246
|
"alwaysAlive": {
|
|
7235
7247
|
"type": "boolean",
|
|
7236
7248
|
"description": "Indicates if the [Bot](#schema_bot) should be in always alive mode"
|
|
@@ -11684,9 +11696,21 @@ export const state = {
|
|
|
11684
11696
|
"additionalProperties": false
|
|
11685
11697
|
}
|
|
11686
11698
|
},
|
|
11687
|
-
"
|
|
11688
|
-
"type": "
|
|
11689
|
-
"
|
|
11699
|
+
"extraOperations": {
|
|
11700
|
+
"type": "object",
|
|
11701
|
+
"additionalProperties": {
|
|
11702
|
+
"type": "object",
|
|
11703
|
+
"properties": {
|
|
11704
|
+
"enabled": {
|
|
11705
|
+
"type": "boolean"
|
|
11706
|
+
}
|
|
11707
|
+
},
|
|
11708
|
+
"required": [
|
|
11709
|
+
"enabled"
|
|
11710
|
+
],
|
|
11711
|
+
"additionalProperties": false
|
|
11712
|
+
},
|
|
11713
|
+
"description": "**EXPERIMENTAL** Extra integration operations that should be sent or not to the integration instances. The key is the operation name."
|
|
11690
11714
|
},
|
|
11691
11715
|
"secrets": {
|
|
11692
11716
|
"type": "object",
|
|
@@ -12278,9 +12302,21 @@ export const state = {
|
|
|
12278
12302
|
"additionalProperties": false
|
|
12279
12303
|
}
|
|
12280
12304
|
},
|
|
12281
|
-
"
|
|
12282
|
-
"type": "
|
|
12283
|
-
"
|
|
12305
|
+
"extraOperations": {
|
|
12306
|
+
"type": "object",
|
|
12307
|
+
"additionalProperties": {
|
|
12308
|
+
"type": "object",
|
|
12309
|
+
"properties": {
|
|
12310
|
+
"enabled": {
|
|
12311
|
+
"type": "boolean"
|
|
12312
|
+
}
|
|
12313
|
+
},
|
|
12314
|
+
"required": [
|
|
12315
|
+
"enabled"
|
|
12316
|
+
],
|
|
12317
|
+
"additionalProperties": false
|
|
12318
|
+
},
|
|
12319
|
+
"description": "**EXPERIMENTAL** Extra integration operations that should be sent or not to the integration instances. The key is the operation name."
|
|
12284
12320
|
},
|
|
12285
12321
|
"secrets": {
|
|
12286
12322
|
"type": "object",
|
|
@@ -12445,9 +12481,21 @@ export const state = {
|
|
|
12445
12481
|
},
|
|
12446
12482
|
"description": "Additional configuration definitions of the integration"
|
|
12447
12483
|
},
|
|
12448
|
-
"
|
|
12449
|
-
"type": "
|
|
12450
|
-
"
|
|
12484
|
+
"extraOperations": {
|
|
12485
|
+
"type": "object",
|
|
12486
|
+
"additionalProperties": {
|
|
12487
|
+
"type": "object",
|
|
12488
|
+
"properties": {
|
|
12489
|
+
"enabled": {
|
|
12490
|
+
"type": "boolean"
|
|
12491
|
+
}
|
|
12492
|
+
},
|
|
12493
|
+
"required": [
|
|
12494
|
+
"enabled"
|
|
12495
|
+
],
|
|
12496
|
+
"additionalProperties": false
|
|
12497
|
+
},
|
|
12498
|
+
"description": "**EXPERIMENTAL** Extra integration operations that should be sent or not to the integration instances. The key is the operation name."
|
|
12451
12499
|
},
|
|
12452
12500
|
"channels": {
|
|
12453
12501
|
"type": "object",
|
|
@@ -12563,6 +12611,10 @@ export const state = {
|
|
|
12563
12611
|
"additionalProperties": false
|
|
12564
12612
|
}
|
|
12565
12613
|
},
|
|
12614
|
+
"maxExecutionTime": {
|
|
12615
|
+
"type": "integer",
|
|
12616
|
+
"description": "Maximum execution time of the integration (in seconds)."
|
|
12617
|
+
},
|
|
12566
12618
|
"identifier": {
|
|
12567
12619
|
"type": "object",
|
|
12568
12620
|
"properties": {
|
|
@@ -13041,9 +13093,21 @@ export const state = {
|
|
|
13041
13093
|
},
|
|
13042
13094
|
"description": "Additional configuration definitions of the integration"
|
|
13043
13095
|
},
|
|
13044
|
-
"
|
|
13045
|
-
"type": "
|
|
13046
|
-
"
|
|
13096
|
+
"extraOperations": {
|
|
13097
|
+
"type": "object",
|
|
13098
|
+
"additionalProperties": {
|
|
13099
|
+
"type": "object",
|
|
13100
|
+
"properties": {
|
|
13101
|
+
"enabled": {
|
|
13102
|
+
"type": "boolean"
|
|
13103
|
+
}
|
|
13104
|
+
},
|
|
13105
|
+
"required": [
|
|
13106
|
+
"enabled"
|
|
13107
|
+
],
|
|
13108
|
+
"additionalProperties": false
|
|
13109
|
+
},
|
|
13110
|
+
"description": "**EXPERIMENTAL** Extra integration operations that should be sent or not to the integration instances. The key is the operation name."
|
|
13047
13111
|
},
|
|
13048
13112
|
"channels": {
|
|
13049
13113
|
"type": "object",
|
|
@@ -13159,6 +13223,10 @@ export const state = {
|
|
|
13159
13223
|
"additionalProperties": false
|
|
13160
13224
|
}
|
|
13161
13225
|
},
|
|
13226
|
+
"maxExecutionTime": {
|
|
13227
|
+
"type": "integer",
|
|
13228
|
+
"description": "Maximum execution time of the integration (in seconds)."
|
|
13229
|
+
},
|
|
13162
13230
|
"identifier": {
|
|
13163
13231
|
"type": "object",
|
|
13164
13232
|
"properties": {
|
|
@@ -19217,7 +19285,7 @@ export const state = {
|
|
|
19217
19285
|
"title": "Botpress API",
|
|
19218
19286
|
"description": "API for Botpress Cloud",
|
|
19219
19287
|
"server": "https://api.botpress.cloud",
|
|
19220
|
-
"version": "1.28.
|
|
19288
|
+
"version": "1.28.2",
|
|
19221
19289
|
"prefix": "v1"
|
|
19222
19290
|
},
|
|
19223
19291
|
"errors": [
|
|
@@ -19882,6 +19950,10 @@ export const state = {
|
|
|
19882
19950
|
},
|
|
19883
19951
|
"description": "A mapping of plugin aliases to their configuration"
|
|
19884
19952
|
},
|
|
19953
|
+
"maxExecutionTime": {
|
|
19954
|
+
"type": "number",
|
|
19955
|
+
"description": "Maximum execution time of the bot (in seconds)."
|
|
19956
|
+
},
|
|
19885
19957
|
"user": {
|
|
19886
19958
|
"type": "object",
|
|
19887
19959
|
"properties": {
|
|
@@ -20333,6 +20405,10 @@ export const state = {
|
|
|
20333
20405
|
},
|
|
20334
20406
|
"additionalProperties": false
|
|
20335
20407
|
},
|
|
20408
|
+
"maxExecutionTime": {
|
|
20409
|
+
"type": "number",
|
|
20410
|
+
"description": "Maximum execution time of the integration (in seconds)."
|
|
20411
|
+
},
|
|
20336
20412
|
"url": {
|
|
20337
20413
|
"type": "string",
|
|
20338
20414
|
"maxLength": 2000,
|