@redocly/config 0.26.3-rc.1 → 0.26.4
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/default-theme-config-schema.d.ts +187 -13
- package/lib/entities-catalog-config-schema.d.ts +184 -0
- package/lib/entities-catalog-config-schema.js +2 -0
- package/lib/ex-theme-config-schemas.d.ts +3 -4
- package/lib/ex-theme-config-schemas.js +1 -2
- package/lib/graphql-config-schema.d.ts +0 -9
- package/lib/graphql-config-schema.js +0 -9
- package/lib/product-override-schema.d.ts +0 -18
- package/lib/root-config-schema.d.ts +940 -148
- package/lib-esm/default-theme-config-schema.d.ts +187 -13
- package/lib-esm/entities-catalog-config-schema.d.ts +184 -0
- package/lib-esm/entities-catalog-config-schema.js +2 -0
- package/lib-esm/ex-theme-config-schemas.d.ts +3 -4
- package/lib-esm/ex-theme-config-schemas.js +1 -2
- package/lib-esm/graphql-config-schema.d.ts +0 -9
- package/lib-esm/graphql-config-schema.js +0 -9
- package/lib-esm/product-override-schema.d.ts +0 -18
- package/lib-esm/root-config-schema.d.ts +5647 -5315
- package/package.json +4 -2
|
@@ -2637,15 +2637,6 @@ export declare const apiConfigSchema: {
|
|
|
2637
2637
|
readonly baseUrlPath: {
|
|
2638
2638
|
readonly type: "string";
|
|
2639
2639
|
};
|
|
2640
|
-
readonly metadata: {
|
|
2641
|
-
readonly type: "object";
|
|
2642
|
-
readonly properties: {
|
|
2643
|
-
readonly apiId: {
|
|
2644
|
-
readonly type: "string";
|
|
2645
|
-
};
|
|
2646
|
-
};
|
|
2647
|
-
readonly additionalProperties: true;
|
|
2648
|
-
};
|
|
2649
2640
|
readonly feedback: {
|
|
2650
2641
|
readonly type: "object";
|
|
2651
2642
|
readonly properties: {
|
|
@@ -4878,15 +4869,6 @@ export declare const apiConfigSchema: {
|
|
|
4878
4869
|
readonly baseUrlPath: {
|
|
4879
4870
|
readonly type: "string";
|
|
4880
4871
|
};
|
|
4881
|
-
readonly metadata: {
|
|
4882
|
-
readonly type: "object";
|
|
4883
|
-
readonly properties: {
|
|
4884
|
-
readonly apiId: {
|
|
4885
|
-
readonly type: "string";
|
|
4886
|
-
};
|
|
4887
|
-
};
|
|
4888
|
-
readonly additionalProperties: true;
|
|
4889
|
-
};
|
|
4890
4872
|
readonly feedback: {
|
|
4891
4873
|
readonly type: "object";
|
|
4892
4874
|
readonly properties: {
|
|
@@ -9398,15 +9380,6 @@ export declare const redoclyConfigSchema: {
|
|
|
9398
9380
|
readonly baseUrlPath: {
|
|
9399
9381
|
readonly type: "string";
|
|
9400
9382
|
};
|
|
9401
|
-
readonly metadata: {
|
|
9402
|
-
readonly type: "object";
|
|
9403
|
-
readonly properties: {
|
|
9404
|
-
readonly apiId: {
|
|
9405
|
-
readonly type: "string";
|
|
9406
|
-
};
|
|
9407
|
-
};
|
|
9408
|
-
readonly additionalProperties: true;
|
|
9409
|
-
};
|
|
9410
9383
|
readonly feedback: {
|
|
9411
9384
|
readonly type: "object";
|
|
9412
9385
|
readonly properties: {
|
|
@@ -10785,6 +10758,190 @@ export declare const redoclyConfigSchema: {
|
|
|
10785
10758
|
};
|
|
10786
10759
|
readonly additionalProperties: false;
|
|
10787
10760
|
};
|
|
10761
|
+
readonly dataSchemas: {
|
|
10762
|
+
readonly type: "object";
|
|
10763
|
+
readonly properties: {
|
|
10764
|
+
readonly slug: {
|
|
10765
|
+
readonly type: "string";
|
|
10766
|
+
};
|
|
10767
|
+
readonly hide: {
|
|
10768
|
+
readonly type: "boolean";
|
|
10769
|
+
};
|
|
10770
|
+
readonly includes: {
|
|
10771
|
+
readonly type: "array";
|
|
10772
|
+
readonly items: {
|
|
10773
|
+
readonly type: "object";
|
|
10774
|
+
readonly required: readonly ["type"];
|
|
10775
|
+
readonly properties: {
|
|
10776
|
+
readonly type: {
|
|
10777
|
+
readonly type: "string";
|
|
10778
|
+
};
|
|
10779
|
+
};
|
|
10780
|
+
readonly additionalProperties: false;
|
|
10781
|
+
};
|
|
10782
|
+
};
|
|
10783
|
+
readonly excludes: {
|
|
10784
|
+
readonly type: "array";
|
|
10785
|
+
readonly items: {
|
|
10786
|
+
readonly type: "object";
|
|
10787
|
+
readonly required: readonly ["key"];
|
|
10788
|
+
readonly properties: {
|
|
10789
|
+
readonly key: {
|
|
10790
|
+
readonly type: "string";
|
|
10791
|
+
};
|
|
10792
|
+
};
|
|
10793
|
+
readonly additionalProperties: false;
|
|
10794
|
+
};
|
|
10795
|
+
};
|
|
10796
|
+
readonly filters: {
|
|
10797
|
+
readonly type: "array";
|
|
10798
|
+
readonly items: {
|
|
10799
|
+
readonly type: "object";
|
|
10800
|
+
readonly required: readonly ["property", "title"];
|
|
10801
|
+
readonly properties: {
|
|
10802
|
+
readonly property: {
|
|
10803
|
+
readonly type: "string";
|
|
10804
|
+
};
|
|
10805
|
+
readonly hide: {
|
|
10806
|
+
readonly type: "boolean";
|
|
10807
|
+
};
|
|
10808
|
+
readonly label: {
|
|
10809
|
+
readonly type: "string";
|
|
10810
|
+
};
|
|
10811
|
+
readonly options: {
|
|
10812
|
+
readonly type: "array";
|
|
10813
|
+
readonly items: {
|
|
10814
|
+
readonly type: "string";
|
|
10815
|
+
};
|
|
10816
|
+
};
|
|
10817
|
+
readonly type: {
|
|
10818
|
+
readonly type: "string";
|
|
10819
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
10820
|
+
readonly default: "checkboxes";
|
|
10821
|
+
};
|
|
10822
|
+
readonly title: {
|
|
10823
|
+
readonly type: "string";
|
|
10824
|
+
};
|
|
10825
|
+
readonly titleTranslationKey: {
|
|
10826
|
+
readonly type: "string";
|
|
10827
|
+
};
|
|
10828
|
+
readonly parentFilter: {
|
|
10829
|
+
readonly type: "string";
|
|
10830
|
+
};
|
|
10831
|
+
readonly valuesMapping: {
|
|
10832
|
+
readonly type: "object";
|
|
10833
|
+
readonly additionalProperties: {
|
|
10834
|
+
readonly type: "string";
|
|
10835
|
+
};
|
|
10836
|
+
};
|
|
10837
|
+
};
|
|
10838
|
+
readonly additionalProperties: false;
|
|
10839
|
+
};
|
|
10840
|
+
};
|
|
10841
|
+
readonly titleTranslationKey: {
|
|
10842
|
+
readonly type: "string";
|
|
10843
|
+
};
|
|
10844
|
+
readonly descriptionTranslationKey: {
|
|
10845
|
+
readonly type: "string";
|
|
10846
|
+
};
|
|
10847
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
10848
|
+
readonly type: "string";
|
|
10849
|
+
};
|
|
10850
|
+
};
|
|
10851
|
+
readonly additionalProperties: false;
|
|
10852
|
+
};
|
|
10853
|
+
readonly apiOperations: {
|
|
10854
|
+
readonly type: "object";
|
|
10855
|
+
readonly properties: {
|
|
10856
|
+
readonly slug: {
|
|
10857
|
+
readonly type: "string";
|
|
10858
|
+
};
|
|
10859
|
+
readonly hide: {
|
|
10860
|
+
readonly type: "boolean";
|
|
10861
|
+
};
|
|
10862
|
+
readonly includes: {
|
|
10863
|
+
readonly type: "array";
|
|
10864
|
+
readonly items: {
|
|
10865
|
+
readonly type: "object";
|
|
10866
|
+
readonly required: readonly ["type"];
|
|
10867
|
+
readonly properties: {
|
|
10868
|
+
readonly type: {
|
|
10869
|
+
readonly type: "string";
|
|
10870
|
+
};
|
|
10871
|
+
};
|
|
10872
|
+
readonly additionalProperties: false;
|
|
10873
|
+
};
|
|
10874
|
+
};
|
|
10875
|
+
readonly excludes: {
|
|
10876
|
+
readonly type: "array";
|
|
10877
|
+
readonly items: {
|
|
10878
|
+
readonly type: "object";
|
|
10879
|
+
readonly required: readonly ["key"];
|
|
10880
|
+
readonly properties: {
|
|
10881
|
+
readonly key: {
|
|
10882
|
+
readonly type: "string";
|
|
10883
|
+
};
|
|
10884
|
+
};
|
|
10885
|
+
readonly additionalProperties: false;
|
|
10886
|
+
};
|
|
10887
|
+
};
|
|
10888
|
+
readonly filters: {
|
|
10889
|
+
readonly type: "array";
|
|
10890
|
+
readonly items: {
|
|
10891
|
+
readonly type: "object";
|
|
10892
|
+
readonly required: readonly ["property", "title"];
|
|
10893
|
+
readonly properties: {
|
|
10894
|
+
readonly property: {
|
|
10895
|
+
readonly type: "string";
|
|
10896
|
+
};
|
|
10897
|
+
readonly hide: {
|
|
10898
|
+
readonly type: "boolean";
|
|
10899
|
+
};
|
|
10900
|
+
readonly label: {
|
|
10901
|
+
readonly type: "string";
|
|
10902
|
+
};
|
|
10903
|
+
readonly options: {
|
|
10904
|
+
readonly type: "array";
|
|
10905
|
+
readonly items: {
|
|
10906
|
+
readonly type: "string";
|
|
10907
|
+
};
|
|
10908
|
+
};
|
|
10909
|
+
readonly type: {
|
|
10910
|
+
readonly type: "string";
|
|
10911
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
10912
|
+
readonly default: "checkboxes";
|
|
10913
|
+
};
|
|
10914
|
+
readonly title: {
|
|
10915
|
+
readonly type: "string";
|
|
10916
|
+
};
|
|
10917
|
+
readonly titleTranslationKey: {
|
|
10918
|
+
readonly type: "string";
|
|
10919
|
+
};
|
|
10920
|
+
readonly parentFilter: {
|
|
10921
|
+
readonly type: "string";
|
|
10922
|
+
};
|
|
10923
|
+
readonly valuesMapping: {
|
|
10924
|
+
readonly type: "object";
|
|
10925
|
+
readonly additionalProperties: {
|
|
10926
|
+
readonly type: "string";
|
|
10927
|
+
};
|
|
10928
|
+
};
|
|
10929
|
+
};
|
|
10930
|
+
readonly additionalProperties: false;
|
|
10931
|
+
};
|
|
10932
|
+
};
|
|
10933
|
+
readonly titleTranslationKey: {
|
|
10934
|
+
readonly type: "string";
|
|
10935
|
+
};
|
|
10936
|
+
readonly descriptionTranslationKey: {
|
|
10937
|
+
readonly type: "string";
|
|
10938
|
+
};
|
|
10939
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
10940
|
+
readonly type: "string";
|
|
10941
|
+
};
|
|
10942
|
+
};
|
|
10943
|
+
readonly additionalProperties: false;
|
|
10944
|
+
};
|
|
10788
10945
|
};
|
|
10789
10946
|
readonly additionalProperties: false;
|
|
10790
10947
|
};
|
|
@@ -11263,16 +11420,15 @@ export declare const redoclyConfigSchema: {
|
|
|
11263
11420
|
readonly type: "object";
|
|
11264
11421
|
readonly additionalProperties: true;
|
|
11265
11422
|
};
|
|
11266
|
-
readonly ignore: {
|
|
11267
|
-
readonly type: "boolean";
|
|
11268
|
-
};
|
|
11269
11423
|
readonly where: {
|
|
11270
11424
|
readonly type: "object";
|
|
11271
11425
|
readonly required: readonly ["metadata"];
|
|
11272
11426
|
readonly properties: {
|
|
11273
11427
|
readonly metadata: {
|
|
11274
11428
|
readonly type: "object";
|
|
11275
|
-
readonly additionalProperties: {
|
|
11429
|
+
readonly additionalProperties: {
|
|
11430
|
+
readonly type: "string";
|
|
11431
|
+
};
|
|
11276
11432
|
};
|
|
11277
11433
|
};
|
|
11278
11434
|
readonly additionalProperties: false;
|
|
@@ -14508,15 +14664,6 @@ export declare const redoclyConfigSchema: {
|
|
|
14508
14664
|
readonly baseUrlPath: {
|
|
14509
14665
|
readonly type: "string";
|
|
14510
14666
|
};
|
|
14511
|
-
readonly metadata: {
|
|
14512
|
-
readonly type: "object";
|
|
14513
|
-
readonly properties: {
|
|
14514
|
-
readonly apiId: {
|
|
14515
|
-
readonly type: "string";
|
|
14516
|
-
};
|
|
14517
|
-
};
|
|
14518
|
-
readonly additionalProperties: true;
|
|
14519
|
-
};
|
|
14520
14667
|
readonly feedback: {
|
|
14521
14668
|
readonly type: "object";
|
|
14522
14669
|
readonly properties: {
|
|
@@ -15898,6 +16045,190 @@ export declare const redoclyConfigSchema: {
|
|
|
15898
16045
|
};
|
|
15899
16046
|
readonly additionalProperties: false;
|
|
15900
16047
|
};
|
|
16048
|
+
readonly dataSchemas: {
|
|
16049
|
+
readonly type: "object";
|
|
16050
|
+
readonly properties: {
|
|
16051
|
+
readonly slug: {
|
|
16052
|
+
readonly type: "string";
|
|
16053
|
+
};
|
|
16054
|
+
readonly hide: {
|
|
16055
|
+
readonly type: "boolean";
|
|
16056
|
+
};
|
|
16057
|
+
readonly includes: {
|
|
16058
|
+
readonly type: "array";
|
|
16059
|
+
readonly items: {
|
|
16060
|
+
readonly type: "object";
|
|
16061
|
+
readonly required: readonly ["type"];
|
|
16062
|
+
readonly properties: {
|
|
16063
|
+
readonly type: {
|
|
16064
|
+
readonly type: "string";
|
|
16065
|
+
};
|
|
16066
|
+
};
|
|
16067
|
+
readonly additionalProperties: false;
|
|
16068
|
+
};
|
|
16069
|
+
};
|
|
16070
|
+
readonly excludes: {
|
|
16071
|
+
readonly type: "array";
|
|
16072
|
+
readonly items: {
|
|
16073
|
+
readonly type: "object";
|
|
16074
|
+
readonly required: readonly ["key"];
|
|
16075
|
+
readonly properties: {
|
|
16076
|
+
readonly key: {
|
|
16077
|
+
readonly type: "string";
|
|
16078
|
+
};
|
|
16079
|
+
};
|
|
16080
|
+
readonly additionalProperties: false;
|
|
16081
|
+
};
|
|
16082
|
+
};
|
|
16083
|
+
readonly filters: {
|
|
16084
|
+
readonly type: "array";
|
|
16085
|
+
readonly items: {
|
|
16086
|
+
readonly type: "object";
|
|
16087
|
+
readonly required: readonly ["property", "title"];
|
|
16088
|
+
readonly properties: {
|
|
16089
|
+
readonly property: {
|
|
16090
|
+
readonly type: "string";
|
|
16091
|
+
};
|
|
16092
|
+
readonly hide: {
|
|
16093
|
+
readonly type: "boolean";
|
|
16094
|
+
};
|
|
16095
|
+
readonly label: {
|
|
16096
|
+
readonly type: "string";
|
|
16097
|
+
};
|
|
16098
|
+
readonly options: {
|
|
16099
|
+
readonly type: "array";
|
|
16100
|
+
readonly items: {
|
|
16101
|
+
readonly type: "string";
|
|
16102
|
+
};
|
|
16103
|
+
};
|
|
16104
|
+
readonly type: {
|
|
16105
|
+
readonly type: "string";
|
|
16106
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
16107
|
+
readonly default: "checkboxes";
|
|
16108
|
+
};
|
|
16109
|
+
readonly title: {
|
|
16110
|
+
readonly type: "string";
|
|
16111
|
+
};
|
|
16112
|
+
readonly titleTranslationKey: {
|
|
16113
|
+
readonly type: "string";
|
|
16114
|
+
};
|
|
16115
|
+
readonly parentFilter: {
|
|
16116
|
+
readonly type: "string";
|
|
16117
|
+
};
|
|
16118
|
+
readonly valuesMapping: {
|
|
16119
|
+
readonly type: "object";
|
|
16120
|
+
readonly additionalProperties: {
|
|
16121
|
+
readonly type: "string";
|
|
16122
|
+
};
|
|
16123
|
+
};
|
|
16124
|
+
};
|
|
16125
|
+
readonly additionalProperties: false;
|
|
16126
|
+
};
|
|
16127
|
+
};
|
|
16128
|
+
readonly titleTranslationKey: {
|
|
16129
|
+
readonly type: "string";
|
|
16130
|
+
};
|
|
16131
|
+
readonly descriptionTranslationKey: {
|
|
16132
|
+
readonly type: "string";
|
|
16133
|
+
};
|
|
16134
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
16135
|
+
readonly type: "string";
|
|
16136
|
+
};
|
|
16137
|
+
};
|
|
16138
|
+
readonly additionalProperties: false;
|
|
16139
|
+
};
|
|
16140
|
+
readonly apiOperations: {
|
|
16141
|
+
readonly type: "object";
|
|
16142
|
+
readonly properties: {
|
|
16143
|
+
readonly slug: {
|
|
16144
|
+
readonly type: "string";
|
|
16145
|
+
};
|
|
16146
|
+
readonly hide: {
|
|
16147
|
+
readonly type: "boolean";
|
|
16148
|
+
};
|
|
16149
|
+
readonly includes: {
|
|
16150
|
+
readonly type: "array";
|
|
16151
|
+
readonly items: {
|
|
16152
|
+
readonly type: "object";
|
|
16153
|
+
readonly required: readonly ["type"];
|
|
16154
|
+
readonly properties: {
|
|
16155
|
+
readonly type: {
|
|
16156
|
+
readonly type: "string";
|
|
16157
|
+
};
|
|
16158
|
+
};
|
|
16159
|
+
readonly additionalProperties: false;
|
|
16160
|
+
};
|
|
16161
|
+
};
|
|
16162
|
+
readonly excludes: {
|
|
16163
|
+
readonly type: "array";
|
|
16164
|
+
readonly items: {
|
|
16165
|
+
readonly type: "object";
|
|
16166
|
+
readonly required: readonly ["key"];
|
|
16167
|
+
readonly properties: {
|
|
16168
|
+
readonly key: {
|
|
16169
|
+
readonly type: "string";
|
|
16170
|
+
};
|
|
16171
|
+
};
|
|
16172
|
+
readonly additionalProperties: false;
|
|
16173
|
+
};
|
|
16174
|
+
};
|
|
16175
|
+
readonly filters: {
|
|
16176
|
+
readonly type: "array";
|
|
16177
|
+
readonly items: {
|
|
16178
|
+
readonly type: "object";
|
|
16179
|
+
readonly required: readonly ["property", "title"];
|
|
16180
|
+
readonly properties: {
|
|
16181
|
+
readonly property: {
|
|
16182
|
+
readonly type: "string";
|
|
16183
|
+
};
|
|
16184
|
+
readonly hide: {
|
|
16185
|
+
readonly type: "boolean";
|
|
16186
|
+
};
|
|
16187
|
+
readonly label: {
|
|
16188
|
+
readonly type: "string";
|
|
16189
|
+
};
|
|
16190
|
+
readonly options: {
|
|
16191
|
+
readonly type: "array";
|
|
16192
|
+
readonly items: {
|
|
16193
|
+
readonly type: "string";
|
|
16194
|
+
};
|
|
16195
|
+
};
|
|
16196
|
+
readonly type: {
|
|
16197
|
+
readonly type: "string";
|
|
16198
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
16199
|
+
readonly default: "checkboxes";
|
|
16200
|
+
};
|
|
16201
|
+
readonly title: {
|
|
16202
|
+
readonly type: "string";
|
|
16203
|
+
};
|
|
16204
|
+
readonly titleTranslationKey: {
|
|
16205
|
+
readonly type: "string";
|
|
16206
|
+
};
|
|
16207
|
+
readonly parentFilter: {
|
|
16208
|
+
readonly type: "string";
|
|
16209
|
+
};
|
|
16210
|
+
readonly valuesMapping: {
|
|
16211
|
+
readonly type: "object";
|
|
16212
|
+
readonly additionalProperties: {
|
|
16213
|
+
readonly type: "string";
|
|
16214
|
+
};
|
|
16215
|
+
};
|
|
16216
|
+
};
|
|
16217
|
+
readonly additionalProperties: false;
|
|
16218
|
+
};
|
|
16219
|
+
};
|
|
16220
|
+
readonly titleTranslationKey: {
|
|
16221
|
+
readonly type: "string";
|
|
16222
|
+
};
|
|
16223
|
+
readonly descriptionTranslationKey: {
|
|
16224
|
+
readonly type: "string";
|
|
16225
|
+
};
|
|
16226
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
16227
|
+
readonly type: "string";
|
|
16228
|
+
};
|
|
16229
|
+
};
|
|
16230
|
+
readonly additionalProperties: false;
|
|
16231
|
+
};
|
|
15901
16232
|
};
|
|
15902
16233
|
readonly additionalProperties: false;
|
|
15903
16234
|
};
|
|
@@ -16376,16 +16707,15 @@ export declare const redoclyConfigSchema: {
|
|
|
16376
16707
|
readonly type: "object";
|
|
16377
16708
|
readonly additionalProperties: true;
|
|
16378
16709
|
};
|
|
16379
|
-
readonly ignore: {
|
|
16380
|
-
readonly type: "boolean";
|
|
16381
|
-
};
|
|
16382
16710
|
readonly where: {
|
|
16383
16711
|
readonly type: "object";
|
|
16384
16712
|
readonly required: readonly ["metadata"];
|
|
16385
16713
|
readonly properties: {
|
|
16386
16714
|
readonly metadata: {
|
|
16387
16715
|
readonly type: "object";
|
|
16388
|
-
readonly additionalProperties: {
|
|
16716
|
+
readonly additionalProperties: {
|
|
16717
|
+
readonly type: "string";
|
|
16718
|
+
};
|
|
16389
16719
|
};
|
|
16390
16720
|
};
|
|
16391
16721
|
readonly additionalProperties: false;
|
|
@@ -18996,15 +19326,6 @@ export declare const redoclyConfigSchema: {
|
|
|
18996
19326
|
readonly baseUrlPath: {
|
|
18997
19327
|
readonly type: "string";
|
|
18998
19328
|
};
|
|
18999
|
-
readonly metadata: {
|
|
19000
|
-
readonly type: "object";
|
|
19001
|
-
readonly properties: {
|
|
19002
|
-
readonly apiId: {
|
|
19003
|
-
readonly type: "string";
|
|
19004
|
-
};
|
|
19005
|
-
};
|
|
19006
|
-
readonly additionalProperties: true;
|
|
19007
|
-
};
|
|
19008
19329
|
readonly feedback: {
|
|
19009
19330
|
readonly type: "object";
|
|
19010
19331
|
readonly properties: {
|
|
@@ -21237,15 +21558,6 @@ export declare const redoclyConfigSchema: {
|
|
|
21237
21558
|
readonly baseUrlPath: {
|
|
21238
21559
|
readonly type: "string";
|
|
21239
21560
|
};
|
|
21240
|
-
readonly metadata: {
|
|
21241
|
-
readonly type: "object";
|
|
21242
|
-
readonly properties: {
|
|
21243
|
-
readonly apiId: {
|
|
21244
|
-
readonly type: "string";
|
|
21245
|
-
};
|
|
21246
|
-
};
|
|
21247
|
-
readonly additionalProperties: true;
|
|
21248
|
-
};
|
|
21249
21561
|
readonly feedback: {
|
|
21250
21562
|
readonly type: "object";
|
|
21251
21563
|
readonly properties: {
|
|
@@ -23884,15 +24196,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
23884
24196
|
};
|
|
23885
24197
|
type: "object";
|
|
23886
24198
|
};
|
|
23887
|
-
metadata: {
|
|
23888
|
-
properties: {
|
|
23889
|
-
apiId: {
|
|
23890
|
-
type: "string";
|
|
23891
|
-
};
|
|
23892
|
-
};
|
|
23893
|
-
additionalProperties: true;
|
|
23894
|
-
type: "object";
|
|
23895
|
-
};
|
|
23896
24199
|
feedback: {
|
|
23897
24200
|
properties: {
|
|
23898
24201
|
type: {
|
|
@@ -25001,6 +25304,102 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25001
25304
|
additionalProperties: false;
|
|
25002
25305
|
type: "object";
|
|
25003
25306
|
};
|
|
25307
|
+
dataSchemas: {
|
|
25308
|
+
properties: {
|
|
25309
|
+
includes: {
|
|
25310
|
+
items: {
|
|
25311
|
+
properties: any;
|
|
25312
|
+
additionalProperties: false;
|
|
25313
|
+
type: "object";
|
|
25314
|
+
required: "type"[];
|
|
25315
|
+
};
|
|
25316
|
+
type: "array";
|
|
25317
|
+
};
|
|
25318
|
+
slug: {
|
|
25319
|
+
type: "string";
|
|
25320
|
+
};
|
|
25321
|
+
hide: {
|
|
25322
|
+
type: "boolean";
|
|
25323
|
+
};
|
|
25324
|
+
filters: {
|
|
25325
|
+
items: {
|
|
25326
|
+
properties: any;
|
|
25327
|
+
additionalProperties: false;
|
|
25328
|
+
type: "object";
|
|
25329
|
+
required: ("title" | "property")[];
|
|
25330
|
+
};
|
|
25331
|
+
type: "array";
|
|
25332
|
+
};
|
|
25333
|
+
titleTranslationKey: {
|
|
25334
|
+
type: "string";
|
|
25335
|
+
};
|
|
25336
|
+
descriptionTranslationKey: {
|
|
25337
|
+
type: "string";
|
|
25338
|
+
};
|
|
25339
|
+
excludes: {
|
|
25340
|
+
items: {
|
|
25341
|
+
properties: any;
|
|
25342
|
+
additionalProperties: false;
|
|
25343
|
+
type: "object";
|
|
25344
|
+
required: "key"[];
|
|
25345
|
+
};
|
|
25346
|
+
type: "array";
|
|
25347
|
+
};
|
|
25348
|
+
catalogSwitcherLabelTranslationKey: {
|
|
25349
|
+
type: "string";
|
|
25350
|
+
};
|
|
25351
|
+
};
|
|
25352
|
+
additionalProperties: false;
|
|
25353
|
+
type: "object";
|
|
25354
|
+
};
|
|
25355
|
+
apiOperations: {
|
|
25356
|
+
properties: {
|
|
25357
|
+
includes: {
|
|
25358
|
+
items: {
|
|
25359
|
+
properties: any;
|
|
25360
|
+
additionalProperties: false;
|
|
25361
|
+
type: "object";
|
|
25362
|
+
required: "type"[];
|
|
25363
|
+
};
|
|
25364
|
+
type: "array";
|
|
25365
|
+
};
|
|
25366
|
+
slug: {
|
|
25367
|
+
type: "string";
|
|
25368
|
+
};
|
|
25369
|
+
hide: {
|
|
25370
|
+
type: "boolean";
|
|
25371
|
+
};
|
|
25372
|
+
filters: {
|
|
25373
|
+
items: {
|
|
25374
|
+
properties: any;
|
|
25375
|
+
additionalProperties: false;
|
|
25376
|
+
type: "object";
|
|
25377
|
+
required: ("title" | "property")[];
|
|
25378
|
+
};
|
|
25379
|
+
type: "array";
|
|
25380
|
+
};
|
|
25381
|
+
titleTranslationKey: {
|
|
25382
|
+
type: "string";
|
|
25383
|
+
};
|
|
25384
|
+
descriptionTranslationKey: {
|
|
25385
|
+
type: "string";
|
|
25386
|
+
};
|
|
25387
|
+
excludes: {
|
|
25388
|
+
items: {
|
|
25389
|
+
properties: any;
|
|
25390
|
+
additionalProperties: false;
|
|
25391
|
+
type: "object";
|
|
25392
|
+
required: "key"[];
|
|
25393
|
+
};
|
|
25394
|
+
type: "array";
|
|
25395
|
+
};
|
|
25396
|
+
catalogSwitcherLabelTranslationKey: {
|
|
25397
|
+
type: "string";
|
|
25398
|
+
};
|
|
25399
|
+
};
|
|
25400
|
+
additionalProperties: false;
|
|
25401
|
+
type: "object";
|
|
25402
|
+
};
|
|
25004
25403
|
};
|
|
25005
25404
|
additionalProperties: false;
|
|
25006
25405
|
type: "object";
|
|
@@ -25407,9 +25806,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25407
25806
|
type: "object";
|
|
25408
25807
|
required: "metadata"[];
|
|
25409
25808
|
};
|
|
25410
|
-
ignore: {
|
|
25411
|
-
type: "boolean";
|
|
25412
|
-
};
|
|
25413
25809
|
rules: {
|
|
25414
25810
|
additionalProperties: true;
|
|
25415
25811
|
type: "object";
|
|
@@ -28324,15 +28720,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
28324
28720
|
};
|
|
28325
28721
|
type: "object";
|
|
28326
28722
|
};
|
|
28327
|
-
metadata: {
|
|
28328
|
-
properties: {
|
|
28329
|
-
apiId: {
|
|
28330
|
-
type: "string";
|
|
28331
|
-
};
|
|
28332
|
-
};
|
|
28333
|
-
additionalProperties: true;
|
|
28334
|
-
type: "object";
|
|
28335
|
-
};
|
|
28336
28723
|
feedback: {
|
|
28337
28724
|
properties: {
|
|
28338
28725
|
type: {
|
|
@@ -29441,6 +29828,102 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29441
29828
|
additionalProperties: false;
|
|
29442
29829
|
type: "object";
|
|
29443
29830
|
};
|
|
29831
|
+
dataSchemas: {
|
|
29832
|
+
properties: {
|
|
29833
|
+
includes: {
|
|
29834
|
+
items: {
|
|
29835
|
+
properties: any;
|
|
29836
|
+
additionalProperties: false;
|
|
29837
|
+
type: "object";
|
|
29838
|
+
required: "type"[];
|
|
29839
|
+
};
|
|
29840
|
+
type: "array";
|
|
29841
|
+
};
|
|
29842
|
+
slug: {
|
|
29843
|
+
type: "string";
|
|
29844
|
+
};
|
|
29845
|
+
hide: {
|
|
29846
|
+
type: "boolean";
|
|
29847
|
+
};
|
|
29848
|
+
filters: {
|
|
29849
|
+
items: {
|
|
29850
|
+
properties: any;
|
|
29851
|
+
additionalProperties: false;
|
|
29852
|
+
type: "object";
|
|
29853
|
+
required: ("title" | "property")[];
|
|
29854
|
+
};
|
|
29855
|
+
type: "array";
|
|
29856
|
+
};
|
|
29857
|
+
titleTranslationKey: {
|
|
29858
|
+
type: "string";
|
|
29859
|
+
};
|
|
29860
|
+
descriptionTranslationKey: {
|
|
29861
|
+
type: "string";
|
|
29862
|
+
};
|
|
29863
|
+
excludes: {
|
|
29864
|
+
items: {
|
|
29865
|
+
properties: any;
|
|
29866
|
+
additionalProperties: false;
|
|
29867
|
+
type: "object";
|
|
29868
|
+
required: "key"[];
|
|
29869
|
+
};
|
|
29870
|
+
type: "array";
|
|
29871
|
+
};
|
|
29872
|
+
catalogSwitcherLabelTranslationKey: {
|
|
29873
|
+
type: "string";
|
|
29874
|
+
};
|
|
29875
|
+
};
|
|
29876
|
+
additionalProperties: false;
|
|
29877
|
+
type: "object";
|
|
29878
|
+
};
|
|
29879
|
+
apiOperations: {
|
|
29880
|
+
properties: {
|
|
29881
|
+
includes: {
|
|
29882
|
+
items: {
|
|
29883
|
+
properties: any;
|
|
29884
|
+
additionalProperties: false;
|
|
29885
|
+
type: "object";
|
|
29886
|
+
required: "type"[];
|
|
29887
|
+
};
|
|
29888
|
+
type: "array";
|
|
29889
|
+
};
|
|
29890
|
+
slug: {
|
|
29891
|
+
type: "string";
|
|
29892
|
+
};
|
|
29893
|
+
hide: {
|
|
29894
|
+
type: "boolean";
|
|
29895
|
+
};
|
|
29896
|
+
filters: {
|
|
29897
|
+
items: {
|
|
29898
|
+
properties: any;
|
|
29899
|
+
additionalProperties: false;
|
|
29900
|
+
type: "object";
|
|
29901
|
+
required: ("title" | "property")[];
|
|
29902
|
+
};
|
|
29903
|
+
type: "array";
|
|
29904
|
+
};
|
|
29905
|
+
titleTranslationKey: {
|
|
29906
|
+
type: "string";
|
|
29907
|
+
};
|
|
29908
|
+
descriptionTranslationKey: {
|
|
29909
|
+
type: "string";
|
|
29910
|
+
};
|
|
29911
|
+
excludes: {
|
|
29912
|
+
items: {
|
|
29913
|
+
properties: any;
|
|
29914
|
+
additionalProperties: false;
|
|
29915
|
+
type: "object";
|
|
29916
|
+
required: "key"[];
|
|
29917
|
+
};
|
|
29918
|
+
type: "array";
|
|
29919
|
+
};
|
|
29920
|
+
catalogSwitcherLabelTranslationKey: {
|
|
29921
|
+
type: "string";
|
|
29922
|
+
};
|
|
29923
|
+
};
|
|
29924
|
+
additionalProperties: false;
|
|
29925
|
+
type: "object";
|
|
29926
|
+
};
|
|
29444
29927
|
};
|
|
29445
29928
|
additionalProperties: false;
|
|
29446
29929
|
type: "object";
|
|
@@ -29847,9 +30330,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29847
30330
|
type: "object";
|
|
29848
30331
|
required: "metadata"[];
|
|
29849
30332
|
};
|
|
29850
|
-
ignore: {
|
|
29851
|
-
type: "boolean";
|
|
29852
|
-
};
|
|
29853
30333
|
rules: {
|
|
29854
30334
|
additionalProperties: true;
|
|
29855
30335
|
type: "object";
|
|
@@ -31697,15 +32177,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
31697
32177
|
};
|
|
31698
32178
|
type: "object";
|
|
31699
32179
|
};
|
|
31700
|
-
metadata: {
|
|
31701
|
-
properties: {
|
|
31702
|
-
apiId: {
|
|
31703
|
-
type: "string";
|
|
31704
|
-
};
|
|
31705
|
-
};
|
|
31706
|
-
additionalProperties: true;
|
|
31707
|
-
type: "object";
|
|
31708
|
-
};
|
|
31709
32180
|
feedback: {
|
|
31710
32181
|
properties: {
|
|
31711
32182
|
type: {
|
|
@@ -33446,15 +33917,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
33446
33917
|
};
|
|
33447
33918
|
type: "object";
|
|
33448
33919
|
};
|
|
33449
|
-
metadata: {
|
|
33450
|
-
properties: {
|
|
33451
|
-
apiId: {
|
|
33452
|
-
type: "string";
|
|
33453
|
-
};
|
|
33454
|
-
};
|
|
33455
|
-
additionalProperties: true;
|
|
33456
|
-
type: "object";
|
|
33457
|
-
};
|
|
33458
33920
|
feedback: {
|
|
33459
33921
|
properties: {
|
|
33460
33922
|
type: {
|
|
@@ -37501,15 +37963,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
37501
37963
|
readonly baseUrlPath: {
|
|
37502
37964
|
readonly type: "string";
|
|
37503
37965
|
};
|
|
37504
|
-
readonly metadata: {
|
|
37505
|
-
readonly type: "object";
|
|
37506
|
-
readonly properties: {
|
|
37507
|
-
readonly apiId: {
|
|
37508
|
-
readonly type: "string";
|
|
37509
|
-
};
|
|
37510
|
-
};
|
|
37511
|
-
readonly additionalProperties: true;
|
|
37512
|
-
};
|
|
37513
37966
|
readonly feedback: {
|
|
37514
37967
|
readonly type: "object";
|
|
37515
37968
|
readonly properties: {
|
|
@@ -38888,6 +39341,190 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
38888
39341
|
};
|
|
38889
39342
|
readonly additionalProperties: false;
|
|
38890
39343
|
};
|
|
39344
|
+
readonly dataSchemas: {
|
|
39345
|
+
readonly type: "object";
|
|
39346
|
+
readonly properties: {
|
|
39347
|
+
readonly slug: {
|
|
39348
|
+
readonly type: "string";
|
|
39349
|
+
};
|
|
39350
|
+
readonly hide: {
|
|
39351
|
+
readonly type: "boolean";
|
|
39352
|
+
};
|
|
39353
|
+
readonly includes: {
|
|
39354
|
+
readonly type: "array";
|
|
39355
|
+
readonly items: {
|
|
39356
|
+
readonly type: "object";
|
|
39357
|
+
readonly required: readonly ["type"];
|
|
39358
|
+
readonly properties: {
|
|
39359
|
+
readonly type: {
|
|
39360
|
+
readonly type: "string";
|
|
39361
|
+
};
|
|
39362
|
+
};
|
|
39363
|
+
readonly additionalProperties: false;
|
|
39364
|
+
};
|
|
39365
|
+
};
|
|
39366
|
+
readonly excludes: {
|
|
39367
|
+
readonly type: "array";
|
|
39368
|
+
readonly items: {
|
|
39369
|
+
readonly type: "object";
|
|
39370
|
+
readonly required: readonly ["key"];
|
|
39371
|
+
readonly properties: {
|
|
39372
|
+
readonly key: {
|
|
39373
|
+
readonly type: "string";
|
|
39374
|
+
};
|
|
39375
|
+
};
|
|
39376
|
+
readonly additionalProperties: false;
|
|
39377
|
+
};
|
|
39378
|
+
};
|
|
39379
|
+
readonly filters: {
|
|
39380
|
+
readonly type: "array";
|
|
39381
|
+
readonly items: {
|
|
39382
|
+
readonly type: "object";
|
|
39383
|
+
readonly required: readonly ["property", "title"];
|
|
39384
|
+
readonly properties: {
|
|
39385
|
+
readonly property: {
|
|
39386
|
+
readonly type: "string";
|
|
39387
|
+
};
|
|
39388
|
+
readonly hide: {
|
|
39389
|
+
readonly type: "boolean";
|
|
39390
|
+
};
|
|
39391
|
+
readonly label: {
|
|
39392
|
+
readonly type: "string";
|
|
39393
|
+
};
|
|
39394
|
+
readonly options: {
|
|
39395
|
+
readonly type: "array";
|
|
39396
|
+
readonly items: {
|
|
39397
|
+
readonly type: "string";
|
|
39398
|
+
};
|
|
39399
|
+
};
|
|
39400
|
+
readonly type: {
|
|
39401
|
+
readonly type: "string";
|
|
39402
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
39403
|
+
readonly default: "checkboxes";
|
|
39404
|
+
};
|
|
39405
|
+
readonly title: {
|
|
39406
|
+
readonly type: "string";
|
|
39407
|
+
};
|
|
39408
|
+
readonly titleTranslationKey: {
|
|
39409
|
+
readonly type: "string";
|
|
39410
|
+
};
|
|
39411
|
+
readonly parentFilter: {
|
|
39412
|
+
readonly type: "string";
|
|
39413
|
+
};
|
|
39414
|
+
readonly valuesMapping: {
|
|
39415
|
+
readonly type: "object";
|
|
39416
|
+
readonly additionalProperties: {
|
|
39417
|
+
readonly type: "string";
|
|
39418
|
+
};
|
|
39419
|
+
};
|
|
39420
|
+
};
|
|
39421
|
+
readonly additionalProperties: false;
|
|
39422
|
+
};
|
|
39423
|
+
};
|
|
39424
|
+
readonly titleTranslationKey: {
|
|
39425
|
+
readonly type: "string";
|
|
39426
|
+
};
|
|
39427
|
+
readonly descriptionTranslationKey: {
|
|
39428
|
+
readonly type: "string";
|
|
39429
|
+
};
|
|
39430
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
39431
|
+
readonly type: "string";
|
|
39432
|
+
};
|
|
39433
|
+
};
|
|
39434
|
+
readonly additionalProperties: false;
|
|
39435
|
+
};
|
|
39436
|
+
readonly apiOperations: {
|
|
39437
|
+
readonly type: "object";
|
|
39438
|
+
readonly properties: {
|
|
39439
|
+
readonly slug: {
|
|
39440
|
+
readonly type: "string";
|
|
39441
|
+
};
|
|
39442
|
+
readonly hide: {
|
|
39443
|
+
readonly type: "boolean";
|
|
39444
|
+
};
|
|
39445
|
+
readonly includes: {
|
|
39446
|
+
readonly type: "array";
|
|
39447
|
+
readonly items: {
|
|
39448
|
+
readonly type: "object";
|
|
39449
|
+
readonly required: readonly ["type"];
|
|
39450
|
+
readonly properties: {
|
|
39451
|
+
readonly type: {
|
|
39452
|
+
readonly type: "string";
|
|
39453
|
+
};
|
|
39454
|
+
};
|
|
39455
|
+
readonly additionalProperties: false;
|
|
39456
|
+
};
|
|
39457
|
+
};
|
|
39458
|
+
readonly excludes: {
|
|
39459
|
+
readonly type: "array";
|
|
39460
|
+
readonly items: {
|
|
39461
|
+
readonly type: "object";
|
|
39462
|
+
readonly required: readonly ["key"];
|
|
39463
|
+
readonly properties: {
|
|
39464
|
+
readonly key: {
|
|
39465
|
+
readonly type: "string";
|
|
39466
|
+
};
|
|
39467
|
+
};
|
|
39468
|
+
readonly additionalProperties: false;
|
|
39469
|
+
};
|
|
39470
|
+
};
|
|
39471
|
+
readonly filters: {
|
|
39472
|
+
readonly type: "array";
|
|
39473
|
+
readonly items: {
|
|
39474
|
+
readonly type: "object";
|
|
39475
|
+
readonly required: readonly ["property", "title"];
|
|
39476
|
+
readonly properties: {
|
|
39477
|
+
readonly property: {
|
|
39478
|
+
readonly type: "string";
|
|
39479
|
+
};
|
|
39480
|
+
readonly hide: {
|
|
39481
|
+
readonly type: "boolean";
|
|
39482
|
+
};
|
|
39483
|
+
readonly label: {
|
|
39484
|
+
readonly type: "string";
|
|
39485
|
+
};
|
|
39486
|
+
readonly options: {
|
|
39487
|
+
readonly type: "array";
|
|
39488
|
+
readonly items: {
|
|
39489
|
+
readonly type: "string";
|
|
39490
|
+
};
|
|
39491
|
+
};
|
|
39492
|
+
readonly type: {
|
|
39493
|
+
readonly type: "string";
|
|
39494
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
39495
|
+
readonly default: "checkboxes";
|
|
39496
|
+
};
|
|
39497
|
+
readonly title: {
|
|
39498
|
+
readonly type: "string";
|
|
39499
|
+
};
|
|
39500
|
+
readonly titleTranslationKey: {
|
|
39501
|
+
readonly type: "string";
|
|
39502
|
+
};
|
|
39503
|
+
readonly parentFilter: {
|
|
39504
|
+
readonly type: "string";
|
|
39505
|
+
};
|
|
39506
|
+
readonly valuesMapping: {
|
|
39507
|
+
readonly type: "object";
|
|
39508
|
+
readonly additionalProperties: {
|
|
39509
|
+
readonly type: "string";
|
|
39510
|
+
};
|
|
39511
|
+
};
|
|
39512
|
+
};
|
|
39513
|
+
readonly additionalProperties: false;
|
|
39514
|
+
};
|
|
39515
|
+
};
|
|
39516
|
+
readonly titleTranslationKey: {
|
|
39517
|
+
readonly type: "string";
|
|
39518
|
+
};
|
|
39519
|
+
readonly descriptionTranslationKey: {
|
|
39520
|
+
readonly type: "string";
|
|
39521
|
+
};
|
|
39522
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
39523
|
+
readonly type: "string";
|
|
39524
|
+
};
|
|
39525
|
+
};
|
|
39526
|
+
readonly additionalProperties: false;
|
|
39527
|
+
};
|
|
38891
39528
|
};
|
|
38892
39529
|
readonly additionalProperties: false;
|
|
38893
39530
|
};
|
|
@@ -39366,16 +40003,15 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
39366
40003
|
readonly type: "object";
|
|
39367
40004
|
readonly additionalProperties: true;
|
|
39368
40005
|
};
|
|
39369
|
-
readonly ignore: {
|
|
39370
|
-
readonly type: "boolean";
|
|
39371
|
-
};
|
|
39372
40006
|
readonly where: {
|
|
39373
40007
|
readonly type: "object";
|
|
39374
40008
|
readonly required: readonly ["metadata"];
|
|
39375
40009
|
readonly properties: {
|
|
39376
40010
|
readonly metadata: {
|
|
39377
40011
|
readonly type: "object";
|
|
39378
|
-
readonly additionalProperties: {
|
|
40012
|
+
readonly additionalProperties: {
|
|
40013
|
+
readonly type: "string";
|
|
40014
|
+
};
|
|
39379
40015
|
};
|
|
39380
40016
|
};
|
|
39381
40017
|
readonly additionalProperties: false;
|
|
@@ -42611,15 +43247,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
42611
43247
|
readonly baseUrlPath: {
|
|
42612
43248
|
readonly type: "string";
|
|
42613
43249
|
};
|
|
42614
|
-
readonly metadata: {
|
|
42615
|
-
readonly type: "object";
|
|
42616
|
-
readonly properties: {
|
|
42617
|
-
readonly apiId: {
|
|
42618
|
-
readonly type: "string";
|
|
42619
|
-
};
|
|
42620
|
-
};
|
|
42621
|
-
readonly additionalProperties: true;
|
|
42622
|
-
};
|
|
42623
43250
|
readonly feedback: {
|
|
42624
43251
|
readonly type: "object";
|
|
42625
43252
|
readonly properties: {
|
|
@@ -44001,6 +44628,190 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
44001
44628
|
};
|
|
44002
44629
|
readonly additionalProperties: false;
|
|
44003
44630
|
};
|
|
44631
|
+
readonly dataSchemas: {
|
|
44632
|
+
readonly type: "object";
|
|
44633
|
+
readonly properties: {
|
|
44634
|
+
readonly slug: {
|
|
44635
|
+
readonly type: "string";
|
|
44636
|
+
};
|
|
44637
|
+
readonly hide: {
|
|
44638
|
+
readonly type: "boolean";
|
|
44639
|
+
};
|
|
44640
|
+
readonly includes: {
|
|
44641
|
+
readonly type: "array";
|
|
44642
|
+
readonly items: {
|
|
44643
|
+
readonly type: "object";
|
|
44644
|
+
readonly required: readonly ["type"];
|
|
44645
|
+
readonly properties: {
|
|
44646
|
+
readonly type: {
|
|
44647
|
+
readonly type: "string";
|
|
44648
|
+
};
|
|
44649
|
+
};
|
|
44650
|
+
readonly additionalProperties: false;
|
|
44651
|
+
};
|
|
44652
|
+
};
|
|
44653
|
+
readonly excludes: {
|
|
44654
|
+
readonly type: "array";
|
|
44655
|
+
readonly items: {
|
|
44656
|
+
readonly type: "object";
|
|
44657
|
+
readonly required: readonly ["key"];
|
|
44658
|
+
readonly properties: {
|
|
44659
|
+
readonly key: {
|
|
44660
|
+
readonly type: "string";
|
|
44661
|
+
};
|
|
44662
|
+
};
|
|
44663
|
+
readonly additionalProperties: false;
|
|
44664
|
+
};
|
|
44665
|
+
};
|
|
44666
|
+
readonly filters: {
|
|
44667
|
+
readonly type: "array";
|
|
44668
|
+
readonly items: {
|
|
44669
|
+
readonly type: "object";
|
|
44670
|
+
readonly required: readonly ["property", "title"];
|
|
44671
|
+
readonly properties: {
|
|
44672
|
+
readonly property: {
|
|
44673
|
+
readonly type: "string";
|
|
44674
|
+
};
|
|
44675
|
+
readonly hide: {
|
|
44676
|
+
readonly type: "boolean";
|
|
44677
|
+
};
|
|
44678
|
+
readonly label: {
|
|
44679
|
+
readonly type: "string";
|
|
44680
|
+
};
|
|
44681
|
+
readonly options: {
|
|
44682
|
+
readonly type: "array";
|
|
44683
|
+
readonly items: {
|
|
44684
|
+
readonly type: "string";
|
|
44685
|
+
};
|
|
44686
|
+
};
|
|
44687
|
+
readonly type: {
|
|
44688
|
+
readonly type: "string";
|
|
44689
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
44690
|
+
readonly default: "checkboxes";
|
|
44691
|
+
};
|
|
44692
|
+
readonly title: {
|
|
44693
|
+
readonly type: "string";
|
|
44694
|
+
};
|
|
44695
|
+
readonly titleTranslationKey: {
|
|
44696
|
+
readonly type: "string";
|
|
44697
|
+
};
|
|
44698
|
+
readonly parentFilter: {
|
|
44699
|
+
readonly type: "string";
|
|
44700
|
+
};
|
|
44701
|
+
readonly valuesMapping: {
|
|
44702
|
+
readonly type: "object";
|
|
44703
|
+
readonly additionalProperties: {
|
|
44704
|
+
readonly type: "string";
|
|
44705
|
+
};
|
|
44706
|
+
};
|
|
44707
|
+
};
|
|
44708
|
+
readonly additionalProperties: false;
|
|
44709
|
+
};
|
|
44710
|
+
};
|
|
44711
|
+
readonly titleTranslationKey: {
|
|
44712
|
+
readonly type: "string";
|
|
44713
|
+
};
|
|
44714
|
+
readonly descriptionTranslationKey: {
|
|
44715
|
+
readonly type: "string";
|
|
44716
|
+
};
|
|
44717
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
44718
|
+
readonly type: "string";
|
|
44719
|
+
};
|
|
44720
|
+
};
|
|
44721
|
+
readonly additionalProperties: false;
|
|
44722
|
+
};
|
|
44723
|
+
readonly apiOperations: {
|
|
44724
|
+
readonly type: "object";
|
|
44725
|
+
readonly properties: {
|
|
44726
|
+
readonly slug: {
|
|
44727
|
+
readonly type: "string";
|
|
44728
|
+
};
|
|
44729
|
+
readonly hide: {
|
|
44730
|
+
readonly type: "boolean";
|
|
44731
|
+
};
|
|
44732
|
+
readonly includes: {
|
|
44733
|
+
readonly type: "array";
|
|
44734
|
+
readonly items: {
|
|
44735
|
+
readonly type: "object";
|
|
44736
|
+
readonly required: readonly ["type"];
|
|
44737
|
+
readonly properties: {
|
|
44738
|
+
readonly type: {
|
|
44739
|
+
readonly type: "string";
|
|
44740
|
+
};
|
|
44741
|
+
};
|
|
44742
|
+
readonly additionalProperties: false;
|
|
44743
|
+
};
|
|
44744
|
+
};
|
|
44745
|
+
readonly excludes: {
|
|
44746
|
+
readonly type: "array";
|
|
44747
|
+
readonly items: {
|
|
44748
|
+
readonly type: "object";
|
|
44749
|
+
readonly required: readonly ["key"];
|
|
44750
|
+
readonly properties: {
|
|
44751
|
+
readonly key: {
|
|
44752
|
+
readonly type: "string";
|
|
44753
|
+
};
|
|
44754
|
+
};
|
|
44755
|
+
readonly additionalProperties: false;
|
|
44756
|
+
};
|
|
44757
|
+
};
|
|
44758
|
+
readonly filters: {
|
|
44759
|
+
readonly type: "array";
|
|
44760
|
+
readonly items: {
|
|
44761
|
+
readonly type: "object";
|
|
44762
|
+
readonly required: readonly ["property", "title"];
|
|
44763
|
+
readonly properties: {
|
|
44764
|
+
readonly property: {
|
|
44765
|
+
readonly type: "string";
|
|
44766
|
+
};
|
|
44767
|
+
readonly hide: {
|
|
44768
|
+
readonly type: "boolean";
|
|
44769
|
+
};
|
|
44770
|
+
readonly label: {
|
|
44771
|
+
readonly type: "string";
|
|
44772
|
+
};
|
|
44773
|
+
readonly options: {
|
|
44774
|
+
readonly type: "array";
|
|
44775
|
+
readonly items: {
|
|
44776
|
+
readonly type: "string";
|
|
44777
|
+
};
|
|
44778
|
+
};
|
|
44779
|
+
readonly type: {
|
|
44780
|
+
readonly type: "string";
|
|
44781
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
44782
|
+
readonly default: "checkboxes";
|
|
44783
|
+
};
|
|
44784
|
+
readonly title: {
|
|
44785
|
+
readonly type: "string";
|
|
44786
|
+
};
|
|
44787
|
+
readonly titleTranslationKey: {
|
|
44788
|
+
readonly type: "string";
|
|
44789
|
+
};
|
|
44790
|
+
readonly parentFilter: {
|
|
44791
|
+
readonly type: "string";
|
|
44792
|
+
};
|
|
44793
|
+
readonly valuesMapping: {
|
|
44794
|
+
readonly type: "object";
|
|
44795
|
+
readonly additionalProperties: {
|
|
44796
|
+
readonly type: "string";
|
|
44797
|
+
};
|
|
44798
|
+
};
|
|
44799
|
+
};
|
|
44800
|
+
readonly additionalProperties: false;
|
|
44801
|
+
};
|
|
44802
|
+
};
|
|
44803
|
+
readonly titleTranslationKey: {
|
|
44804
|
+
readonly type: "string";
|
|
44805
|
+
};
|
|
44806
|
+
readonly descriptionTranslationKey: {
|
|
44807
|
+
readonly type: "string";
|
|
44808
|
+
};
|
|
44809
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
44810
|
+
readonly type: "string";
|
|
44811
|
+
};
|
|
44812
|
+
};
|
|
44813
|
+
readonly additionalProperties: false;
|
|
44814
|
+
};
|
|
44004
44815
|
};
|
|
44005
44816
|
readonly additionalProperties: false;
|
|
44006
44817
|
};
|
|
@@ -44479,16 +45290,15 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
44479
45290
|
readonly type: "object";
|
|
44480
45291
|
readonly additionalProperties: true;
|
|
44481
45292
|
};
|
|
44482
|
-
readonly ignore: {
|
|
44483
|
-
readonly type: "boolean";
|
|
44484
|
-
};
|
|
44485
45293
|
readonly where: {
|
|
44486
45294
|
readonly type: "object";
|
|
44487
45295
|
readonly required: readonly ["metadata"];
|
|
44488
45296
|
readonly properties: {
|
|
44489
45297
|
readonly metadata: {
|
|
44490
45298
|
readonly type: "object";
|
|
44491
|
-
readonly additionalProperties: {
|
|
45299
|
+
readonly additionalProperties: {
|
|
45300
|
+
readonly type: "string";
|
|
45301
|
+
};
|
|
44492
45302
|
};
|
|
44493
45303
|
};
|
|
44494
45304
|
readonly additionalProperties: false;
|
|
@@ -47099,15 +47909,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
47099
47909
|
readonly baseUrlPath: {
|
|
47100
47910
|
readonly type: "string";
|
|
47101
47911
|
};
|
|
47102
|
-
readonly metadata: {
|
|
47103
|
-
readonly type: "object";
|
|
47104
|
-
readonly properties: {
|
|
47105
|
-
readonly apiId: {
|
|
47106
|
-
readonly type: "string";
|
|
47107
|
-
};
|
|
47108
|
-
};
|
|
47109
|
-
readonly additionalProperties: true;
|
|
47110
|
-
};
|
|
47111
47912
|
readonly feedback: {
|
|
47112
47913
|
readonly type: "object";
|
|
47113
47914
|
readonly properties: {
|
|
@@ -49340,15 +50141,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
49340
50141
|
readonly baseUrlPath: {
|
|
49341
50142
|
readonly type: "string";
|
|
49342
50143
|
};
|
|
49343
|
-
readonly metadata: {
|
|
49344
|
-
readonly type: "object";
|
|
49345
|
-
readonly properties: {
|
|
49346
|
-
readonly apiId: {
|
|
49347
|
-
readonly type: "string";
|
|
49348
|
-
};
|
|
49349
|
-
};
|
|
49350
|
-
readonly additionalProperties: true;
|
|
49351
|
-
};
|
|
49352
50144
|
readonly feedback: {
|
|
49353
50145
|
readonly type: "object";
|
|
49354
50146
|
readonly properties: {
|