@botpress/api 1.8.0 → 1.9.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 +415 -29
- package/dist/src/gen/admin/state.d.ts +152 -7
- 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 +152 -7
- 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 +158 -13
- 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 +158 -13
- package/src/gen/tables/openapi.json +1 -1
- package/src/gen/tables/state.ts +33 -1
|
@@ -968,6 +968,14 @@ export declare const state: {
|
|
|
968
968
|
type: "object";
|
|
969
969
|
additionalProperties: true;
|
|
970
970
|
};
|
|
971
|
+
attributes: {
|
|
972
|
+
type: "object";
|
|
973
|
+
additionalProperties: {
|
|
974
|
+
type: "string";
|
|
975
|
+
maxLength: number;
|
|
976
|
+
};
|
|
977
|
+
description: string;
|
|
978
|
+
};
|
|
971
979
|
};
|
|
972
980
|
required: string[];
|
|
973
981
|
description: string;
|
|
@@ -1588,6 +1596,14 @@ export declare const state: {
|
|
|
1588
1596
|
type: "object";
|
|
1589
1597
|
additionalProperties: true;
|
|
1590
1598
|
};
|
|
1599
|
+
attributes: {
|
|
1600
|
+
type: "object";
|
|
1601
|
+
additionalProperties: {
|
|
1602
|
+
type: "string";
|
|
1603
|
+
maxLength: number;
|
|
1604
|
+
};
|
|
1605
|
+
description: string;
|
|
1606
|
+
};
|
|
1591
1607
|
};
|
|
1592
1608
|
required: string[];
|
|
1593
1609
|
description: string;
|
|
@@ -2026,6 +2042,14 @@ export declare const state: {
|
|
|
2026
2042
|
type: "object";
|
|
2027
2043
|
additionalProperties: true;
|
|
2028
2044
|
};
|
|
2045
|
+
attributes: {
|
|
2046
|
+
type: "object";
|
|
2047
|
+
additionalProperties: {
|
|
2048
|
+
type: "string";
|
|
2049
|
+
maxLength: number;
|
|
2050
|
+
};
|
|
2051
|
+
description: string;
|
|
2052
|
+
};
|
|
2029
2053
|
};
|
|
2030
2054
|
required: string[];
|
|
2031
2055
|
description: string;
|
|
@@ -2354,6 +2378,14 @@ export declare const state: {
|
|
|
2354
2378
|
type: "object";
|
|
2355
2379
|
additionalProperties: true;
|
|
2356
2380
|
};
|
|
2381
|
+
attributes: {
|
|
2382
|
+
type: "object";
|
|
2383
|
+
additionalProperties: {
|
|
2384
|
+
type: "string";
|
|
2385
|
+
maxLength: number;
|
|
2386
|
+
};
|
|
2387
|
+
description: string;
|
|
2388
|
+
};
|
|
2357
2389
|
};
|
|
2358
2390
|
required: string[];
|
|
2359
2391
|
description: string;
|
|
@@ -2653,6 +2685,14 @@ export declare const state: {
|
|
|
2653
2685
|
type: "object";
|
|
2654
2686
|
additionalProperties: true;
|
|
2655
2687
|
};
|
|
2688
|
+
attributes: {
|
|
2689
|
+
type: "object";
|
|
2690
|
+
additionalProperties: {
|
|
2691
|
+
type: "string";
|
|
2692
|
+
maxLength: number;
|
|
2693
|
+
};
|
|
2694
|
+
description: string;
|
|
2695
|
+
};
|
|
2656
2696
|
};
|
|
2657
2697
|
required: string[];
|
|
2658
2698
|
description: string;
|
|
@@ -3078,9 +3118,17 @@ export declare const state: {
|
|
|
3078
3118
|
type: "object";
|
|
3079
3119
|
additionalProperties: true;
|
|
3080
3120
|
};
|
|
3121
|
+
attributes: {
|
|
3122
|
+
type: "object";
|
|
3123
|
+
additionalProperties: {
|
|
3124
|
+
type: "string";
|
|
3125
|
+
maxLength: number;
|
|
3126
|
+
nullable: true;
|
|
3127
|
+
};
|
|
3128
|
+
description: string;
|
|
3129
|
+
};
|
|
3081
3130
|
};
|
|
3082
3131
|
required: string[];
|
|
3083
|
-
description: string;
|
|
3084
3132
|
nullable: true;
|
|
3085
3133
|
additionalProperties: false;
|
|
3086
3134
|
};
|
|
@@ -3133,12 +3181,12 @@ export declare const state: {
|
|
|
3133
3181
|
additionalProperties: {
|
|
3134
3182
|
type: "string";
|
|
3135
3183
|
maxLength: number;
|
|
3184
|
+
nullable: true;
|
|
3136
3185
|
};
|
|
3137
3186
|
description: string;
|
|
3138
3187
|
};
|
|
3139
3188
|
};
|
|
3140
3189
|
required: string[];
|
|
3141
|
-
description: string;
|
|
3142
3190
|
nullable: true;
|
|
3143
3191
|
additionalProperties: false;
|
|
3144
3192
|
};
|
|
@@ -6217,6 +6265,14 @@ export declare const state: {
|
|
|
6217
6265
|
type: "object";
|
|
6218
6266
|
additionalProperties: true;
|
|
6219
6267
|
};
|
|
6268
|
+
attributes: {
|
|
6269
|
+
type: "object";
|
|
6270
|
+
additionalProperties: {
|
|
6271
|
+
type: "string";
|
|
6272
|
+
maxLength: number;
|
|
6273
|
+
};
|
|
6274
|
+
description: string;
|
|
6275
|
+
};
|
|
6220
6276
|
};
|
|
6221
6277
|
required: string[];
|
|
6222
6278
|
description: string;
|
|
@@ -6748,6 +6804,14 @@ export declare const state: {
|
|
|
6748
6804
|
type: "object";
|
|
6749
6805
|
additionalProperties: true;
|
|
6750
6806
|
};
|
|
6807
|
+
attributes: {
|
|
6808
|
+
type: "object";
|
|
6809
|
+
additionalProperties: {
|
|
6810
|
+
type: "string";
|
|
6811
|
+
maxLength: number;
|
|
6812
|
+
};
|
|
6813
|
+
description: string;
|
|
6814
|
+
};
|
|
6751
6815
|
};
|
|
6752
6816
|
required: string[];
|
|
6753
6817
|
description: string;
|
|
@@ -7435,9 +7499,17 @@ export declare const state: {
|
|
|
7435
7499
|
type: "object";
|
|
7436
7500
|
additionalProperties: true;
|
|
7437
7501
|
};
|
|
7502
|
+
attributes: {
|
|
7503
|
+
type: "object";
|
|
7504
|
+
additionalProperties: {
|
|
7505
|
+
type: "string";
|
|
7506
|
+
maxLength: number;
|
|
7507
|
+
nullable: true;
|
|
7508
|
+
};
|
|
7509
|
+
description: string;
|
|
7510
|
+
};
|
|
7438
7511
|
};
|
|
7439
7512
|
required: string[];
|
|
7440
|
-
description: string;
|
|
7441
7513
|
nullable: true;
|
|
7442
7514
|
additionalProperties: false;
|
|
7443
7515
|
};
|
|
@@ -7988,9 +8060,17 @@ export declare const state: {
|
|
|
7988
8060
|
type: "object";
|
|
7989
8061
|
additionalProperties: true;
|
|
7990
8062
|
};
|
|
8063
|
+
attributes: {
|
|
8064
|
+
type: "object";
|
|
8065
|
+
additionalProperties: {
|
|
8066
|
+
type: "string";
|
|
8067
|
+
maxLength: number;
|
|
8068
|
+
nullable: true;
|
|
8069
|
+
};
|
|
8070
|
+
description: string;
|
|
8071
|
+
};
|
|
7991
8072
|
};
|
|
7992
8073
|
required: string[];
|
|
7993
|
-
description: string;
|
|
7994
8074
|
nullable: true;
|
|
7995
8075
|
additionalProperties: false;
|
|
7996
8076
|
};
|
|
@@ -8717,6 +8797,14 @@ export declare const state: {
|
|
|
8717
8797
|
type: "object";
|
|
8718
8798
|
additionalProperties: true;
|
|
8719
8799
|
};
|
|
8800
|
+
attributes: {
|
|
8801
|
+
type: "object";
|
|
8802
|
+
additionalProperties: {
|
|
8803
|
+
type: "string";
|
|
8804
|
+
maxLength: number;
|
|
8805
|
+
};
|
|
8806
|
+
description: string;
|
|
8807
|
+
};
|
|
8720
8808
|
};
|
|
8721
8809
|
required: string[];
|
|
8722
8810
|
description: string;
|
|
@@ -8976,9 +9064,17 @@ export declare const state: {
|
|
|
8976
9064
|
type: "object";
|
|
8977
9065
|
additionalProperties: true;
|
|
8978
9066
|
};
|
|
9067
|
+
attributes: {
|
|
9068
|
+
type: "object";
|
|
9069
|
+
additionalProperties: {
|
|
9070
|
+
type: "string";
|
|
9071
|
+
maxLength: number;
|
|
9072
|
+
nullable: true;
|
|
9073
|
+
};
|
|
9074
|
+
description: string;
|
|
9075
|
+
};
|
|
8979
9076
|
};
|
|
8980
9077
|
required: string[];
|
|
8981
|
-
description: string;
|
|
8982
9078
|
nullable: true;
|
|
8983
9079
|
additionalProperties: false;
|
|
8984
9080
|
};
|
|
@@ -9033,6 +9129,7 @@ export declare const state: {
|
|
|
9033
9129
|
maxLength: number;
|
|
9034
9130
|
nullable: true;
|
|
9035
9131
|
};
|
|
9132
|
+
description: string;
|
|
9036
9133
|
};
|
|
9037
9134
|
};
|
|
9038
9135
|
required: string[];
|
|
@@ -9299,6 +9396,14 @@ export declare const state: {
|
|
|
9299
9396
|
type: "object";
|
|
9300
9397
|
additionalProperties: true;
|
|
9301
9398
|
};
|
|
9399
|
+
attributes: {
|
|
9400
|
+
type: "object";
|
|
9401
|
+
additionalProperties: {
|
|
9402
|
+
type: "string";
|
|
9403
|
+
maxLength: number;
|
|
9404
|
+
};
|
|
9405
|
+
description: string;
|
|
9406
|
+
};
|
|
9302
9407
|
};
|
|
9303
9408
|
required: string[];
|
|
9304
9409
|
description: string;
|
|
@@ -9657,9 +9762,17 @@ export declare const state: {
|
|
|
9657
9762
|
type: "object";
|
|
9658
9763
|
additionalProperties: true;
|
|
9659
9764
|
};
|
|
9765
|
+
attributes: {
|
|
9766
|
+
type: "object";
|
|
9767
|
+
additionalProperties: {
|
|
9768
|
+
type: "string";
|
|
9769
|
+
maxLength: number;
|
|
9770
|
+
nullable: true;
|
|
9771
|
+
};
|
|
9772
|
+
description: string;
|
|
9773
|
+
};
|
|
9660
9774
|
};
|
|
9661
9775
|
required: string[];
|
|
9662
|
-
description: string;
|
|
9663
9776
|
nullable: true;
|
|
9664
9777
|
additionalProperties: false;
|
|
9665
9778
|
};
|
|
@@ -9712,12 +9825,12 @@ export declare const state: {
|
|
|
9712
9825
|
additionalProperties: {
|
|
9713
9826
|
type: "string";
|
|
9714
9827
|
maxLength: number;
|
|
9828
|
+
nullable: true;
|
|
9715
9829
|
};
|
|
9716
9830
|
description: string;
|
|
9717
9831
|
};
|
|
9718
9832
|
};
|
|
9719
9833
|
required: string[];
|
|
9720
|
-
description: string;
|
|
9721
9834
|
nullable: true;
|
|
9722
9835
|
additionalProperties: false;
|
|
9723
9836
|
};
|
|
@@ -10910,6 +11023,14 @@ export declare const state: {
|
|
|
10910
11023
|
type: "object";
|
|
10911
11024
|
additionalProperties: true;
|
|
10912
11025
|
};
|
|
11026
|
+
attributes: {
|
|
11027
|
+
type: "object";
|
|
11028
|
+
additionalProperties: {
|
|
11029
|
+
type: "string";
|
|
11030
|
+
maxLength: number;
|
|
11031
|
+
};
|
|
11032
|
+
description: string;
|
|
11033
|
+
};
|
|
10913
11034
|
};
|
|
10914
11035
|
required: string[];
|
|
10915
11036
|
description: string;
|
|
@@ -11469,6 +11590,14 @@ export declare const state: {
|
|
|
11469
11590
|
type: "object";
|
|
11470
11591
|
additionalProperties: true;
|
|
11471
11592
|
};
|
|
11593
|
+
attributes: {
|
|
11594
|
+
type: "object";
|
|
11595
|
+
additionalProperties: {
|
|
11596
|
+
type: "string";
|
|
11597
|
+
maxLength: number;
|
|
11598
|
+
};
|
|
11599
|
+
description: string;
|
|
11600
|
+
};
|
|
11472
11601
|
};
|
|
11473
11602
|
required: string[];
|
|
11474
11603
|
description: string;
|
|
@@ -11723,6 +11852,14 @@ export declare const state: {
|
|
|
11723
11852
|
type: "object";
|
|
11724
11853
|
additionalProperties: true;
|
|
11725
11854
|
};
|
|
11855
|
+
attributes: {
|
|
11856
|
+
type: "object";
|
|
11857
|
+
additionalProperties: {
|
|
11858
|
+
type: "string";
|
|
11859
|
+
maxLength: number;
|
|
11860
|
+
};
|
|
11861
|
+
description: string;
|
|
11862
|
+
};
|
|
11726
11863
|
};
|
|
11727
11864
|
required: string[];
|
|
11728
11865
|
description: string;
|
|
@@ -11940,6 +12077,14 @@ export declare const state: {
|
|
|
11940
12077
|
type: "object";
|
|
11941
12078
|
additionalProperties: true;
|
|
11942
12079
|
};
|
|
12080
|
+
attributes: {
|
|
12081
|
+
type: "object";
|
|
12082
|
+
additionalProperties: {
|
|
12083
|
+
type: "string";
|
|
12084
|
+
maxLength: number;
|
|
12085
|
+
};
|
|
12086
|
+
description: string;
|
|
12087
|
+
};
|
|
11943
12088
|
};
|
|
11944
12089
|
required: string[];
|
|
11945
12090
|
description: string;
|
|
@@ -1699,6 +1699,14 @@ export declare const state: {
|
|
|
1699
1699
|
type: "object";
|
|
1700
1700
|
additionalProperties: true;
|
|
1701
1701
|
};
|
|
1702
|
+
attributes: {
|
|
1703
|
+
type: "object";
|
|
1704
|
+
additionalProperties: {
|
|
1705
|
+
type: "string";
|
|
1706
|
+
maxLength: number;
|
|
1707
|
+
};
|
|
1708
|
+
description: string;
|
|
1709
|
+
};
|
|
1702
1710
|
};
|
|
1703
1711
|
required: string[];
|
|
1704
1712
|
description: string;
|
|
@@ -2258,6 +2266,14 @@ export declare const state: {
|
|
|
2258
2266
|
type: "object";
|
|
2259
2267
|
additionalProperties: true;
|
|
2260
2268
|
};
|
|
2269
|
+
attributes: {
|
|
2270
|
+
type: "object";
|
|
2271
|
+
additionalProperties: {
|
|
2272
|
+
type: "string";
|
|
2273
|
+
maxLength: number;
|
|
2274
|
+
};
|
|
2275
|
+
description: string;
|
|
2276
|
+
};
|
|
2261
2277
|
};
|
|
2262
2278
|
required: string[];
|
|
2263
2279
|
description: string;
|
|
@@ -2512,6 +2528,14 @@ export declare const state: {
|
|
|
2512
2528
|
type: "object";
|
|
2513
2529
|
additionalProperties: true;
|
|
2514
2530
|
};
|
|
2531
|
+
attributes: {
|
|
2532
|
+
type: "object";
|
|
2533
|
+
additionalProperties: {
|
|
2534
|
+
type: "string";
|
|
2535
|
+
maxLength: number;
|
|
2536
|
+
};
|
|
2537
|
+
description: string;
|
|
2538
|
+
};
|
|
2515
2539
|
};
|
|
2516
2540
|
required: string[];
|
|
2517
2541
|
description: string;
|
|
@@ -2729,6 +2753,14 @@ export declare const state: {
|
|
|
2729
2753
|
type: "object";
|
|
2730
2754
|
additionalProperties: true;
|
|
2731
2755
|
};
|
|
2756
|
+
attributes: {
|
|
2757
|
+
type: "object";
|
|
2758
|
+
additionalProperties: {
|
|
2759
|
+
type: "string";
|
|
2760
|
+
maxLength: number;
|
|
2761
|
+
};
|
|
2762
|
+
description: string;
|
|
2763
|
+
};
|
|
2732
2764
|
};
|
|
2733
2765
|
required: string[];
|
|
2734
2766
|
description: string;
|
|
@@ -2776,6 +2776,14 @@ export declare const state: {
|
|
|
2776
2776
|
type: "object";
|
|
2777
2777
|
additionalProperties: true;
|
|
2778
2778
|
};
|
|
2779
|
+
attributes: {
|
|
2780
|
+
type: "object";
|
|
2781
|
+
additionalProperties: {
|
|
2782
|
+
type: "string";
|
|
2783
|
+
maxLength: number;
|
|
2784
|
+
};
|
|
2785
|
+
description: string;
|
|
2786
|
+
};
|
|
2779
2787
|
};
|
|
2780
2788
|
required: string[];
|
|
2781
2789
|
description: string;
|
|
@@ -3335,6 +3343,14 @@ export declare const state: {
|
|
|
3335
3343
|
type: "object";
|
|
3336
3344
|
additionalProperties: true;
|
|
3337
3345
|
};
|
|
3346
|
+
attributes: {
|
|
3347
|
+
type: "object";
|
|
3348
|
+
additionalProperties: {
|
|
3349
|
+
type: "string";
|
|
3350
|
+
maxLength: number;
|
|
3351
|
+
};
|
|
3352
|
+
description: string;
|
|
3353
|
+
};
|
|
3338
3354
|
};
|
|
3339
3355
|
required: string[];
|
|
3340
3356
|
description: string;
|
|
@@ -3589,6 +3605,14 @@ export declare const state: {
|
|
|
3589
3605
|
type: "object";
|
|
3590
3606
|
additionalProperties: true;
|
|
3591
3607
|
};
|
|
3608
|
+
attributes: {
|
|
3609
|
+
type: "object";
|
|
3610
|
+
additionalProperties: {
|
|
3611
|
+
type: "string";
|
|
3612
|
+
maxLength: number;
|
|
3613
|
+
};
|
|
3614
|
+
description: string;
|
|
3615
|
+
};
|
|
3592
3616
|
};
|
|
3593
3617
|
required: string[];
|
|
3594
3618
|
description: string;
|
|
@@ -3806,6 +3830,14 @@ export declare const state: {
|
|
|
3806
3830
|
type: "object";
|
|
3807
3831
|
additionalProperties: true;
|
|
3808
3832
|
};
|
|
3833
|
+
attributes: {
|
|
3834
|
+
type: "object";
|
|
3835
|
+
additionalProperties: {
|
|
3836
|
+
type: "string";
|
|
3837
|
+
maxLength: number;
|
|
3838
|
+
};
|
|
3839
|
+
description: string;
|
|
3840
|
+
};
|
|
3809
3841
|
};
|
|
3810
3842
|
required: string[];
|
|
3811
3843
|
description: string;
|