@botpress/api 1.42.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 +579 -351
- package/dist/src/gen/admin/state.d.ts +73 -0
- package/dist/src/gen/files/state.d.ts +32 -0
- package/dist/src/gen/runtime/state.d.ts +32 -0
- package/dist/src/gen/state.d.ts +73 -0
- package/dist/src/gen/tables/state.d.ts +32 -0
- package/package.json +1 -1
- package/src/gen/admin/openapi.json +1 -1
- package/src/gen/admin/state.ts +91 -6
- package/src/gen/files/openapi.json +1 -1
- package/src/gen/files/state.ts +39 -2
- package/src/gen/openapi.json +1 -1
- package/src/gen/runtime/openapi.json +1 -1
- package/src/gen/runtime/state.ts +39 -2
- package/src/gen/state.ts +91 -6
- package/src/gen/tables/openapi.json +1 -1
- package/src/gen/tables/state.ts +39 -2
|
@@ -4373,6 +4373,31 @@ export declare const state: {
|
|
|
4373
4373
|
integrationId: {
|
|
4374
4374
|
type: "string";
|
|
4375
4375
|
};
|
|
4376
|
+
integrationAlias: {
|
|
4377
|
+
type: "string";
|
|
4378
|
+
description: string;
|
|
4379
|
+
};
|
|
4380
|
+
integrationInterfaceAlias: {
|
|
4381
|
+
type: "string";
|
|
4382
|
+
description: string;
|
|
4383
|
+
};
|
|
4384
|
+
};
|
|
4385
|
+
required: string[];
|
|
4386
|
+
additionalProperties: false;
|
|
4387
|
+
};
|
|
4388
|
+
description: string;
|
|
4389
|
+
};
|
|
4390
|
+
integrations: {
|
|
4391
|
+
type: "object";
|
|
4392
|
+
additionalProperties: {
|
|
4393
|
+
type: "object";
|
|
4394
|
+
properties: {
|
|
4395
|
+
integrationId: {
|
|
4396
|
+
type: "string";
|
|
4397
|
+
};
|
|
4398
|
+
integrationAlias: {
|
|
4399
|
+
type: "string";
|
|
4400
|
+
};
|
|
4376
4401
|
};
|
|
4377
4402
|
required: string[];
|
|
4378
4403
|
additionalProperties: false;
|
|
@@ -6235,6 +6260,10 @@ export declare const state: {
|
|
|
6235
6260
|
handle: {
|
|
6236
6261
|
type: "string";
|
|
6237
6262
|
};
|
|
6263
|
+
activeTrialId: {
|
|
6264
|
+
type: "string";
|
|
6265
|
+
nullable: true;
|
|
6266
|
+
};
|
|
6238
6267
|
};
|
|
6239
6268
|
required: string[];
|
|
6240
6269
|
title: string;
|
|
@@ -6392,6 +6421,10 @@ export declare const state: {
|
|
|
6392
6421
|
handle: {
|
|
6393
6422
|
type: "string";
|
|
6394
6423
|
};
|
|
6424
|
+
activeTrialId: {
|
|
6425
|
+
type: "string";
|
|
6426
|
+
nullable: true;
|
|
6427
|
+
};
|
|
6395
6428
|
};
|
|
6396
6429
|
required: string[];
|
|
6397
6430
|
title: string;
|
|
@@ -6781,6 +6814,10 @@ export declare const state: {
|
|
|
6781
6814
|
handle: {
|
|
6782
6815
|
type: "string";
|
|
6783
6816
|
};
|
|
6817
|
+
activeTrialId: {
|
|
6818
|
+
type: "string";
|
|
6819
|
+
nullable: true;
|
|
6820
|
+
};
|
|
6784
6821
|
};
|
|
6785
6822
|
required: string[];
|
|
6786
6823
|
title: string;
|
|
@@ -6932,6 +6969,10 @@ export declare const state: {
|
|
|
6932
6969
|
handle: {
|
|
6933
6970
|
type: "string";
|
|
6934
6971
|
};
|
|
6972
|
+
activeTrialId: {
|
|
6973
|
+
type: "string";
|
|
6974
|
+
nullable: true;
|
|
6975
|
+
};
|
|
6935
6976
|
};
|
|
6936
6977
|
required: string[];
|
|
6937
6978
|
title: string;
|
|
@@ -12722,6 +12763,14 @@ export declare const state: {
|
|
|
12722
12763
|
minLength: number;
|
|
12723
12764
|
maxLength: number;
|
|
12724
12765
|
};
|
|
12766
|
+
integrationAlias: {
|
|
12767
|
+
type: "string";
|
|
12768
|
+
maxLength: number;
|
|
12769
|
+
};
|
|
12770
|
+
integrationInterfaceAlias: {
|
|
12771
|
+
type: "string";
|
|
12772
|
+
maxLength: number;
|
|
12773
|
+
};
|
|
12725
12774
|
interfaceId: {
|
|
12726
12775
|
type: "string";
|
|
12727
12776
|
minLength: number;
|
|
@@ -12733,6 +12782,26 @@ export declare const state: {
|
|
|
12733
12782
|
};
|
|
12734
12783
|
description: string;
|
|
12735
12784
|
};
|
|
12785
|
+
integrations: {
|
|
12786
|
+
type: "object";
|
|
12787
|
+
additionalProperties: {
|
|
12788
|
+
type: "object";
|
|
12789
|
+
properties: {
|
|
12790
|
+
integrationId: {
|
|
12791
|
+
type: "string";
|
|
12792
|
+
minLength: number;
|
|
12793
|
+
maxLength: number;
|
|
12794
|
+
};
|
|
12795
|
+
integrationAlias: {
|
|
12796
|
+
type: "string";
|
|
12797
|
+
maxLength: number;
|
|
12798
|
+
};
|
|
12799
|
+
};
|
|
12800
|
+
required: string[];
|
|
12801
|
+
additionalProperties: false;
|
|
12802
|
+
};
|
|
12803
|
+
description: string;
|
|
12804
|
+
};
|
|
12736
12805
|
id: {
|
|
12737
12806
|
type: "string";
|
|
12738
12807
|
minLength: number;
|
|
@@ -14314,6 +14383,10 @@ export declare const state: {
|
|
|
14314
14383
|
handle: {
|
|
14315
14384
|
type: "string";
|
|
14316
14385
|
};
|
|
14386
|
+
activeTrialId: {
|
|
14387
|
+
type: "string";
|
|
14388
|
+
nullable: true;
|
|
14389
|
+
};
|
|
14317
14390
|
};
|
|
14318
14391
|
required: string[];
|
|
14319
14392
|
additionalProperties: false;
|
|
@@ -1822,6 +1822,14 @@ export declare const state: {
|
|
|
1822
1822
|
minLength: number;
|
|
1823
1823
|
maxLength: number;
|
|
1824
1824
|
};
|
|
1825
|
+
integrationAlias: {
|
|
1826
|
+
type: "string";
|
|
1827
|
+
maxLength: number;
|
|
1828
|
+
};
|
|
1829
|
+
integrationInterfaceAlias: {
|
|
1830
|
+
type: "string";
|
|
1831
|
+
maxLength: number;
|
|
1832
|
+
};
|
|
1825
1833
|
interfaceId: {
|
|
1826
1834
|
type: "string";
|
|
1827
1835
|
minLength: number;
|
|
@@ -1833,6 +1841,26 @@ export declare const state: {
|
|
|
1833
1841
|
};
|
|
1834
1842
|
description: string;
|
|
1835
1843
|
};
|
|
1844
|
+
integrations: {
|
|
1845
|
+
type: "object";
|
|
1846
|
+
additionalProperties: {
|
|
1847
|
+
type: "object";
|
|
1848
|
+
properties: {
|
|
1849
|
+
integrationId: {
|
|
1850
|
+
type: "string";
|
|
1851
|
+
minLength: number;
|
|
1852
|
+
maxLength: number;
|
|
1853
|
+
};
|
|
1854
|
+
integrationAlias: {
|
|
1855
|
+
type: "string";
|
|
1856
|
+
maxLength: number;
|
|
1857
|
+
};
|
|
1858
|
+
};
|
|
1859
|
+
required: string[];
|
|
1860
|
+
additionalProperties: false;
|
|
1861
|
+
};
|
|
1862
|
+
description: string;
|
|
1863
|
+
};
|
|
1836
1864
|
id: {
|
|
1837
1865
|
type: "string";
|
|
1838
1866
|
minLength: number;
|
|
@@ -3414,6 +3442,10 @@ export declare const state: {
|
|
|
3414
3442
|
handle: {
|
|
3415
3443
|
type: "string";
|
|
3416
3444
|
};
|
|
3445
|
+
activeTrialId: {
|
|
3446
|
+
type: "string";
|
|
3447
|
+
nullable: true;
|
|
3448
|
+
};
|
|
3417
3449
|
};
|
|
3418
3450
|
required: string[];
|
|
3419
3451
|
title: string;
|
|
@@ -2696,6 +2696,14 @@ export declare const state: {
|
|
|
2696
2696
|
minLength: number;
|
|
2697
2697
|
maxLength: number;
|
|
2698
2698
|
};
|
|
2699
|
+
integrationAlias: {
|
|
2700
|
+
type: "string";
|
|
2701
|
+
maxLength: number;
|
|
2702
|
+
};
|
|
2703
|
+
integrationInterfaceAlias: {
|
|
2704
|
+
type: "string";
|
|
2705
|
+
maxLength: number;
|
|
2706
|
+
};
|
|
2699
2707
|
interfaceId: {
|
|
2700
2708
|
type: "string";
|
|
2701
2709
|
minLength: number;
|
|
@@ -2707,6 +2715,26 @@ export declare const state: {
|
|
|
2707
2715
|
};
|
|
2708
2716
|
description: string;
|
|
2709
2717
|
};
|
|
2718
|
+
integrations: {
|
|
2719
|
+
type: "object";
|
|
2720
|
+
additionalProperties: {
|
|
2721
|
+
type: "object";
|
|
2722
|
+
properties: {
|
|
2723
|
+
integrationId: {
|
|
2724
|
+
type: "string";
|
|
2725
|
+
minLength: number;
|
|
2726
|
+
maxLength: number;
|
|
2727
|
+
};
|
|
2728
|
+
integrationAlias: {
|
|
2729
|
+
type: "string";
|
|
2730
|
+
maxLength: number;
|
|
2731
|
+
};
|
|
2732
|
+
};
|
|
2733
|
+
required: string[];
|
|
2734
|
+
additionalProperties: false;
|
|
2735
|
+
};
|
|
2736
|
+
description: string;
|
|
2737
|
+
};
|
|
2710
2738
|
id: {
|
|
2711
2739
|
type: "string";
|
|
2712
2740
|
minLength: number;
|
|
@@ -4288,6 +4316,10 @@ export declare const state: {
|
|
|
4288
4316
|
handle: {
|
|
4289
4317
|
type: "string";
|
|
4290
4318
|
};
|
|
4319
|
+
activeTrialId: {
|
|
4320
|
+
type: "string";
|
|
4321
|
+
nullable: true;
|
|
4322
|
+
};
|
|
4291
4323
|
};
|
|
4292
4324
|
required: string[];
|
|
4293
4325
|
additionalProperties: false;
|
package/dist/src/gen/state.d.ts
CHANGED
|
@@ -6747,6 +6747,31 @@ export declare const state: {
|
|
|
6747
6747
|
integrationId: {
|
|
6748
6748
|
type: "string";
|
|
6749
6749
|
};
|
|
6750
|
+
integrationAlias: {
|
|
6751
|
+
type: "string";
|
|
6752
|
+
description: string;
|
|
6753
|
+
};
|
|
6754
|
+
integrationInterfaceAlias: {
|
|
6755
|
+
type: "string";
|
|
6756
|
+
description: string;
|
|
6757
|
+
};
|
|
6758
|
+
};
|
|
6759
|
+
required: string[];
|
|
6760
|
+
additionalProperties: false;
|
|
6761
|
+
};
|
|
6762
|
+
description: string;
|
|
6763
|
+
};
|
|
6764
|
+
integrations: {
|
|
6765
|
+
type: "object";
|
|
6766
|
+
additionalProperties: {
|
|
6767
|
+
type: "object";
|
|
6768
|
+
properties: {
|
|
6769
|
+
integrationId: {
|
|
6770
|
+
type: "string";
|
|
6771
|
+
};
|
|
6772
|
+
integrationAlias: {
|
|
6773
|
+
type: "string";
|
|
6774
|
+
};
|
|
6750
6775
|
};
|
|
6751
6776
|
required: string[];
|
|
6752
6777
|
additionalProperties: false;
|
|
@@ -8609,6 +8634,10 @@ export declare const state: {
|
|
|
8609
8634
|
handle: {
|
|
8610
8635
|
type: "string";
|
|
8611
8636
|
};
|
|
8637
|
+
activeTrialId: {
|
|
8638
|
+
type: "string";
|
|
8639
|
+
nullable: true;
|
|
8640
|
+
};
|
|
8612
8641
|
};
|
|
8613
8642
|
required: string[];
|
|
8614
8643
|
title: string;
|
|
@@ -8766,6 +8795,10 @@ export declare const state: {
|
|
|
8766
8795
|
handle: {
|
|
8767
8796
|
type: "string";
|
|
8768
8797
|
};
|
|
8798
|
+
activeTrialId: {
|
|
8799
|
+
type: "string";
|
|
8800
|
+
nullable: true;
|
|
8801
|
+
};
|
|
8769
8802
|
};
|
|
8770
8803
|
required: string[];
|
|
8771
8804
|
title: string;
|
|
@@ -9155,6 +9188,10 @@ export declare const state: {
|
|
|
9155
9188
|
handle: {
|
|
9156
9189
|
type: "string";
|
|
9157
9190
|
};
|
|
9191
|
+
activeTrialId: {
|
|
9192
|
+
type: "string";
|
|
9193
|
+
nullable: true;
|
|
9194
|
+
};
|
|
9158
9195
|
};
|
|
9159
9196
|
required: string[];
|
|
9160
9197
|
title: string;
|
|
@@ -9306,6 +9343,10 @@ export declare const state: {
|
|
|
9306
9343
|
handle: {
|
|
9307
9344
|
type: "string";
|
|
9308
9345
|
};
|
|
9346
|
+
activeTrialId: {
|
|
9347
|
+
type: "string";
|
|
9348
|
+
nullable: true;
|
|
9349
|
+
};
|
|
9309
9350
|
};
|
|
9310
9351
|
required: string[];
|
|
9311
9352
|
title: string;
|
|
@@ -17842,6 +17883,14 @@ export declare const state: {
|
|
|
17842
17883
|
minLength: number;
|
|
17843
17884
|
maxLength: number;
|
|
17844
17885
|
};
|
|
17886
|
+
integrationAlias: {
|
|
17887
|
+
type: "string";
|
|
17888
|
+
maxLength: number;
|
|
17889
|
+
};
|
|
17890
|
+
integrationInterfaceAlias: {
|
|
17891
|
+
type: "string";
|
|
17892
|
+
maxLength: number;
|
|
17893
|
+
};
|
|
17845
17894
|
interfaceId: {
|
|
17846
17895
|
type: "string";
|
|
17847
17896
|
minLength: number;
|
|
@@ -17853,6 +17902,26 @@ export declare const state: {
|
|
|
17853
17902
|
};
|
|
17854
17903
|
description: string;
|
|
17855
17904
|
};
|
|
17905
|
+
integrations: {
|
|
17906
|
+
type: "object";
|
|
17907
|
+
additionalProperties: {
|
|
17908
|
+
type: "object";
|
|
17909
|
+
properties: {
|
|
17910
|
+
integrationId: {
|
|
17911
|
+
type: "string";
|
|
17912
|
+
minLength: number;
|
|
17913
|
+
maxLength: number;
|
|
17914
|
+
};
|
|
17915
|
+
integrationAlias: {
|
|
17916
|
+
type: "string";
|
|
17917
|
+
maxLength: number;
|
|
17918
|
+
};
|
|
17919
|
+
};
|
|
17920
|
+
required: string[];
|
|
17921
|
+
additionalProperties: false;
|
|
17922
|
+
};
|
|
17923
|
+
description: string;
|
|
17924
|
+
};
|
|
17856
17925
|
id: {
|
|
17857
17926
|
type: "string";
|
|
17858
17927
|
minLength: number;
|
|
@@ -19434,6 +19503,10 @@ export declare const state: {
|
|
|
19434
19503
|
handle: {
|
|
19435
19504
|
type: "string";
|
|
19436
19505
|
};
|
|
19506
|
+
activeTrialId: {
|
|
19507
|
+
type: "string";
|
|
19508
|
+
nullable: true;
|
|
19509
|
+
};
|
|
19437
19510
|
};
|
|
19438
19511
|
required: string[];
|
|
19439
19512
|
title: string;
|
|
@@ -1363,6 +1363,14 @@ export declare const state: {
|
|
|
1363
1363
|
minLength: number;
|
|
1364
1364
|
maxLength: number;
|
|
1365
1365
|
};
|
|
1366
|
+
integrationAlias: {
|
|
1367
|
+
type: "string";
|
|
1368
|
+
maxLength: number;
|
|
1369
|
+
};
|
|
1370
|
+
integrationInterfaceAlias: {
|
|
1371
|
+
type: "string";
|
|
1372
|
+
maxLength: number;
|
|
1373
|
+
};
|
|
1366
1374
|
interfaceId: {
|
|
1367
1375
|
type: "string";
|
|
1368
1376
|
minLength: number;
|
|
@@ -1374,6 +1382,26 @@ export declare const state: {
|
|
|
1374
1382
|
};
|
|
1375
1383
|
description: string;
|
|
1376
1384
|
};
|
|
1385
|
+
integrations: {
|
|
1386
|
+
type: "object";
|
|
1387
|
+
additionalProperties: {
|
|
1388
|
+
type: "object";
|
|
1389
|
+
properties: {
|
|
1390
|
+
integrationId: {
|
|
1391
|
+
type: "string";
|
|
1392
|
+
minLength: number;
|
|
1393
|
+
maxLength: number;
|
|
1394
|
+
};
|
|
1395
|
+
integrationAlias: {
|
|
1396
|
+
type: "string";
|
|
1397
|
+
maxLength: number;
|
|
1398
|
+
};
|
|
1399
|
+
};
|
|
1400
|
+
required: string[];
|
|
1401
|
+
additionalProperties: false;
|
|
1402
|
+
};
|
|
1403
|
+
description: string;
|
|
1404
|
+
};
|
|
1377
1405
|
id: {
|
|
1378
1406
|
type: "string";
|
|
1379
1407
|
minLength: number;
|
|
@@ -2955,6 +2983,10 @@ export declare const state: {
|
|
|
2955
2983
|
handle: {
|
|
2956
2984
|
type: "string";
|
|
2957
2985
|
};
|
|
2986
|
+
activeTrialId: {
|
|
2987
|
+
type: "string";
|
|
2988
|
+
nullable: true;
|
|
2989
|
+
};
|
|
2958
2990
|
};
|
|
2959
2991
|
required: string[];
|
|
2960
2992
|
title: string;
|