@botpress/api 1.8.0 → 1.10.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 +954 -280
- package/dist/src/gen/admin/state.d.ts +244 -7
- package/dist/src/gen/files/state.d.ts +55 -0
- package/dist/src/gen/runtime/state.d.ts +55 -0
- package/dist/src/gen/state.d.ts +244 -7
- package/dist/src/gen/tables/state.d.ts +55 -0
- package/package.json +1 -1
- package/src/gen/admin/openapi.json +1 -1
- package/src/gen/admin/state.ts +262 -15
- package/src/gen/files/openapi.json +1 -1
- package/src/gen/files/state.ts +62 -2
- package/src/gen/openapi.json +1 -1
- package/src/gen/runtime/openapi.json +1 -1
- package/src/gen/runtime/state.ts +62 -2
- package/src/gen/state.ts +262 -15
- package/src/gen/tables/openapi.json +1 -1
- package/src/gen/tables/state.ts +62 -2
|
@@ -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;
|
|
@@ -8831,6 +8919,29 @@ export declare const state: {
|
|
|
8831
8919
|
description: string;
|
|
8832
8920
|
additionalProperties: false;
|
|
8833
8921
|
};
|
|
8922
|
+
icon: {
|
|
8923
|
+
type: "string";
|
|
8924
|
+
description: string;
|
|
8925
|
+
};
|
|
8926
|
+
readme: {
|
|
8927
|
+
type: "string";
|
|
8928
|
+
description: string;
|
|
8929
|
+
};
|
|
8930
|
+
title: {
|
|
8931
|
+
type: "string";
|
|
8932
|
+
minLength: number;
|
|
8933
|
+
maxLength: number;
|
|
8934
|
+
description: string;
|
|
8935
|
+
};
|
|
8936
|
+
description: {
|
|
8937
|
+
type: "string";
|
|
8938
|
+
maxLength: number;
|
|
8939
|
+
description: string;
|
|
8940
|
+
};
|
|
8941
|
+
public: {
|
|
8942
|
+
type: "boolean";
|
|
8943
|
+
description: string;
|
|
8944
|
+
};
|
|
8834
8945
|
};
|
|
8835
8946
|
required: string[];
|
|
8836
8947
|
title: string;
|
|
@@ -8976,9 +9087,17 @@ export declare const state: {
|
|
|
8976
9087
|
type: "object";
|
|
8977
9088
|
additionalProperties: true;
|
|
8978
9089
|
};
|
|
9090
|
+
attributes: {
|
|
9091
|
+
type: "object";
|
|
9092
|
+
additionalProperties: {
|
|
9093
|
+
type: "string";
|
|
9094
|
+
maxLength: number;
|
|
9095
|
+
nullable: true;
|
|
9096
|
+
};
|
|
9097
|
+
description: string;
|
|
9098
|
+
};
|
|
8979
9099
|
};
|
|
8980
9100
|
required: string[];
|
|
8981
|
-
description: string;
|
|
8982
9101
|
nullable: true;
|
|
8983
9102
|
additionalProperties: false;
|
|
8984
9103
|
};
|
|
@@ -9033,6 +9152,7 @@ export declare const state: {
|
|
|
9033
9152
|
maxLength: number;
|
|
9034
9153
|
nullable: true;
|
|
9035
9154
|
};
|
|
9155
|
+
description: string;
|
|
9036
9156
|
};
|
|
9037
9157
|
};
|
|
9038
9158
|
required: string[];
|
|
@@ -9093,6 +9213,29 @@ export declare const state: {
|
|
|
9093
9213
|
nullable: true;
|
|
9094
9214
|
additionalProperties: false;
|
|
9095
9215
|
};
|
|
9216
|
+
icon: {
|
|
9217
|
+
type: "string";
|
|
9218
|
+
description: string;
|
|
9219
|
+
};
|
|
9220
|
+
readme: {
|
|
9221
|
+
type: "string";
|
|
9222
|
+
description: string;
|
|
9223
|
+
};
|
|
9224
|
+
title: {
|
|
9225
|
+
type: "string";
|
|
9226
|
+
minLength: number;
|
|
9227
|
+
maxLength: number;
|
|
9228
|
+
description: string;
|
|
9229
|
+
};
|
|
9230
|
+
description: {
|
|
9231
|
+
type: "string";
|
|
9232
|
+
maxLength: number;
|
|
9233
|
+
description: string;
|
|
9234
|
+
};
|
|
9235
|
+
public: {
|
|
9236
|
+
type: "boolean";
|
|
9237
|
+
description: string;
|
|
9238
|
+
};
|
|
9096
9239
|
};
|
|
9097
9240
|
title: string;
|
|
9098
9241
|
additionalProperties: false;
|
|
@@ -9190,6 +9333,29 @@ export declare const state: {
|
|
|
9190
9333
|
maxLength: number;
|
|
9191
9334
|
description: string;
|
|
9192
9335
|
};
|
|
9336
|
+
title: {
|
|
9337
|
+
type: "string";
|
|
9338
|
+
minLength: number;
|
|
9339
|
+
maxLength: number;
|
|
9340
|
+
description: string;
|
|
9341
|
+
};
|
|
9342
|
+
description: {
|
|
9343
|
+
type: "string";
|
|
9344
|
+
maxLength: number;
|
|
9345
|
+
description: string;
|
|
9346
|
+
};
|
|
9347
|
+
iconUrl: {
|
|
9348
|
+
type: "string";
|
|
9349
|
+
description: string;
|
|
9350
|
+
};
|
|
9351
|
+
readmeUrl: {
|
|
9352
|
+
type: "string";
|
|
9353
|
+
description: string;
|
|
9354
|
+
};
|
|
9355
|
+
public: {
|
|
9356
|
+
type: "boolean";
|
|
9357
|
+
description: string;
|
|
9358
|
+
};
|
|
9193
9359
|
};
|
|
9194
9360
|
required: string[];
|
|
9195
9361
|
};
|
|
@@ -9299,6 +9465,14 @@ export declare const state: {
|
|
|
9299
9465
|
type: "object";
|
|
9300
9466
|
additionalProperties: true;
|
|
9301
9467
|
};
|
|
9468
|
+
attributes: {
|
|
9469
|
+
type: "object";
|
|
9470
|
+
additionalProperties: {
|
|
9471
|
+
type: "string";
|
|
9472
|
+
maxLength: number;
|
|
9473
|
+
};
|
|
9474
|
+
description: string;
|
|
9475
|
+
};
|
|
9302
9476
|
};
|
|
9303
9477
|
required: string[];
|
|
9304
9478
|
description: string;
|
|
@@ -9657,9 +9831,17 @@ export declare const state: {
|
|
|
9657
9831
|
type: "object";
|
|
9658
9832
|
additionalProperties: true;
|
|
9659
9833
|
};
|
|
9834
|
+
attributes: {
|
|
9835
|
+
type: "object";
|
|
9836
|
+
additionalProperties: {
|
|
9837
|
+
type: "string";
|
|
9838
|
+
maxLength: number;
|
|
9839
|
+
nullable: true;
|
|
9840
|
+
};
|
|
9841
|
+
description: string;
|
|
9842
|
+
};
|
|
9660
9843
|
};
|
|
9661
9844
|
required: string[];
|
|
9662
|
-
description: string;
|
|
9663
9845
|
nullable: true;
|
|
9664
9846
|
additionalProperties: false;
|
|
9665
9847
|
};
|
|
@@ -9712,12 +9894,12 @@ export declare const state: {
|
|
|
9712
9894
|
additionalProperties: {
|
|
9713
9895
|
type: "string";
|
|
9714
9896
|
maxLength: number;
|
|
9897
|
+
nullable: true;
|
|
9715
9898
|
};
|
|
9716
9899
|
description: string;
|
|
9717
9900
|
};
|
|
9718
9901
|
};
|
|
9719
9902
|
required: string[];
|
|
9720
|
-
description: string;
|
|
9721
9903
|
nullable: true;
|
|
9722
9904
|
additionalProperties: false;
|
|
9723
9905
|
};
|
|
@@ -10910,6 +11092,14 @@ export declare const state: {
|
|
|
10910
11092
|
type: "object";
|
|
10911
11093
|
additionalProperties: true;
|
|
10912
11094
|
};
|
|
11095
|
+
attributes: {
|
|
11096
|
+
type: "object";
|
|
11097
|
+
additionalProperties: {
|
|
11098
|
+
type: "string";
|
|
11099
|
+
maxLength: number;
|
|
11100
|
+
};
|
|
11101
|
+
description: string;
|
|
11102
|
+
};
|
|
10913
11103
|
};
|
|
10914
11104
|
required: string[];
|
|
10915
11105
|
description: string;
|
|
@@ -11469,6 +11659,14 @@ export declare const state: {
|
|
|
11469
11659
|
type: "object";
|
|
11470
11660
|
additionalProperties: true;
|
|
11471
11661
|
};
|
|
11662
|
+
attributes: {
|
|
11663
|
+
type: "object";
|
|
11664
|
+
additionalProperties: {
|
|
11665
|
+
type: "string";
|
|
11666
|
+
maxLength: number;
|
|
11667
|
+
};
|
|
11668
|
+
description: string;
|
|
11669
|
+
};
|
|
11472
11670
|
};
|
|
11473
11671
|
required: string[];
|
|
11474
11672
|
description: string;
|
|
@@ -11723,6 +11921,14 @@ export declare const state: {
|
|
|
11723
11921
|
type: "object";
|
|
11724
11922
|
additionalProperties: true;
|
|
11725
11923
|
};
|
|
11924
|
+
attributes: {
|
|
11925
|
+
type: "object";
|
|
11926
|
+
additionalProperties: {
|
|
11927
|
+
type: "string";
|
|
11928
|
+
maxLength: number;
|
|
11929
|
+
};
|
|
11930
|
+
description: string;
|
|
11931
|
+
};
|
|
11726
11932
|
};
|
|
11727
11933
|
required: string[];
|
|
11728
11934
|
description: string;
|
|
@@ -11837,6 +12043,29 @@ export declare const state: {
|
|
|
11837
12043
|
description: string;
|
|
11838
12044
|
additionalProperties: false;
|
|
11839
12045
|
};
|
|
12046
|
+
title: {
|
|
12047
|
+
type: "string";
|
|
12048
|
+
minLength: number;
|
|
12049
|
+
maxLength: number;
|
|
12050
|
+
description: string;
|
|
12051
|
+
};
|
|
12052
|
+
description: {
|
|
12053
|
+
type: "string";
|
|
12054
|
+
maxLength: number;
|
|
12055
|
+
description: string;
|
|
12056
|
+
};
|
|
12057
|
+
iconUrl: {
|
|
12058
|
+
type: "string";
|
|
12059
|
+
description: string;
|
|
12060
|
+
};
|
|
12061
|
+
readmeUrl: {
|
|
12062
|
+
type: "string";
|
|
12063
|
+
description: string;
|
|
12064
|
+
};
|
|
12065
|
+
public: {
|
|
12066
|
+
type: "boolean";
|
|
12067
|
+
description: string;
|
|
12068
|
+
};
|
|
11840
12069
|
};
|
|
11841
12070
|
required: string[];
|
|
11842
12071
|
additionalProperties: false;
|
|
@@ -11940,6 +12169,14 @@ export declare const state: {
|
|
|
11940
12169
|
type: "object";
|
|
11941
12170
|
additionalProperties: true;
|
|
11942
12171
|
};
|
|
12172
|
+
attributes: {
|
|
12173
|
+
type: "object";
|
|
12174
|
+
additionalProperties: {
|
|
12175
|
+
type: "string";
|
|
12176
|
+
maxLength: number;
|
|
12177
|
+
};
|
|
12178
|
+
description: string;
|
|
12179
|
+
};
|
|
11943
12180
|
};
|
|
11944
12181
|
required: string[];
|
|
11945
12182
|
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;
|
|
@@ -2626,6 +2650,29 @@ export declare const state: {
|
|
|
2626
2650
|
description: string;
|
|
2627
2651
|
additionalProperties: false;
|
|
2628
2652
|
};
|
|
2653
|
+
title: {
|
|
2654
|
+
type: "string";
|
|
2655
|
+
minLength: number;
|
|
2656
|
+
maxLength: number;
|
|
2657
|
+
description: string;
|
|
2658
|
+
};
|
|
2659
|
+
description: {
|
|
2660
|
+
type: "string";
|
|
2661
|
+
maxLength: number;
|
|
2662
|
+
description: string;
|
|
2663
|
+
};
|
|
2664
|
+
iconUrl: {
|
|
2665
|
+
type: "string";
|
|
2666
|
+
description: string;
|
|
2667
|
+
};
|
|
2668
|
+
readmeUrl: {
|
|
2669
|
+
type: "string";
|
|
2670
|
+
description: string;
|
|
2671
|
+
};
|
|
2672
|
+
public: {
|
|
2673
|
+
type: "boolean";
|
|
2674
|
+
description: string;
|
|
2675
|
+
};
|
|
2629
2676
|
};
|
|
2630
2677
|
required: string[];
|
|
2631
2678
|
additionalProperties: false;
|
|
@@ -2729,6 +2776,14 @@ export declare const state: {
|
|
|
2729
2776
|
type: "object";
|
|
2730
2777
|
additionalProperties: true;
|
|
2731
2778
|
};
|
|
2779
|
+
attributes: {
|
|
2780
|
+
type: "object";
|
|
2781
|
+
additionalProperties: {
|
|
2782
|
+
type: "string";
|
|
2783
|
+
maxLength: number;
|
|
2784
|
+
};
|
|
2785
|
+
description: string;
|
|
2786
|
+
};
|
|
2732
2787
|
};
|
|
2733
2788
|
required: string[];
|
|
2734
2789
|
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;
|
|
@@ -3703,6 +3727,29 @@ export declare const state: {
|
|
|
3703
3727
|
description: string;
|
|
3704
3728
|
additionalProperties: false;
|
|
3705
3729
|
};
|
|
3730
|
+
title: {
|
|
3731
|
+
type: "string";
|
|
3732
|
+
minLength: number;
|
|
3733
|
+
maxLength: number;
|
|
3734
|
+
description: string;
|
|
3735
|
+
};
|
|
3736
|
+
description: {
|
|
3737
|
+
type: "string";
|
|
3738
|
+
maxLength: number;
|
|
3739
|
+
description: string;
|
|
3740
|
+
};
|
|
3741
|
+
iconUrl: {
|
|
3742
|
+
type: "string";
|
|
3743
|
+
description: string;
|
|
3744
|
+
};
|
|
3745
|
+
readmeUrl: {
|
|
3746
|
+
type: "string";
|
|
3747
|
+
description: string;
|
|
3748
|
+
};
|
|
3749
|
+
public: {
|
|
3750
|
+
type: "boolean";
|
|
3751
|
+
description: string;
|
|
3752
|
+
};
|
|
3706
3753
|
};
|
|
3707
3754
|
required: string[];
|
|
3708
3755
|
additionalProperties: false;
|
|
@@ -3806,6 +3853,14 @@ export declare const state: {
|
|
|
3806
3853
|
type: "object";
|
|
3807
3854
|
additionalProperties: true;
|
|
3808
3855
|
};
|
|
3856
|
+
attributes: {
|
|
3857
|
+
type: "object";
|
|
3858
|
+
additionalProperties: {
|
|
3859
|
+
type: "string";
|
|
3860
|
+
maxLength: number;
|
|
3861
|
+
};
|
|
3862
|
+
description: string;
|
|
3863
|
+
};
|
|
3809
3864
|
};
|
|
3810
3865
|
required: string[];
|
|
3811
3866
|
description: string;
|