@redocly/config 0.50.1 → 0.51.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/lib/asyncapi-config-schema.d.ts +10 -27
- package/lib/common.d.ts +120 -120
- package/lib/constants/shared.d.ts +1 -0
- package/lib/default-theme-config-schema.d.ts +520 -621
- package/lib/entities-catalog-config-schema.d.ts +60 -72
- package/lib/entities-catalog-entity-file-schema.d.ts +74 -67
- package/lib/ex-theme-config-schemas.d.ts +266 -354
- package/lib/feedback-config-schema.d.ts +9 -29
- package/lib/graphql-config-schema.d.ts +11 -28
- package/lib/index.d.ts +1 -1
- package/lib/index.js +1 -1
- package/lib/product-override-schema.d.ts +4203 -4461
- package/lib/redoc-config-schema.d.ts +14 -33
- package/lib/reference-docs-config-schema.d.ts +14 -10
- package/lib/reunite-config-schema.d.ts +11 -12
- package/lib/root-config-schema.d.ts +22624 -17295
- package/lib/scorecards-config-schema.d.ts +168 -108
- package/lib/types/index.d.ts +1 -0
- package/lib/types/json-schema-types.d.ts +69 -0
- package/lib/types/portal-shared-types.d.ts +3 -0
- package/lib-esm/asyncapi-config-schema.d.ts +10 -27
- package/lib-esm/common.d.ts +120 -120
- package/lib-esm/constants/shared.d.ts +1 -0
- package/lib-esm/default-theme-config-schema.d.ts +520 -621
- package/lib-esm/entities-catalog-config-schema.d.ts +60 -72
- package/lib-esm/entities-catalog-entity-file-schema.d.ts +74 -67
- package/lib-esm/ex-theme-config-schemas.d.ts +266 -354
- package/lib-esm/feedback-config-schema.d.ts +9 -29
- package/lib-esm/graphql-config-schema.d.ts +11 -28
- package/lib-esm/index.d.ts +1 -1
- package/lib-esm/index.js +1 -1
- package/lib-esm/product-override-schema.d.ts +4203 -4461
- package/lib-esm/redoc-config-schema.d.ts +14 -33
- package/lib-esm/reference-docs-config-schema.d.ts +14 -10
- package/lib-esm/reunite-config-schema.d.ts +11 -12
- package/lib-esm/root-config-schema.d.ts +22624 -17295
- package/lib-esm/scorecards-config-schema.d.ts +168 -108
- package/lib-esm/types/index.d.ts +1 -0
- package/lib-esm/types/json-schema-types.d.ts +69 -0
- package/lib-esm/types/portal-shared-types.d.ts +3 -0
- package/package.json +1 -1
- package/lib/remove-property-recursively.d.ts +0 -5
- package/lib-esm/remove-property-recursively.d.ts +0 -5
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare const entityCatalogExcludeSchema: {
|
|
2
2
|
readonly type: 'object';
|
|
3
|
-
readonly required: readonly [
|
|
3
|
+
readonly required: readonly ["key"];
|
|
4
4
|
readonly properties: {
|
|
5
5
|
readonly key: {
|
|
6
6
|
readonly type: 'string';
|
|
@@ -10,7 +10,7 @@ export declare const entityCatalogExcludeSchema: {
|
|
|
10
10
|
};
|
|
11
11
|
export declare const entityCatalogIncludeSchema: {
|
|
12
12
|
readonly type: 'object';
|
|
13
|
-
readonly required: readonly [
|
|
13
|
+
readonly required: readonly ["type"];
|
|
14
14
|
readonly properties: {
|
|
15
15
|
readonly type: {
|
|
16
16
|
readonly type: 'string';
|
|
@@ -20,7 +20,7 @@ export declare const entityCatalogIncludeSchema: {
|
|
|
20
20
|
};
|
|
21
21
|
export declare const entityCatalogFilterSchema: {
|
|
22
22
|
readonly type: 'object';
|
|
23
|
-
readonly required: readonly [
|
|
23
|
+
readonly required: readonly ["property", "title"];
|
|
24
24
|
readonly properties: {
|
|
25
25
|
readonly property: {
|
|
26
26
|
readonly type: 'string';
|
|
@@ -39,8 +39,7 @@ export declare const entityCatalogFilterSchema: {
|
|
|
39
39
|
};
|
|
40
40
|
readonly type: {
|
|
41
41
|
readonly type: 'string';
|
|
42
|
-
readonly enum: readonly [
|
|
43
|
-
readonly default: 'checkboxes';
|
|
42
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
44
43
|
};
|
|
45
44
|
readonly title: {
|
|
46
45
|
readonly type: 'string';
|
|
@@ -73,7 +72,7 @@ export declare const entityCatalogSpecificCatalogSchema: {
|
|
|
73
72
|
readonly type: 'array';
|
|
74
73
|
readonly items: {
|
|
75
74
|
readonly type: 'object';
|
|
76
|
-
readonly required: readonly [
|
|
75
|
+
readonly required: readonly ["type"];
|
|
77
76
|
readonly properties: {
|
|
78
77
|
readonly type: {
|
|
79
78
|
readonly type: 'string';
|
|
@@ -86,7 +85,7 @@ export declare const entityCatalogSpecificCatalogSchema: {
|
|
|
86
85
|
readonly type: 'array';
|
|
87
86
|
readonly items: {
|
|
88
87
|
readonly type: 'object';
|
|
89
|
-
readonly required: readonly [
|
|
88
|
+
readonly required: readonly ["key"];
|
|
90
89
|
readonly properties: {
|
|
91
90
|
readonly key: {
|
|
92
91
|
readonly type: 'string';
|
|
@@ -99,7 +98,7 @@ export declare const entityCatalogSpecificCatalogSchema: {
|
|
|
99
98
|
readonly type: 'array';
|
|
100
99
|
readonly items: {
|
|
101
100
|
readonly type: 'object';
|
|
102
|
-
readonly required: readonly [
|
|
101
|
+
readonly required: readonly ["property", "title"];
|
|
103
102
|
readonly properties: {
|
|
104
103
|
readonly property: {
|
|
105
104
|
readonly type: 'string';
|
|
@@ -118,8 +117,7 @@ export declare const entityCatalogSpecificCatalogSchema: {
|
|
|
118
117
|
};
|
|
119
118
|
readonly type: {
|
|
120
119
|
readonly type: 'string';
|
|
121
|
-
readonly enum: readonly [
|
|
122
|
-
readonly default: 'checkboxes';
|
|
120
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
123
121
|
};
|
|
124
122
|
readonly title: {
|
|
125
123
|
readonly type: 'string';
|
|
@@ -157,7 +155,7 @@ export declare const entityCatalogMetadataSchemaPropertySchema: {
|
|
|
157
155
|
readonly properties: {
|
|
158
156
|
readonly type: {
|
|
159
157
|
readonly type: 'string';
|
|
160
|
-
readonly enum: readonly [
|
|
158
|
+
readonly enum: readonly ["string", "number", "boolean", "array", "object"];
|
|
161
159
|
};
|
|
162
160
|
readonly description: {
|
|
163
161
|
readonly type: 'string';
|
|
@@ -201,11 +199,11 @@ export declare const entityCatalogMetadataSchemaPropertySchema: {
|
|
|
201
199
|
};
|
|
202
200
|
export declare const entityCatalogMetadataSchema: {
|
|
203
201
|
readonly type: 'object';
|
|
204
|
-
readonly required: readonly [
|
|
202
|
+
readonly required: readonly ["type", "properties"];
|
|
205
203
|
readonly properties: {
|
|
206
204
|
readonly type: {
|
|
207
205
|
readonly type: 'string';
|
|
208
|
-
readonly enum: readonly [
|
|
206
|
+
readonly enum: readonly ["object"];
|
|
209
207
|
};
|
|
210
208
|
readonly description: {
|
|
211
209
|
readonly type: 'string';
|
|
@@ -217,7 +215,7 @@ export declare const entityCatalogMetadataSchema: {
|
|
|
217
215
|
readonly properties: {
|
|
218
216
|
readonly type: {
|
|
219
217
|
readonly type: 'string';
|
|
220
|
-
readonly enum: readonly [
|
|
218
|
+
readonly enum: readonly ["string", "number", "boolean", "array", "object"];
|
|
221
219
|
};
|
|
222
220
|
readonly description: {
|
|
223
221
|
readonly type: 'string';
|
|
@@ -274,7 +272,7 @@ export declare const entityCatalogMetadataSchema: {
|
|
|
274
272
|
};
|
|
275
273
|
export declare const entityCatalogEntityTypeSchema: {
|
|
276
274
|
readonly type: 'object';
|
|
277
|
-
readonly required: readonly [
|
|
275
|
+
readonly required: readonly ["name", "description", "metadataSchema"];
|
|
278
276
|
readonly properties: {
|
|
279
277
|
readonly name: {
|
|
280
278
|
readonly type: 'string';
|
|
@@ -286,11 +284,11 @@ export declare const entityCatalogEntityTypeSchema: {
|
|
|
286
284
|
};
|
|
287
285
|
readonly metadataSchema: {
|
|
288
286
|
readonly type: 'object';
|
|
289
|
-
readonly required: readonly [
|
|
287
|
+
readonly required: readonly ["type", "properties"];
|
|
290
288
|
readonly properties: {
|
|
291
289
|
readonly type: {
|
|
292
290
|
readonly type: 'string';
|
|
293
|
-
readonly enum: readonly [
|
|
291
|
+
readonly enum: readonly ["object"];
|
|
294
292
|
};
|
|
295
293
|
readonly description: {
|
|
296
294
|
readonly type: 'string';
|
|
@@ -302,7 +300,7 @@ export declare const entityCatalogEntityTypeSchema: {
|
|
|
302
300
|
readonly properties: {
|
|
303
301
|
readonly type: {
|
|
304
302
|
readonly type: 'string';
|
|
305
|
-
readonly enum: readonly [
|
|
303
|
+
readonly enum: readonly ["string", "number", "boolean", "array", "object"];
|
|
306
304
|
};
|
|
307
305
|
readonly description: {
|
|
308
306
|
readonly type: 'string';
|
|
@@ -376,7 +374,7 @@ export declare const entityCatalogEntityTypesSchema: {
|
|
|
376
374
|
readonly type: 'object';
|
|
377
375
|
readonly additionalProperties: {
|
|
378
376
|
readonly type: 'object';
|
|
379
|
-
readonly required: readonly [
|
|
377
|
+
readonly required: readonly ["name", "description", "metadataSchema"];
|
|
380
378
|
readonly properties: {
|
|
381
379
|
readonly name: {
|
|
382
380
|
readonly type: 'string';
|
|
@@ -388,11 +386,11 @@ export declare const entityCatalogEntityTypesSchema: {
|
|
|
388
386
|
};
|
|
389
387
|
readonly metadataSchema: {
|
|
390
388
|
readonly type: 'object';
|
|
391
|
-
readonly required: readonly [
|
|
389
|
+
readonly required: readonly ["type", "properties"];
|
|
392
390
|
readonly properties: {
|
|
393
391
|
readonly type: {
|
|
394
392
|
readonly type: 'string';
|
|
395
|
-
readonly enum: readonly [
|
|
393
|
+
readonly enum: readonly ["object"];
|
|
396
394
|
};
|
|
397
395
|
readonly description: {
|
|
398
396
|
readonly type: 'string';
|
|
@@ -404,7 +402,7 @@ export declare const entityCatalogEntityTypesSchema: {
|
|
|
404
402
|
readonly properties: {
|
|
405
403
|
readonly type: {
|
|
406
404
|
readonly type: 'string';
|
|
407
|
-
readonly enum: readonly [
|
|
405
|
+
readonly enum: readonly ["string", "number", "boolean", "array", "object"];
|
|
408
406
|
};
|
|
409
407
|
readonly description: {
|
|
410
408
|
readonly type: 'string';
|
|
@@ -480,13 +478,12 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
480
478
|
readonly properties: {
|
|
481
479
|
readonly show: {
|
|
482
480
|
readonly type: 'boolean';
|
|
483
|
-
readonly default: false;
|
|
484
481
|
};
|
|
485
482
|
readonly entityTypes: {
|
|
486
483
|
readonly type: 'object';
|
|
487
484
|
readonly additionalProperties: {
|
|
488
485
|
readonly type: 'object';
|
|
489
|
-
readonly required: readonly [
|
|
486
|
+
readonly required: readonly ["name", "description", "metadataSchema"];
|
|
490
487
|
readonly properties: {
|
|
491
488
|
readonly name: {
|
|
492
489
|
readonly type: 'string';
|
|
@@ -498,11 +495,11 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
498
495
|
};
|
|
499
496
|
readonly metadataSchema: {
|
|
500
497
|
readonly type: 'object';
|
|
501
|
-
readonly required: readonly [
|
|
498
|
+
readonly required: readonly ["type", "properties"];
|
|
502
499
|
readonly properties: {
|
|
503
500
|
readonly type: {
|
|
504
501
|
readonly type: 'string';
|
|
505
|
-
readonly enum: readonly [
|
|
502
|
+
readonly enum: readonly ["object"];
|
|
506
503
|
};
|
|
507
504
|
readonly description: {
|
|
508
505
|
readonly type: 'string';
|
|
@@ -514,7 +511,7 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
514
511
|
readonly properties: {
|
|
515
512
|
readonly type: {
|
|
516
513
|
readonly type: 'string';
|
|
517
|
-
readonly enum: readonly [
|
|
514
|
+
readonly enum: readonly ["string", "number", "boolean", "array", "object"];
|
|
518
515
|
};
|
|
519
516
|
readonly description: {
|
|
520
517
|
readonly type: 'string';
|
|
@@ -601,7 +598,7 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
601
598
|
readonly type: 'array';
|
|
602
599
|
readonly items: {
|
|
603
600
|
readonly type: 'object';
|
|
604
|
-
readonly required: readonly [
|
|
601
|
+
readonly required: readonly ["type"];
|
|
605
602
|
readonly properties: {
|
|
606
603
|
readonly type: {
|
|
607
604
|
readonly type: 'string';
|
|
@@ -614,7 +611,7 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
614
611
|
readonly type: 'array';
|
|
615
612
|
readonly items: {
|
|
616
613
|
readonly type: 'object';
|
|
617
|
-
readonly required: readonly [
|
|
614
|
+
readonly required: readonly ["key"];
|
|
618
615
|
readonly properties: {
|
|
619
616
|
readonly key: {
|
|
620
617
|
readonly type: 'string';
|
|
@@ -627,7 +624,7 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
627
624
|
readonly type: 'array';
|
|
628
625
|
readonly items: {
|
|
629
626
|
readonly type: 'object';
|
|
630
|
-
readonly required: readonly [
|
|
627
|
+
readonly required: readonly ["property", "title"];
|
|
631
628
|
readonly properties: {
|
|
632
629
|
readonly property: {
|
|
633
630
|
readonly type: 'string';
|
|
@@ -646,8 +643,7 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
646
643
|
};
|
|
647
644
|
readonly type: {
|
|
648
645
|
readonly type: 'string';
|
|
649
|
-
readonly enum: readonly [
|
|
650
|
-
readonly default: 'checkboxes';
|
|
646
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
651
647
|
};
|
|
652
648
|
readonly title: {
|
|
653
649
|
readonly type: 'string';
|
|
@@ -693,7 +689,7 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
693
689
|
readonly type: 'array';
|
|
694
690
|
readonly items: {
|
|
695
691
|
readonly type: 'object';
|
|
696
|
-
readonly required: readonly [
|
|
692
|
+
readonly required: readonly ["type"];
|
|
697
693
|
readonly properties: {
|
|
698
694
|
readonly type: {
|
|
699
695
|
readonly type: 'string';
|
|
@@ -706,7 +702,7 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
706
702
|
readonly type: 'array';
|
|
707
703
|
readonly items: {
|
|
708
704
|
readonly type: 'object';
|
|
709
|
-
readonly required: readonly [
|
|
705
|
+
readonly required: readonly ["key"];
|
|
710
706
|
readonly properties: {
|
|
711
707
|
readonly key: {
|
|
712
708
|
readonly type: 'string';
|
|
@@ -719,7 +715,7 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
719
715
|
readonly type: 'array';
|
|
720
716
|
readonly items: {
|
|
721
717
|
readonly type: 'object';
|
|
722
|
-
readonly required: readonly [
|
|
718
|
+
readonly required: readonly ["property", "title"];
|
|
723
719
|
readonly properties: {
|
|
724
720
|
readonly property: {
|
|
725
721
|
readonly type: 'string';
|
|
@@ -738,8 +734,7 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
738
734
|
};
|
|
739
735
|
readonly type: {
|
|
740
736
|
readonly type: 'string';
|
|
741
|
-
readonly enum: readonly [
|
|
742
|
-
readonly default: 'checkboxes';
|
|
737
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
743
738
|
};
|
|
744
739
|
readonly title: {
|
|
745
740
|
readonly type: 'string';
|
|
@@ -785,7 +780,7 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
785
780
|
readonly type: 'array';
|
|
786
781
|
readonly items: {
|
|
787
782
|
readonly type: 'object';
|
|
788
|
-
readonly required: readonly [
|
|
783
|
+
readonly required: readonly ["type"];
|
|
789
784
|
readonly properties: {
|
|
790
785
|
readonly type: {
|
|
791
786
|
readonly type: 'string';
|
|
@@ -798,7 +793,7 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
798
793
|
readonly type: 'array';
|
|
799
794
|
readonly items: {
|
|
800
795
|
readonly type: 'object';
|
|
801
|
-
readonly required: readonly [
|
|
796
|
+
readonly required: readonly ["key"];
|
|
802
797
|
readonly properties: {
|
|
803
798
|
readonly key: {
|
|
804
799
|
readonly type: 'string';
|
|
@@ -811,7 +806,7 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
811
806
|
readonly type: 'array';
|
|
812
807
|
readonly items: {
|
|
813
808
|
readonly type: 'object';
|
|
814
|
-
readonly required: readonly [
|
|
809
|
+
readonly required: readonly ["property", "title"];
|
|
815
810
|
readonly properties: {
|
|
816
811
|
readonly property: {
|
|
817
812
|
readonly type: 'string';
|
|
@@ -830,8 +825,7 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
830
825
|
};
|
|
831
826
|
readonly type: {
|
|
832
827
|
readonly type: 'string';
|
|
833
|
-
readonly enum: readonly [
|
|
834
|
-
readonly default: 'checkboxes';
|
|
828
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
835
829
|
};
|
|
836
830
|
readonly title: {
|
|
837
831
|
readonly type: 'string';
|
|
@@ -877,7 +871,7 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
877
871
|
readonly type: 'array';
|
|
878
872
|
readonly items: {
|
|
879
873
|
readonly type: 'object';
|
|
880
|
-
readonly required: readonly [
|
|
874
|
+
readonly required: readonly ["type"];
|
|
881
875
|
readonly properties: {
|
|
882
876
|
readonly type: {
|
|
883
877
|
readonly type: 'string';
|
|
@@ -890,7 +884,7 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
890
884
|
readonly type: 'array';
|
|
891
885
|
readonly items: {
|
|
892
886
|
readonly type: 'object';
|
|
893
|
-
readonly required: readonly [
|
|
887
|
+
readonly required: readonly ["key"];
|
|
894
888
|
readonly properties: {
|
|
895
889
|
readonly key: {
|
|
896
890
|
readonly type: 'string';
|
|
@@ -903,7 +897,7 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
903
897
|
readonly type: 'array';
|
|
904
898
|
readonly items: {
|
|
905
899
|
readonly type: 'object';
|
|
906
|
-
readonly required: readonly [
|
|
900
|
+
readonly required: readonly ["property", "title"];
|
|
907
901
|
readonly properties: {
|
|
908
902
|
readonly property: {
|
|
909
903
|
readonly type: 'string';
|
|
@@ -922,8 +916,7 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
922
916
|
};
|
|
923
917
|
readonly type: {
|
|
924
918
|
readonly type: 'string';
|
|
925
|
-
readonly enum: readonly [
|
|
926
|
-
readonly default: 'checkboxes';
|
|
919
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
927
920
|
};
|
|
928
921
|
readonly title: {
|
|
929
922
|
readonly type: 'string';
|
|
@@ -969,7 +962,7 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
969
962
|
readonly type: 'array';
|
|
970
963
|
readonly items: {
|
|
971
964
|
readonly type: 'object';
|
|
972
|
-
readonly required: readonly [
|
|
965
|
+
readonly required: readonly ["type"];
|
|
973
966
|
readonly properties: {
|
|
974
967
|
readonly type: {
|
|
975
968
|
readonly type: 'string';
|
|
@@ -982,7 +975,7 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
982
975
|
readonly type: 'array';
|
|
983
976
|
readonly items: {
|
|
984
977
|
readonly type: 'object';
|
|
985
|
-
readonly required: readonly [
|
|
978
|
+
readonly required: readonly ["key"];
|
|
986
979
|
readonly properties: {
|
|
987
980
|
readonly key: {
|
|
988
981
|
readonly type: 'string';
|
|
@@ -995,7 +988,7 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
995
988
|
readonly type: 'array';
|
|
996
989
|
readonly items: {
|
|
997
990
|
readonly type: 'object';
|
|
998
|
-
readonly required: readonly [
|
|
991
|
+
readonly required: readonly ["property", "title"];
|
|
999
992
|
readonly properties: {
|
|
1000
993
|
readonly property: {
|
|
1001
994
|
readonly type: 'string';
|
|
@@ -1014,8 +1007,7 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
1014
1007
|
};
|
|
1015
1008
|
readonly type: {
|
|
1016
1009
|
readonly type: 'string';
|
|
1017
|
-
readonly enum: readonly [
|
|
1018
|
-
readonly default: 'checkboxes';
|
|
1010
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
1019
1011
|
};
|
|
1020
1012
|
readonly title: {
|
|
1021
1013
|
readonly type: 'string';
|
|
@@ -1061,7 +1053,7 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
1061
1053
|
readonly type: 'array';
|
|
1062
1054
|
readonly items: {
|
|
1063
1055
|
readonly type: 'object';
|
|
1064
|
-
readonly required: readonly [
|
|
1056
|
+
readonly required: readonly ["type"];
|
|
1065
1057
|
readonly properties: {
|
|
1066
1058
|
readonly type: {
|
|
1067
1059
|
readonly type: 'string';
|
|
@@ -1074,7 +1066,7 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
1074
1066
|
readonly type: 'array';
|
|
1075
1067
|
readonly items: {
|
|
1076
1068
|
readonly type: 'object';
|
|
1077
|
-
readonly required: readonly [
|
|
1069
|
+
readonly required: readonly ["key"];
|
|
1078
1070
|
readonly properties: {
|
|
1079
1071
|
readonly key: {
|
|
1080
1072
|
readonly type: 'string';
|
|
@@ -1087,7 +1079,7 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
1087
1079
|
readonly type: 'array';
|
|
1088
1080
|
readonly items: {
|
|
1089
1081
|
readonly type: 'object';
|
|
1090
|
-
readonly required: readonly [
|
|
1082
|
+
readonly required: readonly ["property", "title"];
|
|
1091
1083
|
readonly properties: {
|
|
1092
1084
|
readonly property: {
|
|
1093
1085
|
readonly type: 'string';
|
|
@@ -1106,8 +1098,7 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
1106
1098
|
};
|
|
1107
1099
|
readonly type: {
|
|
1108
1100
|
readonly type: 'string';
|
|
1109
|
-
readonly enum: readonly [
|
|
1110
|
-
readonly default: 'checkboxes';
|
|
1101
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
1111
1102
|
};
|
|
1112
1103
|
readonly title: {
|
|
1113
1104
|
readonly type: 'string';
|
|
@@ -1153,7 +1144,7 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
1153
1144
|
readonly type: 'array';
|
|
1154
1145
|
readonly items: {
|
|
1155
1146
|
readonly type: 'object';
|
|
1156
|
-
readonly required: readonly [
|
|
1147
|
+
readonly required: readonly ["type"];
|
|
1157
1148
|
readonly properties: {
|
|
1158
1149
|
readonly type: {
|
|
1159
1150
|
readonly type: 'string';
|
|
@@ -1166,7 +1157,7 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
1166
1157
|
readonly type: 'array';
|
|
1167
1158
|
readonly items: {
|
|
1168
1159
|
readonly type: 'object';
|
|
1169
|
-
readonly required: readonly [
|
|
1160
|
+
readonly required: readonly ["key"];
|
|
1170
1161
|
readonly properties: {
|
|
1171
1162
|
readonly key: {
|
|
1172
1163
|
readonly type: 'string';
|
|
@@ -1179,7 +1170,7 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
1179
1170
|
readonly type: 'array';
|
|
1180
1171
|
readonly items: {
|
|
1181
1172
|
readonly type: 'object';
|
|
1182
|
-
readonly required: readonly [
|
|
1173
|
+
readonly required: readonly ["property", "title"];
|
|
1183
1174
|
readonly properties: {
|
|
1184
1175
|
readonly property: {
|
|
1185
1176
|
readonly type: 'string';
|
|
@@ -1198,8 +1189,7 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
1198
1189
|
};
|
|
1199
1190
|
readonly type: {
|
|
1200
1191
|
readonly type: 'string';
|
|
1201
|
-
readonly enum: readonly [
|
|
1202
|
-
readonly default: 'checkboxes';
|
|
1192
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
1203
1193
|
};
|
|
1204
1194
|
readonly title: {
|
|
1205
1195
|
readonly type: 'string';
|
|
@@ -1245,7 +1235,7 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
1245
1235
|
readonly type: 'array';
|
|
1246
1236
|
readonly items: {
|
|
1247
1237
|
readonly type: 'object';
|
|
1248
|
-
readonly required: readonly [
|
|
1238
|
+
readonly required: readonly ["type"];
|
|
1249
1239
|
readonly properties: {
|
|
1250
1240
|
readonly type: {
|
|
1251
1241
|
readonly type: 'string';
|
|
@@ -1258,7 +1248,7 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
1258
1248
|
readonly type: 'array';
|
|
1259
1249
|
readonly items: {
|
|
1260
1250
|
readonly type: 'object';
|
|
1261
|
-
readonly required: readonly [
|
|
1251
|
+
readonly required: readonly ["key"];
|
|
1262
1252
|
readonly properties: {
|
|
1263
1253
|
readonly key: {
|
|
1264
1254
|
readonly type: 'string';
|
|
@@ -1271,7 +1261,7 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
1271
1261
|
readonly type: 'array';
|
|
1272
1262
|
readonly items: {
|
|
1273
1263
|
readonly type: 'object';
|
|
1274
|
-
readonly required: readonly [
|
|
1264
|
+
readonly required: readonly ["property", "title"];
|
|
1275
1265
|
readonly properties: {
|
|
1276
1266
|
readonly property: {
|
|
1277
1267
|
readonly type: 'string';
|
|
@@ -1290,8 +1280,7 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
1290
1280
|
};
|
|
1291
1281
|
readonly type: {
|
|
1292
1282
|
readonly type: 'string';
|
|
1293
|
-
readonly enum: readonly [
|
|
1294
|
-
readonly default: 'checkboxes';
|
|
1283
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
1295
1284
|
};
|
|
1296
1285
|
readonly title: {
|
|
1297
1286
|
readonly type: 'string';
|
|
@@ -1338,7 +1327,7 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
1338
1327
|
readonly type: 'array';
|
|
1339
1328
|
readonly items: {
|
|
1340
1329
|
readonly type: 'object';
|
|
1341
|
-
readonly required: readonly [
|
|
1330
|
+
readonly required: readonly ["type"];
|
|
1342
1331
|
readonly properties: {
|
|
1343
1332
|
readonly type: {
|
|
1344
1333
|
readonly type: 'string';
|
|
@@ -1351,7 +1340,7 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
1351
1340
|
readonly type: 'array';
|
|
1352
1341
|
readonly items: {
|
|
1353
1342
|
readonly type: 'object';
|
|
1354
|
-
readonly required: readonly [
|
|
1343
|
+
readonly required: readonly ["key"];
|
|
1355
1344
|
readonly properties: {
|
|
1356
1345
|
readonly key: {
|
|
1357
1346
|
readonly type: 'string';
|
|
@@ -1364,7 +1353,7 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
1364
1353
|
readonly type: 'array';
|
|
1365
1354
|
readonly items: {
|
|
1366
1355
|
readonly type: 'object';
|
|
1367
|
-
readonly required: readonly [
|
|
1356
|
+
readonly required: readonly ["property", "title"];
|
|
1368
1357
|
readonly properties: {
|
|
1369
1358
|
readonly property: {
|
|
1370
1359
|
readonly type: 'string';
|
|
@@ -1383,8 +1372,7 @@ export declare const entitiesCatalogConfigSchema: {
|
|
|
1383
1372
|
};
|
|
1384
1373
|
readonly type: {
|
|
1385
1374
|
readonly type: 'string';
|
|
1386
|
-
readonly enum: readonly [
|
|
1387
|
-
readonly default: 'checkboxes';
|
|
1375
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
1388
1376
|
};
|
|
1389
1377
|
readonly title: {
|
|
1390
1378
|
readonly type: 'string';
|