@redocly/config 0.26.2 → 0.26.3-rc.1

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.
Files changed (39) hide show
  1. package/lib/common.d.ts +1 -1
  2. package/lib/common.js +1 -1
  3. package/lib/default-theme-config-schema.d.ts +586 -4329
  4. package/lib/default-theme-config-schema.js +3 -2
  5. package/lib/entities-catalog-config-schema.d.ts +718 -0
  6. package/lib/entities-catalog-config-schema.js +84 -0
  7. package/lib/ex-theme-config-schemas.d.ts +68 -3
  8. package/lib/ex-theme-config-schemas.js +3 -2
  9. package/lib/graphql-config-schema.d.ts +9 -0
  10. package/lib/graphql-config-schema.js +9 -0
  11. package/lib/product-override-schema.d.ts +19 -1
  12. package/lib/root-config-schema.d.ts +3597 -221
  13. package/lib/root-config-schema.js +2 -1
  14. package/lib/types/catalog-entity-types.d.ts +29 -0
  15. package/lib/types/catalog-entity-types.js +3 -0
  16. package/lib/types/config-types.d.ts +2 -0
  17. package/lib/types/index.d.ts +1 -0
  18. package/lib/types/index.js +1 -0
  19. package/lib/types/portal-shared-types.d.ts +12 -1
  20. package/lib-esm/common.d.ts +1 -1
  21. package/lib-esm/common.js +1 -1
  22. package/lib-esm/default-theme-config-schema.d.ts +586 -4329
  23. package/lib-esm/default-theme-config-schema.js +2 -1
  24. package/lib-esm/entities-catalog-config-schema.d.ts +718 -0
  25. package/lib-esm/entities-catalog-config-schema.js +81 -0
  26. package/lib-esm/ex-theme-config-schemas.d.ts +68 -3
  27. package/lib-esm/ex-theme-config-schemas.js +4 -3
  28. package/lib-esm/graphql-config-schema.d.ts +9 -0
  29. package/lib-esm/graphql-config-schema.js +9 -0
  30. package/lib-esm/product-override-schema.d.ts +19 -1
  31. package/lib-esm/root-config-schema.d.ts +8971 -5135
  32. package/lib-esm/root-config-schema.js +2 -1
  33. package/lib-esm/types/catalog-entity-types.d.ts +29 -0
  34. package/lib-esm/types/catalog-entity-types.js +2 -0
  35. package/lib-esm/types/config-types.d.ts +2 -0
  36. package/lib-esm/types/index.d.ts +1 -0
  37. package/lib-esm/types/index.js +1 -0
  38. package/lib-esm/types/portal-shared-types.d.ts +12 -1
  39. package/package.json +2 -2
@@ -551,7 +551,7 @@ export declare const apiConfigSchema: {
551
551
  readonly type: "object";
552
552
  readonly additionalProperties: true;
553
553
  };
554
- readonly arazzoPreprocessors: {
554
+ readonly arazzo1Preprocessors: {
555
555
  readonly type: "object";
556
556
  readonly additionalProperties: true;
557
557
  };
@@ -2637,6 +2637,15 @@ 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
+ };
2640
2649
  readonly feedback: {
2641
2650
  readonly type: "object";
2642
2651
  readonly properties: {
@@ -4869,6 +4878,15 @@ export declare const apiConfigSchema: {
4869
4878
  readonly baseUrlPath: {
4870
4879
  readonly type: "string";
4871
4880
  };
4881
+ readonly metadata: {
4882
+ readonly type: "object";
4883
+ readonly properties: {
4884
+ readonly apiId: {
4885
+ readonly type: "string";
4886
+ };
4887
+ };
4888
+ readonly additionalProperties: true;
4889
+ };
4872
4890
  readonly feedback: {
4873
4891
  readonly type: "object";
4874
4892
  readonly properties: {
@@ -9380,6 +9398,15 @@ export declare const redoclyConfigSchema: {
9380
9398
  readonly baseUrlPath: {
9381
9399
  readonly type: "string";
9382
9400
  };
9401
+ readonly metadata: {
9402
+ readonly type: "object";
9403
+ readonly properties: {
9404
+ readonly apiId: {
9405
+ readonly type: "string";
9406
+ };
9407
+ };
9408
+ readonly additionalProperties: true;
9409
+ };
9383
9410
  readonly feedback: {
9384
9411
  readonly type: "object";
9385
9412
  readonly properties: {
@@ -10200,6 +10227,570 @@ export declare const redoclyConfigSchema: {
10200
10227
  };
10201
10228
  };
10202
10229
  };
10230
+ readonly entitiesCatalog: {
10231
+ readonly type: "object";
10232
+ readonly properties: {
10233
+ readonly catalogs: {
10234
+ readonly type: "object";
10235
+ readonly properties: {
10236
+ readonly all: {
10237
+ readonly type: "object";
10238
+ readonly properties: {
10239
+ readonly slug: {
10240
+ readonly type: "string";
10241
+ };
10242
+ readonly hide: {
10243
+ readonly type: "boolean";
10244
+ };
10245
+ readonly includes: {
10246
+ readonly type: "array";
10247
+ readonly items: {
10248
+ readonly type: "object";
10249
+ readonly required: readonly ["type"];
10250
+ readonly properties: {
10251
+ readonly type: {
10252
+ readonly type: "string";
10253
+ };
10254
+ };
10255
+ readonly additionalProperties: false;
10256
+ };
10257
+ };
10258
+ readonly excludes: {
10259
+ readonly type: "array";
10260
+ readonly items: {
10261
+ readonly type: "object";
10262
+ readonly required: readonly ["key"];
10263
+ readonly properties: {
10264
+ readonly key: {
10265
+ readonly type: "string";
10266
+ };
10267
+ };
10268
+ readonly additionalProperties: false;
10269
+ };
10270
+ };
10271
+ readonly filters: {
10272
+ readonly type: "array";
10273
+ readonly items: {
10274
+ readonly type: "object";
10275
+ readonly required: readonly ["property", "title"];
10276
+ readonly properties: {
10277
+ readonly property: {
10278
+ readonly type: "string";
10279
+ };
10280
+ readonly hide: {
10281
+ readonly type: "boolean";
10282
+ };
10283
+ readonly label: {
10284
+ readonly type: "string";
10285
+ };
10286
+ readonly options: {
10287
+ readonly type: "array";
10288
+ readonly items: {
10289
+ readonly type: "string";
10290
+ };
10291
+ };
10292
+ readonly type: {
10293
+ readonly type: "string";
10294
+ readonly enum: readonly ["select", "checkboxes", "date-range"];
10295
+ readonly default: "checkboxes";
10296
+ };
10297
+ readonly title: {
10298
+ readonly type: "string";
10299
+ };
10300
+ readonly titleTranslationKey: {
10301
+ readonly type: "string";
10302
+ };
10303
+ readonly parentFilter: {
10304
+ readonly type: "string";
10305
+ };
10306
+ readonly valuesMapping: {
10307
+ readonly type: "object";
10308
+ readonly additionalProperties: {
10309
+ readonly type: "string";
10310
+ };
10311
+ };
10312
+ };
10313
+ readonly additionalProperties: false;
10314
+ };
10315
+ };
10316
+ readonly titleTranslationKey: {
10317
+ readonly type: "string";
10318
+ };
10319
+ readonly descriptionTranslationKey: {
10320
+ readonly type: "string";
10321
+ };
10322
+ readonly catalogSwitcherLabelTranslationKey: {
10323
+ readonly type: "string";
10324
+ };
10325
+ };
10326
+ readonly additionalProperties: false;
10327
+ };
10328
+ readonly services: {
10329
+ readonly type: "object";
10330
+ readonly properties: {
10331
+ readonly slug: {
10332
+ readonly type: "string";
10333
+ };
10334
+ readonly hide: {
10335
+ readonly type: "boolean";
10336
+ };
10337
+ readonly includes: {
10338
+ readonly type: "array";
10339
+ readonly items: {
10340
+ readonly type: "object";
10341
+ readonly required: readonly ["type"];
10342
+ readonly properties: {
10343
+ readonly type: {
10344
+ readonly type: "string";
10345
+ };
10346
+ };
10347
+ readonly additionalProperties: false;
10348
+ };
10349
+ };
10350
+ readonly excludes: {
10351
+ readonly type: "array";
10352
+ readonly items: {
10353
+ readonly type: "object";
10354
+ readonly required: readonly ["key"];
10355
+ readonly properties: {
10356
+ readonly key: {
10357
+ readonly type: "string";
10358
+ };
10359
+ };
10360
+ readonly additionalProperties: false;
10361
+ };
10362
+ };
10363
+ readonly filters: {
10364
+ readonly type: "array";
10365
+ readonly items: {
10366
+ readonly type: "object";
10367
+ readonly required: readonly ["property", "title"];
10368
+ readonly properties: {
10369
+ readonly property: {
10370
+ readonly type: "string";
10371
+ };
10372
+ readonly hide: {
10373
+ readonly type: "boolean";
10374
+ };
10375
+ readonly label: {
10376
+ readonly type: "string";
10377
+ };
10378
+ readonly options: {
10379
+ readonly type: "array";
10380
+ readonly items: {
10381
+ readonly type: "string";
10382
+ };
10383
+ };
10384
+ readonly type: {
10385
+ readonly type: "string";
10386
+ readonly enum: readonly ["select", "checkboxes", "date-range"];
10387
+ readonly default: "checkboxes";
10388
+ };
10389
+ readonly title: {
10390
+ readonly type: "string";
10391
+ };
10392
+ readonly titleTranslationKey: {
10393
+ readonly type: "string";
10394
+ };
10395
+ readonly parentFilter: {
10396
+ readonly type: "string";
10397
+ };
10398
+ readonly valuesMapping: {
10399
+ readonly type: "object";
10400
+ readonly additionalProperties: {
10401
+ readonly type: "string";
10402
+ };
10403
+ };
10404
+ };
10405
+ readonly additionalProperties: false;
10406
+ };
10407
+ };
10408
+ readonly titleTranslationKey: {
10409
+ readonly type: "string";
10410
+ };
10411
+ readonly descriptionTranslationKey: {
10412
+ readonly type: "string";
10413
+ };
10414
+ readonly catalogSwitcherLabelTranslationKey: {
10415
+ readonly type: "string";
10416
+ };
10417
+ };
10418
+ readonly additionalProperties: false;
10419
+ };
10420
+ readonly domains: {
10421
+ readonly type: "object";
10422
+ readonly properties: {
10423
+ readonly slug: {
10424
+ readonly type: "string";
10425
+ };
10426
+ readonly hide: {
10427
+ readonly type: "boolean";
10428
+ };
10429
+ readonly includes: {
10430
+ readonly type: "array";
10431
+ readonly items: {
10432
+ readonly type: "object";
10433
+ readonly required: readonly ["type"];
10434
+ readonly properties: {
10435
+ readonly type: {
10436
+ readonly type: "string";
10437
+ };
10438
+ };
10439
+ readonly additionalProperties: false;
10440
+ };
10441
+ };
10442
+ readonly excludes: {
10443
+ readonly type: "array";
10444
+ readonly items: {
10445
+ readonly type: "object";
10446
+ readonly required: readonly ["key"];
10447
+ readonly properties: {
10448
+ readonly key: {
10449
+ readonly type: "string";
10450
+ };
10451
+ };
10452
+ readonly additionalProperties: false;
10453
+ };
10454
+ };
10455
+ readonly filters: {
10456
+ readonly type: "array";
10457
+ readonly items: {
10458
+ readonly type: "object";
10459
+ readonly required: readonly ["property", "title"];
10460
+ readonly properties: {
10461
+ readonly property: {
10462
+ readonly type: "string";
10463
+ };
10464
+ readonly hide: {
10465
+ readonly type: "boolean";
10466
+ };
10467
+ readonly label: {
10468
+ readonly type: "string";
10469
+ };
10470
+ readonly options: {
10471
+ readonly type: "array";
10472
+ readonly items: {
10473
+ readonly type: "string";
10474
+ };
10475
+ };
10476
+ readonly type: {
10477
+ readonly type: "string";
10478
+ readonly enum: readonly ["select", "checkboxes", "date-range"];
10479
+ readonly default: "checkboxes";
10480
+ };
10481
+ readonly title: {
10482
+ readonly type: "string";
10483
+ };
10484
+ readonly titleTranslationKey: {
10485
+ readonly type: "string";
10486
+ };
10487
+ readonly parentFilter: {
10488
+ readonly type: "string";
10489
+ };
10490
+ readonly valuesMapping: {
10491
+ readonly type: "object";
10492
+ readonly additionalProperties: {
10493
+ readonly type: "string";
10494
+ };
10495
+ };
10496
+ };
10497
+ readonly additionalProperties: false;
10498
+ };
10499
+ };
10500
+ readonly titleTranslationKey: {
10501
+ readonly type: "string";
10502
+ };
10503
+ readonly descriptionTranslationKey: {
10504
+ readonly type: "string";
10505
+ };
10506
+ readonly catalogSwitcherLabelTranslationKey: {
10507
+ readonly type: "string";
10508
+ };
10509
+ };
10510
+ readonly additionalProperties: false;
10511
+ };
10512
+ readonly teams: {
10513
+ readonly type: "object";
10514
+ readonly properties: {
10515
+ readonly slug: {
10516
+ readonly type: "string";
10517
+ };
10518
+ readonly hide: {
10519
+ readonly type: "boolean";
10520
+ };
10521
+ readonly includes: {
10522
+ readonly type: "array";
10523
+ readonly items: {
10524
+ readonly type: "object";
10525
+ readonly required: readonly ["type"];
10526
+ readonly properties: {
10527
+ readonly type: {
10528
+ readonly type: "string";
10529
+ };
10530
+ };
10531
+ readonly additionalProperties: false;
10532
+ };
10533
+ };
10534
+ readonly excludes: {
10535
+ readonly type: "array";
10536
+ readonly items: {
10537
+ readonly type: "object";
10538
+ readonly required: readonly ["key"];
10539
+ readonly properties: {
10540
+ readonly key: {
10541
+ readonly type: "string";
10542
+ };
10543
+ };
10544
+ readonly additionalProperties: false;
10545
+ };
10546
+ };
10547
+ readonly filters: {
10548
+ readonly type: "array";
10549
+ readonly items: {
10550
+ readonly type: "object";
10551
+ readonly required: readonly ["property", "title"];
10552
+ readonly properties: {
10553
+ readonly property: {
10554
+ readonly type: "string";
10555
+ };
10556
+ readonly hide: {
10557
+ readonly type: "boolean";
10558
+ };
10559
+ readonly label: {
10560
+ readonly type: "string";
10561
+ };
10562
+ readonly options: {
10563
+ readonly type: "array";
10564
+ readonly items: {
10565
+ readonly type: "string";
10566
+ };
10567
+ };
10568
+ readonly type: {
10569
+ readonly type: "string";
10570
+ readonly enum: readonly ["select", "checkboxes", "date-range"];
10571
+ readonly default: "checkboxes";
10572
+ };
10573
+ readonly title: {
10574
+ readonly type: "string";
10575
+ };
10576
+ readonly titleTranslationKey: {
10577
+ readonly type: "string";
10578
+ };
10579
+ readonly parentFilter: {
10580
+ readonly type: "string";
10581
+ };
10582
+ readonly valuesMapping: {
10583
+ readonly type: "object";
10584
+ readonly additionalProperties: {
10585
+ readonly type: "string";
10586
+ };
10587
+ };
10588
+ };
10589
+ readonly additionalProperties: false;
10590
+ };
10591
+ };
10592
+ readonly titleTranslationKey: {
10593
+ readonly type: "string";
10594
+ };
10595
+ readonly descriptionTranslationKey: {
10596
+ readonly type: "string";
10597
+ };
10598
+ readonly catalogSwitcherLabelTranslationKey: {
10599
+ readonly type: "string";
10600
+ };
10601
+ };
10602
+ readonly additionalProperties: false;
10603
+ };
10604
+ readonly users: {
10605
+ readonly type: "object";
10606
+ readonly properties: {
10607
+ readonly slug: {
10608
+ readonly type: "string";
10609
+ };
10610
+ readonly hide: {
10611
+ readonly type: "boolean";
10612
+ };
10613
+ readonly includes: {
10614
+ readonly type: "array";
10615
+ readonly items: {
10616
+ readonly type: "object";
10617
+ readonly required: readonly ["type"];
10618
+ readonly properties: {
10619
+ readonly type: {
10620
+ readonly type: "string";
10621
+ };
10622
+ };
10623
+ readonly additionalProperties: false;
10624
+ };
10625
+ };
10626
+ readonly excludes: {
10627
+ readonly type: "array";
10628
+ readonly items: {
10629
+ readonly type: "object";
10630
+ readonly required: readonly ["key"];
10631
+ readonly properties: {
10632
+ readonly key: {
10633
+ readonly type: "string";
10634
+ };
10635
+ };
10636
+ readonly additionalProperties: false;
10637
+ };
10638
+ };
10639
+ readonly filters: {
10640
+ readonly type: "array";
10641
+ readonly items: {
10642
+ readonly type: "object";
10643
+ readonly required: readonly ["property", "title"];
10644
+ readonly properties: {
10645
+ readonly property: {
10646
+ readonly type: "string";
10647
+ };
10648
+ readonly hide: {
10649
+ readonly type: "boolean";
10650
+ };
10651
+ readonly label: {
10652
+ readonly type: "string";
10653
+ };
10654
+ readonly options: {
10655
+ readonly type: "array";
10656
+ readonly items: {
10657
+ readonly type: "string";
10658
+ };
10659
+ };
10660
+ readonly type: {
10661
+ readonly type: "string";
10662
+ readonly enum: readonly ["select", "checkboxes", "date-range"];
10663
+ readonly default: "checkboxes";
10664
+ };
10665
+ readonly title: {
10666
+ readonly type: "string";
10667
+ };
10668
+ readonly titleTranslationKey: {
10669
+ readonly type: "string";
10670
+ };
10671
+ readonly parentFilter: {
10672
+ readonly type: "string";
10673
+ };
10674
+ readonly valuesMapping: {
10675
+ readonly type: "object";
10676
+ readonly additionalProperties: {
10677
+ readonly type: "string";
10678
+ };
10679
+ };
10680
+ };
10681
+ readonly additionalProperties: false;
10682
+ };
10683
+ };
10684
+ readonly titleTranslationKey: {
10685
+ readonly type: "string";
10686
+ };
10687
+ readonly descriptionTranslationKey: {
10688
+ readonly type: "string";
10689
+ };
10690
+ readonly catalogSwitcherLabelTranslationKey: {
10691
+ readonly type: "string";
10692
+ };
10693
+ };
10694
+ readonly additionalProperties: false;
10695
+ };
10696
+ readonly apiDescriptions: {
10697
+ readonly type: "object";
10698
+ readonly properties: {
10699
+ readonly slug: {
10700
+ readonly type: "string";
10701
+ };
10702
+ readonly hide: {
10703
+ readonly type: "boolean";
10704
+ };
10705
+ readonly includes: {
10706
+ readonly type: "array";
10707
+ readonly items: {
10708
+ readonly type: "object";
10709
+ readonly required: readonly ["type"];
10710
+ readonly properties: {
10711
+ readonly type: {
10712
+ readonly type: "string";
10713
+ };
10714
+ };
10715
+ readonly additionalProperties: false;
10716
+ };
10717
+ };
10718
+ readonly excludes: {
10719
+ readonly type: "array";
10720
+ readonly items: {
10721
+ readonly type: "object";
10722
+ readonly required: readonly ["key"];
10723
+ readonly properties: {
10724
+ readonly key: {
10725
+ readonly type: "string";
10726
+ };
10727
+ };
10728
+ readonly additionalProperties: false;
10729
+ };
10730
+ };
10731
+ readonly filters: {
10732
+ readonly type: "array";
10733
+ readonly items: {
10734
+ readonly type: "object";
10735
+ readonly required: readonly ["property", "title"];
10736
+ readonly properties: {
10737
+ readonly property: {
10738
+ readonly type: "string";
10739
+ };
10740
+ readonly hide: {
10741
+ readonly type: "boolean";
10742
+ };
10743
+ readonly label: {
10744
+ readonly type: "string";
10745
+ };
10746
+ readonly options: {
10747
+ readonly type: "array";
10748
+ readonly items: {
10749
+ readonly type: "string";
10750
+ };
10751
+ };
10752
+ readonly type: {
10753
+ readonly type: "string";
10754
+ readonly enum: readonly ["select", "checkboxes", "date-range"];
10755
+ readonly default: "checkboxes";
10756
+ };
10757
+ readonly title: {
10758
+ readonly type: "string";
10759
+ };
10760
+ readonly titleTranslationKey: {
10761
+ readonly type: "string";
10762
+ };
10763
+ readonly parentFilter: {
10764
+ readonly type: "string";
10765
+ };
10766
+ readonly valuesMapping: {
10767
+ readonly type: "object";
10768
+ readonly additionalProperties: {
10769
+ readonly type: "string";
10770
+ };
10771
+ };
10772
+ };
10773
+ readonly additionalProperties: false;
10774
+ };
10775
+ };
10776
+ readonly titleTranslationKey: {
10777
+ readonly type: "string";
10778
+ };
10779
+ readonly descriptionTranslationKey: {
10780
+ readonly type: "string";
10781
+ };
10782
+ readonly catalogSwitcherLabelTranslationKey: {
10783
+ readonly type: "string";
10784
+ };
10785
+ };
10786
+ readonly additionalProperties: false;
10787
+ };
10788
+ };
10789
+ readonly additionalProperties: false;
10790
+ };
10791
+ };
10792
+ readonly additionalProperties: false;
10793
+ };
10203
10794
  readonly catalogClassic: {
10204
10795
  readonly type: "object";
10205
10796
  readonly patternProperties: {
@@ -10499,6 +11090,70 @@ export declare const redoclyConfigSchema: {
10499
11090
  readonly type: "object";
10500
11091
  readonly required: readonly ["name"];
10501
11092
  readonly properties: {
11093
+ readonly decorators: {
11094
+ readonly type: "object";
11095
+ readonly additionalProperties: true;
11096
+ };
11097
+ readonly oas2Decorators: {
11098
+ readonly type: "object";
11099
+ readonly additionalProperties: true;
11100
+ };
11101
+ readonly oas3_0Decorators: {
11102
+ readonly type: "object";
11103
+ readonly additionalProperties: true;
11104
+ };
11105
+ readonly oas3_1Decorators: {
11106
+ readonly type: "object";
11107
+ readonly additionalProperties: true;
11108
+ };
11109
+ readonly async2Decorators: {
11110
+ readonly type: "object";
11111
+ readonly additionalProperties: true;
11112
+ };
11113
+ readonly async3Decorators: {
11114
+ readonly type: "object";
11115
+ readonly additionalProperties: true;
11116
+ };
11117
+ readonly arazzo1Decorators: {
11118
+ readonly type: "object";
11119
+ readonly additionalProperties: true;
11120
+ };
11121
+ readonly overlay1Decorators: {
11122
+ readonly type: "object";
11123
+ readonly additionalProperties: true;
11124
+ };
11125
+ readonly preprocessors: {
11126
+ readonly type: "object";
11127
+ readonly additionalProperties: true;
11128
+ };
11129
+ readonly oas2Preprocessors: {
11130
+ readonly type: "object";
11131
+ readonly additionalProperties: true;
11132
+ };
11133
+ readonly oas3_0Preprocessors: {
11134
+ readonly type: "object";
11135
+ readonly additionalProperties: true;
11136
+ };
11137
+ readonly oas3_1Preprocessors: {
11138
+ readonly type: "object";
11139
+ readonly additionalProperties: true;
11140
+ };
11141
+ readonly async2Preprocessors: {
11142
+ readonly type: "object";
11143
+ readonly additionalProperties: true;
11144
+ };
11145
+ readonly async3Preprocessors: {
11146
+ readonly type: "object";
11147
+ readonly additionalProperties: true;
11148
+ };
11149
+ readonly arazzo1Preprocessors: {
11150
+ readonly type: "object";
11151
+ readonly additionalProperties: true;
11152
+ };
11153
+ readonly overlay1Preprocessors: {
11154
+ readonly type: "object";
11155
+ readonly additionalProperties: true;
11156
+ };
10502
11157
  readonly rules: {
10503
11158
  readonly type: "object";
10504
11159
  readonly additionalProperties: {
@@ -10608,15 +11263,16 @@ export declare const redoclyConfigSchema: {
10608
11263
  readonly type: "object";
10609
11264
  readonly additionalProperties: true;
10610
11265
  };
11266
+ readonly ignore: {
11267
+ readonly type: "boolean";
11268
+ };
10611
11269
  readonly where: {
10612
11270
  readonly type: "object";
10613
11271
  readonly required: readonly ["metadata"];
10614
11272
  readonly properties: {
10615
11273
  readonly metadata: {
10616
11274
  readonly type: "object";
10617
- readonly additionalProperties: {
10618
- readonly type: "string";
10619
- };
11275
+ readonly additionalProperties: {};
10620
11276
  };
10621
11277
  };
10622
11278
  readonly additionalProperties: false;
@@ -13852,6 +14508,15 @@ export declare const redoclyConfigSchema: {
13852
14508
  readonly baseUrlPath: {
13853
14509
  readonly type: "string";
13854
14510
  };
14511
+ readonly metadata: {
14512
+ readonly type: "object";
14513
+ readonly properties: {
14514
+ readonly apiId: {
14515
+ readonly type: "string";
14516
+ };
14517
+ };
14518
+ readonly additionalProperties: true;
14519
+ };
13855
14520
  readonly feedback: {
13856
14521
  readonly type: "object";
13857
14522
  readonly properties: {
@@ -14675,6 +15340,570 @@ export declare const redoclyConfigSchema: {
14675
15340
  };
14676
15341
  };
14677
15342
  };
15343
+ readonly entitiesCatalog: {
15344
+ readonly type: "object";
15345
+ readonly properties: {
15346
+ readonly catalogs: {
15347
+ readonly type: "object";
15348
+ readonly properties: {
15349
+ readonly all: {
15350
+ readonly type: "object";
15351
+ readonly properties: {
15352
+ readonly slug: {
15353
+ readonly type: "string";
15354
+ };
15355
+ readonly hide: {
15356
+ readonly type: "boolean";
15357
+ };
15358
+ readonly includes: {
15359
+ readonly type: "array";
15360
+ readonly items: {
15361
+ readonly type: "object";
15362
+ readonly required: readonly ["type"];
15363
+ readonly properties: {
15364
+ readonly type: {
15365
+ readonly type: "string";
15366
+ };
15367
+ };
15368
+ readonly additionalProperties: false;
15369
+ };
15370
+ };
15371
+ readonly excludes: {
15372
+ readonly type: "array";
15373
+ readonly items: {
15374
+ readonly type: "object";
15375
+ readonly required: readonly ["key"];
15376
+ readonly properties: {
15377
+ readonly key: {
15378
+ readonly type: "string";
15379
+ };
15380
+ };
15381
+ readonly additionalProperties: false;
15382
+ };
15383
+ };
15384
+ readonly filters: {
15385
+ readonly type: "array";
15386
+ readonly items: {
15387
+ readonly type: "object";
15388
+ readonly required: readonly ["property", "title"];
15389
+ readonly properties: {
15390
+ readonly property: {
15391
+ readonly type: "string";
15392
+ };
15393
+ readonly hide: {
15394
+ readonly type: "boolean";
15395
+ };
15396
+ readonly label: {
15397
+ readonly type: "string";
15398
+ };
15399
+ readonly options: {
15400
+ readonly type: "array";
15401
+ readonly items: {
15402
+ readonly type: "string";
15403
+ };
15404
+ };
15405
+ readonly type: {
15406
+ readonly type: "string";
15407
+ readonly enum: readonly ["select", "checkboxes", "date-range"];
15408
+ readonly default: "checkboxes";
15409
+ };
15410
+ readonly title: {
15411
+ readonly type: "string";
15412
+ };
15413
+ readonly titleTranslationKey: {
15414
+ readonly type: "string";
15415
+ };
15416
+ readonly parentFilter: {
15417
+ readonly type: "string";
15418
+ };
15419
+ readonly valuesMapping: {
15420
+ readonly type: "object";
15421
+ readonly additionalProperties: {
15422
+ readonly type: "string";
15423
+ };
15424
+ };
15425
+ };
15426
+ readonly additionalProperties: false;
15427
+ };
15428
+ };
15429
+ readonly titleTranslationKey: {
15430
+ readonly type: "string";
15431
+ };
15432
+ readonly descriptionTranslationKey: {
15433
+ readonly type: "string";
15434
+ };
15435
+ readonly catalogSwitcherLabelTranslationKey: {
15436
+ readonly type: "string";
15437
+ };
15438
+ };
15439
+ readonly additionalProperties: false;
15440
+ };
15441
+ readonly services: {
15442
+ readonly type: "object";
15443
+ readonly properties: {
15444
+ readonly slug: {
15445
+ readonly type: "string";
15446
+ };
15447
+ readonly hide: {
15448
+ readonly type: "boolean";
15449
+ };
15450
+ readonly includes: {
15451
+ readonly type: "array";
15452
+ readonly items: {
15453
+ readonly type: "object";
15454
+ readonly required: readonly ["type"];
15455
+ readonly properties: {
15456
+ readonly type: {
15457
+ readonly type: "string";
15458
+ };
15459
+ };
15460
+ readonly additionalProperties: false;
15461
+ };
15462
+ };
15463
+ readonly excludes: {
15464
+ readonly type: "array";
15465
+ readonly items: {
15466
+ readonly type: "object";
15467
+ readonly required: readonly ["key"];
15468
+ readonly properties: {
15469
+ readonly key: {
15470
+ readonly type: "string";
15471
+ };
15472
+ };
15473
+ readonly additionalProperties: false;
15474
+ };
15475
+ };
15476
+ readonly filters: {
15477
+ readonly type: "array";
15478
+ readonly items: {
15479
+ readonly type: "object";
15480
+ readonly required: readonly ["property", "title"];
15481
+ readonly properties: {
15482
+ readonly property: {
15483
+ readonly type: "string";
15484
+ };
15485
+ readonly hide: {
15486
+ readonly type: "boolean";
15487
+ };
15488
+ readonly label: {
15489
+ readonly type: "string";
15490
+ };
15491
+ readonly options: {
15492
+ readonly type: "array";
15493
+ readonly items: {
15494
+ readonly type: "string";
15495
+ };
15496
+ };
15497
+ readonly type: {
15498
+ readonly type: "string";
15499
+ readonly enum: readonly ["select", "checkboxes", "date-range"];
15500
+ readonly default: "checkboxes";
15501
+ };
15502
+ readonly title: {
15503
+ readonly type: "string";
15504
+ };
15505
+ readonly titleTranslationKey: {
15506
+ readonly type: "string";
15507
+ };
15508
+ readonly parentFilter: {
15509
+ readonly type: "string";
15510
+ };
15511
+ readonly valuesMapping: {
15512
+ readonly type: "object";
15513
+ readonly additionalProperties: {
15514
+ readonly type: "string";
15515
+ };
15516
+ };
15517
+ };
15518
+ readonly additionalProperties: false;
15519
+ };
15520
+ };
15521
+ readonly titleTranslationKey: {
15522
+ readonly type: "string";
15523
+ };
15524
+ readonly descriptionTranslationKey: {
15525
+ readonly type: "string";
15526
+ };
15527
+ readonly catalogSwitcherLabelTranslationKey: {
15528
+ readonly type: "string";
15529
+ };
15530
+ };
15531
+ readonly additionalProperties: false;
15532
+ };
15533
+ readonly domains: {
15534
+ readonly type: "object";
15535
+ readonly properties: {
15536
+ readonly slug: {
15537
+ readonly type: "string";
15538
+ };
15539
+ readonly hide: {
15540
+ readonly type: "boolean";
15541
+ };
15542
+ readonly includes: {
15543
+ readonly type: "array";
15544
+ readonly items: {
15545
+ readonly type: "object";
15546
+ readonly required: readonly ["type"];
15547
+ readonly properties: {
15548
+ readonly type: {
15549
+ readonly type: "string";
15550
+ };
15551
+ };
15552
+ readonly additionalProperties: false;
15553
+ };
15554
+ };
15555
+ readonly excludes: {
15556
+ readonly type: "array";
15557
+ readonly items: {
15558
+ readonly type: "object";
15559
+ readonly required: readonly ["key"];
15560
+ readonly properties: {
15561
+ readonly key: {
15562
+ readonly type: "string";
15563
+ };
15564
+ };
15565
+ readonly additionalProperties: false;
15566
+ };
15567
+ };
15568
+ readonly filters: {
15569
+ readonly type: "array";
15570
+ readonly items: {
15571
+ readonly type: "object";
15572
+ readonly required: readonly ["property", "title"];
15573
+ readonly properties: {
15574
+ readonly property: {
15575
+ readonly type: "string";
15576
+ };
15577
+ readonly hide: {
15578
+ readonly type: "boolean";
15579
+ };
15580
+ readonly label: {
15581
+ readonly type: "string";
15582
+ };
15583
+ readonly options: {
15584
+ readonly type: "array";
15585
+ readonly items: {
15586
+ readonly type: "string";
15587
+ };
15588
+ };
15589
+ readonly type: {
15590
+ readonly type: "string";
15591
+ readonly enum: readonly ["select", "checkboxes", "date-range"];
15592
+ readonly default: "checkboxes";
15593
+ };
15594
+ readonly title: {
15595
+ readonly type: "string";
15596
+ };
15597
+ readonly titleTranslationKey: {
15598
+ readonly type: "string";
15599
+ };
15600
+ readonly parentFilter: {
15601
+ readonly type: "string";
15602
+ };
15603
+ readonly valuesMapping: {
15604
+ readonly type: "object";
15605
+ readonly additionalProperties: {
15606
+ readonly type: "string";
15607
+ };
15608
+ };
15609
+ };
15610
+ readonly additionalProperties: false;
15611
+ };
15612
+ };
15613
+ readonly titleTranslationKey: {
15614
+ readonly type: "string";
15615
+ };
15616
+ readonly descriptionTranslationKey: {
15617
+ readonly type: "string";
15618
+ };
15619
+ readonly catalogSwitcherLabelTranslationKey: {
15620
+ readonly type: "string";
15621
+ };
15622
+ };
15623
+ readonly additionalProperties: false;
15624
+ };
15625
+ readonly teams: {
15626
+ readonly type: "object";
15627
+ readonly properties: {
15628
+ readonly slug: {
15629
+ readonly type: "string";
15630
+ };
15631
+ readonly hide: {
15632
+ readonly type: "boolean";
15633
+ };
15634
+ readonly includes: {
15635
+ readonly type: "array";
15636
+ readonly items: {
15637
+ readonly type: "object";
15638
+ readonly required: readonly ["type"];
15639
+ readonly properties: {
15640
+ readonly type: {
15641
+ readonly type: "string";
15642
+ };
15643
+ };
15644
+ readonly additionalProperties: false;
15645
+ };
15646
+ };
15647
+ readonly excludes: {
15648
+ readonly type: "array";
15649
+ readonly items: {
15650
+ readonly type: "object";
15651
+ readonly required: readonly ["key"];
15652
+ readonly properties: {
15653
+ readonly key: {
15654
+ readonly type: "string";
15655
+ };
15656
+ };
15657
+ readonly additionalProperties: false;
15658
+ };
15659
+ };
15660
+ readonly filters: {
15661
+ readonly type: "array";
15662
+ readonly items: {
15663
+ readonly type: "object";
15664
+ readonly required: readonly ["property", "title"];
15665
+ readonly properties: {
15666
+ readonly property: {
15667
+ readonly type: "string";
15668
+ };
15669
+ readonly hide: {
15670
+ readonly type: "boolean";
15671
+ };
15672
+ readonly label: {
15673
+ readonly type: "string";
15674
+ };
15675
+ readonly options: {
15676
+ readonly type: "array";
15677
+ readonly items: {
15678
+ readonly type: "string";
15679
+ };
15680
+ };
15681
+ readonly type: {
15682
+ readonly type: "string";
15683
+ readonly enum: readonly ["select", "checkboxes", "date-range"];
15684
+ readonly default: "checkboxes";
15685
+ };
15686
+ readonly title: {
15687
+ readonly type: "string";
15688
+ };
15689
+ readonly titleTranslationKey: {
15690
+ readonly type: "string";
15691
+ };
15692
+ readonly parentFilter: {
15693
+ readonly type: "string";
15694
+ };
15695
+ readonly valuesMapping: {
15696
+ readonly type: "object";
15697
+ readonly additionalProperties: {
15698
+ readonly type: "string";
15699
+ };
15700
+ };
15701
+ };
15702
+ readonly additionalProperties: false;
15703
+ };
15704
+ };
15705
+ readonly titleTranslationKey: {
15706
+ readonly type: "string";
15707
+ };
15708
+ readonly descriptionTranslationKey: {
15709
+ readonly type: "string";
15710
+ };
15711
+ readonly catalogSwitcherLabelTranslationKey: {
15712
+ readonly type: "string";
15713
+ };
15714
+ };
15715
+ readonly additionalProperties: false;
15716
+ };
15717
+ readonly users: {
15718
+ readonly type: "object";
15719
+ readonly properties: {
15720
+ readonly slug: {
15721
+ readonly type: "string";
15722
+ };
15723
+ readonly hide: {
15724
+ readonly type: "boolean";
15725
+ };
15726
+ readonly includes: {
15727
+ readonly type: "array";
15728
+ readonly items: {
15729
+ readonly type: "object";
15730
+ readonly required: readonly ["type"];
15731
+ readonly properties: {
15732
+ readonly type: {
15733
+ readonly type: "string";
15734
+ };
15735
+ };
15736
+ readonly additionalProperties: false;
15737
+ };
15738
+ };
15739
+ readonly excludes: {
15740
+ readonly type: "array";
15741
+ readonly items: {
15742
+ readonly type: "object";
15743
+ readonly required: readonly ["key"];
15744
+ readonly properties: {
15745
+ readonly key: {
15746
+ readonly type: "string";
15747
+ };
15748
+ };
15749
+ readonly additionalProperties: false;
15750
+ };
15751
+ };
15752
+ readonly filters: {
15753
+ readonly type: "array";
15754
+ readonly items: {
15755
+ readonly type: "object";
15756
+ readonly required: readonly ["property", "title"];
15757
+ readonly properties: {
15758
+ readonly property: {
15759
+ readonly type: "string";
15760
+ };
15761
+ readonly hide: {
15762
+ readonly type: "boolean";
15763
+ };
15764
+ readonly label: {
15765
+ readonly type: "string";
15766
+ };
15767
+ readonly options: {
15768
+ readonly type: "array";
15769
+ readonly items: {
15770
+ readonly type: "string";
15771
+ };
15772
+ };
15773
+ readonly type: {
15774
+ readonly type: "string";
15775
+ readonly enum: readonly ["select", "checkboxes", "date-range"];
15776
+ readonly default: "checkboxes";
15777
+ };
15778
+ readonly title: {
15779
+ readonly type: "string";
15780
+ };
15781
+ readonly titleTranslationKey: {
15782
+ readonly type: "string";
15783
+ };
15784
+ readonly parentFilter: {
15785
+ readonly type: "string";
15786
+ };
15787
+ readonly valuesMapping: {
15788
+ readonly type: "object";
15789
+ readonly additionalProperties: {
15790
+ readonly type: "string";
15791
+ };
15792
+ };
15793
+ };
15794
+ readonly additionalProperties: false;
15795
+ };
15796
+ };
15797
+ readonly titleTranslationKey: {
15798
+ readonly type: "string";
15799
+ };
15800
+ readonly descriptionTranslationKey: {
15801
+ readonly type: "string";
15802
+ };
15803
+ readonly catalogSwitcherLabelTranslationKey: {
15804
+ readonly type: "string";
15805
+ };
15806
+ };
15807
+ readonly additionalProperties: false;
15808
+ };
15809
+ readonly apiDescriptions: {
15810
+ readonly type: "object";
15811
+ readonly properties: {
15812
+ readonly slug: {
15813
+ readonly type: "string";
15814
+ };
15815
+ readonly hide: {
15816
+ readonly type: "boolean";
15817
+ };
15818
+ readonly includes: {
15819
+ readonly type: "array";
15820
+ readonly items: {
15821
+ readonly type: "object";
15822
+ readonly required: readonly ["type"];
15823
+ readonly properties: {
15824
+ readonly type: {
15825
+ readonly type: "string";
15826
+ };
15827
+ };
15828
+ readonly additionalProperties: false;
15829
+ };
15830
+ };
15831
+ readonly excludes: {
15832
+ readonly type: "array";
15833
+ readonly items: {
15834
+ readonly type: "object";
15835
+ readonly required: readonly ["key"];
15836
+ readonly properties: {
15837
+ readonly key: {
15838
+ readonly type: "string";
15839
+ };
15840
+ };
15841
+ readonly additionalProperties: false;
15842
+ };
15843
+ };
15844
+ readonly filters: {
15845
+ readonly type: "array";
15846
+ readonly items: {
15847
+ readonly type: "object";
15848
+ readonly required: readonly ["property", "title"];
15849
+ readonly properties: {
15850
+ readonly property: {
15851
+ readonly type: "string";
15852
+ };
15853
+ readonly hide: {
15854
+ readonly type: "boolean";
15855
+ };
15856
+ readonly label: {
15857
+ readonly type: "string";
15858
+ };
15859
+ readonly options: {
15860
+ readonly type: "array";
15861
+ readonly items: {
15862
+ readonly type: "string";
15863
+ };
15864
+ };
15865
+ readonly type: {
15866
+ readonly type: "string";
15867
+ readonly enum: readonly ["select", "checkboxes", "date-range"];
15868
+ readonly default: "checkboxes";
15869
+ };
15870
+ readonly title: {
15871
+ readonly type: "string";
15872
+ };
15873
+ readonly titleTranslationKey: {
15874
+ readonly type: "string";
15875
+ };
15876
+ readonly parentFilter: {
15877
+ readonly type: "string";
15878
+ };
15879
+ readonly valuesMapping: {
15880
+ readonly type: "object";
15881
+ readonly additionalProperties: {
15882
+ readonly type: "string";
15883
+ };
15884
+ };
15885
+ };
15886
+ readonly additionalProperties: false;
15887
+ };
15888
+ };
15889
+ readonly titleTranslationKey: {
15890
+ readonly type: "string";
15891
+ };
15892
+ readonly descriptionTranslationKey: {
15893
+ readonly type: "string";
15894
+ };
15895
+ readonly catalogSwitcherLabelTranslationKey: {
15896
+ readonly type: "string";
15897
+ };
15898
+ };
15899
+ readonly additionalProperties: false;
15900
+ };
15901
+ };
15902
+ readonly additionalProperties: false;
15903
+ };
15904
+ };
15905
+ readonly additionalProperties: false;
15906
+ };
14678
15907
  readonly catalogClassic: {
14679
15908
  readonly type: "object";
14680
15909
  readonly patternProperties: {
@@ -14974,6 +16203,70 @@ export declare const redoclyConfigSchema: {
14974
16203
  readonly type: "object";
14975
16204
  readonly required: readonly ["name"];
14976
16205
  readonly properties: {
16206
+ readonly decorators: {
16207
+ readonly type: "object";
16208
+ readonly additionalProperties: true;
16209
+ };
16210
+ readonly oas2Decorators: {
16211
+ readonly type: "object";
16212
+ readonly additionalProperties: true;
16213
+ };
16214
+ readonly oas3_0Decorators: {
16215
+ readonly type: "object";
16216
+ readonly additionalProperties: true;
16217
+ };
16218
+ readonly oas3_1Decorators: {
16219
+ readonly type: "object";
16220
+ readonly additionalProperties: true;
16221
+ };
16222
+ readonly async2Decorators: {
16223
+ readonly type: "object";
16224
+ readonly additionalProperties: true;
16225
+ };
16226
+ readonly async3Decorators: {
16227
+ readonly type: "object";
16228
+ readonly additionalProperties: true;
16229
+ };
16230
+ readonly arazzo1Decorators: {
16231
+ readonly type: "object";
16232
+ readonly additionalProperties: true;
16233
+ };
16234
+ readonly overlay1Decorators: {
16235
+ readonly type: "object";
16236
+ readonly additionalProperties: true;
16237
+ };
16238
+ readonly preprocessors: {
16239
+ readonly type: "object";
16240
+ readonly additionalProperties: true;
16241
+ };
16242
+ readonly oas2Preprocessors: {
16243
+ readonly type: "object";
16244
+ readonly additionalProperties: true;
16245
+ };
16246
+ readonly oas3_0Preprocessors: {
16247
+ readonly type: "object";
16248
+ readonly additionalProperties: true;
16249
+ };
16250
+ readonly oas3_1Preprocessors: {
16251
+ readonly type: "object";
16252
+ readonly additionalProperties: true;
16253
+ };
16254
+ readonly async2Preprocessors: {
16255
+ readonly type: "object";
16256
+ readonly additionalProperties: true;
16257
+ };
16258
+ readonly async3Preprocessors: {
16259
+ readonly type: "object";
16260
+ readonly additionalProperties: true;
16261
+ };
16262
+ readonly arazzo1Preprocessors: {
16263
+ readonly type: "object";
16264
+ readonly additionalProperties: true;
16265
+ };
16266
+ readonly overlay1Preprocessors: {
16267
+ readonly type: "object";
16268
+ readonly additionalProperties: true;
16269
+ };
14977
16270
  readonly rules: {
14978
16271
  readonly type: "object";
14979
16272
  readonly additionalProperties: {
@@ -15083,15 +16376,16 @@ export declare const redoclyConfigSchema: {
15083
16376
  readonly type: "object";
15084
16377
  readonly additionalProperties: true;
15085
16378
  };
16379
+ readonly ignore: {
16380
+ readonly type: "boolean";
16381
+ };
15086
16382
  readonly where: {
15087
16383
  readonly type: "object";
15088
16384
  readonly required: readonly ["metadata"];
15089
16385
  readonly properties: {
15090
16386
  readonly metadata: {
15091
16387
  readonly type: "object";
15092
- readonly additionalProperties: {
15093
- readonly type: "string";
15094
- };
16388
+ readonly additionalProperties: {};
15095
16389
  };
15096
16390
  };
15097
16391
  readonly additionalProperties: false;
@@ -15132,7 +16426,7 @@ export declare const redoclyConfigSchema: {
15132
16426
  readonly type: "object";
15133
16427
  readonly additionalProperties: true;
15134
16428
  };
15135
- readonly arazzoPreprocessors: {
16429
+ readonly arazzo1Preprocessors: {
15136
16430
  readonly type: "object";
15137
16431
  readonly additionalProperties: true;
15138
16432
  };
@@ -15616,7 +16910,7 @@ export declare const redoclyConfigSchema: {
15616
16910
  readonly type: "object";
15617
16911
  readonly additionalProperties: true;
15618
16912
  };
15619
- readonly arazzoPreprocessors: {
16913
+ readonly arazzo1Preprocessors: {
15620
16914
  readonly type: "object";
15621
16915
  readonly additionalProperties: true;
15622
16916
  };
@@ -17702,6 +18996,15 @@ export declare const redoclyConfigSchema: {
17702
18996
  readonly baseUrlPath: {
17703
18997
  readonly type: "string";
17704
18998
  };
18999
+ readonly metadata: {
19000
+ readonly type: "object";
19001
+ readonly properties: {
19002
+ readonly apiId: {
19003
+ readonly type: "string";
19004
+ };
19005
+ };
19006
+ readonly additionalProperties: true;
19007
+ };
17705
19008
  readonly feedback: {
17706
19009
  readonly type: "object";
17707
19010
  readonly properties: {
@@ -19934,6 +21237,15 @@ export declare const redoclyConfigSchema: {
19934
21237
  readonly baseUrlPath: {
19935
21238
  readonly type: "string";
19936
21239
  };
21240
+ readonly metadata: {
21241
+ readonly type: "object";
21242
+ readonly properties: {
21243
+ readonly apiId: {
21244
+ readonly type: "string";
21245
+ };
21246
+ };
21247
+ readonly additionalProperties: true;
21248
+ };
19937
21249
  readonly feedback: {
19938
21250
  readonly type: "object";
19939
21251
  readonly properties: {
@@ -22572,6 +23884,15 @@ export declare const rootRedoclyConfigSchema: {
22572
23884
  };
22573
23885
  type: "object";
22574
23886
  };
23887
+ metadata: {
23888
+ properties: {
23889
+ apiId: {
23890
+ type: "string";
23891
+ };
23892
+ };
23893
+ additionalProperties: true;
23894
+ type: "object";
23895
+ };
22575
23896
  feedback: {
22576
23897
  properties: {
22577
23898
  type: {
@@ -23388,6 +24709,306 @@ export declare const rootRedoclyConfigSchema: {
23388
24709
  };
23389
24710
  type: "object";
23390
24711
  };
24712
+ entitiesCatalog: {
24713
+ properties: {
24714
+ catalogs: {
24715
+ properties: {
24716
+ all: {
24717
+ properties: {
24718
+ includes: {
24719
+ items: {
24720
+ properties: any;
24721
+ additionalProperties: false;
24722
+ type: "object";
24723
+ required: "type"[];
24724
+ };
24725
+ type: "array";
24726
+ };
24727
+ slug: {
24728
+ type: "string";
24729
+ };
24730
+ hide: {
24731
+ type: "boolean";
24732
+ };
24733
+ filters: {
24734
+ items: {
24735
+ properties: any;
24736
+ additionalProperties: false;
24737
+ type: "object";
24738
+ required: ("title" | "property")[];
24739
+ };
24740
+ type: "array";
24741
+ };
24742
+ titleTranslationKey: {
24743
+ type: "string";
24744
+ };
24745
+ descriptionTranslationKey: {
24746
+ type: "string";
24747
+ };
24748
+ excludes: {
24749
+ items: {
24750
+ properties: any;
24751
+ additionalProperties: false;
24752
+ type: "object";
24753
+ required: "key"[];
24754
+ };
24755
+ type: "array";
24756
+ };
24757
+ catalogSwitcherLabelTranslationKey: {
24758
+ type: "string";
24759
+ };
24760
+ };
24761
+ additionalProperties: false;
24762
+ type: "object";
24763
+ };
24764
+ services: {
24765
+ properties: {
24766
+ includes: {
24767
+ items: {
24768
+ properties: any;
24769
+ additionalProperties: false;
24770
+ type: "object";
24771
+ required: "type"[];
24772
+ };
24773
+ type: "array";
24774
+ };
24775
+ slug: {
24776
+ type: "string";
24777
+ };
24778
+ hide: {
24779
+ type: "boolean";
24780
+ };
24781
+ filters: {
24782
+ items: {
24783
+ properties: any;
24784
+ additionalProperties: false;
24785
+ type: "object";
24786
+ required: ("title" | "property")[];
24787
+ };
24788
+ type: "array";
24789
+ };
24790
+ titleTranslationKey: {
24791
+ type: "string";
24792
+ };
24793
+ descriptionTranslationKey: {
24794
+ type: "string";
24795
+ };
24796
+ excludes: {
24797
+ items: {
24798
+ properties: any;
24799
+ additionalProperties: false;
24800
+ type: "object";
24801
+ required: "key"[];
24802
+ };
24803
+ type: "array";
24804
+ };
24805
+ catalogSwitcherLabelTranslationKey: {
24806
+ type: "string";
24807
+ };
24808
+ };
24809
+ additionalProperties: false;
24810
+ type: "object";
24811
+ };
24812
+ domains: {
24813
+ properties: {
24814
+ includes: {
24815
+ items: {
24816
+ properties: any;
24817
+ additionalProperties: false;
24818
+ type: "object";
24819
+ required: "type"[];
24820
+ };
24821
+ type: "array";
24822
+ };
24823
+ slug: {
24824
+ type: "string";
24825
+ };
24826
+ hide: {
24827
+ type: "boolean";
24828
+ };
24829
+ filters: {
24830
+ items: {
24831
+ properties: any;
24832
+ additionalProperties: false;
24833
+ type: "object";
24834
+ required: ("title" | "property")[];
24835
+ };
24836
+ type: "array";
24837
+ };
24838
+ titleTranslationKey: {
24839
+ type: "string";
24840
+ };
24841
+ descriptionTranslationKey: {
24842
+ type: "string";
24843
+ };
24844
+ excludes: {
24845
+ items: {
24846
+ properties: any;
24847
+ additionalProperties: false;
24848
+ type: "object";
24849
+ required: "key"[];
24850
+ };
24851
+ type: "array";
24852
+ };
24853
+ catalogSwitcherLabelTranslationKey: {
24854
+ type: "string";
24855
+ };
24856
+ };
24857
+ additionalProperties: false;
24858
+ type: "object";
24859
+ };
24860
+ teams: {
24861
+ properties: {
24862
+ includes: {
24863
+ items: {
24864
+ properties: any;
24865
+ additionalProperties: false;
24866
+ type: "object";
24867
+ required: "type"[];
24868
+ };
24869
+ type: "array";
24870
+ };
24871
+ slug: {
24872
+ type: "string";
24873
+ };
24874
+ hide: {
24875
+ type: "boolean";
24876
+ };
24877
+ filters: {
24878
+ items: {
24879
+ properties: any;
24880
+ additionalProperties: false;
24881
+ type: "object";
24882
+ required: ("title" | "property")[];
24883
+ };
24884
+ type: "array";
24885
+ };
24886
+ titleTranslationKey: {
24887
+ type: "string";
24888
+ };
24889
+ descriptionTranslationKey: {
24890
+ type: "string";
24891
+ };
24892
+ excludes: {
24893
+ items: {
24894
+ properties: any;
24895
+ additionalProperties: false;
24896
+ type: "object";
24897
+ required: "key"[];
24898
+ };
24899
+ type: "array";
24900
+ };
24901
+ catalogSwitcherLabelTranslationKey: {
24902
+ type: "string";
24903
+ };
24904
+ };
24905
+ additionalProperties: false;
24906
+ type: "object";
24907
+ };
24908
+ users: {
24909
+ properties: {
24910
+ includes: {
24911
+ items: {
24912
+ properties: any;
24913
+ additionalProperties: false;
24914
+ type: "object";
24915
+ required: "type"[];
24916
+ };
24917
+ type: "array";
24918
+ };
24919
+ slug: {
24920
+ type: "string";
24921
+ };
24922
+ hide: {
24923
+ type: "boolean";
24924
+ };
24925
+ filters: {
24926
+ items: {
24927
+ properties: any;
24928
+ additionalProperties: false;
24929
+ type: "object";
24930
+ required: ("title" | "property")[];
24931
+ };
24932
+ type: "array";
24933
+ };
24934
+ titleTranslationKey: {
24935
+ type: "string";
24936
+ };
24937
+ descriptionTranslationKey: {
24938
+ type: "string";
24939
+ };
24940
+ excludes: {
24941
+ items: {
24942
+ properties: any;
24943
+ additionalProperties: false;
24944
+ type: "object";
24945
+ required: "key"[];
24946
+ };
24947
+ type: "array";
24948
+ };
24949
+ catalogSwitcherLabelTranslationKey: {
24950
+ type: "string";
24951
+ };
24952
+ };
24953
+ additionalProperties: false;
24954
+ type: "object";
24955
+ };
24956
+ apiDescriptions: {
24957
+ properties: {
24958
+ includes: {
24959
+ items: {
24960
+ properties: any;
24961
+ additionalProperties: false;
24962
+ type: "object";
24963
+ required: "type"[];
24964
+ };
24965
+ type: "array";
24966
+ };
24967
+ slug: {
24968
+ type: "string";
24969
+ };
24970
+ hide: {
24971
+ type: "boolean";
24972
+ };
24973
+ filters: {
24974
+ items: {
24975
+ properties: any;
24976
+ additionalProperties: false;
24977
+ type: "object";
24978
+ required: ("title" | "property")[];
24979
+ };
24980
+ type: "array";
24981
+ };
24982
+ titleTranslationKey: {
24983
+ type: "string";
24984
+ };
24985
+ descriptionTranslationKey: {
24986
+ type: "string";
24987
+ };
24988
+ excludes: {
24989
+ items: {
24990
+ properties: any;
24991
+ additionalProperties: false;
24992
+ type: "object";
24993
+ required: "key"[];
24994
+ };
24995
+ type: "array";
24996
+ };
24997
+ catalogSwitcherLabelTranslationKey: {
24998
+ type: "string";
24999
+ };
25000
+ };
25001
+ additionalProperties: false;
25002
+ type: "object";
25003
+ };
25004
+ };
25005
+ additionalProperties: false;
25006
+ type: "object";
25007
+ };
25008
+ };
25009
+ additionalProperties: false;
25010
+ type: "object";
25011
+ };
23391
25012
  catalogClassic: {
23392
25013
  patternProperties: {
23393
25014
  ".*": {
@@ -23615,6 +25236,70 @@ export declare const rootRedoclyConfigSchema: {
23615
25236
  color: {
23616
25237
  type: "string";
23617
25238
  };
25239
+ preprocessors: {
25240
+ additionalProperties: true;
25241
+ type: "object";
25242
+ };
25243
+ oas2Preprocessors: {
25244
+ additionalProperties: true;
25245
+ type: "object";
25246
+ };
25247
+ oas3_0Preprocessors: {
25248
+ additionalProperties: true;
25249
+ type: "object";
25250
+ };
25251
+ oas3_1Preprocessors: {
25252
+ additionalProperties: true;
25253
+ type: "object";
25254
+ };
25255
+ async2Preprocessors: {
25256
+ additionalProperties: true;
25257
+ type: "object";
25258
+ };
25259
+ async3Preprocessors: {
25260
+ additionalProperties: true;
25261
+ type: "object";
25262
+ };
25263
+ arazzo1Preprocessors: {
25264
+ additionalProperties: true;
25265
+ type: "object";
25266
+ };
25267
+ overlay1Preprocessors: {
25268
+ additionalProperties: true;
25269
+ type: "object";
25270
+ };
25271
+ decorators: {
25272
+ additionalProperties: true;
25273
+ type: "object";
25274
+ };
25275
+ oas2Decorators: {
25276
+ additionalProperties: true;
25277
+ type: "object";
25278
+ };
25279
+ oas3_0Decorators: {
25280
+ additionalProperties: true;
25281
+ type: "object";
25282
+ };
25283
+ oas3_1Decorators: {
25284
+ additionalProperties: true;
25285
+ type: "object";
25286
+ };
25287
+ async2Decorators: {
25288
+ additionalProperties: true;
25289
+ type: "object";
25290
+ };
25291
+ async3Decorators: {
25292
+ additionalProperties: true;
25293
+ type: "object";
25294
+ };
25295
+ arazzo1Decorators: {
25296
+ additionalProperties: true;
25297
+ type: "object";
25298
+ };
25299
+ overlay1Decorators: {
25300
+ additionalProperties: true;
25301
+ type: "object";
25302
+ };
23618
25303
  rules: {
23619
25304
  additionalProperties: {
23620
25305
  oneOf: ({
@@ -23722,6 +25407,9 @@ export declare const rootRedoclyConfigSchema: {
23722
25407
  type: "object";
23723
25408
  required: "metadata"[];
23724
25409
  };
25410
+ ignore: {
25411
+ type: "boolean";
25412
+ };
23725
25413
  rules: {
23726
25414
  additionalProperties: true;
23727
25415
  type: "object";
@@ -26636,6 +28324,15 @@ export declare const rootRedoclyConfigSchema: {
26636
28324
  };
26637
28325
  type: "object";
26638
28326
  };
28327
+ metadata: {
28328
+ properties: {
28329
+ apiId: {
28330
+ type: "string";
28331
+ };
28332
+ };
28333
+ additionalProperties: true;
28334
+ type: "object";
28335
+ };
26639
28336
  feedback: {
26640
28337
  properties: {
26641
28338
  type: {
@@ -27452,6 +29149,306 @@ export declare const rootRedoclyConfigSchema: {
27452
29149
  };
27453
29150
  type: "object";
27454
29151
  };
29152
+ entitiesCatalog: {
29153
+ properties: {
29154
+ catalogs: {
29155
+ properties: {
29156
+ all: {
29157
+ properties: {
29158
+ includes: {
29159
+ items: {
29160
+ properties: any;
29161
+ additionalProperties: false;
29162
+ type: "object";
29163
+ required: "type"[];
29164
+ };
29165
+ type: "array";
29166
+ };
29167
+ slug: {
29168
+ type: "string";
29169
+ };
29170
+ hide: {
29171
+ type: "boolean";
29172
+ };
29173
+ filters: {
29174
+ items: {
29175
+ properties: any;
29176
+ additionalProperties: false;
29177
+ type: "object";
29178
+ required: ("title" | "property")[];
29179
+ };
29180
+ type: "array";
29181
+ };
29182
+ titleTranslationKey: {
29183
+ type: "string";
29184
+ };
29185
+ descriptionTranslationKey: {
29186
+ type: "string";
29187
+ };
29188
+ excludes: {
29189
+ items: {
29190
+ properties: any;
29191
+ additionalProperties: false;
29192
+ type: "object";
29193
+ required: "key"[];
29194
+ };
29195
+ type: "array";
29196
+ };
29197
+ catalogSwitcherLabelTranslationKey: {
29198
+ type: "string";
29199
+ };
29200
+ };
29201
+ additionalProperties: false;
29202
+ type: "object";
29203
+ };
29204
+ services: {
29205
+ properties: {
29206
+ includes: {
29207
+ items: {
29208
+ properties: any;
29209
+ additionalProperties: false;
29210
+ type: "object";
29211
+ required: "type"[];
29212
+ };
29213
+ type: "array";
29214
+ };
29215
+ slug: {
29216
+ type: "string";
29217
+ };
29218
+ hide: {
29219
+ type: "boolean";
29220
+ };
29221
+ filters: {
29222
+ items: {
29223
+ properties: any;
29224
+ additionalProperties: false;
29225
+ type: "object";
29226
+ required: ("title" | "property")[];
29227
+ };
29228
+ type: "array";
29229
+ };
29230
+ titleTranslationKey: {
29231
+ type: "string";
29232
+ };
29233
+ descriptionTranslationKey: {
29234
+ type: "string";
29235
+ };
29236
+ excludes: {
29237
+ items: {
29238
+ properties: any;
29239
+ additionalProperties: false;
29240
+ type: "object";
29241
+ required: "key"[];
29242
+ };
29243
+ type: "array";
29244
+ };
29245
+ catalogSwitcherLabelTranslationKey: {
29246
+ type: "string";
29247
+ };
29248
+ };
29249
+ additionalProperties: false;
29250
+ type: "object";
29251
+ };
29252
+ domains: {
29253
+ properties: {
29254
+ includes: {
29255
+ items: {
29256
+ properties: any;
29257
+ additionalProperties: false;
29258
+ type: "object";
29259
+ required: "type"[];
29260
+ };
29261
+ type: "array";
29262
+ };
29263
+ slug: {
29264
+ type: "string";
29265
+ };
29266
+ hide: {
29267
+ type: "boolean";
29268
+ };
29269
+ filters: {
29270
+ items: {
29271
+ properties: any;
29272
+ additionalProperties: false;
29273
+ type: "object";
29274
+ required: ("title" | "property")[];
29275
+ };
29276
+ type: "array";
29277
+ };
29278
+ titleTranslationKey: {
29279
+ type: "string";
29280
+ };
29281
+ descriptionTranslationKey: {
29282
+ type: "string";
29283
+ };
29284
+ excludes: {
29285
+ items: {
29286
+ properties: any;
29287
+ additionalProperties: false;
29288
+ type: "object";
29289
+ required: "key"[];
29290
+ };
29291
+ type: "array";
29292
+ };
29293
+ catalogSwitcherLabelTranslationKey: {
29294
+ type: "string";
29295
+ };
29296
+ };
29297
+ additionalProperties: false;
29298
+ type: "object";
29299
+ };
29300
+ teams: {
29301
+ properties: {
29302
+ includes: {
29303
+ items: {
29304
+ properties: any;
29305
+ additionalProperties: false;
29306
+ type: "object";
29307
+ required: "type"[];
29308
+ };
29309
+ type: "array";
29310
+ };
29311
+ slug: {
29312
+ type: "string";
29313
+ };
29314
+ hide: {
29315
+ type: "boolean";
29316
+ };
29317
+ filters: {
29318
+ items: {
29319
+ properties: any;
29320
+ additionalProperties: false;
29321
+ type: "object";
29322
+ required: ("title" | "property")[];
29323
+ };
29324
+ type: "array";
29325
+ };
29326
+ titleTranslationKey: {
29327
+ type: "string";
29328
+ };
29329
+ descriptionTranslationKey: {
29330
+ type: "string";
29331
+ };
29332
+ excludes: {
29333
+ items: {
29334
+ properties: any;
29335
+ additionalProperties: false;
29336
+ type: "object";
29337
+ required: "key"[];
29338
+ };
29339
+ type: "array";
29340
+ };
29341
+ catalogSwitcherLabelTranslationKey: {
29342
+ type: "string";
29343
+ };
29344
+ };
29345
+ additionalProperties: false;
29346
+ type: "object";
29347
+ };
29348
+ users: {
29349
+ properties: {
29350
+ includes: {
29351
+ items: {
29352
+ properties: any;
29353
+ additionalProperties: false;
29354
+ type: "object";
29355
+ required: "type"[];
29356
+ };
29357
+ type: "array";
29358
+ };
29359
+ slug: {
29360
+ type: "string";
29361
+ };
29362
+ hide: {
29363
+ type: "boolean";
29364
+ };
29365
+ filters: {
29366
+ items: {
29367
+ properties: any;
29368
+ additionalProperties: false;
29369
+ type: "object";
29370
+ required: ("title" | "property")[];
29371
+ };
29372
+ type: "array";
29373
+ };
29374
+ titleTranslationKey: {
29375
+ type: "string";
29376
+ };
29377
+ descriptionTranslationKey: {
29378
+ type: "string";
29379
+ };
29380
+ excludes: {
29381
+ items: {
29382
+ properties: any;
29383
+ additionalProperties: false;
29384
+ type: "object";
29385
+ required: "key"[];
29386
+ };
29387
+ type: "array";
29388
+ };
29389
+ catalogSwitcherLabelTranslationKey: {
29390
+ type: "string";
29391
+ };
29392
+ };
29393
+ additionalProperties: false;
29394
+ type: "object";
29395
+ };
29396
+ apiDescriptions: {
29397
+ properties: {
29398
+ includes: {
29399
+ items: {
29400
+ properties: any;
29401
+ additionalProperties: false;
29402
+ type: "object";
29403
+ required: "type"[];
29404
+ };
29405
+ type: "array";
29406
+ };
29407
+ slug: {
29408
+ type: "string";
29409
+ };
29410
+ hide: {
29411
+ type: "boolean";
29412
+ };
29413
+ filters: {
29414
+ items: {
29415
+ properties: any;
29416
+ additionalProperties: false;
29417
+ type: "object";
29418
+ required: ("title" | "property")[];
29419
+ };
29420
+ type: "array";
29421
+ };
29422
+ titleTranslationKey: {
29423
+ type: "string";
29424
+ };
29425
+ descriptionTranslationKey: {
29426
+ type: "string";
29427
+ };
29428
+ excludes: {
29429
+ items: {
29430
+ properties: any;
29431
+ additionalProperties: false;
29432
+ type: "object";
29433
+ required: "key"[];
29434
+ };
29435
+ type: "array";
29436
+ };
29437
+ catalogSwitcherLabelTranslationKey: {
29438
+ type: "string";
29439
+ };
29440
+ };
29441
+ additionalProperties: false;
29442
+ type: "object";
29443
+ };
29444
+ };
29445
+ additionalProperties: false;
29446
+ type: "object";
29447
+ };
29448
+ };
29449
+ additionalProperties: false;
29450
+ type: "object";
29451
+ };
27455
29452
  catalogClassic: {
27456
29453
  patternProperties: {
27457
29454
  ".*": {
@@ -27679,6 +29676,70 @@ export declare const rootRedoclyConfigSchema: {
27679
29676
  color: {
27680
29677
  type: "string";
27681
29678
  };
29679
+ preprocessors: {
29680
+ additionalProperties: true;
29681
+ type: "object";
29682
+ };
29683
+ oas2Preprocessors: {
29684
+ additionalProperties: true;
29685
+ type: "object";
29686
+ };
29687
+ oas3_0Preprocessors: {
29688
+ additionalProperties: true;
29689
+ type: "object";
29690
+ };
29691
+ oas3_1Preprocessors: {
29692
+ additionalProperties: true;
29693
+ type: "object";
29694
+ };
29695
+ async2Preprocessors: {
29696
+ additionalProperties: true;
29697
+ type: "object";
29698
+ };
29699
+ async3Preprocessors: {
29700
+ additionalProperties: true;
29701
+ type: "object";
29702
+ };
29703
+ arazzo1Preprocessors: {
29704
+ additionalProperties: true;
29705
+ type: "object";
29706
+ };
29707
+ overlay1Preprocessors: {
29708
+ additionalProperties: true;
29709
+ type: "object";
29710
+ };
29711
+ decorators: {
29712
+ additionalProperties: true;
29713
+ type: "object";
29714
+ };
29715
+ oas2Decorators: {
29716
+ additionalProperties: true;
29717
+ type: "object";
29718
+ };
29719
+ oas3_0Decorators: {
29720
+ additionalProperties: true;
29721
+ type: "object";
29722
+ };
29723
+ oas3_1Decorators: {
29724
+ additionalProperties: true;
29725
+ type: "object";
29726
+ };
29727
+ async2Decorators: {
29728
+ additionalProperties: true;
29729
+ type: "object";
29730
+ };
29731
+ async3Decorators: {
29732
+ additionalProperties: true;
29733
+ type: "object";
29734
+ };
29735
+ arazzo1Decorators: {
29736
+ additionalProperties: true;
29737
+ type: "object";
29738
+ };
29739
+ overlay1Decorators: {
29740
+ additionalProperties: true;
29741
+ type: "object";
29742
+ };
27682
29743
  rules: {
27683
29744
  additionalProperties: {
27684
29745
  oneOf: ({
@@ -27786,6 +29847,9 @@ export declare const rootRedoclyConfigSchema: {
27786
29847
  type: "object";
27787
29848
  required: "metadata"[];
27788
29849
  };
29850
+ ignore: {
29851
+ type: "boolean";
29852
+ };
27789
29853
  rules: {
27790
29854
  additionalProperties: true;
27791
29855
  type: "object";
@@ -27829,7 +29893,7 @@ export declare const rootRedoclyConfigSchema: {
27829
29893
  additionalProperties: true;
27830
29894
  type: "object";
27831
29895
  };
27832
- arazzoPreprocessors: {
29896
+ arazzo1Preprocessors: {
27833
29897
  additionalProperties: true;
27834
29898
  type: "object";
27835
29899
  };
@@ -29633,6 +31697,15 @@ export declare const rootRedoclyConfigSchema: {
29633
31697
  };
29634
31698
  type: "object";
29635
31699
  };
31700
+ metadata: {
31701
+ properties: {
31702
+ apiId: {
31703
+ type: "string";
31704
+ };
31705
+ };
31706
+ additionalProperties: true;
31707
+ type: "object";
31708
+ };
29636
31709
  feedback: {
29637
31710
  properties: {
29638
31711
  type: {
@@ -31373,6 +33446,15 @@ export declare const rootRedoclyConfigSchema: {
31373
33446
  };
31374
33447
  type: "object";
31375
33448
  };
33449
+ metadata: {
33450
+ properties: {
33451
+ apiId: {
33452
+ type: "string";
33453
+ };
33454
+ };
33455
+ additionalProperties: true;
33456
+ type: "object";
33457
+ };
31376
33458
  feedback: {
31377
33459
  properties: {
31378
33460
  type: {
@@ -31710,7 +33792,7 @@ export declare const rootRedoclyConfigSchema: {
31710
33792
  additionalProperties: true;
31711
33793
  type: "object";
31712
33794
  };
31713
- arazzoPreprocessors: {
33795
+ arazzo1Preprocessors: {
31714
33796
  additionalProperties: true;
31715
33797
  type: "object";
31716
33798
  };
@@ -35419,6 +37501,15 @@ export declare const rootRedoclyConfigSchema: {
35419
37501
  readonly baseUrlPath: {
35420
37502
  readonly type: "string";
35421
37503
  };
37504
+ readonly metadata: {
37505
+ readonly type: "object";
37506
+ readonly properties: {
37507
+ readonly apiId: {
37508
+ readonly type: "string";
37509
+ };
37510
+ };
37511
+ readonly additionalProperties: true;
37512
+ };
35422
37513
  readonly feedback: {
35423
37514
  readonly type: "object";
35424
37515
  readonly properties: {
@@ -36239,6 +38330,570 @@ export declare const rootRedoclyConfigSchema: {
36239
38330
  };
36240
38331
  };
36241
38332
  };
38333
+ readonly entitiesCatalog: {
38334
+ readonly type: "object";
38335
+ readonly properties: {
38336
+ readonly catalogs: {
38337
+ readonly type: "object";
38338
+ readonly properties: {
38339
+ readonly all: {
38340
+ readonly type: "object";
38341
+ readonly properties: {
38342
+ readonly slug: {
38343
+ readonly type: "string";
38344
+ };
38345
+ readonly hide: {
38346
+ readonly type: "boolean";
38347
+ };
38348
+ readonly includes: {
38349
+ readonly type: "array";
38350
+ readonly items: {
38351
+ readonly type: "object";
38352
+ readonly required: readonly ["type"];
38353
+ readonly properties: {
38354
+ readonly type: {
38355
+ readonly type: "string";
38356
+ };
38357
+ };
38358
+ readonly additionalProperties: false;
38359
+ };
38360
+ };
38361
+ readonly excludes: {
38362
+ readonly type: "array";
38363
+ readonly items: {
38364
+ readonly type: "object";
38365
+ readonly required: readonly ["key"];
38366
+ readonly properties: {
38367
+ readonly key: {
38368
+ readonly type: "string";
38369
+ };
38370
+ };
38371
+ readonly additionalProperties: false;
38372
+ };
38373
+ };
38374
+ readonly filters: {
38375
+ readonly type: "array";
38376
+ readonly items: {
38377
+ readonly type: "object";
38378
+ readonly required: readonly ["property", "title"];
38379
+ readonly properties: {
38380
+ readonly property: {
38381
+ readonly type: "string";
38382
+ };
38383
+ readonly hide: {
38384
+ readonly type: "boolean";
38385
+ };
38386
+ readonly label: {
38387
+ readonly type: "string";
38388
+ };
38389
+ readonly options: {
38390
+ readonly type: "array";
38391
+ readonly items: {
38392
+ readonly type: "string";
38393
+ };
38394
+ };
38395
+ readonly type: {
38396
+ readonly type: "string";
38397
+ readonly enum: readonly ["select", "checkboxes", "date-range"];
38398
+ readonly default: "checkboxes";
38399
+ };
38400
+ readonly title: {
38401
+ readonly type: "string";
38402
+ };
38403
+ readonly titleTranslationKey: {
38404
+ readonly type: "string";
38405
+ };
38406
+ readonly parentFilter: {
38407
+ readonly type: "string";
38408
+ };
38409
+ readonly valuesMapping: {
38410
+ readonly type: "object";
38411
+ readonly additionalProperties: {
38412
+ readonly type: "string";
38413
+ };
38414
+ };
38415
+ };
38416
+ readonly additionalProperties: false;
38417
+ };
38418
+ };
38419
+ readonly titleTranslationKey: {
38420
+ readonly type: "string";
38421
+ };
38422
+ readonly descriptionTranslationKey: {
38423
+ readonly type: "string";
38424
+ };
38425
+ readonly catalogSwitcherLabelTranslationKey: {
38426
+ readonly type: "string";
38427
+ };
38428
+ };
38429
+ readonly additionalProperties: false;
38430
+ };
38431
+ readonly services: {
38432
+ readonly type: "object";
38433
+ readonly properties: {
38434
+ readonly slug: {
38435
+ readonly type: "string";
38436
+ };
38437
+ readonly hide: {
38438
+ readonly type: "boolean";
38439
+ };
38440
+ readonly includes: {
38441
+ readonly type: "array";
38442
+ readonly items: {
38443
+ readonly type: "object";
38444
+ readonly required: readonly ["type"];
38445
+ readonly properties: {
38446
+ readonly type: {
38447
+ readonly type: "string";
38448
+ };
38449
+ };
38450
+ readonly additionalProperties: false;
38451
+ };
38452
+ };
38453
+ readonly excludes: {
38454
+ readonly type: "array";
38455
+ readonly items: {
38456
+ readonly type: "object";
38457
+ readonly required: readonly ["key"];
38458
+ readonly properties: {
38459
+ readonly key: {
38460
+ readonly type: "string";
38461
+ };
38462
+ };
38463
+ readonly additionalProperties: false;
38464
+ };
38465
+ };
38466
+ readonly filters: {
38467
+ readonly type: "array";
38468
+ readonly items: {
38469
+ readonly type: "object";
38470
+ readonly required: readonly ["property", "title"];
38471
+ readonly properties: {
38472
+ readonly property: {
38473
+ readonly type: "string";
38474
+ };
38475
+ readonly hide: {
38476
+ readonly type: "boolean";
38477
+ };
38478
+ readonly label: {
38479
+ readonly type: "string";
38480
+ };
38481
+ readonly options: {
38482
+ readonly type: "array";
38483
+ readonly items: {
38484
+ readonly type: "string";
38485
+ };
38486
+ };
38487
+ readonly type: {
38488
+ readonly type: "string";
38489
+ readonly enum: readonly ["select", "checkboxes", "date-range"];
38490
+ readonly default: "checkboxes";
38491
+ };
38492
+ readonly title: {
38493
+ readonly type: "string";
38494
+ };
38495
+ readonly titleTranslationKey: {
38496
+ readonly type: "string";
38497
+ };
38498
+ readonly parentFilter: {
38499
+ readonly type: "string";
38500
+ };
38501
+ readonly valuesMapping: {
38502
+ readonly type: "object";
38503
+ readonly additionalProperties: {
38504
+ readonly type: "string";
38505
+ };
38506
+ };
38507
+ };
38508
+ readonly additionalProperties: false;
38509
+ };
38510
+ };
38511
+ readonly titleTranslationKey: {
38512
+ readonly type: "string";
38513
+ };
38514
+ readonly descriptionTranslationKey: {
38515
+ readonly type: "string";
38516
+ };
38517
+ readonly catalogSwitcherLabelTranslationKey: {
38518
+ readonly type: "string";
38519
+ };
38520
+ };
38521
+ readonly additionalProperties: false;
38522
+ };
38523
+ readonly domains: {
38524
+ readonly type: "object";
38525
+ readonly properties: {
38526
+ readonly slug: {
38527
+ readonly type: "string";
38528
+ };
38529
+ readonly hide: {
38530
+ readonly type: "boolean";
38531
+ };
38532
+ readonly includes: {
38533
+ readonly type: "array";
38534
+ readonly items: {
38535
+ readonly type: "object";
38536
+ readonly required: readonly ["type"];
38537
+ readonly properties: {
38538
+ readonly type: {
38539
+ readonly type: "string";
38540
+ };
38541
+ };
38542
+ readonly additionalProperties: false;
38543
+ };
38544
+ };
38545
+ readonly excludes: {
38546
+ readonly type: "array";
38547
+ readonly items: {
38548
+ readonly type: "object";
38549
+ readonly required: readonly ["key"];
38550
+ readonly properties: {
38551
+ readonly key: {
38552
+ readonly type: "string";
38553
+ };
38554
+ };
38555
+ readonly additionalProperties: false;
38556
+ };
38557
+ };
38558
+ readonly filters: {
38559
+ readonly type: "array";
38560
+ readonly items: {
38561
+ readonly type: "object";
38562
+ readonly required: readonly ["property", "title"];
38563
+ readonly properties: {
38564
+ readonly property: {
38565
+ readonly type: "string";
38566
+ };
38567
+ readonly hide: {
38568
+ readonly type: "boolean";
38569
+ };
38570
+ readonly label: {
38571
+ readonly type: "string";
38572
+ };
38573
+ readonly options: {
38574
+ readonly type: "array";
38575
+ readonly items: {
38576
+ readonly type: "string";
38577
+ };
38578
+ };
38579
+ readonly type: {
38580
+ readonly type: "string";
38581
+ readonly enum: readonly ["select", "checkboxes", "date-range"];
38582
+ readonly default: "checkboxes";
38583
+ };
38584
+ readonly title: {
38585
+ readonly type: "string";
38586
+ };
38587
+ readonly titleTranslationKey: {
38588
+ readonly type: "string";
38589
+ };
38590
+ readonly parentFilter: {
38591
+ readonly type: "string";
38592
+ };
38593
+ readonly valuesMapping: {
38594
+ readonly type: "object";
38595
+ readonly additionalProperties: {
38596
+ readonly type: "string";
38597
+ };
38598
+ };
38599
+ };
38600
+ readonly additionalProperties: false;
38601
+ };
38602
+ };
38603
+ readonly titleTranslationKey: {
38604
+ readonly type: "string";
38605
+ };
38606
+ readonly descriptionTranslationKey: {
38607
+ readonly type: "string";
38608
+ };
38609
+ readonly catalogSwitcherLabelTranslationKey: {
38610
+ readonly type: "string";
38611
+ };
38612
+ };
38613
+ readonly additionalProperties: false;
38614
+ };
38615
+ readonly teams: {
38616
+ readonly type: "object";
38617
+ readonly properties: {
38618
+ readonly slug: {
38619
+ readonly type: "string";
38620
+ };
38621
+ readonly hide: {
38622
+ readonly type: "boolean";
38623
+ };
38624
+ readonly includes: {
38625
+ readonly type: "array";
38626
+ readonly items: {
38627
+ readonly type: "object";
38628
+ readonly required: readonly ["type"];
38629
+ readonly properties: {
38630
+ readonly type: {
38631
+ readonly type: "string";
38632
+ };
38633
+ };
38634
+ readonly additionalProperties: false;
38635
+ };
38636
+ };
38637
+ readonly excludes: {
38638
+ readonly type: "array";
38639
+ readonly items: {
38640
+ readonly type: "object";
38641
+ readonly required: readonly ["key"];
38642
+ readonly properties: {
38643
+ readonly key: {
38644
+ readonly type: "string";
38645
+ };
38646
+ };
38647
+ readonly additionalProperties: false;
38648
+ };
38649
+ };
38650
+ readonly filters: {
38651
+ readonly type: "array";
38652
+ readonly items: {
38653
+ readonly type: "object";
38654
+ readonly required: readonly ["property", "title"];
38655
+ readonly properties: {
38656
+ readonly property: {
38657
+ readonly type: "string";
38658
+ };
38659
+ readonly hide: {
38660
+ readonly type: "boolean";
38661
+ };
38662
+ readonly label: {
38663
+ readonly type: "string";
38664
+ };
38665
+ readonly options: {
38666
+ readonly type: "array";
38667
+ readonly items: {
38668
+ readonly type: "string";
38669
+ };
38670
+ };
38671
+ readonly type: {
38672
+ readonly type: "string";
38673
+ readonly enum: readonly ["select", "checkboxes", "date-range"];
38674
+ readonly default: "checkboxes";
38675
+ };
38676
+ readonly title: {
38677
+ readonly type: "string";
38678
+ };
38679
+ readonly titleTranslationKey: {
38680
+ readonly type: "string";
38681
+ };
38682
+ readonly parentFilter: {
38683
+ readonly type: "string";
38684
+ };
38685
+ readonly valuesMapping: {
38686
+ readonly type: "object";
38687
+ readonly additionalProperties: {
38688
+ readonly type: "string";
38689
+ };
38690
+ };
38691
+ };
38692
+ readonly additionalProperties: false;
38693
+ };
38694
+ };
38695
+ readonly titleTranslationKey: {
38696
+ readonly type: "string";
38697
+ };
38698
+ readonly descriptionTranslationKey: {
38699
+ readonly type: "string";
38700
+ };
38701
+ readonly catalogSwitcherLabelTranslationKey: {
38702
+ readonly type: "string";
38703
+ };
38704
+ };
38705
+ readonly additionalProperties: false;
38706
+ };
38707
+ readonly users: {
38708
+ readonly type: "object";
38709
+ readonly properties: {
38710
+ readonly slug: {
38711
+ readonly type: "string";
38712
+ };
38713
+ readonly hide: {
38714
+ readonly type: "boolean";
38715
+ };
38716
+ readonly includes: {
38717
+ readonly type: "array";
38718
+ readonly items: {
38719
+ readonly type: "object";
38720
+ readonly required: readonly ["type"];
38721
+ readonly properties: {
38722
+ readonly type: {
38723
+ readonly type: "string";
38724
+ };
38725
+ };
38726
+ readonly additionalProperties: false;
38727
+ };
38728
+ };
38729
+ readonly excludes: {
38730
+ readonly type: "array";
38731
+ readonly items: {
38732
+ readonly type: "object";
38733
+ readonly required: readonly ["key"];
38734
+ readonly properties: {
38735
+ readonly key: {
38736
+ readonly type: "string";
38737
+ };
38738
+ };
38739
+ readonly additionalProperties: false;
38740
+ };
38741
+ };
38742
+ readonly filters: {
38743
+ readonly type: "array";
38744
+ readonly items: {
38745
+ readonly type: "object";
38746
+ readonly required: readonly ["property", "title"];
38747
+ readonly properties: {
38748
+ readonly property: {
38749
+ readonly type: "string";
38750
+ };
38751
+ readonly hide: {
38752
+ readonly type: "boolean";
38753
+ };
38754
+ readonly label: {
38755
+ readonly type: "string";
38756
+ };
38757
+ readonly options: {
38758
+ readonly type: "array";
38759
+ readonly items: {
38760
+ readonly type: "string";
38761
+ };
38762
+ };
38763
+ readonly type: {
38764
+ readonly type: "string";
38765
+ readonly enum: readonly ["select", "checkboxes", "date-range"];
38766
+ readonly default: "checkboxes";
38767
+ };
38768
+ readonly title: {
38769
+ readonly type: "string";
38770
+ };
38771
+ readonly titleTranslationKey: {
38772
+ readonly type: "string";
38773
+ };
38774
+ readonly parentFilter: {
38775
+ readonly type: "string";
38776
+ };
38777
+ readonly valuesMapping: {
38778
+ readonly type: "object";
38779
+ readonly additionalProperties: {
38780
+ readonly type: "string";
38781
+ };
38782
+ };
38783
+ };
38784
+ readonly additionalProperties: false;
38785
+ };
38786
+ };
38787
+ readonly titleTranslationKey: {
38788
+ readonly type: "string";
38789
+ };
38790
+ readonly descriptionTranslationKey: {
38791
+ readonly type: "string";
38792
+ };
38793
+ readonly catalogSwitcherLabelTranslationKey: {
38794
+ readonly type: "string";
38795
+ };
38796
+ };
38797
+ readonly additionalProperties: false;
38798
+ };
38799
+ readonly apiDescriptions: {
38800
+ readonly type: "object";
38801
+ readonly properties: {
38802
+ readonly slug: {
38803
+ readonly type: "string";
38804
+ };
38805
+ readonly hide: {
38806
+ readonly type: "boolean";
38807
+ };
38808
+ readonly includes: {
38809
+ readonly type: "array";
38810
+ readonly items: {
38811
+ readonly type: "object";
38812
+ readonly required: readonly ["type"];
38813
+ readonly properties: {
38814
+ readonly type: {
38815
+ readonly type: "string";
38816
+ };
38817
+ };
38818
+ readonly additionalProperties: false;
38819
+ };
38820
+ };
38821
+ readonly excludes: {
38822
+ readonly type: "array";
38823
+ readonly items: {
38824
+ readonly type: "object";
38825
+ readonly required: readonly ["key"];
38826
+ readonly properties: {
38827
+ readonly key: {
38828
+ readonly type: "string";
38829
+ };
38830
+ };
38831
+ readonly additionalProperties: false;
38832
+ };
38833
+ };
38834
+ readonly filters: {
38835
+ readonly type: "array";
38836
+ readonly items: {
38837
+ readonly type: "object";
38838
+ readonly required: readonly ["property", "title"];
38839
+ readonly properties: {
38840
+ readonly property: {
38841
+ readonly type: "string";
38842
+ };
38843
+ readonly hide: {
38844
+ readonly type: "boolean";
38845
+ };
38846
+ readonly label: {
38847
+ readonly type: "string";
38848
+ };
38849
+ readonly options: {
38850
+ readonly type: "array";
38851
+ readonly items: {
38852
+ readonly type: "string";
38853
+ };
38854
+ };
38855
+ readonly type: {
38856
+ readonly type: "string";
38857
+ readonly enum: readonly ["select", "checkboxes", "date-range"];
38858
+ readonly default: "checkboxes";
38859
+ };
38860
+ readonly title: {
38861
+ readonly type: "string";
38862
+ };
38863
+ readonly titleTranslationKey: {
38864
+ readonly type: "string";
38865
+ };
38866
+ readonly parentFilter: {
38867
+ readonly type: "string";
38868
+ };
38869
+ readonly valuesMapping: {
38870
+ readonly type: "object";
38871
+ readonly additionalProperties: {
38872
+ readonly type: "string";
38873
+ };
38874
+ };
38875
+ };
38876
+ readonly additionalProperties: false;
38877
+ };
38878
+ };
38879
+ readonly titleTranslationKey: {
38880
+ readonly type: "string";
38881
+ };
38882
+ readonly descriptionTranslationKey: {
38883
+ readonly type: "string";
38884
+ };
38885
+ readonly catalogSwitcherLabelTranslationKey: {
38886
+ readonly type: "string";
38887
+ };
38888
+ };
38889
+ readonly additionalProperties: false;
38890
+ };
38891
+ };
38892
+ readonly additionalProperties: false;
38893
+ };
38894
+ };
38895
+ readonly additionalProperties: false;
38896
+ };
36242
38897
  readonly catalogClassic: {
36243
38898
  readonly type: "object";
36244
38899
  readonly patternProperties: {
@@ -36538,6 +39193,70 @@ export declare const rootRedoclyConfigSchema: {
36538
39193
  readonly type: "object";
36539
39194
  readonly required: readonly ["name"];
36540
39195
  readonly properties: {
39196
+ readonly decorators: {
39197
+ readonly type: "object";
39198
+ readonly additionalProperties: true;
39199
+ };
39200
+ readonly oas2Decorators: {
39201
+ readonly type: "object";
39202
+ readonly additionalProperties: true;
39203
+ };
39204
+ readonly oas3_0Decorators: {
39205
+ readonly type: "object";
39206
+ readonly additionalProperties: true;
39207
+ };
39208
+ readonly oas3_1Decorators: {
39209
+ readonly type: "object";
39210
+ readonly additionalProperties: true;
39211
+ };
39212
+ readonly async2Decorators: {
39213
+ readonly type: "object";
39214
+ readonly additionalProperties: true;
39215
+ };
39216
+ readonly async3Decorators: {
39217
+ readonly type: "object";
39218
+ readonly additionalProperties: true;
39219
+ };
39220
+ readonly arazzo1Decorators: {
39221
+ readonly type: "object";
39222
+ readonly additionalProperties: true;
39223
+ };
39224
+ readonly overlay1Decorators: {
39225
+ readonly type: "object";
39226
+ readonly additionalProperties: true;
39227
+ };
39228
+ readonly preprocessors: {
39229
+ readonly type: "object";
39230
+ readonly additionalProperties: true;
39231
+ };
39232
+ readonly oas2Preprocessors: {
39233
+ readonly type: "object";
39234
+ readonly additionalProperties: true;
39235
+ };
39236
+ readonly oas3_0Preprocessors: {
39237
+ readonly type: "object";
39238
+ readonly additionalProperties: true;
39239
+ };
39240
+ readonly oas3_1Preprocessors: {
39241
+ readonly type: "object";
39242
+ readonly additionalProperties: true;
39243
+ };
39244
+ readonly async2Preprocessors: {
39245
+ readonly type: "object";
39246
+ readonly additionalProperties: true;
39247
+ };
39248
+ readonly async3Preprocessors: {
39249
+ readonly type: "object";
39250
+ readonly additionalProperties: true;
39251
+ };
39252
+ readonly arazzo1Preprocessors: {
39253
+ readonly type: "object";
39254
+ readonly additionalProperties: true;
39255
+ };
39256
+ readonly overlay1Preprocessors: {
39257
+ readonly type: "object";
39258
+ readonly additionalProperties: true;
39259
+ };
36541
39260
  readonly rules: {
36542
39261
  readonly type: "object";
36543
39262
  readonly additionalProperties: {
@@ -36647,15 +39366,16 @@ export declare const rootRedoclyConfigSchema: {
36647
39366
  readonly type: "object";
36648
39367
  readonly additionalProperties: true;
36649
39368
  };
39369
+ readonly ignore: {
39370
+ readonly type: "boolean";
39371
+ };
36650
39372
  readonly where: {
36651
39373
  readonly type: "object";
36652
39374
  readonly required: readonly ["metadata"];
36653
39375
  readonly properties: {
36654
39376
  readonly metadata: {
36655
39377
  readonly type: "object";
36656
- readonly additionalProperties: {
36657
- readonly type: "string";
36658
- };
39378
+ readonly additionalProperties: {};
36659
39379
  };
36660
39380
  };
36661
39381
  readonly additionalProperties: false;
@@ -39891,6 +42611,15 @@ export declare const rootRedoclyConfigSchema: {
39891
42611
  readonly baseUrlPath: {
39892
42612
  readonly type: "string";
39893
42613
  };
42614
+ readonly metadata: {
42615
+ readonly type: "object";
42616
+ readonly properties: {
42617
+ readonly apiId: {
42618
+ readonly type: "string";
42619
+ };
42620
+ };
42621
+ readonly additionalProperties: true;
42622
+ };
39894
42623
  readonly feedback: {
39895
42624
  readonly type: "object";
39896
42625
  readonly properties: {
@@ -40479,240 +43208,804 @@ export declare const rootRedoclyConfigSchema: {
40479
43208
  readonly parentFilter: {
40480
43209
  readonly type: "string";
40481
43210
  };
40482
- readonly valuesMapping: {
43211
+ readonly valuesMapping: {
43212
+ readonly type: "object";
43213
+ readonly additionalProperties: {
43214
+ readonly type: "string";
43215
+ };
43216
+ };
43217
+ readonly missingCategoryName: {
43218
+ readonly type: "string";
43219
+ };
43220
+ readonly missingCategoryNameTranslationKey: {
43221
+ readonly type: "string";
43222
+ };
43223
+ readonly options: {
43224
+ readonly type: "array";
43225
+ readonly items: {
43226
+ readonly type: "string";
43227
+ };
43228
+ };
43229
+ };
43230
+ };
43231
+ };
43232
+ readonly groupByFirstFilter: {
43233
+ readonly type: "boolean";
43234
+ };
43235
+ readonly filterValuesCasing: {
43236
+ readonly type: "string";
43237
+ readonly enum: readonly ["sentence", "original", "lowercase", "uppercase"];
43238
+ };
43239
+ readonly items: {
43240
+ readonly type: "array";
43241
+ readonly items: {
43242
+ readonly properties: {
43243
+ readonly items: {
43244
+ readonly type: "array";
43245
+ readonly items: {
43246
+ readonly type: "object";
43247
+ readonly properties: {
43248
+ readonly page: {
43249
+ readonly type: "string";
43250
+ };
43251
+ readonly directory: {
43252
+ readonly type: "string";
43253
+ };
43254
+ readonly disconnect: {
43255
+ readonly type: "boolean";
43256
+ readonly default: false;
43257
+ };
43258
+ readonly group: {
43259
+ readonly type: "string";
43260
+ };
43261
+ readonly label: {
43262
+ readonly type: "string";
43263
+ };
43264
+ readonly href: {
43265
+ readonly type: "string";
43266
+ };
43267
+ readonly external: {
43268
+ readonly type: "boolean";
43269
+ };
43270
+ readonly labelTranslationKey: {
43271
+ readonly type: "string";
43272
+ };
43273
+ readonly groupTranslationKey: {
43274
+ readonly type: "string";
43275
+ };
43276
+ readonly icon: {
43277
+ readonly oneOf: readonly [{
43278
+ readonly type: "string";
43279
+ }, {
43280
+ readonly type: "object";
43281
+ readonly properties: {
43282
+ readonly srcSet: {
43283
+ readonly type: "string";
43284
+ };
43285
+ };
43286
+ readonly required: readonly ["srcSet"];
43287
+ }];
43288
+ };
43289
+ readonly separator: {
43290
+ readonly type: "string";
43291
+ };
43292
+ readonly separatorLine: {
43293
+ readonly type: "boolean";
43294
+ };
43295
+ readonly linePosition: {
43296
+ readonly type: "string";
43297
+ readonly enum: readonly ["top", "bottom"];
43298
+ readonly default: "top";
43299
+ };
43300
+ readonly version: {
43301
+ readonly type: "string";
43302
+ };
43303
+ readonly menuStyle: {
43304
+ readonly type: "string";
43305
+ readonly enum: readonly ["drilldown"];
43306
+ };
43307
+ readonly expanded: {
43308
+ readonly type: "string";
43309
+ readonly const: "always";
43310
+ };
43311
+ readonly selectFirstItemOnExpand: {
43312
+ readonly type: "boolean";
43313
+ };
43314
+ readonly flatten: {
43315
+ readonly type: "boolean";
43316
+ };
43317
+ readonly linkedSidebars: {
43318
+ readonly type: "array";
43319
+ readonly items: {
43320
+ readonly type: "string";
43321
+ };
43322
+ };
43323
+ readonly items: {
43324
+ readonly type: "array";
43325
+ readonly items: {
43326
+ readonly type: "object";
43327
+ readonly additionalProperties: true;
43328
+ };
43329
+ };
43330
+ readonly rbac: {
43331
+ readonly type: "object";
43332
+ readonly additionalProperties: {
43333
+ readonly type: "string";
43334
+ };
43335
+ };
43336
+ };
43337
+ };
43338
+ };
43339
+ readonly page: {
43340
+ readonly type: "string";
43341
+ };
43342
+ readonly directory: {
43343
+ readonly type: "string";
43344
+ };
43345
+ readonly disconnect: {
43346
+ readonly type: "boolean";
43347
+ readonly default: false;
43348
+ };
43349
+ readonly group: {
43350
+ readonly type: "string";
43351
+ };
43352
+ readonly label: {
43353
+ readonly type: "string";
43354
+ };
43355
+ readonly href: {
43356
+ readonly type: "string";
43357
+ };
43358
+ readonly external: {
43359
+ readonly type: "boolean";
43360
+ };
43361
+ readonly labelTranslationKey: {
43362
+ readonly type: "string";
43363
+ };
43364
+ readonly groupTranslationKey: {
43365
+ readonly type: "string";
43366
+ };
43367
+ readonly icon: {
43368
+ readonly oneOf: readonly [{
43369
+ readonly type: "string";
43370
+ }, {
43371
+ readonly type: "object";
43372
+ readonly properties: {
43373
+ readonly srcSet: {
43374
+ readonly type: "string";
43375
+ };
43376
+ };
43377
+ readonly required: readonly ["srcSet"];
43378
+ }];
43379
+ };
43380
+ readonly separator: {
43381
+ readonly type: "string";
43382
+ };
43383
+ readonly separatorLine: {
43384
+ readonly type: "boolean";
43385
+ };
43386
+ readonly linePosition: {
43387
+ readonly type: "string";
43388
+ readonly enum: readonly ["top", "bottom"];
43389
+ readonly default: "top";
43390
+ };
43391
+ readonly version: {
43392
+ readonly type: "string";
43393
+ };
43394
+ readonly menuStyle: {
43395
+ readonly type: "string";
43396
+ readonly enum: readonly ["drilldown"];
43397
+ };
43398
+ readonly expanded: {
43399
+ readonly type: "string";
43400
+ readonly const: "always";
43401
+ };
43402
+ readonly selectFirstItemOnExpand: {
43403
+ readonly type: "boolean";
43404
+ };
43405
+ readonly flatten: {
43406
+ readonly type: "boolean";
43407
+ };
43408
+ readonly linkedSidebars: {
43409
+ readonly type: "array";
43410
+ readonly items: {
43411
+ readonly type: "string";
43412
+ };
43413
+ };
43414
+ readonly rbac: {
43415
+ readonly type: "object";
43416
+ readonly additionalProperties: {
43417
+ readonly type: "string";
43418
+ };
43419
+ };
43420
+ };
43421
+ readonly type: "object";
43422
+ };
43423
+ };
43424
+ readonly requiredPermission: {
43425
+ readonly type: "string";
43426
+ };
43427
+ readonly separateVersions: {
43428
+ readonly type: "boolean";
43429
+ };
43430
+ readonly title: {
43431
+ readonly type: "string";
43432
+ };
43433
+ readonly titleTranslationKey: {
43434
+ readonly type: "string";
43435
+ };
43436
+ readonly description: {
43437
+ readonly type: "string";
43438
+ };
43439
+ readonly descriptionTranslationKey: {
43440
+ readonly type: "string";
43441
+ };
43442
+ };
43443
+ };
43444
+ };
43445
+ };
43446
+ readonly entitiesCatalog: {
43447
+ readonly type: "object";
43448
+ readonly properties: {
43449
+ readonly catalogs: {
43450
+ readonly type: "object";
43451
+ readonly properties: {
43452
+ readonly all: {
43453
+ readonly type: "object";
43454
+ readonly properties: {
43455
+ readonly slug: {
43456
+ readonly type: "string";
43457
+ };
43458
+ readonly hide: {
43459
+ readonly type: "boolean";
43460
+ };
43461
+ readonly includes: {
43462
+ readonly type: "array";
43463
+ readonly items: {
43464
+ readonly type: "object";
43465
+ readonly required: readonly ["type"];
43466
+ readonly properties: {
43467
+ readonly type: {
43468
+ readonly type: "string";
43469
+ };
43470
+ };
43471
+ readonly additionalProperties: false;
43472
+ };
43473
+ };
43474
+ readonly excludes: {
43475
+ readonly type: "array";
43476
+ readonly items: {
43477
+ readonly type: "object";
43478
+ readonly required: readonly ["key"];
43479
+ readonly properties: {
43480
+ readonly key: {
43481
+ readonly type: "string";
43482
+ };
43483
+ };
43484
+ readonly additionalProperties: false;
43485
+ };
43486
+ };
43487
+ readonly filters: {
43488
+ readonly type: "array";
43489
+ readonly items: {
43490
+ readonly type: "object";
43491
+ readonly required: readonly ["property", "title"];
43492
+ readonly properties: {
43493
+ readonly property: {
43494
+ readonly type: "string";
43495
+ };
43496
+ readonly hide: {
43497
+ readonly type: "boolean";
43498
+ };
43499
+ readonly label: {
43500
+ readonly type: "string";
43501
+ };
43502
+ readonly options: {
43503
+ readonly type: "array";
43504
+ readonly items: {
43505
+ readonly type: "string";
43506
+ };
43507
+ };
43508
+ readonly type: {
43509
+ readonly type: "string";
43510
+ readonly enum: readonly ["select", "checkboxes", "date-range"];
43511
+ readonly default: "checkboxes";
43512
+ };
43513
+ readonly title: {
43514
+ readonly type: "string";
43515
+ };
43516
+ readonly titleTranslationKey: {
43517
+ readonly type: "string";
43518
+ };
43519
+ readonly parentFilter: {
43520
+ readonly type: "string";
43521
+ };
43522
+ readonly valuesMapping: {
43523
+ readonly type: "object";
43524
+ readonly additionalProperties: {
43525
+ readonly type: "string";
43526
+ };
43527
+ };
43528
+ };
43529
+ readonly additionalProperties: false;
43530
+ };
43531
+ };
43532
+ readonly titleTranslationKey: {
43533
+ readonly type: "string";
43534
+ };
43535
+ readonly descriptionTranslationKey: {
43536
+ readonly type: "string";
43537
+ };
43538
+ readonly catalogSwitcherLabelTranslationKey: {
43539
+ readonly type: "string";
43540
+ };
43541
+ };
43542
+ readonly additionalProperties: false;
43543
+ };
43544
+ readonly services: {
43545
+ readonly type: "object";
43546
+ readonly properties: {
43547
+ readonly slug: {
43548
+ readonly type: "string";
43549
+ };
43550
+ readonly hide: {
43551
+ readonly type: "boolean";
43552
+ };
43553
+ readonly includes: {
43554
+ readonly type: "array";
43555
+ readonly items: {
43556
+ readonly type: "object";
43557
+ readonly required: readonly ["type"];
43558
+ readonly properties: {
43559
+ readonly type: {
43560
+ readonly type: "string";
43561
+ };
43562
+ };
43563
+ readonly additionalProperties: false;
43564
+ };
43565
+ };
43566
+ readonly excludes: {
43567
+ readonly type: "array";
43568
+ readonly items: {
43569
+ readonly type: "object";
43570
+ readonly required: readonly ["key"];
43571
+ readonly properties: {
43572
+ readonly key: {
43573
+ readonly type: "string";
43574
+ };
43575
+ };
43576
+ readonly additionalProperties: false;
43577
+ };
43578
+ };
43579
+ readonly filters: {
43580
+ readonly type: "array";
43581
+ readonly items: {
43582
+ readonly type: "object";
43583
+ readonly required: readonly ["property", "title"];
43584
+ readonly properties: {
43585
+ readonly property: {
43586
+ readonly type: "string";
43587
+ };
43588
+ readonly hide: {
43589
+ readonly type: "boolean";
43590
+ };
43591
+ readonly label: {
43592
+ readonly type: "string";
43593
+ };
43594
+ readonly options: {
43595
+ readonly type: "array";
43596
+ readonly items: {
43597
+ readonly type: "string";
43598
+ };
43599
+ };
43600
+ readonly type: {
43601
+ readonly type: "string";
43602
+ readonly enum: readonly ["select", "checkboxes", "date-range"];
43603
+ readonly default: "checkboxes";
43604
+ };
43605
+ readonly title: {
43606
+ readonly type: "string";
43607
+ };
43608
+ readonly titleTranslationKey: {
43609
+ readonly type: "string";
43610
+ };
43611
+ readonly parentFilter: {
43612
+ readonly type: "string";
43613
+ };
43614
+ readonly valuesMapping: {
43615
+ readonly type: "object";
43616
+ readonly additionalProperties: {
43617
+ readonly type: "string";
43618
+ };
43619
+ };
43620
+ };
43621
+ readonly additionalProperties: false;
43622
+ };
43623
+ };
43624
+ readonly titleTranslationKey: {
43625
+ readonly type: "string";
43626
+ };
43627
+ readonly descriptionTranslationKey: {
43628
+ readonly type: "string";
43629
+ };
43630
+ readonly catalogSwitcherLabelTranslationKey: {
43631
+ readonly type: "string";
43632
+ };
43633
+ };
43634
+ readonly additionalProperties: false;
43635
+ };
43636
+ readonly domains: {
43637
+ readonly type: "object";
43638
+ readonly properties: {
43639
+ readonly slug: {
43640
+ readonly type: "string";
43641
+ };
43642
+ readonly hide: {
43643
+ readonly type: "boolean";
43644
+ };
43645
+ readonly includes: {
43646
+ readonly type: "array";
43647
+ readonly items: {
43648
+ readonly type: "object";
43649
+ readonly required: readonly ["type"];
43650
+ readonly properties: {
43651
+ readonly type: {
43652
+ readonly type: "string";
43653
+ };
43654
+ };
43655
+ readonly additionalProperties: false;
43656
+ };
43657
+ };
43658
+ readonly excludes: {
43659
+ readonly type: "array";
43660
+ readonly items: {
43661
+ readonly type: "object";
43662
+ readonly required: readonly ["key"];
43663
+ readonly properties: {
43664
+ readonly key: {
43665
+ readonly type: "string";
43666
+ };
43667
+ };
43668
+ readonly additionalProperties: false;
43669
+ };
43670
+ };
43671
+ readonly filters: {
43672
+ readonly type: "array";
43673
+ readonly items: {
43674
+ readonly type: "object";
43675
+ readonly required: readonly ["property", "title"];
43676
+ readonly properties: {
43677
+ readonly property: {
43678
+ readonly type: "string";
43679
+ };
43680
+ readonly hide: {
43681
+ readonly type: "boolean";
43682
+ };
43683
+ readonly label: {
43684
+ readonly type: "string";
43685
+ };
43686
+ readonly options: {
43687
+ readonly type: "array";
43688
+ readonly items: {
43689
+ readonly type: "string";
43690
+ };
43691
+ };
43692
+ readonly type: {
43693
+ readonly type: "string";
43694
+ readonly enum: readonly ["select", "checkboxes", "date-range"];
43695
+ readonly default: "checkboxes";
43696
+ };
43697
+ readonly title: {
43698
+ readonly type: "string";
43699
+ };
43700
+ readonly titleTranslationKey: {
43701
+ readonly type: "string";
43702
+ };
43703
+ readonly parentFilter: {
43704
+ readonly type: "string";
43705
+ };
43706
+ readonly valuesMapping: {
43707
+ readonly type: "object";
43708
+ readonly additionalProperties: {
43709
+ readonly type: "string";
43710
+ };
43711
+ };
43712
+ };
43713
+ readonly additionalProperties: false;
43714
+ };
43715
+ };
43716
+ readonly titleTranslationKey: {
43717
+ readonly type: "string";
43718
+ };
43719
+ readonly descriptionTranslationKey: {
43720
+ readonly type: "string";
43721
+ };
43722
+ readonly catalogSwitcherLabelTranslationKey: {
43723
+ readonly type: "string";
43724
+ };
43725
+ };
43726
+ readonly additionalProperties: false;
43727
+ };
43728
+ readonly teams: {
43729
+ readonly type: "object";
43730
+ readonly properties: {
43731
+ readonly slug: {
43732
+ readonly type: "string";
43733
+ };
43734
+ readonly hide: {
43735
+ readonly type: "boolean";
43736
+ };
43737
+ readonly includes: {
43738
+ readonly type: "array";
43739
+ readonly items: {
40483
43740
  readonly type: "object";
40484
- readonly additionalProperties: {
40485
- readonly type: "string";
43741
+ readonly required: readonly ["type"];
43742
+ readonly properties: {
43743
+ readonly type: {
43744
+ readonly type: "string";
43745
+ };
40486
43746
  };
43747
+ readonly additionalProperties: false;
40487
43748
  };
40488
- readonly missingCategoryName: {
40489
- readonly type: "string";
40490
- };
40491
- readonly missingCategoryNameTranslationKey: {
40492
- readonly type: "string";
40493
- };
40494
- readonly options: {
40495
- readonly type: "array";
40496
- readonly items: {
40497
- readonly type: "string";
43749
+ };
43750
+ readonly excludes: {
43751
+ readonly type: "array";
43752
+ readonly items: {
43753
+ readonly type: "object";
43754
+ readonly required: readonly ["key"];
43755
+ readonly properties: {
43756
+ readonly key: {
43757
+ readonly type: "string";
43758
+ };
40498
43759
  };
43760
+ readonly additionalProperties: false;
40499
43761
  };
40500
43762
  };
40501
- };
40502
- };
40503
- readonly groupByFirstFilter: {
40504
- readonly type: "boolean";
40505
- };
40506
- readonly filterValuesCasing: {
40507
- readonly type: "string";
40508
- readonly enum: readonly ["sentence", "original", "lowercase", "uppercase"];
40509
- };
40510
- readonly items: {
40511
- readonly type: "array";
40512
- readonly items: {
40513
- readonly properties: {
43763
+ readonly filters: {
43764
+ readonly type: "array";
40514
43765
  readonly items: {
40515
- readonly type: "array";
40516
- readonly items: {
40517
- readonly type: "object";
40518
- readonly properties: {
40519
- readonly page: {
40520
- readonly type: "string";
40521
- };
40522
- readonly directory: {
40523
- readonly type: "string";
40524
- };
40525
- readonly disconnect: {
40526
- readonly type: "boolean";
40527
- readonly default: false;
40528
- };
40529
- readonly group: {
40530
- readonly type: "string";
40531
- };
40532
- readonly label: {
40533
- readonly type: "string";
40534
- };
40535
- readonly href: {
40536
- readonly type: "string";
40537
- };
40538
- readonly external: {
40539
- readonly type: "boolean";
40540
- };
40541
- readonly labelTranslationKey: {
40542
- readonly type: "string";
40543
- };
40544
- readonly groupTranslationKey: {
40545
- readonly type: "string";
40546
- };
40547
- readonly icon: {
40548
- readonly oneOf: readonly [{
40549
- readonly type: "string";
40550
- }, {
40551
- readonly type: "object";
40552
- readonly properties: {
40553
- readonly srcSet: {
40554
- readonly type: "string";
40555
- };
40556
- };
40557
- readonly required: readonly ["srcSet"];
40558
- }];
40559
- };
40560
- readonly separator: {
40561
- readonly type: "string";
40562
- };
40563
- readonly separatorLine: {
40564
- readonly type: "boolean";
40565
- };
40566
- readonly linePosition: {
40567
- readonly type: "string";
40568
- readonly enum: readonly ["top", "bottom"];
40569
- readonly default: "top";
40570
- };
40571
- readonly version: {
40572
- readonly type: "string";
40573
- };
40574
- readonly menuStyle: {
43766
+ readonly type: "object";
43767
+ readonly required: readonly ["property", "title"];
43768
+ readonly properties: {
43769
+ readonly property: {
43770
+ readonly type: "string";
43771
+ };
43772
+ readonly hide: {
43773
+ readonly type: "boolean";
43774
+ };
43775
+ readonly label: {
43776
+ readonly type: "string";
43777
+ };
43778
+ readonly options: {
43779
+ readonly type: "array";
43780
+ readonly items: {
40575
43781
  readonly type: "string";
40576
- readonly enum: readonly ["drilldown"];
40577
43782
  };
40578
- readonly expanded: {
43783
+ };
43784
+ readonly type: {
43785
+ readonly type: "string";
43786
+ readonly enum: readonly ["select", "checkboxes", "date-range"];
43787
+ readonly default: "checkboxes";
43788
+ };
43789
+ readonly title: {
43790
+ readonly type: "string";
43791
+ };
43792
+ readonly titleTranslationKey: {
43793
+ readonly type: "string";
43794
+ };
43795
+ readonly parentFilter: {
43796
+ readonly type: "string";
43797
+ };
43798
+ readonly valuesMapping: {
43799
+ readonly type: "object";
43800
+ readonly additionalProperties: {
40579
43801
  readonly type: "string";
40580
- readonly const: "always";
40581
- };
40582
- readonly selectFirstItemOnExpand: {
40583
- readonly type: "boolean";
40584
- };
40585
- readonly flatten: {
40586
- readonly type: "boolean";
40587
- };
40588
- readonly linkedSidebars: {
40589
- readonly type: "array";
40590
- readonly items: {
40591
- readonly type: "string";
40592
- };
40593
- };
40594
- readonly items: {
40595
- readonly type: "array";
40596
- readonly items: {
40597
- readonly type: "object";
40598
- readonly additionalProperties: true;
40599
- };
40600
- };
40601
- readonly rbac: {
40602
- readonly type: "object";
40603
- readonly additionalProperties: {
40604
- readonly type: "string";
40605
- };
40606
43802
  };
40607
43803
  };
40608
43804
  };
43805
+ readonly additionalProperties: false;
40609
43806
  };
40610
- readonly page: {
40611
- readonly type: "string";
40612
- };
40613
- readonly directory: {
40614
- readonly type: "string";
40615
- };
40616
- readonly disconnect: {
40617
- readonly type: "boolean";
40618
- readonly default: false;
40619
- };
40620
- readonly group: {
40621
- readonly type: "string";
40622
- };
40623
- readonly label: {
40624
- readonly type: "string";
40625
- };
40626
- readonly href: {
40627
- readonly type: "string";
40628
- };
40629
- readonly external: {
40630
- readonly type: "boolean";
40631
- };
40632
- readonly labelTranslationKey: {
40633
- readonly type: "string";
43807
+ };
43808
+ readonly titleTranslationKey: {
43809
+ readonly type: "string";
43810
+ };
43811
+ readonly descriptionTranslationKey: {
43812
+ readonly type: "string";
43813
+ };
43814
+ readonly catalogSwitcherLabelTranslationKey: {
43815
+ readonly type: "string";
43816
+ };
43817
+ };
43818
+ readonly additionalProperties: false;
43819
+ };
43820
+ readonly users: {
43821
+ readonly type: "object";
43822
+ readonly properties: {
43823
+ readonly slug: {
43824
+ readonly type: "string";
43825
+ };
43826
+ readonly hide: {
43827
+ readonly type: "boolean";
43828
+ };
43829
+ readonly includes: {
43830
+ readonly type: "array";
43831
+ readonly items: {
43832
+ readonly type: "object";
43833
+ readonly required: readonly ["type"];
43834
+ readonly properties: {
43835
+ readonly type: {
43836
+ readonly type: "string";
43837
+ };
43838
+ };
43839
+ readonly additionalProperties: false;
40634
43840
  };
40635
- readonly groupTranslationKey: {
40636
- readonly type: "string";
43841
+ };
43842
+ readonly excludes: {
43843
+ readonly type: "array";
43844
+ readonly items: {
43845
+ readonly type: "object";
43846
+ readonly required: readonly ["key"];
43847
+ readonly properties: {
43848
+ readonly key: {
43849
+ readonly type: "string";
43850
+ };
43851
+ };
43852
+ readonly additionalProperties: false;
40637
43853
  };
40638
- readonly icon: {
40639
- readonly oneOf: readonly [{
40640
- readonly type: "string";
40641
- }, {
40642
- readonly type: "object";
40643
- readonly properties: {
40644
- readonly srcSet: {
43854
+ };
43855
+ readonly filters: {
43856
+ readonly type: "array";
43857
+ readonly items: {
43858
+ readonly type: "object";
43859
+ readonly required: readonly ["property", "title"];
43860
+ readonly properties: {
43861
+ readonly property: {
43862
+ readonly type: "string";
43863
+ };
43864
+ readonly hide: {
43865
+ readonly type: "boolean";
43866
+ };
43867
+ readonly label: {
43868
+ readonly type: "string";
43869
+ };
43870
+ readonly options: {
43871
+ readonly type: "array";
43872
+ readonly items: {
40645
43873
  readonly type: "string";
40646
43874
  };
40647
43875
  };
40648
- readonly required: readonly ["srcSet"];
40649
- }];
40650
- };
40651
- readonly separator: {
40652
- readonly type: "string";
40653
- };
40654
- readonly separatorLine: {
40655
- readonly type: "boolean";
40656
- };
40657
- readonly linePosition: {
40658
- readonly type: "string";
40659
- readonly enum: readonly ["top", "bottom"];
40660
- readonly default: "top";
40661
- };
40662
- readonly version: {
40663
- readonly type: "string";
40664
- };
40665
- readonly menuStyle: {
40666
- readonly type: "string";
40667
- readonly enum: readonly ["drilldown"];
40668
- };
40669
- readonly expanded: {
40670
- readonly type: "string";
40671
- readonly const: "always";
40672
- };
40673
- readonly selectFirstItemOnExpand: {
40674
- readonly type: "boolean";
43876
+ readonly type: {
43877
+ readonly type: "string";
43878
+ readonly enum: readonly ["select", "checkboxes", "date-range"];
43879
+ readonly default: "checkboxes";
43880
+ };
43881
+ readonly title: {
43882
+ readonly type: "string";
43883
+ };
43884
+ readonly titleTranslationKey: {
43885
+ readonly type: "string";
43886
+ };
43887
+ readonly parentFilter: {
43888
+ readonly type: "string";
43889
+ };
43890
+ readonly valuesMapping: {
43891
+ readonly type: "object";
43892
+ readonly additionalProperties: {
43893
+ readonly type: "string";
43894
+ };
43895
+ };
43896
+ };
43897
+ readonly additionalProperties: false;
40675
43898
  };
40676
- readonly flatten: {
40677
- readonly type: "boolean";
43899
+ };
43900
+ readonly titleTranslationKey: {
43901
+ readonly type: "string";
43902
+ };
43903
+ readonly descriptionTranslationKey: {
43904
+ readonly type: "string";
43905
+ };
43906
+ readonly catalogSwitcherLabelTranslationKey: {
43907
+ readonly type: "string";
43908
+ };
43909
+ };
43910
+ readonly additionalProperties: false;
43911
+ };
43912
+ readonly apiDescriptions: {
43913
+ readonly type: "object";
43914
+ readonly properties: {
43915
+ readonly slug: {
43916
+ readonly type: "string";
43917
+ };
43918
+ readonly hide: {
43919
+ readonly type: "boolean";
43920
+ };
43921
+ readonly includes: {
43922
+ readonly type: "array";
43923
+ readonly items: {
43924
+ readonly type: "object";
43925
+ readonly required: readonly ["type"];
43926
+ readonly properties: {
43927
+ readonly type: {
43928
+ readonly type: "string";
43929
+ };
43930
+ };
43931
+ readonly additionalProperties: false;
40678
43932
  };
40679
- readonly linkedSidebars: {
40680
- readonly type: "array";
40681
- readonly items: {
40682
- readonly type: "string";
43933
+ };
43934
+ readonly excludes: {
43935
+ readonly type: "array";
43936
+ readonly items: {
43937
+ readonly type: "object";
43938
+ readonly required: readonly ["key"];
43939
+ readonly properties: {
43940
+ readonly key: {
43941
+ readonly type: "string";
43942
+ };
40683
43943
  };
43944
+ readonly additionalProperties: false;
40684
43945
  };
40685
- readonly rbac: {
43946
+ };
43947
+ readonly filters: {
43948
+ readonly type: "array";
43949
+ readonly items: {
40686
43950
  readonly type: "object";
40687
- readonly additionalProperties: {
40688
- readonly type: "string";
43951
+ readonly required: readonly ["property", "title"];
43952
+ readonly properties: {
43953
+ readonly property: {
43954
+ readonly type: "string";
43955
+ };
43956
+ readonly hide: {
43957
+ readonly type: "boolean";
43958
+ };
43959
+ readonly label: {
43960
+ readonly type: "string";
43961
+ };
43962
+ readonly options: {
43963
+ readonly type: "array";
43964
+ readonly items: {
43965
+ readonly type: "string";
43966
+ };
43967
+ };
43968
+ readonly type: {
43969
+ readonly type: "string";
43970
+ readonly enum: readonly ["select", "checkboxes", "date-range"];
43971
+ readonly default: "checkboxes";
43972
+ };
43973
+ readonly title: {
43974
+ readonly type: "string";
43975
+ };
43976
+ readonly titleTranslationKey: {
43977
+ readonly type: "string";
43978
+ };
43979
+ readonly parentFilter: {
43980
+ readonly type: "string";
43981
+ };
43982
+ readonly valuesMapping: {
43983
+ readonly type: "object";
43984
+ readonly additionalProperties: {
43985
+ readonly type: "string";
43986
+ };
43987
+ };
40689
43988
  };
43989
+ readonly additionalProperties: false;
40690
43990
  };
40691
43991
  };
40692
- readonly type: "object";
43992
+ readonly titleTranslationKey: {
43993
+ readonly type: "string";
43994
+ };
43995
+ readonly descriptionTranslationKey: {
43996
+ readonly type: "string";
43997
+ };
43998
+ readonly catalogSwitcherLabelTranslationKey: {
43999
+ readonly type: "string";
44000
+ };
40693
44001
  };
40694
- };
40695
- readonly requiredPermission: {
40696
- readonly type: "string";
40697
- };
40698
- readonly separateVersions: {
40699
- readonly type: "boolean";
40700
- };
40701
- readonly title: {
40702
- readonly type: "string";
40703
- };
40704
- readonly titleTranslationKey: {
40705
- readonly type: "string";
40706
- };
40707
- readonly description: {
40708
- readonly type: "string";
40709
- };
40710
- readonly descriptionTranslationKey: {
40711
- readonly type: "string";
44002
+ readonly additionalProperties: false;
40712
44003
  };
40713
44004
  };
44005
+ readonly additionalProperties: false;
40714
44006
  };
40715
44007
  };
44008
+ readonly additionalProperties: false;
40716
44009
  };
40717
44010
  readonly catalogClassic: {
40718
44011
  readonly type: "object";
@@ -41013,6 +44306,70 @@ export declare const rootRedoclyConfigSchema: {
41013
44306
  readonly type: "object";
41014
44307
  readonly required: readonly ["name"];
41015
44308
  readonly properties: {
44309
+ readonly decorators: {
44310
+ readonly type: "object";
44311
+ readonly additionalProperties: true;
44312
+ };
44313
+ readonly oas2Decorators: {
44314
+ readonly type: "object";
44315
+ readonly additionalProperties: true;
44316
+ };
44317
+ readonly oas3_0Decorators: {
44318
+ readonly type: "object";
44319
+ readonly additionalProperties: true;
44320
+ };
44321
+ readonly oas3_1Decorators: {
44322
+ readonly type: "object";
44323
+ readonly additionalProperties: true;
44324
+ };
44325
+ readonly async2Decorators: {
44326
+ readonly type: "object";
44327
+ readonly additionalProperties: true;
44328
+ };
44329
+ readonly async3Decorators: {
44330
+ readonly type: "object";
44331
+ readonly additionalProperties: true;
44332
+ };
44333
+ readonly arazzo1Decorators: {
44334
+ readonly type: "object";
44335
+ readonly additionalProperties: true;
44336
+ };
44337
+ readonly overlay1Decorators: {
44338
+ readonly type: "object";
44339
+ readonly additionalProperties: true;
44340
+ };
44341
+ readonly preprocessors: {
44342
+ readonly type: "object";
44343
+ readonly additionalProperties: true;
44344
+ };
44345
+ readonly oas2Preprocessors: {
44346
+ readonly type: "object";
44347
+ readonly additionalProperties: true;
44348
+ };
44349
+ readonly oas3_0Preprocessors: {
44350
+ readonly type: "object";
44351
+ readonly additionalProperties: true;
44352
+ };
44353
+ readonly oas3_1Preprocessors: {
44354
+ readonly type: "object";
44355
+ readonly additionalProperties: true;
44356
+ };
44357
+ readonly async2Preprocessors: {
44358
+ readonly type: "object";
44359
+ readonly additionalProperties: true;
44360
+ };
44361
+ readonly async3Preprocessors: {
44362
+ readonly type: "object";
44363
+ readonly additionalProperties: true;
44364
+ };
44365
+ readonly arazzo1Preprocessors: {
44366
+ readonly type: "object";
44367
+ readonly additionalProperties: true;
44368
+ };
44369
+ readonly overlay1Preprocessors: {
44370
+ readonly type: "object";
44371
+ readonly additionalProperties: true;
44372
+ };
41016
44373
  readonly rules: {
41017
44374
  readonly type: "object";
41018
44375
  readonly additionalProperties: {
@@ -41122,15 +44479,16 @@ export declare const rootRedoclyConfigSchema: {
41122
44479
  readonly type: "object";
41123
44480
  readonly additionalProperties: true;
41124
44481
  };
44482
+ readonly ignore: {
44483
+ readonly type: "boolean";
44484
+ };
41125
44485
  readonly where: {
41126
44486
  readonly type: "object";
41127
44487
  readonly required: readonly ["metadata"];
41128
44488
  readonly properties: {
41129
44489
  readonly metadata: {
41130
44490
  readonly type: "object";
41131
- readonly additionalProperties: {
41132
- readonly type: "string";
41133
- };
44491
+ readonly additionalProperties: {};
41134
44492
  };
41135
44493
  };
41136
44494
  readonly additionalProperties: false;
@@ -41171,7 +44529,7 @@ export declare const rootRedoclyConfigSchema: {
41171
44529
  readonly type: "object";
41172
44530
  readonly additionalProperties: true;
41173
44531
  };
41174
- readonly arazzoPreprocessors: {
44532
+ readonly arazzo1Preprocessors: {
41175
44533
  readonly type: "object";
41176
44534
  readonly additionalProperties: true;
41177
44535
  };
@@ -41655,7 +45013,7 @@ export declare const rootRedoclyConfigSchema: {
41655
45013
  readonly type: "object";
41656
45014
  readonly additionalProperties: true;
41657
45015
  };
41658
- readonly arazzoPreprocessors: {
45016
+ readonly arazzo1Preprocessors: {
41659
45017
  readonly type: "object";
41660
45018
  readonly additionalProperties: true;
41661
45019
  };
@@ -43741,6 +47099,15 @@ export declare const rootRedoclyConfigSchema: {
43741
47099
  readonly baseUrlPath: {
43742
47100
  readonly type: "string";
43743
47101
  };
47102
+ readonly metadata: {
47103
+ readonly type: "object";
47104
+ readonly properties: {
47105
+ readonly apiId: {
47106
+ readonly type: "string";
47107
+ };
47108
+ };
47109
+ readonly additionalProperties: true;
47110
+ };
43744
47111
  readonly feedback: {
43745
47112
  readonly type: "object";
43746
47113
  readonly properties: {
@@ -45973,6 +49340,15 @@ export declare const rootRedoclyConfigSchema: {
45973
49340
  readonly baseUrlPath: {
45974
49341
  readonly type: "string";
45975
49342
  };
49343
+ readonly metadata: {
49344
+ readonly type: "object";
49345
+ readonly properties: {
49346
+ readonly apiId: {
49347
+ readonly type: "string";
49348
+ };
49349
+ };
49350
+ readonly additionalProperties: true;
49351
+ };
45976
49352
  readonly feedback: {
45977
49353
  readonly type: "object";
45978
49354
  readonly properties: {