@redocly/config 0.26.3 → 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.
@@ -10758,6 +10758,190 @@ export declare const redoclyConfigSchema: {
10758
10758
  };
10759
10759
  readonly additionalProperties: false;
10760
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
+ };
10761
10945
  };
10762
10946
  readonly additionalProperties: false;
10763
10947
  };
@@ -15861,6 +16045,190 @@ export declare const redoclyConfigSchema: {
15861
16045
  };
15862
16046
  readonly additionalProperties: false;
15863
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
+ };
15864
16232
  };
15865
16233
  readonly additionalProperties: false;
15866
16234
  };
@@ -24936,6 +25304,102 @@ export declare const rootRedoclyConfigSchema: {
24936
25304
  additionalProperties: false;
24937
25305
  type: "object";
24938
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
+ };
24939
25403
  };
24940
25404
  additionalProperties: false;
24941
25405
  type: "object";
@@ -29364,6 +29828,102 @@ export declare const rootRedoclyConfigSchema: {
29364
29828
  additionalProperties: false;
29365
29829
  type: "object";
29366
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
+ };
29367
29927
  };
29368
29928
  additionalProperties: false;
29369
29929
  type: "object";
@@ -38781,6 +39341,190 @@ export declare const rootRedoclyConfigSchema: {
38781
39341
  };
38782
39342
  readonly additionalProperties: false;
38783
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
+ };
38784
39528
  };
38785
39529
  readonly additionalProperties: false;
38786
39530
  };
@@ -43884,6 +44628,190 @@ export declare const rootRedoclyConfigSchema: {
43884
44628
  };
43885
44629
  readonly additionalProperties: false;
43886
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
+ };
43887
44815
  };
43888
44816
  readonly additionalProperties: false;
43889
44817
  };