@botpress/api 0.15.5 → 0.15.6
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/gen/state.d.ts +13 -0
- package/dist/index.js +32 -9
- package/package.json +1 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/state.ts +26 -1
package/src/gen/state.ts
CHANGED
|
@@ -2367,6 +2367,11 @@ export const state = {
|
|
|
2367
2367
|
},
|
|
2368
2368
|
description: "Media files associated with the [Bot](#schema_bot)",
|
|
2369
2369
|
},
|
|
2370
|
+
alwaysAlive: {
|
|
2371
|
+
type: "boolean",
|
|
2372
|
+
description:
|
|
2373
|
+
"Indicates if the [Bot](#schema_bot) should be executed in accelerated mode",
|
|
2374
|
+
},
|
|
2370
2375
|
},
|
|
2371
2376
|
title: "updateBotBody",
|
|
2372
2377
|
additionalProperties: false,
|
|
@@ -3494,6 +3499,7 @@ export const state = {
|
|
|
3494
3499
|
"ai_spend",
|
|
3495
3500
|
"openai_spend",
|
|
3496
3501
|
"bing_search_spend",
|
|
3502
|
+
"always_alive",
|
|
3497
3503
|
],
|
|
3498
3504
|
required: true,
|
|
3499
3505
|
},
|
|
@@ -3554,6 +3560,7 @@ export const state = {
|
|
|
3554
3560
|
"ai_spend",
|
|
3555
3561
|
"openai_spend",
|
|
3556
3562
|
"bing_search_spend",
|
|
3563
|
+
"always_alive",
|
|
3557
3564
|
],
|
|
3558
3565
|
required: true,
|
|
3559
3566
|
},
|
|
@@ -3623,6 +3630,7 @@ export const state = {
|
|
|
3623
3630
|
"ai_spend",
|
|
3624
3631
|
"openai_spend",
|
|
3625
3632
|
"bing_search_spend",
|
|
3633
|
+
"always_alive",
|
|
3626
3634
|
],
|
|
3627
3635
|
required: true,
|
|
3628
3636
|
},
|
|
@@ -3664,6 +3672,7 @@ export const state = {
|
|
|
3664
3672
|
"ai_spend",
|
|
3665
3673
|
"openai_spend",
|
|
3666
3674
|
"bing_search_spend",
|
|
3675
|
+
"always_alive",
|
|
3667
3676
|
],
|
|
3668
3677
|
description: "Usage type that can be used",
|
|
3669
3678
|
},
|
|
@@ -3733,6 +3742,7 @@ export const state = {
|
|
|
3733
3742
|
"ai_spend",
|
|
3734
3743
|
"openai_spend",
|
|
3735
3744
|
"bing_search_spend",
|
|
3745
|
+
"always_alive",
|
|
3736
3746
|
],
|
|
3737
3747
|
description: "Usage type that can be used",
|
|
3738
3748
|
},
|
|
@@ -5425,6 +5435,7 @@ export const state = {
|
|
|
5425
5435
|
"ai_spend",
|
|
5426
5436
|
"openai_spend",
|
|
5427
5437
|
"bing_search_spend",
|
|
5438
|
+
"always_alive",
|
|
5428
5439
|
],
|
|
5429
5440
|
required: true,
|
|
5430
5441
|
},
|
|
@@ -5479,6 +5490,7 @@ export const state = {
|
|
|
5479
5490
|
"ai_spend",
|
|
5480
5491
|
"openai_spend",
|
|
5481
5492
|
"bing_search_spend",
|
|
5493
|
+
"always_alive",
|
|
5482
5494
|
],
|
|
5483
5495
|
required: true,
|
|
5484
5496
|
},
|
|
@@ -5758,7 +5770,7 @@ export const state = {
|
|
|
5758
5770
|
title: "Botpress API",
|
|
5759
5771
|
description: "API for Botpress Cloud",
|
|
5760
5772
|
server: "https://api.botpress.cloud",
|
|
5761
|
-
version: "0.15.
|
|
5773
|
+
version: "0.15.6",
|
|
5762
5774
|
prefix: "v1",
|
|
5763
5775
|
},
|
|
5764
5776
|
errors: [
|
|
@@ -6372,6 +6384,16 @@ export const state = {
|
|
|
6372
6384
|
type: "string",
|
|
6373
6385
|
description: "Id of the user that created the bot",
|
|
6374
6386
|
},
|
|
6387
|
+
alwaysAlive: {
|
|
6388
|
+
type: "boolean",
|
|
6389
|
+
description:
|
|
6390
|
+
"Indicates if the [Bot](#schema_bot) should be executed in accelerated mode",
|
|
6391
|
+
},
|
|
6392
|
+
status: {
|
|
6393
|
+
type: "string",
|
|
6394
|
+
enum: ["active", "deploying"],
|
|
6395
|
+
description: "Status of the bot",
|
|
6396
|
+
},
|
|
6375
6397
|
medias: {
|
|
6376
6398
|
type: "array",
|
|
6377
6399
|
items: {
|
|
@@ -6406,6 +6428,8 @@ export const state = {
|
|
|
6406
6428
|
"recurringEvents",
|
|
6407
6429
|
"name",
|
|
6408
6430
|
"dev",
|
|
6431
|
+
"alwaysAlive",
|
|
6432
|
+
"status",
|
|
6409
6433
|
"medias",
|
|
6410
6434
|
],
|
|
6411
6435
|
additionalProperties: false,
|
|
@@ -6952,6 +6976,7 @@ export const state = {
|
|
|
6952
6976
|
"ai_spend",
|
|
6953
6977
|
"openai_spend",
|
|
6954
6978
|
"bing_search_spend",
|
|
6979
|
+
"always_alive",
|
|
6955
6980
|
],
|
|
6956
6981
|
description: "Usage type that can be used",
|
|
6957
6982
|
},
|