@redocly/config 0.26.2 → 0.26.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/common.d.ts +1 -1
- package/lib/common.js +1 -1
- package/lib/default-theme-config-schema.d.ts +573 -4326
- package/lib/default-theme-config-schema.js +3 -2
- package/lib/entities-catalog-config-schema.d.ts +718 -0
- package/lib/entities-catalog-config-schema.js +84 -0
- package/lib/ex-theme-config-schemas.d.ts +64 -0
- package/lib/ex-theme-config-schemas.js +1 -1
- package/lib/product-override-schema.d.ts +1 -1
- package/lib/root-config-schema.d.ts +3449 -209
- package/lib/root-config-schema.js +2 -1
- package/lib/types/catalog-entity-types.d.ts +29 -0
- package/lib/types/catalog-entity-types.js +3 -0
- package/lib/types/config-types.d.ts +2 -0
- package/lib/types/index.d.ts +1 -0
- package/lib/types/index.js +1 -0
- package/lib/types/portal-shared-types.d.ts +12 -1
- package/lib-esm/common.d.ts +1 -1
- package/lib-esm/common.js +1 -1
- package/lib-esm/default-theme-config-schema.d.ts +573 -4326
- package/lib-esm/default-theme-config-schema.js +2 -1
- package/lib-esm/entities-catalog-config-schema.d.ts +718 -0
- package/lib-esm/entities-catalog-config-schema.js +81 -0
- package/lib-esm/ex-theme-config-schemas.d.ts +64 -0
- package/lib-esm/ex-theme-config-schemas.js +2 -2
- package/lib-esm/product-override-schema.d.ts +1 -1
- package/lib-esm/root-config-schema.d.ts +3449 -209
- package/lib-esm/root-config-schema.js +2 -1
- package/lib-esm/types/catalog-entity-types.d.ts +29 -0
- package/lib-esm/types/catalog-entity-types.js +2 -0
- package/lib-esm/types/config-types.d.ts +2 -0
- package/lib-esm/types/index.d.ts +1 -0
- package/lib-esm/types/index.js +1 -0
- package/lib-esm/types/portal-shared-types.d.ts +12 -1
- 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
|
|
554
|
+
readonly arazzo1Preprocessors: {
|
|
555
555
|
readonly type: "object";
|
|
556
556
|
readonly additionalProperties: true;
|
|
557
557
|
};
|
|
@@ -10200,6 +10200,570 @@ export declare const redoclyConfigSchema: {
|
|
|
10200
10200
|
};
|
|
10201
10201
|
};
|
|
10202
10202
|
};
|
|
10203
|
+
readonly entitiesCatalog: {
|
|
10204
|
+
readonly type: "object";
|
|
10205
|
+
readonly properties: {
|
|
10206
|
+
readonly catalogs: {
|
|
10207
|
+
readonly type: "object";
|
|
10208
|
+
readonly properties: {
|
|
10209
|
+
readonly all: {
|
|
10210
|
+
readonly type: "object";
|
|
10211
|
+
readonly properties: {
|
|
10212
|
+
readonly slug: {
|
|
10213
|
+
readonly type: "string";
|
|
10214
|
+
};
|
|
10215
|
+
readonly hide: {
|
|
10216
|
+
readonly type: "boolean";
|
|
10217
|
+
};
|
|
10218
|
+
readonly includes: {
|
|
10219
|
+
readonly type: "array";
|
|
10220
|
+
readonly items: {
|
|
10221
|
+
readonly type: "object";
|
|
10222
|
+
readonly required: readonly ["type"];
|
|
10223
|
+
readonly properties: {
|
|
10224
|
+
readonly type: {
|
|
10225
|
+
readonly type: "string";
|
|
10226
|
+
};
|
|
10227
|
+
};
|
|
10228
|
+
readonly additionalProperties: false;
|
|
10229
|
+
};
|
|
10230
|
+
};
|
|
10231
|
+
readonly excludes: {
|
|
10232
|
+
readonly type: "array";
|
|
10233
|
+
readonly items: {
|
|
10234
|
+
readonly type: "object";
|
|
10235
|
+
readonly required: readonly ["key"];
|
|
10236
|
+
readonly properties: {
|
|
10237
|
+
readonly key: {
|
|
10238
|
+
readonly type: "string";
|
|
10239
|
+
};
|
|
10240
|
+
};
|
|
10241
|
+
readonly additionalProperties: false;
|
|
10242
|
+
};
|
|
10243
|
+
};
|
|
10244
|
+
readonly filters: {
|
|
10245
|
+
readonly type: "array";
|
|
10246
|
+
readonly items: {
|
|
10247
|
+
readonly type: "object";
|
|
10248
|
+
readonly required: readonly ["property", "title"];
|
|
10249
|
+
readonly properties: {
|
|
10250
|
+
readonly property: {
|
|
10251
|
+
readonly type: "string";
|
|
10252
|
+
};
|
|
10253
|
+
readonly hide: {
|
|
10254
|
+
readonly type: "boolean";
|
|
10255
|
+
};
|
|
10256
|
+
readonly label: {
|
|
10257
|
+
readonly type: "string";
|
|
10258
|
+
};
|
|
10259
|
+
readonly options: {
|
|
10260
|
+
readonly type: "array";
|
|
10261
|
+
readonly items: {
|
|
10262
|
+
readonly type: "string";
|
|
10263
|
+
};
|
|
10264
|
+
};
|
|
10265
|
+
readonly type: {
|
|
10266
|
+
readonly type: "string";
|
|
10267
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
10268
|
+
readonly default: "checkboxes";
|
|
10269
|
+
};
|
|
10270
|
+
readonly title: {
|
|
10271
|
+
readonly type: "string";
|
|
10272
|
+
};
|
|
10273
|
+
readonly titleTranslationKey: {
|
|
10274
|
+
readonly type: "string";
|
|
10275
|
+
};
|
|
10276
|
+
readonly parentFilter: {
|
|
10277
|
+
readonly type: "string";
|
|
10278
|
+
};
|
|
10279
|
+
readonly valuesMapping: {
|
|
10280
|
+
readonly type: "object";
|
|
10281
|
+
readonly additionalProperties: {
|
|
10282
|
+
readonly type: "string";
|
|
10283
|
+
};
|
|
10284
|
+
};
|
|
10285
|
+
};
|
|
10286
|
+
readonly additionalProperties: false;
|
|
10287
|
+
};
|
|
10288
|
+
};
|
|
10289
|
+
readonly titleTranslationKey: {
|
|
10290
|
+
readonly type: "string";
|
|
10291
|
+
};
|
|
10292
|
+
readonly descriptionTranslationKey: {
|
|
10293
|
+
readonly type: "string";
|
|
10294
|
+
};
|
|
10295
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
10296
|
+
readonly type: "string";
|
|
10297
|
+
};
|
|
10298
|
+
};
|
|
10299
|
+
readonly additionalProperties: false;
|
|
10300
|
+
};
|
|
10301
|
+
readonly services: {
|
|
10302
|
+
readonly type: "object";
|
|
10303
|
+
readonly properties: {
|
|
10304
|
+
readonly slug: {
|
|
10305
|
+
readonly type: "string";
|
|
10306
|
+
};
|
|
10307
|
+
readonly hide: {
|
|
10308
|
+
readonly type: "boolean";
|
|
10309
|
+
};
|
|
10310
|
+
readonly includes: {
|
|
10311
|
+
readonly type: "array";
|
|
10312
|
+
readonly items: {
|
|
10313
|
+
readonly type: "object";
|
|
10314
|
+
readonly required: readonly ["type"];
|
|
10315
|
+
readonly properties: {
|
|
10316
|
+
readonly type: {
|
|
10317
|
+
readonly type: "string";
|
|
10318
|
+
};
|
|
10319
|
+
};
|
|
10320
|
+
readonly additionalProperties: false;
|
|
10321
|
+
};
|
|
10322
|
+
};
|
|
10323
|
+
readonly excludes: {
|
|
10324
|
+
readonly type: "array";
|
|
10325
|
+
readonly items: {
|
|
10326
|
+
readonly type: "object";
|
|
10327
|
+
readonly required: readonly ["key"];
|
|
10328
|
+
readonly properties: {
|
|
10329
|
+
readonly key: {
|
|
10330
|
+
readonly type: "string";
|
|
10331
|
+
};
|
|
10332
|
+
};
|
|
10333
|
+
readonly additionalProperties: false;
|
|
10334
|
+
};
|
|
10335
|
+
};
|
|
10336
|
+
readonly filters: {
|
|
10337
|
+
readonly type: "array";
|
|
10338
|
+
readonly items: {
|
|
10339
|
+
readonly type: "object";
|
|
10340
|
+
readonly required: readonly ["property", "title"];
|
|
10341
|
+
readonly properties: {
|
|
10342
|
+
readonly property: {
|
|
10343
|
+
readonly type: "string";
|
|
10344
|
+
};
|
|
10345
|
+
readonly hide: {
|
|
10346
|
+
readonly type: "boolean";
|
|
10347
|
+
};
|
|
10348
|
+
readonly label: {
|
|
10349
|
+
readonly type: "string";
|
|
10350
|
+
};
|
|
10351
|
+
readonly options: {
|
|
10352
|
+
readonly type: "array";
|
|
10353
|
+
readonly items: {
|
|
10354
|
+
readonly type: "string";
|
|
10355
|
+
};
|
|
10356
|
+
};
|
|
10357
|
+
readonly type: {
|
|
10358
|
+
readonly type: "string";
|
|
10359
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
10360
|
+
readonly default: "checkboxes";
|
|
10361
|
+
};
|
|
10362
|
+
readonly title: {
|
|
10363
|
+
readonly type: "string";
|
|
10364
|
+
};
|
|
10365
|
+
readonly titleTranslationKey: {
|
|
10366
|
+
readonly type: "string";
|
|
10367
|
+
};
|
|
10368
|
+
readonly parentFilter: {
|
|
10369
|
+
readonly type: "string";
|
|
10370
|
+
};
|
|
10371
|
+
readonly valuesMapping: {
|
|
10372
|
+
readonly type: "object";
|
|
10373
|
+
readonly additionalProperties: {
|
|
10374
|
+
readonly type: "string";
|
|
10375
|
+
};
|
|
10376
|
+
};
|
|
10377
|
+
};
|
|
10378
|
+
readonly additionalProperties: false;
|
|
10379
|
+
};
|
|
10380
|
+
};
|
|
10381
|
+
readonly titleTranslationKey: {
|
|
10382
|
+
readonly type: "string";
|
|
10383
|
+
};
|
|
10384
|
+
readonly descriptionTranslationKey: {
|
|
10385
|
+
readonly type: "string";
|
|
10386
|
+
};
|
|
10387
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
10388
|
+
readonly type: "string";
|
|
10389
|
+
};
|
|
10390
|
+
};
|
|
10391
|
+
readonly additionalProperties: false;
|
|
10392
|
+
};
|
|
10393
|
+
readonly domains: {
|
|
10394
|
+
readonly type: "object";
|
|
10395
|
+
readonly properties: {
|
|
10396
|
+
readonly slug: {
|
|
10397
|
+
readonly type: "string";
|
|
10398
|
+
};
|
|
10399
|
+
readonly hide: {
|
|
10400
|
+
readonly type: "boolean";
|
|
10401
|
+
};
|
|
10402
|
+
readonly includes: {
|
|
10403
|
+
readonly type: "array";
|
|
10404
|
+
readonly items: {
|
|
10405
|
+
readonly type: "object";
|
|
10406
|
+
readonly required: readonly ["type"];
|
|
10407
|
+
readonly properties: {
|
|
10408
|
+
readonly type: {
|
|
10409
|
+
readonly type: "string";
|
|
10410
|
+
};
|
|
10411
|
+
};
|
|
10412
|
+
readonly additionalProperties: false;
|
|
10413
|
+
};
|
|
10414
|
+
};
|
|
10415
|
+
readonly excludes: {
|
|
10416
|
+
readonly type: "array";
|
|
10417
|
+
readonly items: {
|
|
10418
|
+
readonly type: "object";
|
|
10419
|
+
readonly required: readonly ["key"];
|
|
10420
|
+
readonly properties: {
|
|
10421
|
+
readonly key: {
|
|
10422
|
+
readonly type: "string";
|
|
10423
|
+
};
|
|
10424
|
+
};
|
|
10425
|
+
readonly additionalProperties: false;
|
|
10426
|
+
};
|
|
10427
|
+
};
|
|
10428
|
+
readonly filters: {
|
|
10429
|
+
readonly type: "array";
|
|
10430
|
+
readonly items: {
|
|
10431
|
+
readonly type: "object";
|
|
10432
|
+
readonly required: readonly ["property", "title"];
|
|
10433
|
+
readonly properties: {
|
|
10434
|
+
readonly property: {
|
|
10435
|
+
readonly type: "string";
|
|
10436
|
+
};
|
|
10437
|
+
readonly hide: {
|
|
10438
|
+
readonly type: "boolean";
|
|
10439
|
+
};
|
|
10440
|
+
readonly label: {
|
|
10441
|
+
readonly type: "string";
|
|
10442
|
+
};
|
|
10443
|
+
readonly options: {
|
|
10444
|
+
readonly type: "array";
|
|
10445
|
+
readonly items: {
|
|
10446
|
+
readonly type: "string";
|
|
10447
|
+
};
|
|
10448
|
+
};
|
|
10449
|
+
readonly type: {
|
|
10450
|
+
readonly type: "string";
|
|
10451
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
10452
|
+
readonly default: "checkboxes";
|
|
10453
|
+
};
|
|
10454
|
+
readonly title: {
|
|
10455
|
+
readonly type: "string";
|
|
10456
|
+
};
|
|
10457
|
+
readonly titleTranslationKey: {
|
|
10458
|
+
readonly type: "string";
|
|
10459
|
+
};
|
|
10460
|
+
readonly parentFilter: {
|
|
10461
|
+
readonly type: "string";
|
|
10462
|
+
};
|
|
10463
|
+
readonly valuesMapping: {
|
|
10464
|
+
readonly type: "object";
|
|
10465
|
+
readonly additionalProperties: {
|
|
10466
|
+
readonly type: "string";
|
|
10467
|
+
};
|
|
10468
|
+
};
|
|
10469
|
+
};
|
|
10470
|
+
readonly additionalProperties: false;
|
|
10471
|
+
};
|
|
10472
|
+
};
|
|
10473
|
+
readonly titleTranslationKey: {
|
|
10474
|
+
readonly type: "string";
|
|
10475
|
+
};
|
|
10476
|
+
readonly descriptionTranslationKey: {
|
|
10477
|
+
readonly type: "string";
|
|
10478
|
+
};
|
|
10479
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
10480
|
+
readonly type: "string";
|
|
10481
|
+
};
|
|
10482
|
+
};
|
|
10483
|
+
readonly additionalProperties: false;
|
|
10484
|
+
};
|
|
10485
|
+
readonly teams: {
|
|
10486
|
+
readonly type: "object";
|
|
10487
|
+
readonly properties: {
|
|
10488
|
+
readonly slug: {
|
|
10489
|
+
readonly type: "string";
|
|
10490
|
+
};
|
|
10491
|
+
readonly hide: {
|
|
10492
|
+
readonly type: "boolean";
|
|
10493
|
+
};
|
|
10494
|
+
readonly includes: {
|
|
10495
|
+
readonly type: "array";
|
|
10496
|
+
readonly items: {
|
|
10497
|
+
readonly type: "object";
|
|
10498
|
+
readonly required: readonly ["type"];
|
|
10499
|
+
readonly properties: {
|
|
10500
|
+
readonly type: {
|
|
10501
|
+
readonly type: "string";
|
|
10502
|
+
};
|
|
10503
|
+
};
|
|
10504
|
+
readonly additionalProperties: false;
|
|
10505
|
+
};
|
|
10506
|
+
};
|
|
10507
|
+
readonly excludes: {
|
|
10508
|
+
readonly type: "array";
|
|
10509
|
+
readonly items: {
|
|
10510
|
+
readonly type: "object";
|
|
10511
|
+
readonly required: readonly ["key"];
|
|
10512
|
+
readonly properties: {
|
|
10513
|
+
readonly key: {
|
|
10514
|
+
readonly type: "string";
|
|
10515
|
+
};
|
|
10516
|
+
};
|
|
10517
|
+
readonly additionalProperties: false;
|
|
10518
|
+
};
|
|
10519
|
+
};
|
|
10520
|
+
readonly filters: {
|
|
10521
|
+
readonly type: "array";
|
|
10522
|
+
readonly items: {
|
|
10523
|
+
readonly type: "object";
|
|
10524
|
+
readonly required: readonly ["property", "title"];
|
|
10525
|
+
readonly properties: {
|
|
10526
|
+
readonly property: {
|
|
10527
|
+
readonly type: "string";
|
|
10528
|
+
};
|
|
10529
|
+
readonly hide: {
|
|
10530
|
+
readonly type: "boolean";
|
|
10531
|
+
};
|
|
10532
|
+
readonly label: {
|
|
10533
|
+
readonly type: "string";
|
|
10534
|
+
};
|
|
10535
|
+
readonly options: {
|
|
10536
|
+
readonly type: "array";
|
|
10537
|
+
readonly items: {
|
|
10538
|
+
readonly type: "string";
|
|
10539
|
+
};
|
|
10540
|
+
};
|
|
10541
|
+
readonly type: {
|
|
10542
|
+
readonly type: "string";
|
|
10543
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
10544
|
+
readonly default: "checkboxes";
|
|
10545
|
+
};
|
|
10546
|
+
readonly title: {
|
|
10547
|
+
readonly type: "string";
|
|
10548
|
+
};
|
|
10549
|
+
readonly titleTranslationKey: {
|
|
10550
|
+
readonly type: "string";
|
|
10551
|
+
};
|
|
10552
|
+
readonly parentFilter: {
|
|
10553
|
+
readonly type: "string";
|
|
10554
|
+
};
|
|
10555
|
+
readonly valuesMapping: {
|
|
10556
|
+
readonly type: "object";
|
|
10557
|
+
readonly additionalProperties: {
|
|
10558
|
+
readonly type: "string";
|
|
10559
|
+
};
|
|
10560
|
+
};
|
|
10561
|
+
};
|
|
10562
|
+
readonly additionalProperties: false;
|
|
10563
|
+
};
|
|
10564
|
+
};
|
|
10565
|
+
readonly titleTranslationKey: {
|
|
10566
|
+
readonly type: "string";
|
|
10567
|
+
};
|
|
10568
|
+
readonly descriptionTranslationKey: {
|
|
10569
|
+
readonly type: "string";
|
|
10570
|
+
};
|
|
10571
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
10572
|
+
readonly type: "string";
|
|
10573
|
+
};
|
|
10574
|
+
};
|
|
10575
|
+
readonly additionalProperties: false;
|
|
10576
|
+
};
|
|
10577
|
+
readonly users: {
|
|
10578
|
+
readonly type: "object";
|
|
10579
|
+
readonly properties: {
|
|
10580
|
+
readonly slug: {
|
|
10581
|
+
readonly type: "string";
|
|
10582
|
+
};
|
|
10583
|
+
readonly hide: {
|
|
10584
|
+
readonly type: "boolean";
|
|
10585
|
+
};
|
|
10586
|
+
readonly includes: {
|
|
10587
|
+
readonly type: "array";
|
|
10588
|
+
readonly items: {
|
|
10589
|
+
readonly type: "object";
|
|
10590
|
+
readonly required: readonly ["type"];
|
|
10591
|
+
readonly properties: {
|
|
10592
|
+
readonly type: {
|
|
10593
|
+
readonly type: "string";
|
|
10594
|
+
};
|
|
10595
|
+
};
|
|
10596
|
+
readonly additionalProperties: false;
|
|
10597
|
+
};
|
|
10598
|
+
};
|
|
10599
|
+
readonly excludes: {
|
|
10600
|
+
readonly type: "array";
|
|
10601
|
+
readonly items: {
|
|
10602
|
+
readonly type: "object";
|
|
10603
|
+
readonly required: readonly ["key"];
|
|
10604
|
+
readonly properties: {
|
|
10605
|
+
readonly key: {
|
|
10606
|
+
readonly type: "string";
|
|
10607
|
+
};
|
|
10608
|
+
};
|
|
10609
|
+
readonly additionalProperties: false;
|
|
10610
|
+
};
|
|
10611
|
+
};
|
|
10612
|
+
readonly filters: {
|
|
10613
|
+
readonly type: "array";
|
|
10614
|
+
readonly items: {
|
|
10615
|
+
readonly type: "object";
|
|
10616
|
+
readonly required: readonly ["property", "title"];
|
|
10617
|
+
readonly properties: {
|
|
10618
|
+
readonly property: {
|
|
10619
|
+
readonly type: "string";
|
|
10620
|
+
};
|
|
10621
|
+
readonly hide: {
|
|
10622
|
+
readonly type: "boolean";
|
|
10623
|
+
};
|
|
10624
|
+
readonly label: {
|
|
10625
|
+
readonly type: "string";
|
|
10626
|
+
};
|
|
10627
|
+
readonly options: {
|
|
10628
|
+
readonly type: "array";
|
|
10629
|
+
readonly items: {
|
|
10630
|
+
readonly type: "string";
|
|
10631
|
+
};
|
|
10632
|
+
};
|
|
10633
|
+
readonly type: {
|
|
10634
|
+
readonly type: "string";
|
|
10635
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
10636
|
+
readonly default: "checkboxes";
|
|
10637
|
+
};
|
|
10638
|
+
readonly title: {
|
|
10639
|
+
readonly type: "string";
|
|
10640
|
+
};
|
|
10641
|
+
readonly titleTranslationKey: {
|
|
10642
|
+
readonly type: "string";
|
|
10643
|
+
};
|
|
10644
|
+
readonly parentFilter: {
|
|
10645
|
+
readonly type: "string";
|
|
10646
|
+
};
|
|
10647
|
+
readonly valuesMapping: {
|
|
10648
|
+
readonly type: "object";
|
|
10649
|
+
readonly additionalProperties: {
|
|
10650
|
+
readonly type: "string";
|
|
10651
|
+
};
|
|
10652
|
+
};
|
|
10653
|
+
};
|
|
10654
|
+
readonly additionalProperties: false;
|
|
10655
|
+
};
|
|
10656
|
+
};
|
|
10657
|
+
readonly titleTranslationKey: {
|
|
10658
|
+
readonly type: "string";
|
|
10659
|
+
};
|
|
10660
|
+
readonly descriptionTranslationKey: {
|
|
10661
|
+
readonly type: "string";
|
|
10662
|
+
};
|
|
10663
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
10664
|
+
readonly type: "string";
|
|
10665
|
+
};
|
|
10666
|
+
};
|
|
10667
|
+
readonly additionalProperties: false;
|
|
10668
|
+
};
|
|
10669
|
+
readonly apiDescriptions: {
|
|
10670
|
+
readonly type: "object";
|
|
10671
|
+
readonly properties: {
|
|
10672
|
+
readonly slug: {
|
|
10673
|
+
readonly type: "string";
|
|
10674
|
+
};
|
|
10675
|
+
readonly hide: {
|
|
10676
|
+
readonly type: "boolean";
|
|
10677
|
+
};
|
|
10678
|
+
readonly includes: {
|
|
10679
|
+
readonly type: "array";
|
|
10680
|
+
readonly items: {
|
|
10681
|
+
readonly type: "object";
|
|
10682
|
+
readonly required: readonly ["type"];
|
|
10683
|
+
readonly properties: {
|
|
10684
|
+
readonly type: {
|
|
10685
|
+
readonly type: "string";
|
|
10686
|
+
};
|
|
10687
|
+
};
|
|
10688
|
+
readonly additionalProperties: false;
|
|
10689
|
+
};
|
|
10690
|
+
};
|
|
10691
|
+
readonly excludes: {
|
|
10692
|
+
readonly type: "array";
|
|
10693
|
+
readonly items: {
|
|
10694
|
+
readonly type: "object";
|
|
10695
|
+
readonly required: readonly ["key"];
|
|
10696
|
+
readonly properties: {
|
|
10697
|
+
readonly key: {
|
|
10698
|
+
readonly type: "string";
|
|
10699
|
+
};
|
|
10700
|
+
};
|
|
10701
|
+
readonly additionalProperties: false;
|
|
10702
|
+
};
|
|
10703
|
+
};
|
|
10704
|
+
readonly filters: {
|
|
10705
|
+
readonly type: "array";
|
|
10706
|
+
readonly items: {
|
|
10707
|
+
readonly type: "object";
|
|
10708
|
+
readonly required: readonly ["property", "title"];
|
|
10709
|
+
readonly properties: {
|
|
10710
|
+
readonly property: {
|
|
10711
|
+
readonly type: "string";
|
|
10712
|
+
};
|
|
10713
|
+
readonly hide: {
|
|
10714
|
+
readonly type: "boolean";
|
|
10715
|
+
};
|
|
10716
|
+
readonly label: {
|
|
10717
|
+
readonly type: "string";
|
|
10718
|
+
};
|
|
10719
|
+
readonly options: {
|
|
10720
|
+
readonly type: "array";
|
|
10721
|
+
readonly items: {
|
|
10722
|
+
readonly type: "string";
|
|
10723
|
+
};
|
|
10724
|
+
};
|
|
10725
|
+
readonly type: {
|
|
10726
|
+
readonly type: "string";
|
|
10727
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
10728
|
+
readonly default: "checkboxes";
|
|
10729
|
+
};
|
|
10730
|
+
readonly title: {
|
|
10731
|
+
readonly type: "string";
|
|
10732
|
+
};
|
|
10733
|
+
readonly titleTranslationKey: {
|
|
10734
|
+
readonly type: "string";
|
|
10735
|
+
};
|
|
10736
|
+
readonly parentFilter: {
|
|
10737
|
+
readonly type: "string";
|
|
10738
|
+
};
|
|
10739
|
+
readonly valuesMapping: {
|
|
10740
|
+
readonly type: "object";
|
|
10741
|
+
readonly additionalProperties: {
|
|
10742
|
+
readonly type: "string";
|
|
10743
|
+
};
|
|
10744
|
+
};
|
|
10745
|
+
};
|
|
10746
|
+
readonly additionalProperties: false;
|
|
10747
|
+
};
|
|
10748
|
+
};
|
|
10749
|
+
readonly titleTranslationKey: {
|
|
10750
|
+
readonly type: "string";
|
|
10751
|
+
};
|
|
10752
|
+
readonly descriptionTranslationKey: {
|
|
10753
|
+
readonly type: "string";
|
|
10754
|
+
};
|
|
10755
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
10756
|
+
readonly type: "string";
|
|
10757
|
+
};
|
|
10758
|
+
};
|
|
10759
|
+
readonly additionalProperties: false;
|
|
10760
|
+
};
|
|
10761
|
+
};
|
|
10762
|
+
readonly additionalProperties: false;
|
|
10763
|
+
};
|
|
10764
|
+
};
|
|
10765
|
+
readonly additionalProperties: false;
|
|
10766
|
+
};
|
|
10203
10767
|
readonly catalogClassic: {
|
|
10204
10768
|
readonly type: "object";
|
|
10205
10769
|
readonly patternProperties: {
|
|
@@ -10499,6 +11063,70 @@ export declare const redoclyConfigSchema: {
|
|
|
10499
11063
|
readonly type: "object";
|
|
10500
11064
|
readonly required: readonly ["name"];
|
|
10501
11065
|
readonly properties: {
|
|
11066
|
+
readonly decorators: {
|
|
11067
|
+
readonly type: "object";
|
|
11068
|
+
readonly additionalProperties: true;
|
|
11069
|
+
};
|
|
11070
|
+
readonly oas2Decorators: {
|
|
11071
|
+
readonly type: "object";
|
|
11072
|
+
readonly additionalProperties: true;
|
|
11073
|
+
};
|
|
11074
|
+
readonly oas3_0Decorators: {
|
|
11075
|
+
readonly type: "object";
|
|
11076
|
+
readonly additionalProperties: true;
|
|
11077
|
+
};
|
|
11078
|
+
readonly oas3_1Decorators: {
|
|
11079
|
+
readonly type: "object";
|
|
11080
|
+
readonly additionalProperties: true;
|
|
11081
|
+
};
|
|
11082
|
+
readonly async2Decorators: {
|
|
11083
|
+
readonly type: "object";
|
|
11084
|
+
readonly additionalProperties: true;
|
|
11085
|
+
};
|
|
11086
|
+
readonly async3Decorators: {
|
|
11087
|
+
readonly type: "object";
|
|
11088
|
+
readonly additionalProperties: true;
|
|
11089
|
+
};
|
|
11090
|
+
readonly arazzo1Decorators: {
|
|
11091
|
+
readonly type: "object";
|
|
11092
|
+
readonly additionalProperties: true;
|
|
11093
|
+
};
|
|
11094
|
+
readonly overlay1Decorators: {
|
|
11095
|
+
readonly type: "object";
|
|
11096
|
+
readonly additionalProperties: true;
|
|
11097
|
+
};
|
|
11098
|
+
readonly preprocessors: {
|
|
11099
|
+
readonly type: "object";
|
|
11100
|
+
readonly additionalProperties: true;
|
|
11101
|
+
};
|
|
11102
|
+
readonly oas2Preprocessors: {
|
|
11103
|
+
readonly type: "object";
|
|
11104
|
+
readonly additionalProperties: true;
|
|
11105
|
+
};
|
|
11106
|
+
readonly oas3_0Preprocessors: {
|
|
11107
|
+
readonly type: "object";
|
|
11108
|
+
readonly additionalProperties: true;
|
|
11109
|
+
};
|
|
11110
|
+
readonly oas3_1Preprocessors: {
|
|
11111
|
+
readonly type: "object";
|
|
11112
|
+
readonly additionalProperties: true;
|
|
11113
|
+
};
|
|
11114
|
+
readonly async2Preprocessors: {
|
|
11115
|
+
readonly type: "object";
|
|
11116
|
+
readonly additionalProperties: true;
|
|
11117
|
+
};
|
|
11118
|
+
readonly async3Preprocessors: {
|
|
11119
|
+
readonly type: "object";
|
|
11120
|
+
readonly additionalProperties: true;
|
|
11121
|
+
};
|
|
11122
|
+
readonly arazzo1Preprocessors: {
|
|
11123
|
+
readonly type: "object";
|
|
11124
|
+
readonly additionalProperties: true;
|
|
11125
|
+
};
|
|
11126
|
+
readonly overlay1Preprocessors: {
|
|
11127
|
+
readonly type: "object";
|
|
11128
|
+
readonly additionalProperties: true;
|
|
11129
|
+
};
|
|
10502
11130
|
readonly rules: {
|
|
10503
11131
|
readonly type: "object";
|
|
10504
11132
|
readonly additionalProperties: {
|
|
@@ -14675,6 +15303,570 @@ export declare const redoclyConfigSchema: {
|
|
|
14675
15303
|
};
|
|
14676
15304
|
};
|
|
14677
15305
|
};
|
|
15306
|
+
readonly entitiesCatalog: {
|
|
15307
|
+
readonly type: "object";
|
|
15308
|
+
readonly properties: {
|
|
15309
|
+
readonly catalogs: {
|
|
15310
|
+
readonly type: "object";
|
|
15311
|
+
readonly properties: {
|
|
15312
|
+
readonly all: {
|
|
15313
|
+
readonly type: "object";
|
|
15314
|
+
readonly properties: {
|
|
15315
|
+
readonly slug: {
|
|
15316
|
+
readonly type: "string";
|
|
15317
|
+
};
|
|
15318
|
+
readonly hide: {
|
|
15319
|
+
readonly type: "boolean";
|
|
15320
|
+
};
|
|
15321
|
+
readonly includes: {
|
|
15322
|
+
readonly type: "array";
|
|
15323
|
+
readonly items: {
|
|
15324
|
+
readonly type: "object";
|
|
15325
|
+
readonly required: readonly ["type"];
|
|
15326
|
+
readonly properties: {
|
|
15327
|
+
readonly type: {
|
|
15328
|
+
readonly type: "string";
|
|
15329
|
+
};
|
|
15330
|
+
};
|
|
15331
|
+
readonly additionalProperties: false;
|
|
15332
|
+
};
|
|
15333
|
+
};
|
|
15334
|
+
readonly excludes: {
|
|
15335
|
+
readonly type: "array";
|
|
15336
|
+
readonly items: {
|
|
15337
|
+
readonly type: "object";
|
|
15338
|
+
readonly required: readonly ["key"];
|
|
15339
|
+
readonly properties: {
|
|
15340
|
+
readonly key: {
|
|
15341
|
+
readonly type: "string";
|
|
15342
|
+
};
|
|
15343
|
+
};
|
|
15344
|
+
readonly additionalProperties: false;
|
|
15345
|
+
};
|
|
15346
|
+
};
|
|
15347
|
+
readonly filters: {
|
|
15348
|
+
readonly type: "array";
|
|
15349
|
+
readonly items: {
|
|
15350
|
+
readonly type: "object";
|
|
15351
|
+
readonly required: readonly ["property", "title"];
|
|
15352
|
+
readonly properties: {
|
|
15353
|
+
readonly property: {
|
|
15354
|
+
readonly type: "string";
|
|
15355
|
+
};
|
|
15356
|
+
readonly hide: {
|
|
15357
|
+
readonly type: "boolean";
|
|
15358
|
+
};
|
|
15359
|
+
readonly label: {
|
|
15360
|
+
readonly type: "string";
|
|
15361
|
+
};
|
|
15362
|
+
readonly options: {
|
|
15363
|
+
readonly type: "array";
|
|
15364
|
+
readonly items: {
|
|
15365
|
+
readonly type: "string";
|
|
15366
|
+
};
|
|
15367
|
+
};
|
|
15368
|
+
readonly type: {
|
|
15369
|
+
readonly type: "string";
|
|
15370
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
15371
|
+
readonly default: "checkboxes";
|
|
15372
|
+
};
|
|
15373
|
+
readonly title: {
|
|
15374
|
+
readonly type: "string";
|
|
15375
|
+
};
|
|
15376
|
+
readonly titleTranslationKey: {
|
|
15377
|
+
readonly type: "string";
|
|
15378
|
+
};
|
|
15379
|
+
readonly parentFilter: {
|
|
15380
|
+
readonly type: "string";
|
|
15381
|
+
};
|
|
15382
|
+
readonly valuesMapping: {
|
|
15383
|
+
readonly type: "object";
|
|
15384
|
+
readonly additionalProperties: {
|
|
15385
|
+
readonly type: "string";
|
|
15386
|
+
};
|
|
15387
|
+
};
|
|
15388
|
+
};
|
|
15389
|
+
readonly additionalProperties: false;
|
|
15390
|
+
};
|
|
15391
|
+
};
|
|
15392
|
+
readonly titleTranslationKey: {
|
|
15393
|
+
readonly type: "string";
|
|
15394
|
+
};
|
|
15395
|
+
readonly descriptionTranslationKey: {
|
|
15396
|
+
readonly type: "string";
|
|
15397
|
+
};
|
|
15398
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
15399
|
+
readonly type: "string";
|
|
15400
|
+
};
|
|
15401
|
+
};
|
|
15402
|
+
readonly additionalProperties: false;
|
|
15403
|
+
};
|
|
15404
|
+
readonly services: {
|
|
15405
|
+
readonly type: "object";
|
|
15406
|
+
readonly properties: {
|
|
15407
|
+
readonly slug: {
|
|
15408
|
+
readonly type: "string";
|
|
15409
|
+
};
|
|
15410
|
+
readonly hide: {
|
|
15411
|
+
readonly type: "boolean";
|
|
15412
|
+
};
|
|
15413
|
+
readonly includes: {
|
|
15414
|
+
readonly type: "array";
|
|
15415
|
+
readonly items: {
|
|
15416
|
+
readonly type: "object";
|
|
15417
|
+
readonly required: readonly ["type"];
|
|
15418
|
+
readonly properties: {
|
|
15419
|
+
readonly type: {
|
|
15420
|
+
readonly type: "string";
|
|
15421
|
+
};
|
|
15422
|
+
};
|
|
15423
|
+
readonly additionalProperties: false;
|
|
15424
|
+
};
|
|
15425
|
+
};
|
|
15426
|
+
readonly excludes: {
|
|
15427
|
+
readonly type: "array";
|
|
15428
|
+
readonly items: {
|
|
15429
|
+
readonly type: "object";
|
|
15430
|
+
readonly required: readonly ["key"];
|
|
15431
|
+
readonly properties: {
|
|
15432
|
+
readonly key: {
|
|
15433
|
+
readonly type: "string";
|
|
15434
|
+
};
|
|
15435
|
+
};
|
|
15436
|
+
readonly additionalProperties: false;
|
|
15437
|
+
};
|
|
15438
|
+
};
|
|
15439
|
+
readonly filters: {
|
|
15440
|
+
readonly type: "array";
|
|
15441
|
+
readonly items: {
|
|
15442
|
+
readonly type: "object";
|
|
15443
|
+
readonly required: readonly ["property", "title"];
|
|
15444
|
+
readonly properties: {
|
|
15445
|
+
readonly property: {
|
|
15446
|
+
readonly type: "string";
|
|
15447
|
+
};
|
|
15448
|
+
readonly hide: {
|
|
15449
|
+
readonly type: "boolean";
|
|
15450
|
+
};
|
|
15451
|
+
readonly label: {
|
|
15452
|
+
readonly type: "string";
|
|
15453
|
+
};
|
|
15454
|
+
readonly options: {
|
|
15455
|
+
readonly type: "array";
|
|
15456
|
+
readonly items: {
|
|
15457
|
+
readonly type: "string";
|
|
15458
|
+
};
|
|
15459
|
+
};
|
|
15460
|
+
readonly type: {
|
|
15461
|
+
readonly type: "string";
|
|
15462
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
15463
|
+
readonly default: "checkboxes";
|
|
15464
|
+
};
|
|
15465
|
+
readonly title: {
|
|
15466
|
+
readonly type: "string";
|
|
15467
|
+
};
|
|
15468
|
+
readonly titleTranslationKey: {
|
|
15469
|
+
readonly type: "string";
|
|
15470
|
+
};
|
|
15471
|
+
readonly parentFilter: {
|
|
15472
|
+
readonly type: "string";
|
|
15473
|
+
};
|
|
15474
|
+
readonly valuesMapping: {
|
|
15475
|
+
readonly type: "object";
|
|
15476
|
+
readonly additionalProperties: {
|
|
15477
|
+
readonly type: "string";
|
|
15478
|
+
};
|
|
15479
|
+
};
|
|
15480
|
+
};
|
|
15481
|
+
readonly additionalProperties: false;
|
|
15482
|
+
};
|
|
15483
|
+
};
|
|
15484
|
+
readonly titleTranslationKey: {
|
|
15485
|
+
readonly type: "string";
|
|
15486
|
+
};
|
|
15487
|
+
readonly descriptionTranslationKey: {
|
|
15488
|
+
readonly type: "string";
|
|
15489
|
+
};
|
|
15490
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
15491
|
+
readonly type: "string";
|
|
15492
|
+
};
|
|
15493
|
+
};
|
|
15494
|
+
readonly additionalProperties: false;
|
|
15495
|
+
};
|
|
15496
|
+
readonly domains: {
|
|
15497
|
+
readonly type: "object";
|
|
15498
|
+
readonly properties: {
|
|
15499
|
+
readonly slug: {
|
|
15500
|
+
readonly type: "string";
|
|
15501
|
+
};
|
|
15502
|
+
readonly hide: {
|
|
15503
|
+
readonly type: "boolean";
|
|
15504
|
+
};
|
|
15505
|
+
readonly includes: {
|
|
15506
|
+
readonly type: "array";
|
|
15507
|
+
readonly items: {
|
|
15508
|
+
readonly type: "object";
|
|
15509
|
+
readonly required: readonly ["type"];
|
|
15510
|
+
readonly properties: {
|
|
15511
|
+
readonly type: {
|
|
15512
|
+
readonly type: "string";
|
|
15513
|
+
};
|
|
15514
|
+
};
|
|
15515
|
+
readonly additionalProperties: false;
|
|
15516
|
+
};
|
|
15517
|
+
};
|
|
15518
|
+
readonly excludes: {
|
|
15519
|
+
readonly type: "array";
|
|
15520
|
+
readonly items: {
|
|
15521
|
+
readonly type: "object";
|
|
15522
|
+
readonly required: readonly ["key"];
|
|
15523
|
+
readonly properties: {
|
|
15524
|
+
readonly key: {
|
|
15525
|
+
readonly type: "string";
|
|
15526
|
+
};
|
|
15527
|
+
};
|
|
15528
|
+
readonly additionalProperties: false;
|
|
15529
|
+
};
|
|
15530
|
+
};
|
|
15531
|
+
readonly filters: {
|
|
15532
|
+
readonly type: "array";
|
|
15533
|
+
readonly items: {
|
|
15534
|
+
readonly type: "object";
|
|
15535
|
+
readonly required: readonly ["property", "title"];
|
|
15536
|
+
readonly properties: {
|
|
15537
|
+
readonly property: {
|
|
15538
|
+
readonly type: "string";
|
|
15539
|
+
};
|
|
15540
|
+
readonly hide: {
|
|
15541
|
+
readonly type: "boolean";
|
|
15542
|
+
};
|
|
15543
|
+
readonly label: {
|
|
15544
|
+
readonly type: "string";
|
|
15545
|
+
};
|
|
15546
|
+
readonly options: {
|
|
15547
|
+
readonly type: "array";
|
|
15548
|
+
readonly items: {
|
|
15549
|
+
readonly type: "string";
|
|
15550
|
+
};
|
|
15551
|
+
};
|
|
15552
|
+
readonly type: {
|
|
15553
|
+
readonly type: "string";
|
|
15554
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
15555
|
+
readonly default: "checkboxes";
|
|
15556
|
+
};
|
|
15557
|
+
readonly title: {
|
|
15558
|
+
readonly type: "string";
|
|
15559
|
+
};
|
|
15560
|
+
readonly titleTranslationKey: {
|
|
15561
|
+
readonly type: "string";
|
|
15562
|
+
};
|
|
15563
|
+
readonly parentFilter: {
|
|
15564
|
+
readonly type: "string";
|
|
15565
|
+
};
|
|
15566
|
+
readonly valuesMapping: {
|
|
15567
|
+
readonly type: "object";
|
|
15568
|
+
readonly additionalProperties: {
|
|
15569
|
+
readonly type: "string";
|
|
15570
|
+
};
|
|
15571
|
+
};
|
|
15572
|
+
};
|
|
15573
|
+
readonly additionalProperties: false;
|
|
15574
|
+
};
|
|
15575
|
+
};
|
|
15576
|
+
readonly titleTranslationKey: {
|
|
15577
|
+
readonly type: "string";
|
|
15578
|
+
};
|
|
15579
|
+
readonly descriptionTranslationKey: {
|
|
15580
|
+
readonly type: "string";
|
|
15581
|
+
};
|
|
15582
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
15583
|
+
readonly type: "string";
|
|
15584
|
+
};
|
|
15585
|
+
};
|
|
15586
|
+
readonly additionalProperties: false;
|
|
15587
|
+
};
|
|
15588
|
+
readonly teams: {
|
|
15589
|
+
readonly type: "object";
|
|
15590
|
+
readonly properties: {
|
|
15591
|
+
readonly slug: {
|
|
15592
|
+
readonly type: "string";
|
|
15593
|
+
};
|
|
15594
|
+
readonly hide: {
|
|
15595
|
+
readonly type: "boolean";
|
|
15596
|
+
};
|
|
15597
|
+
readonly includes: {
|
|
15598
|
+
readonly type: "array";
|
|
15599
|
+
readonly items: {
|
|
15600
|
+
readonly type: "object";
|
|
15601
|
+
readonly required: readonly ["type"];
|
|
15602
|
+
readonly properties: {
|
|
15603
|
+
readonly type: {
|
|
15604
|
+
readonly type: "string";
|
|
15605
|
+
};
|
|
15606
|
+
};
|
|
15607
|
+
readonly additionalProperties: false;
|
|
15608
|
+
};
|
|
15609
|
+
};
|
|
15610
|
+
readonly excludes: {
|
|
15611
|
+
readonly type: "array";
|
|
15612
|
+
readonly items: {
|
|
15613
|
+
readonly type: "object";
|
|
15614
|
+
readonly required: readonly ["key"];
|
|
15615
|
+
readonly properties: {
|
|
15616
|
+
readonly key: {
|
|
15617
|
+
readonly type: "string";
|
|
15618
|
+
};
|
|
15619
|
+
};
|
|
15620
|
+
readonly additionalProperties: false;
|
|
15621
|
+
};
|
|
15622
|
+
};
|
|
15623
|
+
readonly filters: {
|
|
15624
|
+
readonly type: "array";
|
|
15625
|
+
readonly items: {
|
|
15626
|
+
readonly type: "object";
|
|
15627
|
+
readonly required: readonly ["property", "title"];
|
|
15628
|
+
readonly properties: {
|
|
15629
|
+
readonly property: {
|
|
15630
|
+
readonly type: "string";
|
|
15631
|
+
};
|
|
15632
|
+
readonly hide: {
|
|
15633
|
+
readonly type: "boolean";
|
|
15634
|
+
};
|
|
15635
|
+
readonly label: {
|
|
15636
|
+
readonly type: "string";
|
|
15637
|
+
};
|
|
15638
|
+
readonly options: {
|
|
15639
|
+
readonly type: "array";
|
|
15640
|
+
readonly items: {
|
|
15641
|
+
readonly type: "string";
|
|
15642
|
+
};
|
|
15643
|
+
};
|
|
15644
|
+
readonly type: {
|
|
15645
|
+
readonly type: "string";
|
|
15646
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
15647
|
+
readonly default: "checkboxes";
|
|
15648
|
+
};
|
|
15649
|
+
readonly title: {
|
|
15650
|
+
readonly type: "string";
|
|
15651
|
+
};
|
|
15652
|
+
readonly titleTranslationKey: {
|
|
15653
|
+
readonly type: "string";
|
|
15654
|
+
};
|
|
15655
|
+
readonly parentFilter: {
|
|
15656
|
+
readonly type: "string";
|
|
15657
|
+
};
|
|
15658
|
+
readonly valuesMapping: {
|
|
15659
|
+
readonly type: "object";
|
|
15660
|
+
readonly additionalProperties: {
|
|
15661
|
+
readonly type: "string";
|
|
15662
|
+
};
|
|
15663
|
+
};
|
|
15664
|
+
};
|
|
15665
|
+
readonly additionalProperties: false;
|
|
15666
|
+
};
|
|
15667
|
+
};
|
|
15668
|
+
readonly titleTranslationKey: {
|
|
15669
|
+
readonly type: "string";
|
|
15670
|
+
};
|
|
15671
|
+
readonly descriptionTranslationKey: {
|
|
15672
|
+
readonly type: "string";
|
|
15673
|
+
};
|
|
15674
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
15675
|
+
readonly type: "string";
|
|
15676
|
+
};
|
|
15677
|
+
};
|
|
15678
|
+
readonly additionalProperties: false;
|
|
15679
|
+
};
|
|
15680
|
+
readonly users: {
|
|
15681
|
+
readonly type: "object";
|
|
15682
|
+
readonly properties: {
|
|
15683
|
+
readonly slug: {
|
|
15684
|
+
readonly type: "string";
|
|
15685
|
+
};
|
|
15686
|
+
readonly hide: {
|
|
15687
|
+
readonly type: "boolean";
|
|
15688
|
+
};
|
|
15689
|
+
readonly includes: {
|
|
15690
|
+
readonly type: "array";
|
|
15691
|
+
readonly items: {
|
|
15692
|
+
readonly type: "object";
|
|
15693
|
+
readonly required: readonly ["type"];
|
|
15694
|
+
readonly properties: {
|
|
15695
|
+
readonly type: {
|
|
15696
|
+
readonly type: "string";
|
|
15697
|
+
};
|
|
15698
|
+
};
|
|
15699
|
+
readonly additionalProperties: false;
|
|
15700
|
+
};
|
|
15701
|
+
};
|
|
15702
|
+
readonly excludes: {
|
|
15703
|
+
readonly type: "array";
|
|
15704
|
+
readonly items: {
|
|
15705
|
+
readonly type: "object";
|
|
15706
|
+
readonly required: readonly ["key"];
|
|
15707
|
+
readonly properties: {
|
|
15708
|
+
readonly key: {
|
|
15709
|
+
readonly type: "string";
|
|
15710
|
+
};
|
|
15711
|
+
};
|
|
15712
|
+
readonly additionalProperties: false;
|
|
15713
|
+
};
|
|
15714
|
+
};
|
|
15715
|
+
readonly filters: {
|
|
15716
|
+
readonly type: "array";
|
|
15717
|
+
readonly items: {
|
|
15718
|
+
readonly type: "object";
|
|
15719
|
+
readonly required: readonly ["property", "title"];
|
|
15720
|
+
readonly properties: {
|
|
15721
|
+
readonly property: {
|
|
15722
|
+
readonly type: "string";
|
|
15723
|
+
};
|
|
15724
|
+
readonly hide: {
|
|
15725
|
+
readonly type: "boolean";
|
|
15726
|
+
};
|
|
15727
|
+
readonly label: {
|
|
15728
|
+
readonly type: "string";
|
|
15729
|
+
};
|
|
15730
|
+
readonly options: {
|
|
15731
|
+
readonly type: "array";
|
|
15732
|
+
readonly items: {
|
|
15733
|
+
readonly type: "string";
|
|
15734
|
+
};
|
|
15735
|
+
};
|
|
15736
|
+
readonly type: {
|
|
15737
|
+
readonly type: "string";
|
|
15738
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
15739
|
+
readonly default: "checkboxes";
|
|
15740
|
+
};
|
|
15741
|
+
readonly title: {
|
|
15742
|
+
readonly type: "string";
|
|
15743
|
+
};
|
|
15744
|
+
readonly titleTranslationKey: {
|
|
15745
|
+
readonly type: "string";
|
|
15746
|
+
};
|
|
15747
|
+
readonly parentFilter: {
|
|
15748
|
+
readonly type: "string";
|
|
15749
|
+
};
|
|
15750
|
+
readonly valuesMapping: {
|
|
15751
|
+
readonly type: "object";
|
|
15752
|
+
readonly additionalProperties: {
|
|
15753
|
+
readonly type: "string";
|
|
15754
|
+
};
|
|
15755
|
+
};
|
|
15756
|
+
};
|
|
15757
|
+
readonly additionalProperties: false;
|
|
15758
|
+
};
|
|
15759
|
+
};
|
|
15760
|
+
readonly titleTranslationKey: {
|
|
15761
|
+
readonly type: "string";
|
|
15762
|
+
};
|
|
15763
|
+
readonly descriptionTranslationKey: {
|
|
15764
|
+
readonly type: "string";
|
|
15765
|
+
};
|
|
15766
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
15767
|
+
readonly type: "string";
|
|
15768
|
+
};
|
|
15769
|
+
};
|
|
15770
|
+
readonly additionalProperties: false;
|
|
15771
|
+
};
|
|
15772
|
+
readonly apiDescriptions: {
|
|
15773
|
+
readonly type: "object";
|
|
15774
|
+
readonly properties: {
|
|
15775
|
+
readonly slug: {
|
|
15776
|
+
readonly type: "string";
|
|
15777
|
+
};
|
|
15778
|
+
readonly hide: {
|
|
15779
|
+
readonly type: "boolean";
|
|
15780
|
+
};
|
|
15781
|
+
readonly includes: {
|
|
15782
|
+
readonly type: "array";
|
|
15783
|
+
readonly items: {
|
|
15784
|
+
readonly type: "object";
|
|
15785
|
+
readonly required: readonly ["type"];
|
|
15786
|
+
readonly properties: {
|
|
15787
|
+
readonly type: {
|
|
15788
|
+
readonly type: "string";
|
|
15789
|
+
};
|
|
15790
|
+
};
|
|
15791
|
+
readonly additionalProperties: false;
|
|
15792
|
+
};
|
|
15793
|
+
};
|
|
15794
|
+
readonly excludes: {
|
|
15795
|
+
readonly type: "array";
|
|
15796
|
+
readonly items: {
|
|
15797
|
+
readonly type: "object";
|
|
15798
|
+
readonly required: readonly ["key"];
|
|
15799
|
+
readonly properties: {
|
|
15800
|
+
readonly key: {
|
|
15801
|
+
readonly type: "string";
|
|
15802
|
+
};
|
|
15803
|
+
};
|
|
15804
|
+
readonly additionalProperties: false;
|
|
15805
|
+
};
|
|
15806
|
+
};
|
|
15807
|
+
readonly filters: {
|
|
15808
|
+
readonly type: "array";
|
|
15809
|
+
readonly items: {
|
|
15810
|
+
readonly type: "object";
|
|
15811
|
+
readonly required: readonly ["property", "title"];
|
|
15812
|
+
readonly properties: {
|
|
15813
|
+
readonly property: {
|
|
15814
|
+
readonly type: "string";
|
|
15815
|
+
};
|
|
15816
|
+
readonly hide: {
|
|
15817
|
+
readonly type: "boolean";
|
|
15818
|
+
};
|
|
15819
|
+
readonly label: {
|
|
15820
|
+
readonly type: "string";
|
|
15821
|
+
};
|
|
15822
|
+
readonly options: {
|
|
15823
|
+
readonly type: "array";
|
|
15824
|
+
readonly items: {
|
|
15825
|
+
readonly type: "string";
|
|
15826
|
+
};
|
|
15827
|
+
};
|
|
15828
|
+
readonly type: {
|
|
15829
|
+
readonly type: "string";
|
|
15830
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
15831
|
+
readonly default: "checkboxes";
|
|
15832
|
+
};
|
|
15833
|
+
readonly title: {
|
|
15834
|
+
readonly type: "string";
|
|
15835
|
+
};
|
|
15836
|
+
readonly titleTranslationKey: {
|
|
15837
|
+
readonly type: "string";
|
|
15838
|
+
};
|
|
15839
|
+
readonly parentFilter: {
|
|
15840
|
+
readonly type: "string";
|
|
15841
|
+
};
|
|
15842
|
+
readonly valuesMapping: {
|
|
15843
|
+
readonly type: "object";
|
|
15844
|
+
readonly additionalProperties: {
|
|
15845
|
+
readonly type: "string";
|
|
15846
|
+
};
|
|
15847
|
+
};
|
|
15848
|
+
};
|
|
15849
|
+
readonly additionalProperties: false;
|
|
15850
|
+
};
|
|
15851
|
+
};
|
|
15852
|
+
readonly titleTranslationKey: {
|
|
15853
|
+
readonly type: "string";
|
|
15854
|
+
};
|
|
15855
|
+
readonly descriptionTranslationKey: {
|
|
15856
|
+
readonly type: "string";
|
|
15857
|
+
};
|
|
15858
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
15859
|
+
readonly type: "string";
|
|
15860
|
+
};
|
|
15861
|
+
};
|
|
15862
|
+
readonly additionalProperties: false;
|
|
15863
|
+
};
|
|
15864
|
+
};
|
|
15865
|
+
readonly additionalProperties: false;
|
|
15866
|
+
};
|
|
15867
|
+
};
|
|
15868
|
+
readonly additionalProperties: false;
|
|
15869
|
+
};
|
|
14678
15870
|
readonly catalogClassic: {
|
|
14679
15871
|
readonly type: "object";
|
|
14680
15872
|
readonly patternProperties: {
|
|
@@ -14974,6 +16166,70 @@ export declare const redoclyConfigSchema: {
|
|
|
14974
16166
|
readonly type: "object";
|
|
14975
16167
|
readonly required: readonly ["name"];
|
|
14976
16168
|
readonly properties: {
|
|
16169
|
+
readonly decorators: {
|
|
16170
|
+
readonly type: "object";
|
|
16171
|
+
readonly additionalProperties: true;
|
|
16172
|
+
};
|
|
16173
|
+
readonly oas2Decorators: {
|
|
16174
|
+
readonly type: "object";
|
|
16175
|
+
readonly additionalProperties: true;
|
|
16176
|
+
};
|
|
16177
|
+
readonly oas3_0Decorators: {
|
|
16178
|
+
readonly type: "object";
|
|
16179
|
+
readonly additionalProperties: true;
|
|
16180
|
+
};
|
|
16181
|
+
readonly oas3_1Decorators: {
|
|
16182
|
+
readonly type: "object";
|
|
16183
|
+
readonly additionalProperties: true;
|
|
16184
|
+
};
|
|
16185
|
+
readonly async2Decorators: {
|
|
16186
|
+
readonly type: "object";
|
|
16187
|
+
readonly additionalProperties: true;
|
|
16188
|
+
};
|
|
16189
|
+
readonly async3Decorators: {
|
|
16190
|
+
readonly type: "object";
|
|
16191
|
+
readonly additionalProperties: true;
|
|
16192
|
+
};
|
|
16193
|
+
readonly arazzo1Decorators: {
|
|
16194
|
+
readonly type: "object";
|
|
16195
|
+
readonly additionalProperties: true;
|
|
16196
|
+
};
|
|
16197
|
+
readonly overlay1Decorators: {
|
|
16198
|
+
readonly type: "object";
|
|
16199
|
+
readonly additionalProperties: true;
|
|
16200
|
+
};
|
|
16201
|
+
readonly preprocessors: {
|
|
16202
|
+
readonly type: "object";
|
|
16203
|
+
readonly additionalProperties: true;
|
|
16204
|
+
};
|
|
16205
|
+
readonly oas2Preprocessors: {
|
|
16206
|
+
readonly type: "object";
|
|
16207
|
+
readonly additionalProperties: true;
|
|
16208
|
+
};
|
|
16209
|
+
readonly oas3_0Preprocessors: {
|
|
16210
|
+
readonly type: "object";
|
|
16211
|
+
readonly additionalProperties: true;
|
|
16212
|
+
};
|
|
16213
|
+
readonly oas3_1Preprocessors: {
|
|
16214
|
+
readonly type: "object";
|
|
16215
|
+
readonly additionalProperties: true;
|
|
16216
|
+
};
|
|
16217
|
+
readonly async2Preprocessors: {
|
|
16218
|
+
readonly type: "object";
|
|
16219
|
+
readonly additionalProperties: true;
|
|
16220
|
+
};
|
|
16221
|
+
readonly async3Preprocessors: {
|
|
16222
|
+
readonly type: "object";
|
|
16223
|
+
readonly additionalProperties: true;
|
|
16224
|
+
};
|
|
16225
|
+
readonly arazzo1Preprocessors: {
|
|
16226
|
+
readonly type: "object";
|
|
16227
|
+
readonly additionalProperties: true;
|
|
16228
|
+
};
|
|
16229
|
+
readonly overlay1Preprocessors: {
|
|
16230
|
+
readonly type: "object";
|
|
16231
|
+
readonly additionalProperties: true;
|
|
16232
|
+
};
|
|
14977
16233
|
readonly rules: {
|
|
14978
16234
|
readonly type: "object";
|
|
14979
16235
|
readonly additionalProperties: {
|
|
@@ -15132,7 +16388,7 @@ export declare const redoclyConfigSchema: {
|
|
|
15132
16388
|
readonly type: "object";
|
|
15133
16389
|
readonly additionalProperties: true;
|
|
15134
16390
|
};
|
|
15135
|
-
readonly
|
|
16391
|
+
readonly arazzo1Preprocessors: {
|
|
15136
16392
|
readonly type: "object";
|
|
15137
16393
|
readonly additionalProperties: true;
|
|
15138
16394
|
};
|
|
@@ -15616,7 +16872,7 @@ export declare const redoclyConfigSchema: {
|
|
|
15616
16872
|
readonly type: "object";
|
|
15617
16873
|
readonly additionalProperties: true;
|
|
15618
16874
|
};
|
|
15619
|
-
readonly
|
|
16875
|
+
readonly arazzo1Preprocessors: {
|
|
15620
16876
|
readonly type: "object";
|
|
15621
16877
|
readonly additionalProperties: true;
|
|
15622
16878
|
};
|
|
@@ -23388,6 +24644,306 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
23388
24644
|
};
|
|
23389
24645
|
type: "object";
|
|
23390
24646
|
};
|
|
24647
|
+
entitiesCatalog: {
|
|
24648
|
+
properties: {
|
|
24649
|
+
catalogs: {
|
|
24650
|
+
properties: {
|
|
24651
|
+
all: {
|
|
24652
|
+
properties: {
|
|
24653
|
+
includes: {
|
|
24654
|
+
items: {
|
|
24655
|
+
properties: any;
|
|
24656
|
+
additionalProperties: false;
|
|
24657
|
+
type: "object";
|
|
24658
|
+
required: "type"[];
|
|
24659
|
+
};
|
|
24660
|
+
type: "array";
|
|
24661
|
+
};
|
|
24662
|
+
slug: {
|
|
24663
|
+
type: "string";
|
|
24664
|
+
};
|
|
24665
|
+
hide: {
|
|
24666
|
+
type: "boolean";
|
|
24667
|
+
};
|
|
24668
|
+
filters: {
|
|
24669
|
+
items: {
|
|
24670
|
+
properties: any;
|
|
24671
|
+
additionalProperties: false;
|
|
24672
|
+
type: "object";
|
|
24673
|
+
required: ("title" | "property")[];
|
|
24674
|
+
};
|
|
24675
|
+
type: "array";
|
|
24676
|
+
};
|
|
24677
|
+
titleTranslationKey: {
|
|
24678
|
+
type: "string";
|
|
24679
|
+
};
|
|
24680
|
+
descriptionTranslationKey: {
|
|
24681
|
+
type: "string";
|
|
24682
|
+
};
|
|
24683
|
+
excludes: {
|
|
24684
|
+
items: {
|
|
24685
|
+
properties: any;
|
|
24686
|
+
additionalProperties: false;
|
|
24687
|
+
type: "object";
|
|
24688
|
+
required: "key"[];
|
|
24689
|
+
};
|
|
24690
|
+
type: "array";
|
|
24691
|
+
};
|
|
24692
|
+
catalogSwitcherLabelTranslationKey: {
|
|
24693
|
+
type: "string";
|
|
24694
|
+
};
|
|
24695
|
+
};
|
|
24696
|
+
additionalProperties: false;
|
|
24697
|
+
type: "object";
|
|
24698
|
+
};
|
|
24699
|
+
services: {
|
|
24700
|
+
properties: {
|
|
24701
|
+
includes: {
|
|
24702
|
+
items: {
|
|
24703
|
+
properties: any;
|
|
24704
|
+
additionalProperties: false;
|
|
24705
|
+
type: "object";
|
|
24706
|
+
required: "type"[];
|
|
24707
|
+
};
|
|
24708
|
+
type: "array";
|
|
24709
|
+
};
|
|
24710
|
+
slug: {
|
|
24711
|
+
type: "string";
|
|
24712
|
+
};
|
|
24713
|
+
hide: {
|
|
24714
|
+
type: "boolean";
|
|
24715
|
+
};
|
|
24716
|
+
filters: {
|
|
24717
|
+
items: {
|
|
24718
|
+
properties: any;
|
|
24719
|
+
additionalProperties: false;
|
|
24720
|
+
type: "object";
|
|
24721
|
+
required: ("title" | "property")[];
|
|
24722
|
+
};
|
|
24723
|
+
type: "array";
|
|
24724
|
+
};
|
|
24725
|
+
titleTranslationKey: {
|
|
24726
|
+
type: "string";
|
|
24727
|
+
};
|
|
24728
|
+
descriptionTranslationKey: {
|
|
24729
|
+
type: "string";
|
|
24730
|
+
};
|
|
24731
|
+
excludes: {
|
|
24732
|
+
items: {
|
|
24733
|
+
properties: any;
|
|
24734
|
+
additionalProperties: false;
|
|
24735
|
+
type: "object";
|
|
24736
|
+
required: "key"[];
|
|
24737
|
+
};
|
|
24738
|
+
type: "array";
|
|
24739
|
+
};
|
|
24740
|
+
catalogSwitcherLabelTranslationKey: {
|
|
24741
|
+
type: "string";
|
|
24742
|
+
};
|
|
24743
|
+
};
|
|
24744
|
+
additionalProperties: false;
|
|
24745
|
+
type: "object";
|
|
24746
|
+
};
|
|
24747
|
+
domains: {
|
|
24748
|
+
properties: {
|
|
24749
|
+
includes: {
|
|
24750
|
+
items: {
|
|
24751
|
+
properties: any;
|
|
24752
|
+
additionalProperties: false;
|
|
24753
|
+
type: "object";
|
|
24754
|
+
required: "type"[];
|
|
24755
|
+
};
|
|
24756
|
+
type: "array";
|
|
24757
|
+
};
|
|
24758
|
+
slug: {
|
|
24759
|
+
type: "string";
|
|
24760
|
+
};
|
|
24761
|
+
hide: {
|
|
24762
|
+
type: "boolean";
|
|
24763
|
+
};
|
|
24764
|
+
filters: {
|
|
24765
|
+
items: {
|
|
24766
|
+
properties: any;
|
|
24767
|
+
additionalProperties: false;
|
|
24768
|
+
type: "object";
|
|
24769
|
+
required: ("title" | "property")[];
|
|
24770
|
+
};
|
|
24771
|
+
type: "array";
|
|
24772
|
+
};
|
|
24773
|
+
titleTranslationKey: {
|
|
24774
|
+
type: "string";
|
|
24775
|
+
};
|
|
24776
|
+
descriptionTranslationKey: {
|
|
24777
|
+
type: "string";
|
|
24778
|
+
};
|
|
24779
|
+
excludes: {
|
|
24780
|
+
items: {
|
|
24781
|
+
properties: any;
|
|
24782
|
+
additionalProperties: false;
|
|
24783
|
+
type: "object";
|
|
24784
|
+
required: "key"[];
|
|
24785
|
+
};
|
|
24786
|
+
type: "array";
|
|
24787
|
+
};
|
|
24788
|
+
catalogSwitcherLabelTranslationKey: {
|
|
24789
|
+
type: "string";
|
|
24790
|
+
};
|
|
24791
|
+
};
|
|
24792
|
+
additionalProperties: false;
|
|
24793
|
+
type: "object";
|
|
24794
|
+
};
|
|
24795
|
+
teams: {
|
|
24796
|
+
properties: {
|
|
24797
|
+
includes: {
|
|
24798
|
+
items: {
|
|
24799
|
+
properties: any;
|
|
24800
|
+
additionalProperties: false;
|
|
24801
|
+
type: "object";
|
|
24802
|
+
required: "type"[];
|
|
24803
|
+
};
|
|
24804
|
+
type: "array";
|
|
24805
|
+
};
|
|
24806
|
+
slug: {
|
|
24807
|
+
type: "string";
|
|
24808
|
+
};
|
|
24809
|
+
hide: {
|
|
24810
|
+
type: "boolean";
|
|
24811
|
+
};
|
|
24812
|
+
filters: {
|
|
24813
|
+
items: {
|
|
24814
|
+
properties: any;
|
|
24815
|
+
additionalProperties: false;
|
|
24816
|
+
type: "object";
|
|
24817
|
+
required: ("title" | "property")[];
|
|
24818
|
+
};
|
|
24819
|
+
type: "array";
|
|
24820
|
+
};
|
|
24821
|
+
titleTranslationKey: {
|
|
24822
|
+
type: "string";
|
|
24823
|
+
};
|
|
24824
|
+
descriptionTranslationKey: {
|
|
24825
|
+
type: "string";
|
|
24826
|
+
};
|
|
24827
|
+
excludes: {
|
|
24828
|
+
items: {
|
|
24829
|
+
properties: any;
|
|
24830
|
+
additionalProperties: false;
|
|
24831
|
+
type: "object";
|
|
24832
|
+
required: "key"[];
|
|
24833
|
+
};
|
|
24834
|
+
type: "array";
|
|
24835
|
+
};
|
|
24836
|
+
catalogSwitcherLabelTranslationKey: {
|
|
24837
|
+
type: "string";
|
|
24838
|
+
};
|
|
24839
|
+
};
|
|
24840
|
+
additionalProperties: false;
|
|
24841
|
+
type: "object";
|
|
24842
|
+
};
|
|
24843
|
+
users: {
|
|
24844
|
+
properties: {
|
|
24845
|
+
includes: {
|
|
24846
|
+
items: {
|
|
24847
|
+
properties: any;
|
|
24848
|
+
additionalProperties: false;
|
|
24849
|
+
type: "object";
|
|
24850
|
+
required: "type"[];
|
|
24851
|
+
};
|
|
24852
|
+
type: "array";
|
|
24853
|
+
};
|
|
24854
|
+
slug: {
|
|
24855
|
+
type: "string";
|
|
24856
|
+
};
|
|
24857
|
+
hide: {
|
|
24858
|
+
type: "boolean";
|
|
24859
|
+
};
|
|
24860
|
+
filters: {
|
|
24861
|
+
items: {
|
|
24862
|
+
properties: any;
|
|
24863
|
+
additionalProperties: false;
|
|
24864
|
+
type: "object";
|
|
24865
|
+
required: ("title" | "property")[];
|
|
24866
|
+
};
|
|
24867
|
+
type: "array";
|
|
24868
|
+
};
|
|
24869
|
+
titleTranslationKey: {
|
|
24870
|
+
type: "string";
|
|
24871
|
+
};
|
|
24872
|
+
descriptionTranslationKey: {
|
|
24873
|
+
type: "string";
|
|
24874
|
+
};
|
|
24875
|
+
excludes: {
|
|
24876
|
+
items: {
|
|
24877
|
+
properties: any;
|
|
24878
|
+
additionalProperties: false;
|
|
24879
|
+
type: "object";
|
|
24880
|
+
required: "key"[];
|
|
24881
|
+
};
|
|
24882
|
+
type: "array";
|
|
24883
|
+
};
|
|
24884
|
+
catalogSwitcherLabelTranslationKey: {
|
|
24885
|
+
type: "string";
|
|
24886
|
+
};
|
|
24887
|
+
};
|
|
24888
|
+
additionalProperties: false;
|
|
24889
|
+
type: "object";
|
|
24890
|
+
};
|
|
24891
|
+
apiDescriptions: {
|
|
24892
|
+
properties: {
|
|
24893
|
+
includes: {
|
|
24894
|
+
items: {
|
|
24895
|
+
properties: any;
|
|
24896
|
+
additionalProperties: false;
|
|
24897
|
+
type: "object";
|
|
24898
|
+
required: "type"[];
|
|
24899
|
+
};
|
|
24900
|
+
type: "array";
|
|
24901
|
+
};
|
|
24902
|
+
slug: {
|
|
24903
|
+
type: "string";
|
|
24904
|
+
};
|
|
24905
|
+
hide: {
|
|
24906
|
+
type: "boolean";
|
|
24907
|
+
};
|
|
24908
|
+
filters: {
|
|
24909
|
+
items: {
|
|
24910
|
+
properties: any;
|
|
24911
|
+
additionalProperties: false;
|
|
24912
|
+
type: "object";
|
|
24913
|
+
required: ("title" | "property")[];
|
|
24914
|
+
};
|
|
24915
|
+
type: "array";
|
|
24916
|
+
};
|
|
24917
|
+
titleTranslationKey: {
|
|
24918
|
+
type: "string";
|
|
24919
|
+
};
|
|
24920
|
+
descriptionTranslationKey: {
|
|
24921
|
+
type: "string";
|
|
24922
|
+
};
|
|
24923
|
+
excludes: {
|
|
24924
|
+
items: {
|
|
24925
|
+
properties: any;
|
|
24926
|
+
additionalProperties: false;
|
|
24927
|
+
type: "object";
|
|
24928
|
+
required: "key"[];
|
|
24929
|
+
};
|
|
24930
|
+
type: "array";
|
|
24931
|
+
};
|
|
24932
|
+
catalogSwitcherLabelTranslationKey: {
|
|
24933
|
+
type: "string";
|
|
24934
|
+
};
|
|
24935
|
+
};
|
|
24936
|
+
additionalProperties: false;
|
|
24937
|
+
type: "object";
|
|
24938
|
+
};
|
|
24939
|
+
};
|
|
24940
|
+
additionalProperties: false;
|
|
24941
|
+
type: "object";
|
|
24942
|
+
};
|
|
24943
|
+
};
|
|
24944
|
+
additionalProperties: false;
|
|
24945
|
+
type: "object";
|
|
24946
|
+
};
|
|
23391
24947
|
catalogClassic: {
|
|
23392
24948
|
patternProperties: {
|
|
23393
24949
|
".*": {
|
|
@@ -23615,6 +25171,70 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
23615
25171
|
color: {
|
|
23616
25172
|
type: "string";
|
|
23617
25173
|
};
|
|
25174
|
+
preprocessors: {
|
|
25175
|
+
additionalProperties: true;
|
|
25176
|
+
type: "object";
|
|
25177
|
+
};
|
|
25178
|
+
oas2Preprocessors: {
|
|
25179
|
+
additionalProperties: true;
|
|
25180
|
+
type: "object";
|
|
25181
|
+
};
|
|
25182
|
+
oas3_0Preprocessors: {
|
|
25183
|
+
additionalProperties: true;
|
|
25184
|
+
type: "object";
|
|
25185
|
+
};
|
|
25186
|
+
oas3_1Preprocessors: {
|
|
25187
|
+
additionalProperties: true;
|
|
25188
|
+
type: "object";
|
|
25189
|
+
};
|
|
25190
|
+
async2Preprocessors: {
|
|
25191
|
+
additionalProperties: true;
|
|
25192
|
+
type: "object";
|
|
25193
|
+
};
|
|
25194
|
+
async3Preprocessors: {
|
|
25195
|
+
additionalProperties: true;
|
|
25196
|
+
type: "object";
|
|
25197
|
+
};
|
|
25198
|
+
arazzo1Preprocessors: {
|
|
25199
|
+
additionalProperties: true;
|
|
25200
|
+
type: "object";
|
|
25201
|
+
};
|
|
25202
|
+
overlay1Preprocessors: {
|
|
25203
|
+
additionalProperties: true;
|
|
25204
|
+
type: "object";
|
|
25205
|
+
};
|
|
25206
|
+
decorators: {
|
|
25207
|
+
additionalProperties: true;
|
|
25208
|
+
type: "object";
|
|
25209
|
+
};
|
|
25210
|
+
oas2Decorators: {
|
|
25211
|
+
additionalProperties: true;
|
|
25212
|
+
type: "object";
|
|
25213
|
+
};
|
|
25214
|
+
oas3_0Decorators: {
|
|
25215
|
+
additionalProperties: true;
|
|
25216
|
+
type: "object";
|
|
25217
|
+
};
|
|
25218
|
+
oas3_1Decorators: {
|
|
25219
|
+
additionalProperties: true;
|
|
25220
|
+
type: "object";
|
|
25221
|
+
};
|
|
25222
|
+
async2Decorators: {
|
|
25223
|
+
additionalProperties: true;
|
|
25224
|
+
type: "object";
|
|
25225
|
+
};
|
|
25226
|
+
async3Decorators: {
|
|
25227
|
+
additionalProperties: true;
|
|
25228
|
+
type: "object";
|
|
25229
|
+
};
|
|
25230
|
+
arazzo1Decorators: {
|
|
25231
|
+
additionalProperties: true;
|
|
25232
|
+
type: "object";
|
|
25233
|
+
};
|
|
25234
|
+
overlay1Decorators: {
|
|
25235
|
+
additionalProperties: true;
|
|
25236
|
+
type: "object";
|
|
25237
|
+
};
|
|
23618
25238
|
rules: {
|
|
23619
25239
|
additionalProperties: {
|
|
23620
25240
|
oneOf: ({
|
|
@@ -27452,6 +29072,306 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
27452
29072
|
};
|
|
27453
29073
|
type: "object";
|
|
27454
29074
|
};
|
|
29075
|
+
entitiesCatalog: {
|
|
29076
|
+
properties: {
|
|
29077
|
+
catalogs: {
|
|
29078
|
+
properties: {
|
|
29079
|
+
all: {
|
|
29080
|
+
properties: {
|
|
29081
|
+
includes: {
|
|
29082
|
+
items: {
|
|
29083
|
+
properties: any;
|
|
29084
|
+
additionalProperties: false;
|
|
29085
|
+
type: "object";
|
|
29086
|
+
required: "type"[];
|
|
29087
|
+
};
|
|
29088
|
+
type: "array";
|
|
29089
|
+
};
|
|
29090
|
+
slug: {
|
|
29091
|
+
type: "string";
|
|
29092
|
+
};
|
|
29093
|
+
hide: {
|
|
29094
|
+
type: "boolean";
|
|
29095
|
+
};
|
|
29096
|
+
filters: {
|
|
29097
|
+
items: {
|
|
29098
|
+
properties: any;
|
|
29099
|
+
additionalProperties: false;
|
|
29100
|
+
type: "object";
|
|
29101
|
+
required: ("title" | "property")[];
|
|
29102
|
+
};
|
|
29103
|
+
type: "array";
|
|
29104
|
+
};
|
|
29105
|
+
titleTranslationKey: {
|
|
29106
|
+
type: "string";
|
|
29107
|
+
};
|
|
29108
|
+
descriptionTranslationKey: {
|
|
29109
|
+
type: "string";
|
|
29110
|
+
};
|
|
29111
|
+
excludes: {
|
|
29112
|
+
items: {
|
|
29113
|
+
properties: any;
|
|
29114
|
+
additionalProperties: false;
|
|
29115
|
+
type: "object";
|
|
29116
|
+
required: "key"[];
|
|
29117
|
+
};
|
|
29118
|
+
type: "array";
|
|
29119
|
+
};
|
|
29120
|
+
catalogSwitcherLabelTranslationKey: {
|
|
29121
|
+
type: "string";
|
|
29122
|
+
};
|
|
29123
|
+
};
|
|
29124
|
+
additionalProperties: false;
|
|
29125
|
+
type: "object";
|
|
29126
|
+
};
|
|
29127
|
+
services: {
|
|
29128
|
+
properties: {
|
|
29129
|
+
includes: {
|
|
29130
|
+
items: {
|
|
29131
|
+
properties: any;
|
|
29132
|
+
additionalProperties: false;
|
|
29133
|
+
type: "object";
|
|
29134
|
+
required: "type"[];
|
|
29135
|
+
};
|
|
29136
|
+
type: "array";
|
|
29137
|
+
};
|
|
29138
|
+
slug: {
|
|
29139
|
+
type: "string";
|
|
29140
|
+
};
|
|
29141
|
+
hide: {
|
|
29142
|
+
type: "boolean";
|
|
29143
|
+
};
|
|
29144
|
+
filters: {
|
|
29145
|
+
items: {
|
|
29146
|
+
properties: any;
|
|
29147
|
+
additionalProperties: false;
|
|
29148
|
+
type: "object";
|
|
29149
|
+
required: ("title" | "property")[];
|
|
29150
|
+
};
|
|
29151
|
+
type: "array";
|
|
29152
|
+
};
|
|
29153
|
+
titleTranslationKey: {
|
|
29154
|
+
type: "string";
|
|
29155
|
+
};
|
|
29156
|
+
descriptionTranslationKey: {
|
|
29157
|
+
type: "string";
|
|
29158
|
+
};
|
|
29159
|
+
excludes: {
|
|
29160
|
+
items: {
|
|
29161
|
+
properties: any;
|
|
29162
|
+
additionalProperties: false;
|
|
29163
|
+
type: "object";
|
|
29164
|
+
required: "key"[];
|
|
29165
|
+
};
|
|
29166
|
+
type: "array";
|
|
29167
|
+
};
|
|
29168
|
+
catalogSwitcherLabelTranslationKey: {
|
|
29169
|
+
type: "string";
|
|
29170
|
+
};
|
|
29171
|
+
};
|
|
29172
|
+
additionalProperties: false;
|
|
29173
|
+
type: "object";
|
|
29174
|
+
};
|
|
29175
|
+
domains: {
|
|
29176
|
+
properties: {
|
|
29177
|
+
includes: {
|
|
29178
|
+
items: {
|
|
29179
|
+
properties: any;
|
|
29180
|
+
additionalProperties: false;
|
|
29181
|
+
type: "object";
|
|
29182
|
+
required: "type"[];
|
|
29183
|
+
};
|
|
29184
|
+
type: "array";
|
|
29185
|
+
};
|
|
29186
|
+
slug: {
|
|
29187
|
+
type: "string";
|
|
29188
|
+
};
|
|
29189
|
+
hide: {
|
|
29190
|
+
type: "boolean";
|
|
29191
|
+
};
|
|
29192
|
+
filters: {
|
|
29193
|
+
items: {
|
|
29194
|
+
properties: any;
|
|
29195
|
+
additionalProperties: false;
|
|
29196
|
+
type: "object";
|
|
29197
|
+
required: ("title" | "property")[];
|
|
29198
|
+
};
|
|
29199
|
+
type: "array";
|
|
29200
|
+
};
|
|
29201
|
+
titleTranslationKey: {
|
|
29202
|
+
type: "string";
|
|
29203
|
+
};
|
|
29204
|
+
descriptionTranslationKey: {
|
|
29205
|
+
type: "string";
|
|
29206
|
+
};
|
|
29207
|
+
excludes: {
|
|
29208
|
+
items: {
|
|
29209
|
+
properties: any;
|
|
29210
|
+
additionalProperties: false;
|
|
29211
|
+
type: "object";
|
|
29212
|
+
required: "key"[];
|
|
29213
|
+
};
|
|
29214
|
+
type: "array";
|
|
29215
|
+
};
|
|
29216
|
+
catalogSwitcherLabelTranslationKey: {
|
|
29217
|
+
type: "string";
|
|
29218
|
+
};
|
|
29219
|
+
};
|
|
29220
|
+
additionalProperties: false;
|
|
29221
|
+
type: "object";
|
|
29222
|
+
};
|
|
29223
|
+
teams: {
|
|
29224
|
+
properties: {
|
|
29225
|
+
includes: {
|
|
29226
|
+
items: {
|
|
29227
|
+
properties: any;
|
|
29228
|
+
additionalProperties: false;
|
|
29229
|
+
type: "object";
|
|
29230
|
+
required: "type"[];
|
|
29231
|
+
};
|
|
29232
|
+
type: "array";
|
|
29233
|
+
};
|
|
29234
|
+
slug: {
|
|
29235
|
+
type: "string";
|
|
29236
|
+
};
|
|
29237
|
+
hide: {
|
|
29238
|
+
type: "boolean";
|
|
29239
|
+
};
|
|
29240
|
+
filters: {
|
|
29241
|
+
items: {
|
|
29242
|
+
properties: any;
|
|
29243
|
+
additionalProperties: false;
|
|
29244
|
+
type: "object";
|
|
29245
|
+
required: ("title" | "property")[];
|
|
29246
|
+
};
|
|
29247
|
+
type: "array";
|
|
29248
|
+
};
|
|
29249
|
+
titleTranslationKey: {
|
|
29250
|
+
type: "string";
|
|
29251
|
+
};
|
|
29252
|
+
descriptionTranslationKey: {
|
|
29253
|
+
type: "string";
|
|
29254
|
+
};
|
|
29255
|
+
excludes: {
|
|
29256
|
+
items: {
|
|
29257
|
+
properties: any;
|
|
29258
|
+
additionalProperties: false;
|
|
29259
|
+
type: "object";
|
|
29260
|
+
required: "key"[];
|
|
29261
|
+
};
|
|
29262
|
+
type: "array";
|
|
29263
|
+
};
|
|
29264
|
+
catalogSwitcherLabelTranslationKey: {
|
|
29265
|
+
type: "string";
|
|
29266
|
+
};
|
|
29267
|
+
};
|
|
29268
|
+
additionalProperties: false;
|
|
29269
|
+
type: "object";
|
|
29270
|
+
};
|
|
29271
|
+
users: {
|
|
29272
|
+
properties: {
|
|
29273
|
+
includes: {
|
|
29274
|
+
items: {
|
|
29275
|
+
properties: any;
|
|
29276
|
+
additionalProperties: false;
|
|
29277
|
+
type: "object";
|
|
29278
|
+
required: "type"[];
|
|
29279
|
+
};
|
|
29280
|
+
type: "array";
|
|
29281
|
+
};
|
|
29282
|
+
slug: {
|
|
29283
|
+
type: "string";
|
|
29284
|
+
};
|
|
29285
|
+
hide: {
|
|
29286
|
+
type: "boolean";
|
|
29287
|
+
};
|
|
29288
|
+
filters: {
|
|
29289
|
+
items: {
|
|
29290
|
+
properties: any;
|
|
29291
|
+
additionalProperties: false;
|
|
29292
|
+
type: "object";
|
|
29293
|
+
required: ("title" | "property")[];
|
|
29294
|
+
};
|
|
29295
|
+
type: "array";
|
|
29296
|
+
};
|
|
29297
|
+
titleTranslationKey: {
|
|
29298
|
+
type: "string";
|
|
29299
|
+
};
|
|
29300
|
+
descriptionTranslationKey: {
|
|
29301
|
+
type: "string";
|
|
29302
|
+
};
|
|
29303
|
+
excludes: {
|
|
29304
|
+
items: {
|
|
29305
|
+
properties: any;
|
|
29306
|
+
additionalProperties: false;
|
|
29307
|
+
type: "object";
|
|
29308
|
+
required: "key"[];
|
|
29309
|
+
};
|
|
29310
|
+
type: "array";
|
|
29311
|
+
};
|
|
29312
|
+
catalogSwitcherLabelTranslationKey: {
|
|
29313
|
+
type: "string";
|
|
29314
|
+
};
|
|
29315
|
+
};
|
|
29316
|
+
additionalProperties: false;
|
|
29317
|
+
type: "object";
|
|
29318
|
+
};
|
|
29319
|
+
apiDescriptions: {
|
|
29320
|
+
properties: {
|
|
29321
|
+
includes: {
|
|
29322
|
+
items: {
|
|
29323
|
+
properties: any;
|
|
29324
|
+
additionalProperties: false;
|
|
29325
|
+
type: "object";
|
|
29326
|
+
required: "type"[];
|
|
29327
|
+
};
|
|
29328
|
+
type: "array";
|
|
29329
|
+
};
|
|
29330
|
+
slug: {
|
|
29331
|
+
type: "string";
|
|
29332
|
+
};
|
|
29333
|
+
hide: {
|
|
29334
|
+
type: "boolean";
|
|
29335
|
+
};
|
|
29336
|
+
filters: {
|
|
29337
|
+
items: {
|
|
29338
|
+
properties: any;
|
|
29339
|
+
additionalProperties: false;
|
|
29340
|
+
type: "object";
|
|
29341
|
+
required: ("title" | "property")[];
|
|
29342
|
+
};
|
|
29343
|
+
type: "array";
|
|
29344
|
+
};
|
|
29345
|
+
titleTranslationKey: {
|
|
29346
|
+
type: "string";
|
|
29347
|
+
};
|
|
29348
|
+
descriptionTranslationKey: {
|
|
29349
|
+
type: "string";
|
|
29350
|
+
};
|
|
29351
|
+
excludes: {
|
|
29352
|
+
items: {
|
|
29353
|
+
properties: any;
|
|
29354
|
+
additionalProperties: false;
|
|
29355
|
+
type: "object";
|
|
29356
|
+
required: "key"[];
|
|
29357
|
+
};
|
|
29358
|
+
type: "array";
|
|
29359
|
+
};
|
|
29360
|
+
catalogSwitcherLabelTranslationKey: {
|
|
29361
|
+
type: "string";
|
|
29362
|
+
};
|
|
29363
|
+
};
|
|
29364
|
+
additionalProperties: false;
|
|
29365
|
+
type: "object";
|
|
29366
|
+
};
|
|
29367
|
+
};
|
|
29368
|
+
additionalProperties: false;
|
|
29369
|
+
type: "object";
|
|
29370
|
+
};
|
|
29371
|
+
};
|
|
29372
|
+
additionalProperties: false;
|
|
29373
|
+
type: "object";
|
|
29374
|
+
};
|
|
27455
29375
|
catalogClassic: {
|
|
27456
29376
|
patternProperties: {
|
|
27457
29377
|
".*": {
|
|
@@ -27679,6 +29599,70 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
27679
29599
|
color: {
|
|
27680
29600
|
type: "string";
|
|
27681
29601
|
};
|
|
29602
|
+
preprocessors: {
|
|
29603
|
+
additionalProperties: true;
|
|
29604
|
+
type: "object";
|
|
29605
|
+
};
|
|
29606
|
+
oas2Preprocessors: {
|
|
29607
|
+
additionalProperties: true;
|
|
29608
|
+
type: "object";
|
|
29609
|
+
};
|
|
29610
|
+
oas3_0Preprocessors: {
|
|
29611
|
+
additionalProperties: true;
|
|
29612
|
+
type: "object";
|
|
29613
|
+
};
|
|
29614
|
+
oas3_1Preprocessors: {
|
|
29615
|
+
additionalProperties: true;
|
|
29616
|
+
type: "object";
|
|
29617
|
+
};
|
|
29618
|
+
async2Preprocessors: {
|
|
29619
|
+
additionalProperties: true;
|
|
29620
|
+
type: "object";
|
|
29621
|
+
};
|
|
29622
|
+
async3Preprocessors: {
|
|
29623
|
+
additionalProperties: true;
|
|
29624
|
+
type: "object";
|
|
29625
|
+
};
|
|
29626
|
+
arazzo1Preprocessors: {
|
|
29627
|
+
additionalProperties: true;
|
|
29628
|
+
type: "object";
|
|
29629
|
+
};
|
|
29630
|
+
overlay1Preprocessors: {
|
|
29631
|
+
additionalProperties: true;
|
|
29632
|
+
type: "object";
|
|
29633
|
+
};
|
|
29634
|
+
decorators: {
|
|
29635
|
+
additionalProperties: true;
|
|
29636
|
+
type: "object";
|
|
29637
|
+
};
|
|
29638
|
+
oas2Decorators: {
|
|
29639
|
+
additionalProperties: true;
|
|
29640
|
+
type: "object";
|
|
29641
|
+
};
|
|
29642
|
+
oas3_0Decorators: {
|
|
29643
|
+
additionalProperties: true;
|
|
29644
|
+
type: "object";
|
|
29645
|
+
};
|
|
29646
|
+
oas3_1Decorators: {
|
|
29647
|
+
additionalProperties: true;
|
|
29648
|
+
type: "object";
|
|
29649
|
+
};
|
|
29650
|
+
async2Decorators: {
|
|
29651
|
+
additionalProperties: true;
|
|
29652
|
+
type: "object";
|
|
29653
|
+
};
|
|
29654
|
+
async3Decorators: {
|
|
29655
|
+
additionalProperties: true;
|
|
29656
|
+
type: "object";
|
|
29657
|
+
};
|
|
29658
|
+
arazzo1Decorators: {
|
|
29659
|
+
additionalProperties: true;
|
|
29660
|
+
type: "object";
|
|
29661
|
+
};
|
|
29662
|
+
overlay1Decorators: {
|
|
29663
|
+
additionalProperties: true;
|
|
29664
|
+
type: "object";
|
|
29665
|
+
};
|
|
27682
29666
|
rules: {
|
|
27683
29667
|
additionalProperties: {
|
|
27684
29668
|
oneOf: ({
|
|
@@ -27829,7 +29813,7 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
27829
29813
|
additionalProperties: true;
|
|
27830
29814
|
type: "object";
|
|
27831
29815
|
};
|
|
27832
|
-
|
|
29816
|
+
arazzo1Preprocessors: {
|
|
27833
29817
|
additionalProperties: true;
|
|
27834
29818
|
type: "object";
|
|
27835
29819
|
};
|
|
@@ -31710,7 +33694,7 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
31710
33694
|
additionalProperties: true;
|
|
31711
33695
|
type: "object";
|
|
31712
33696
|
};
|
|
31713
|
-
|
|
33697
|
+
arazzo1Preprocessors: {
|
|
31714
33698
|
additionalProperties: true;
|
|
31715
33699
|
type: "object";
|
|
31716
33700
|
};
|
|
@@ -36239,6 +38223,570 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
36239
38223
|
};
|
|
36240
38224
|
};
|
|
36241
38225
|
};
|
|
38226
|
+
readonly entitiesCatalog: {
|
|
38227
|
+
readonly type: "object";
|
|
38228
|
+
readonly properties: {
|
|
38229
|
+
readonly catalogs: {
|
|
38230
|
+
readonly type: "object";
|
|
38231
|
+
readonly properties: {
|
|
38232
|
+
readonly all: {
|
|
38233
|
+
readonly type: "object";
|
|
38234
|
+
readonly properties: {
|
|
38235
|
+
readonly slug: {
|
|
38236
|
+
readonly type: "string";
|
|
38237
|
+
};
|
|
38238
|
+
readonly hide: {
|
|
38239
|
+
readonly type: "boolean";
|
|
38240
|
+
};
|
|
38241
|
+
readonly includes: {
|
|
38242
|
+
readonly type: "array";
|
|
38243
|
+
readonly items: {
|
|
38244
|
+
readonly type: "object";
|
|
38245
|
+
readonly required: readonly ["type"];
|
|
38246
|
+
readonly properties: {
|
|
38247
|
+
readonly type: {
|
|
38248
|
+
readonly type: "string";
|
|
38249
|
+
};
|
|
38250
|
+
};
|
|
38251
|
+
readonly additionalProperties: false;
|
|
38252
|
+
};
|
|
38253
|
+
};
|
|
38254
|
+
readonly excludes: {
|
|
38255
|
+
readonly type: "array";
|
|
38256
|
+
readonly items: {
|
|
38257
|
+
readonly type: "object";
|
|
38258
|
+
readonly required: readonly ["key"];
|
|
38259
|
+
readonly properties: {
|
|
38260
|
+
readonly key: {
|
|
38261
|
+
readonly type: "string";
|
|
38262
|
+
};
|
|
38263
|
+
};
|
|
38264
|
+
readonly additionalProperties: false;
|
|
38265
|
+
};
|
|
38266
|
+
};
|
|
38267
|
+
readonly filters: {
|
|
38268
|
+
readonly type: "array";
|
|
38269
|
+
readonly items: {
|
|
38270
|
+
readonly type: "object";
|
|
38271
|
+
readonly required: readonly ["property", "title"];
|
|
38272
|
+
readonly properties: {
|
|
38273
|
+
readonly property: {
|
|
38274
|
+
readonly type: "string";
|
|
38275
|
+
};
|
|
38276
|
+
readonly hide: {
|
|
38277
|
+
readonly type: "boolean";
|
|
38278
|
+
};
|
|
38279
|
+
readonly label: {
|
|
38280
|
+
readonly type: "string";
|
|
38281
|
+
};
|
|
38282
|
+
readonly options: {
|
|
38283
|
+
readonly type: "array";
|
|
38284
|
+
readonly items: {
|
|
38285
|
+
readonly type: "string";
|
|
38286
|
+
};
|
|
38287
|
+
};
|
|
38288
|
+
readonly type: {
|
|
38289
|
+
readonly type: "string";
|
|
38290
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
38291
|
+
readonly default: "checkboxes";
|
|
38292
|
+
};
|
|
38293
|
+
readonly title: {
|
|
38294
|
+
readonly type: "string";
|
|
38295
|
+
};
|
|
38296
|
+
readonly titleTranslationKey: {
|
|
38297
|
+
readonly type: "string";
|
|
38298
|
+
};
|
|
38299
|
+
readonly parentFilter: {
|
|
38300
|
+
readonly type: "string";
|
|
38301
|
+
};
|
|
38302
|
+
readonly valuesMapping: {
|
|
38303
|
+
readonly type: "object";
|
|
38304
|
+
readonly additionalProperties: {
|
|
38305
|
+
readonly type: "string";
|
|
38306
|
+
};
|
|
38307
|
+
};
|
|
38308
|
+
};
|
|
38309
|
+
readonly additionalProperties: false;
|
|
38310
|
+
};
|
|
38311
|
+
};
|
|
38312
|
+
readonly titleTranslationKey: {
|
|
38313
|
+
readonly type: "string";
|
|
38314
|
+
};
|
|
38315
|
+
readonly descriptionTranslationKey: {
|
|
38316
|
+
readonly type: "string";
|
|
38317
|
+
};
|
|
38318
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
38319
|
+
readonly type: "string";
|
|
38320
|
+
};
|
|
38321
|
+
};
|
|
38322
|
+
readonly additionalProperties: false;
|
|
38323
|
+
};
|
|
38324
|
+
readonly services: {
|
|
38325
|
+
readonly type: "object";
|
|
38326
|
+
readonly properties: {
|
|
38327
|
+
readonly slug: {
|
|
38328
|
+
readonly type: "string";
|
|
38329
|
+
};
|
|
38330
|
+
readonly hide: {
|
|
38331
|
+
readonly type: "boolean";
|
|
38332
|
+
};
|
|
38333
|
+
readonly includes: {
|
|
38334
|
+
readonly type: "array";
|
|
38335
|
+
readonly items: {
|
|
38336
|
+
readonly type: "object";
|
|
38337
|
+
readonly required: readonly ["type"];
|
|
38338
|
+
readonly properties: {
|
|
38339
|
+
readonly type: {
|
|
38340
|
+
readonly type: "string";
|
|
38341
|
+
};
|
|
38342
|
+
};
|
|
38343
|
+
readonly additionalProperties: false;
|
|
38344
|
+
};
|
|
38345
|
+
};
|
|
38346
|
+
readonly excludes: {
|
|
38347
|
+
readonly type: "array";
|
|
38348
|
+
readonly items: {
|
|
38349
|
+
readonly type: "object";
|
|
38350
|
+
readonly required: readonly ["key"];
|
|
38351
|
+
readonly properties: {
|
|
38352
|
+
readonly key: {
|
|
38353
|
+
readonly type: "string";
|
|
38354
|
+
};
|
|
38355
|
+
};
|
|
38356
|
+
readonly additionalProperties: false;
|
|
38357
|
+
};
|
|
38358
|
+
};
|
|
38359
|
+
readonly filters: {
|
|
38360
|
+
readonly type: "array";
|
|
38361
|
+
readonly items: {
|
|
38362
|
+
readonly type: "object";
|
|
38363
|
+
readonly required: readonly ["property", "title"];
|
|
38364
|
+
readonly properties: {
|
|
38365
|
+
readonly property: {
|
|
38366
|
+
readonly type: "string";
|
|
38367
|
+
};
|
|
38368
|
+
readonly hide: {
|
|
38369
|
+
readonly type: "boolean";
|
|
38370
|
+
};
|
|
38371
|
+
readonly label: {
|
|
38372
|
+
readonly type: "string";
|
|
38373
|
+
};
|
|
38374
|
+
readonly options: {
|
|
38375
|
+
readonly type: "array";
|
|
38376
|
+
readonly items: {
|
|
38377
|
+
readonly type: "string";
|
|
38378
|
+
};
|
|
38379
|
+
};
|
|
38380
|
+
readonly type: {
|
|
38381
|
+
readonly type: "string";
|
|
38382
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
38383
|
+
readonly default: "checkboxes";
|
|
38384
|
+
};
|
|
38385
|
+
readonly title: {
|
|
38386
|
+
readonly type: "string";
|
|
38387
|
+
};
|
|
38388
|
+
readonly titleTranslationKey: {
|
|
38389
|
+
readonly type: "string";
|
|
38390
|
+
};
|
|
38391
|
+
readonly parentFilter: {
|
|
38392
|
+
readonly type: "string";
|
|
38393
|
+
};
|
|
38394
|
+
readonly valuesMapping: {
|
|
38395
|
+
readonly type: "object";
|
|
38396
|
+
readonly additionalProperties: {
|
|
38397
|
+
readonly type: "string";
|
|
38398
|
+
};
|
|
38399
|
+
};
|
|
38400
|
+
};
|
|
38401
|
+
readonly additionalProperties: false;
|
|
38402
|
+
};
|
|
38403
|
+
};
|
|
38404
|
+
readonly titleTranslationKey: {
|
|
38405
|
+
readonly type: "string";
|
|
38406
|
+
};
|
|
38407
|
+
readonly descriptionTranslationKey: {
|
|
38408
|
+
readonly type: "string";
|
|
38409
|
+
};
|
|
38410
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
38411
|
+
readonly type: "string";
|
|
38412
|
+
};
|
|
38413
|
+
};
|
|
38414
|
+
readonly additionalProperties: false;
|
|
38415
|
+
};
|
|
38416
|
+
readonly domains: {
|
|
38417
|
+
readonly type: "object";
|
|
38418
|
+
readonly properties: {
|
|
38419
|
+
readonly slug: {
|
|
38420
|
+
readonly type: "string";
|
|
38421
|
+
};
|
|
38422
|
+
readonly hide: {
|
|
38423
|
+
readonly type: "boolean";
|
|
38424
|
+
};
|
|
38425
|
+
readonly includes: {
|
|
38426
|
+
readonly type: "array";
|
|
38427
|
+
readonly items: {
|
|
38428
|
+
readonly type: "object";
|
|
38429
|
+
readonly required: readonly ["type"];
|
|
38430
|
+
readonly properties: {
|
|
38431
|
+
readonly type: {
|
|
38432
|
+
readonly type: "string";
|
|
38433
|
+
};
|
|
38434
|
+
};
|
|
38435
|
+
readonly additionalProperties: false;
|
|
38436
|
+
};
|
|
38437
|
+
};
|
|
38438
|
+
readonly excludes: {
|
|
38439
|
+
readonly type: "array";
|
|
38440
|
+
readonly items: {
|
|
38441
|
+
readonly type: "object";
|
|
38442
|
+
readonly required: readonly ["key"];
|
|
38443
|
+
readonly properties: {
|
|
38444
|
+
readonly key: {
|
|
38445
|
+
readonly type: "string";
|
|
38446
|
+
};
|
|
38447
|
+
};
|
|
38448
|
+
readonly additionalProperties: false;
|
|
38449
|
+
};
|
|
38450
|
+
};
|
|
38451
|
+
readonly filters: {
|
|
38452
|
+
readonly type: "array";
|
|
38453
|
+
readonly items: {
|
|
38454
|
+
readonly type: "object";
|
|
38455
|
+
readonly required: readonly ["property", "title"];
|
|
38456
|
+
readonly properties: {
|
|
38457
|
+
readonly property: {
|
|
38458
|
+
readonly type: "string";
|
|
38459
|
+
};
|
|
38460
|
+
readonly hide: {
|
|
38461
|
+
readonly type: "boolean";
|
|
38462
|
+
};
|
|
38463
|
+
readonly label: {
|
|
38464
|
+
readonly type: "string";
|
|
38465
|
+
};
|
|
38466
|
+
readonly options: {
|
|
38467
|
+
readonly type: "array";
|
|
38468
|
+
readonly items: {
|
|
38469
|
+
readonly type: "string";
|
|
38470
|
+
};
|
|
38471
|
+
};
|
|
38472
|
+
readonly type: {
|
|
38473
|
+
readonly type: "string";
|
|
38474
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
38475
|
+
readonly default: "checkboxes";
|
|
38476
|
+
};
|
|
38477
|
+
readonly title: {
|
|
38478
|
+
readonly type: "string";
|
|
38479
|
+
};
|
|
38480
|
+
readonly titleTranslationKey: {
|
|
38481
|
+
readonly type: "string";
|
|
38482
|
+
};
|
|
38483
|
+
readonly parentFilter: {
|
|
38484
|
+
readonly type: "string";
|
|
38485
|
+
};
|
|
38486
|
+
readonly valuesMapping: {
|
|
38487
|
+
readonly type: "object";
|
|
38488
|
+
readonly additionalProperties: {
|
|
38489
|
+
readonly type: "string";
|
|
38490
|
+
};
|
|
38491
|
+
};
|
|
38492
|
+
};
|
|
38493
|
+
readonly additionalProperties: false;
|
|
38494
|
+
};
|
|
38495
|
+
};
|
|
38496
|
+
readonly titleTranslationKey: {
|
|
38497
|
+
readonly type: "string";
|
|
38498
|
+
};
|
|
38499
|
+
readonly descriptionTranslationKey: {
|
|
38500
|
+
readonly type: "string";
|
|
38501
|
+
};
|
|
38502
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
38503
|
+
readonly type: "string";
|
|
38504
|
+
};
|
|
38505
|
+
};
|
|
38506
|
+
readonly additionalProperties: false;
|
|
38507
|
+
};
|
|
38508
|
+
readonly teams: {
|
|
38509
|
+
readonly type: "object";
|
|
38510
|
+
readonly properties: {
|
|
38511
|
+
readonly slug: {
|
|
38512
|
+
readonly type: "string";
|
|
38513
|
+
};
|
|
38514
|
+
readonly hide: {
|
|
38515
|
+
readonly type: "boolean";
|
|
38516
|
+
};
|
|
38517
|
+
readonly includes: {
|
|
38518
|
+
readonly type: "array";
|
|
38519
|
+
readonly items: {
|
|
38520
|
+
readonly type: "object";
|
|
38521
|
+
readonly required: readonly ["type"];
|
|
38522
|
+
readonly properties: {
|
|
38523
|
+
readonly type: {
|
|
38524
|
+
readonly type: "string";
|
|
38525
|
+
};
|
|
38526
|
+
};
|
|
38527
|
+
readonly additionalProperties: false;
|
|
38528
|
+
};
|
|
38529
|
+
};
|
|
38530
|
+
readonly excludes: {
|
|
38531
|
+
readonly type: "array";
|
|
38532
|
+
readonly items: {
|
|
38533
|
+
readonly type: "object";
|
|
38534
|
+
readonly required: readonly ["key"];
|
|
38535
|
+
readonly properties: {
|
|
38536
|
+
readonly key: {
|
|
38537
|
+
readonly type: "string";
|
|
38538
|
+
};
|
|
38539
|
+
};
|
|
38540
|
+
readonly additionalProperties: false;
|
|
38541
|
+
};
|
|
38542
|
+
};
|
|
38543
|
+
readonly filters: {
|
|
38544
|
+
readonly type: "array";
|
|
38545
|
+
readonly items: {
|
|
38546
|
+
readonly type: "object";
|
|
38547
|
+
readonly required: readonly ["property", "title"];
|
|
38548
|
+
readonly properties: {
|
|
38549
|
+
readonly property: {
|
|
38550
|
+
readonly type: "string";
|
|
38551
|
+
};
|
|
38552
|
+
readonly hide: {
|
|
38553
|
+
readonly type: "boolean";
|
|
38554
|
+
};
|
|
38555
|
+
readonly label: {
|
|
38556
|
+
readonly type: "string";
|
|
38557
|
+
};
|
|
38558
|
+
readonly options: {
|
|
38559
|
+
readonly type: "array";
|
|
38560
|
+
readonly items: {
|
|
38561
|
+
readonly type: "string";
|
|
38562
|
+
};
|
|
38563
|
+
};
|
|
38564
|
+
readonly type: {
|
|
38565
|
+
readonly type: "string";
|
|
38566
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
38567
|
+
readonly default: "checkboxes";
|
|
38568
|
+
};
|
|
38569
|
+
readonly title: {
|
|
38570
|
+
readonly type: "string";
|
|
38571
|
+
};
|
|
38572
|
+
readonly titleTranslationKey: {
|
|
38573
|
+
readonly type: "string";
|
|
38574
|
+
};
|
|
38575
|
+
readonly parentFilter: {
|
|
38576
|
+
readonly type: "string";
|
|
38577
|
+
};
|
|
38578
|
+
readonly valuesMapping: {
|
|
38579
|
+
readonly type: "object";
|
|
38580
|
+
readonly additionalProperties: {
|
|
38581
|
+
readonly type: "string";
|
|
38582
|
+
};
|
|
38583
|
+
};
|
|
38584
|
+
};
|
|
38585
|
+
readonly additionalProperties: false;
|
|
38586
|
+
};
|
|
38587
|
+
};
|
|
38588
|
+
readonly titleTranslationKey: {
|
|
38589
|
+
readonly type: "string";
|
|
38590
|
+
};
|
|
38591
|
+
readonly descriptionTranslationKey: {
|
|
38592
|
+
readonly type: "string";
|
|
38593
|
+
};
|
|
38594
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
38595
|
+
readonly type: "string";
|
|
38596
|
+
};
|
|
38597
|
+
};
|
|
38598
|
+
readonly additionalProperties: false;
|
|
38599
|
+
};
|
|
38600
|
+
readonly users: {
|
|
38601
|
+
readonly type: "object";
|
|
38602
|
+
readonly properties: {
|
|
38603
|
+
readonly slug: {
|
|
38604
|
+
readonly type: "string";
|
|
38605
|
+
};
|
|
38606
|
+
readonly hide: {
|
|
38607
|
+
readonly type: "boolean";
|
|
38608
|
+
};
|
|
38609
|
+
readonly includes: {
|
|
38610
|
+
readonly type: "array";
|
|
38611
|
+
readonly items: {
|
|
38612
|
+
readonly type: "object";
|
|
38613
|
+
readonly required: readonly ["type"];
|
|
38614
|
+
readonly properties: {
|
|
38615
|
+
readonly type: {
|
|
38616
|
+
readonly type: "string";
|
|
38617
|
+
};
|
|
38618
|
+
};
|
|
38619
|
+
readonly additionalProperties: false;
|
|
38620
|
+
};
|
|
38621
|
+
};
|
|
38622
|
+
readonly excludes: {
|
|
38623
|
+
readonly type: "array";
|
|
38624
|
+
readonly items: {
|
|
38625
|
+
readonly type: "object";
|
|
38626
|
+
readonly required: readonly ["key"];
|
|
38627
|
+
readonly properties: {
|
|
38628
|
+
readonly key: {
|
|
38629
|
+
readonly type: "string";
|
|
38630
|
+
};
|
|
38631
|
+
};
|
|
38632
|
+
readonly additionalProperties: false;
|
|
38633
|
+
};
|
|
38634
|
+
};
|
|
38635
|
+
readonly filters: {
|
|
38636
|
+
readonly type: "array";
|
|
38637
|
+
readonly items: {
|
|
38638
|
+
readonly type: "object";
|
|
38639
|
+
readonly required: readonly ["property", "title"];
|
|
38640
|
+
readonly properties: {
|
|
38641
|
+
readonly property: {
|
|
38642
|
+
readonly type: "string";
|
|
38643
|
+
};
|
|
38644
|
+
readonly hide: {
|
|
38645
|
+
readonly type: "boolean";
|
|
38646
|
+
};
|
|
38647
|
+
readonly label: {
|
|
38648
|
+
readonly type: "string";
|
|
38649
|
+
};
|
|
38650
|
+
readonly options: {
|
|
38651
|
+
readonly type: "array";
|
|
38652
|
+
readonly items: {
|
|
38653
|
+
readonly type: "string";
|
|
38654
|
+
};
|
|
38655
|
+
};
|
|
38656
|
+
readonly type: {
|
|
38657
|
+
readonly type: "string";
|
|
38658
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
38659
|
+
readonly default: "checkboxes";
|
|
38660
|
+
};
|
|
38661
|
+
readonly title: {
|
|
38662
|
+
readonly type: "string";
|
|
38663
|
+
};
|
|
38664
|
+
readonly titleTranslationKey: {
|
|
38665
|
+
readonly type: "string";
|
|
38666
|
+
};
|
|
38667
|
+
readonly parentFilter: {
|
|
38668
|
+
readonly type: "string";
|
|
38669
|
+
};
|
|
38670
|
+
readonly valuesMapping: {
|
|
38671
|
+
readonly type: "object";
|
|
38672
|
+
readonly additionalProperties: {
|
|
38673
|
+
readonly type: "string";
|
|
38674
|
+
};
|
|
38675
|
+
};
|
|
38676
|
+
};
|
|
38677
|
+
readonly additionalProperties: false;
|
|
38678
|
+
};
|
|
38679
|
+
};
|
|
38680
|
+
readonly titleTranslationKey: {
|
|
38681
|
+
readonly type: "string";
|
|
38682
|
+
};
|
|
38683
|
+
readonly descriptionTranslationKey: {
|
|
38684
|
+
readonly type: "string";
|
|
38685
|
+
};
|
|
38686
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
38687
|
+
readonly type: "string";
|
|
38688
|
+
};
|
|
38689
|
+
};
|
|
38690
|
+
readonly additionalProperties: false;
|
|
38691
|
+
};
|
|
38692
|
+
readonly apiDescriptions: {
|
|
38693
|
+
readonly type: "object";
|
|
38694
|
+
readonly properties: {
|
|
38695
|
+
readonly slug: {
|
|
38696
|
+
readonly type: "string";
|
|
38697
|
+
};
|
|
38698
|
+
readonly hide: {
|
|
38699
|
+
readonly type: "boolean";
|
|
38700
|
+
};
|
|
38701
|
+
readonly includes: {
|
|
38702
|
+
readonly type: "array";
|
|
38703
|
+
readonly items: {
|
|
38704
|
+
readonly type: "object";
|
|
38705
|
+
readonly required: readonly ["type"];
|
|
38706
|
+
readonly properties: {
|
|
38707
|
+
readonly type: {
|
|
38708
|
+
readonly type: "string";
|
|
38709
|
+
};
|
|
38710
|
+
};
|
|
38711
|
+
readonly additionalProperties: false;
|
|
38712
|
+
};
|
|
38713
|
+
};
|
|
38714
|
+
readonly excludes: {
|
|
38715
|
+
readonly type: "array";
|
|
38716
|
+
readonly items: {
|
|
38717
|
+
readonly type: "object";
|
|
38718
|
+
readonly required: readonly ["key"];
|
|
38719
|
+
readonly properties: {
|
|
38720
|
+
readonly key: {
|
|
38721
|
+
readonly type: "string";
|
|
38722
|
+
};
|
|
38723
|
+
};
|
|
38724
|
+
readonly additionalProperties: false;
|
|
38725
|
+
};
|
|
38726
|
+
};
|
|
38727
|
+
readonly filters: {
|
|
38728
|
+
readonly type: "array";
|
|
38729
|
+
readonly items: {
|
|
38730
|
+
readonly type: "object";
|
|
38731
|
+
readonly required: readonly ["property", "title"];
|
|
38732
|
+
readonly properties: {
|
|
38733
|
+
readonly property: {
|
|
38734
|
+
readonly type: "string";
|
|
38735
|
+
};
|
|
38736
|
+
readonly hide: {
|
|
38737
|
+
readonly type: "boolean";
|
|
38738
|
+
};
|
|
38739
|
+
readonly label: {
|
|
38740
|
+
readonly type: "string";
|
|
38741
|
+
};
|
|
38742
|
+
readonly options: {
|
|
38743
|
+
readonly type: "array";
|
|
38744
|
+
readonly items: {
|
|
38745
|
+
readonly type: "string";
|
|
38746
|
+
};
|
|
38747
|
+
};
|
|
38748
|
+
readonly type: {
|
|
38749
|
+
readonly type: "string";
|
|
38750
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
38751
|
+
readonly default: "checkboxes";
|
|
38752
|
+
};
|
|
38753
|
+
readonly title: {
|
|
38754
|
+
readonly type: "string";
|
|
38755
|
+
};
|
|
38756
|
+
readonly titleTranslationKey: {
|
|
38757
|
+
readonly type: "string";
|
|
38758
|
+
};
|
|
38759
|
+
readonly parentFilter: {
|
|
38760
|
+
readonly type: "string";
|
|
38761
|
+
};
|
|
38762
|
+
readonly valuesMapping: {
|
|
38763
|
+
readonly type: "object";
|
|
38764
|
+
readonly additionalProperties: {
|
|
38765
|
+
readonly type: "string";
|
|
38766
|
+
};
|
|
38767
|
+
};
|
|
38768
|
+
};
|
|
38769
|
+
readonly additionalProperties: false;
|
|
38770
|
+
};
|
|
38771
|
+
};
|
|
38772
|
+
readonly titleTranslationKey: {
|
|
38773
|
+
readonly type: "string";
|
|
38774
|
+
};
|
|
38775
|
+
readonly descriptionTranslationKey: {
|
|
38776
|
+
readonly type: "string";
|
|
38777
|
+
};
|
|
38778
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
38779
|
+
readonly type: "string";
|
|
38780
|
+
};
|
|
38781
|
+
};
|
|
38782
|
+
readonly additionalProperties: false;
|
|
38783
|
+
};
|
|
38784
|
+
};
|
|
38785
|
+
readonly additionalProperties: false;
|
|
38786
|
+
};
|
|
38787
|
+
};
|
|
38788
|
+
readonly additionalProperties: false;
|
|
38789
|
+
};
|
|
36242
38790
|
readonly catalogClassic: {
|
|
36243
38791
|
readonly type: "object";
|
|
36244
38792
|
readonly patternProperties: {
|
|
@@ -36538,6 +39086,70 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
36538
39086
|
readonly type: "object";
|
|
36539
39087
|
readonly required: readonly ["name"];
|
|
36540
39088
|
readonly properties: {
|
|
39089
|
+
readonly decorators: {
|
|
39090
|
+
readonly type: "object";
|
|
39091
|
+
readonly additionalProperties: true;
|
|
39092
|
+
};
|
|
39093
|
+
readonly oas2Decorators: {
|
|
39094
|
+
readonly type: "object";
|
|
39095
|
+
readonly additionalProperties: true;
|
|
39096
|
+
};
|
|
39097
|
+
readonly oas3_0Decorators: {
|
|
39098
|
+
readonly type: "object";
|
|
39099
|
+
readonly additionalProperties: true;
|
|
39100
|
+
};
|
|
39101
|
+
readonly oas3_1Decorators: {
|
|
39102
|
+
readonly type: "object";
|
|
39103
|
+
readonly additionalProperties: true;
|
|
39104
|
+
};
|
|
39105
|
+
readonly async2Decorators: {
|
|
39106
|
+
readonly type: "object";
|
|
39107
|
+
readonly additionalProperties: true;
|
|
39108
|
+
};
|
|
39109
|
+
readonly async3Decorators: {
|
|
39110
|
+
readonly type: "object";
|
|
39111
|
+
readonly additionalProperties: true;
|
|
39112
|
+
};
|
|
39113
|
+
readonly arazzo1Decorators: {
|
|
39114
|
+
readonly type: "object";
|
|
39115
|
+
readonly additionalProperties: true;
|
|
39116
|
+
};
|
|
39117
|
+
readonly overlay1Decorators: {
|
|
39118
|
+
readonly type: "object";
|
|
39119
|
+
readonly additionalProperties: true;
|
|
39120
|
+
};
|
|
39121
|
+
readonly preprocessors: {
|
|
39122
|
+
readonly type: "object";
|
|
39123
|
+
readonly additionalProperties: true;
|
|
39124
|
+
};
|
|
39125
|
+
readonly oas2Preprocessors: {
|
|
39126
|
+
readonly type: "object";
|
|
39127
|
+
readonly additionalProperties: true;
|
|
39128
|
+
};
|
|
39129
|
+
readonly oas3_0Preprocessors: {
|
|
39130
|
+
readonly type: "object";
|
|
39131
|
+
readonly additionalProperties: true;
|
|
39132
|
+
};
|
|
39133
|
+
readonly oas3_1Preprocessors: {
|
|
39134
|
+
readonly type: "object";
|
|
39135
|
+
readonly additionalProperties: true;
|
|
39136
|
+
};
|
|
39137
|
+
readonly async2Preprocessors: {
|
|
39138
|
+
readonly type: "object";
|
|
39139
|
+
readonly additionalProperties: true;
|
|
39140
|
+
};
|
|
39141
|
+
readonly async3Preprocessors: {
|
|
39142
|
+
readonly type: "object";
|
|
39143
|
+
readonly additionalProperties: true;
|
|
39144
|
+
};
|
|
39145
|
+
readonly arazzo1Preprocessors: {
|
|
39146
|
+
readonly type: "object";
|
|
39147
|
+
readonly additionalProperties: true;
|
|
39148
|
+
};
|
|
39149
|
+
readonly overlay1Preprocessors: {
|
|
39150
|
+
readonly type: "object";
|
|
39151
|
+
readonly additionalProperties: true;
|
|
39152
|
+
};
|
|
36541
39153
|
readonly rules: {
|
|
36542
39154
|
readonly type: "object";
|
|
36543
39155
|
readonly additionalProperties: {
|
|
@@ -40479,240 +43091,804 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
40479
43091
|
readonly parentFilter: {
|
|
40480
43092
|
readonly type: "string";
|
|
40481
43093
|
};
|
|
40482
|
-
readonly valuesMapping: {
|
|
43094
|
+
readonly valuesMapping: {
|
|
43095
|
+
readonly type: "object";
|
|
43096
|
+
readonly additionalProperties: {
|
|
43097
|
+
readonly type: "string";
|
|
43098
|
+
};
|
|
43099
|
+
};
|
|
43100
|
+
readonly missingCategoryName: {
|
|
43101
|
+
readonly type: "string";
|
|
43102
|
+
};
|
|
43103
|
+
readonly missingCategoryNameTranslationKey: {
|
|
43104
|
+
readonly type: "string";
|
|
43105
|
+
};
|
|
43106
|
+
readonly options: {
|
|
43107
|
+
readonly type: "array";
|
|
43108
|
+
readonly items: {
|
|
43109
|
+
readonly type: "string";
|
|
43110
|
+
};
|
|
43111
|
+
};
|
|
43112
|
+
};
|
|
43113
|
+
};
|
|
43114
|
+
};
|
|
43115
|
+
readonly groupByFirstFilter: {
|
|
43116
|
+
readonly type: "boolean";
|
|
43117
|
+
};
|
|
43118
|
+
readonly filterValuesCasing: {
|
|
43119
|
+
readonly type: "string";
|
|
43120
|
+
readonly enum: readonly ["sentence", "original", "lowercase", "uppercase"];
|
|
43121
|
+
};
|
|
43122
|
+
readonly items: {
|
|
43123
|
+
readonly type: "array";
|
|
43124
|
+
readonly items: {
|
|
43125
|
+
readonly properties: {
|
|
43126
|
+
readonly items: {
|
|
43127
|
+
readonly type: "array";
|
|
43128
|
+
readonly items: {
|
|
43129
|
+
readonly type: "object";
|
|
43130
|
+
readonly properties: {
|
|
43131
|
+
readonly page: {
|
|
43132
|
+
readonly type: "string";
|
|
43133
|
+
};
|
|
43134
|
+
readonly directory: {
|
|
43135
|
+
readonly type: "string";
|
|
43136
|
+
};
|
|
43137
|
+
readonly disconnect: {
|
|
43138
|
+
readonly type: "boolean";
|
|
43139
|
+
readonly default: false;
|
|
43140
|
+
};
|
|
43141
|
+
readonly group: {
|
|
43142
|
+
readonly type: "string";
|
|
43143
|
+
};
|
|
43144
|
+
readonly label: {
|
|
43145
|
+
readonly type: "string";
|
|
43146
|
+
};
|
|
43147
|
+
readonly href: {
|
|
43148
|
+
readonly type: "string";
|
|
43149
|
+
};
|
|
43150
|
+
readonly external: {
|
|
43151
|
+
readonly type: "boolean";
|
|
43152
|
+
};
|
|
43153
|
+
readonly labelTranslationKey: {
|
|
43154
|
+
readonly type: "string";
|
|
43155
|
+
};
|
|
43156
|
+
readonly groupTranslationKey: {
|
|
43157
|
+
readonly type: "string";
|
|
43158
|
+
};
|
|
43159
|
+
readonly icon: {
|
|
43160
|
+
readonly oneOf: readonly [{
|
|
43161
|
+
readonly type: "string";
|
|
43162
|
+
}, {
|
|
43163
|
+
readonly type: "object";
|
|
43164
|
+
readonly properties: {
|
|
43165
|
+
readonly srcSet: {
|
|
43166
|
+
readonly type: "string";
|
|
43167
|
+
};
|
|
43168
|
+
};
|
|
43169
|
+
readonly required: readonly ["srcSet"];
|
|
43170
|
+
}];
|
|
43171
|
+
};
|
|
43172
|
+
readonly separator: {
|
|
43173
|
+
readonly type: "string";
|
|
43174
|
+
};
|
|
43175
|
+
readonly separatorLine: {
|
|
43176
|
+
readonly type: "boolean";
|
|
43177
|
+
};
|
|
43178
|
+
readonly linePosition: {
|
|
43179
|
+
readonly type: "string";
|
|
43180
|
+
readonly enum: readonly ["top", "bottom"];
|
|
43181
|
+
readonly default: "top";
|
|
43182
|
+
};
|
|
43183
|
+
readonly version: {
|
|
43184
|
+
readonly type: "string";
|
|
43185
|
+
};
|
|
43186
|
+
readonly menuStyle: {
|
|
43187
|
+
readonly type: "string";
|
|
43188
|
+
readonly enum: readonly ["drilldown"];
|
|
43189
|
+
};
|
|
43190
|
+
readonly expanded: {
|
|
43191
|
+
readonly type: "string";
|
|
43192
|
+
readonly const: "always";
|
|
43193
|
+
};
|
|
43194
|
+
readonly selectFirstItemOnExpand: {
|
|
43195
|
+
readonly type: "boolean";
|
|
43196
|
+
};
|
|
43197
|
+
readonly flatten: {
|
|
43198
|
+
readonly type: "boolean";
|
|
43199
|
+
};
|
|
43200
|
+
readonly linkedSidebars: {
|
|
43201
|
+
readonly type: "array";
|
|
43202
|
+
readonly items: {
|
|
43203
|
+
readonly type: "string";
|
|
43204
|
+
};
|
|
43205
|
+
};
|
|
43206
|
+
readonly items: {
|
|
43207
|
+
readonly type: "array";
|
|
43208
|
+
readonly items: {
|
|
43209
|
+
readonly type: "object";
|
|
43210
|
+
readonly additionalProperties: true;
|
|
43211
|
+
};
|
|
43212
|
+
};
|
|
43213
|
+
readonly rbac: {
|
|
43214
|
+
readonly type: "object";
|
|
43215
|
+
readonly additionalProperties: {
|
|
43216
|
+
readonly type: "string";
|
|
43217
|
+
};
|
|
43218
|
+
};
|
|
43219
|
+
};
|
|
43220
|
+
};
|
|
43221
|
+
};
|
|
43222
|
+
readonly page: {
|
|
43223
|
+
readonly type: "string";
|
|
43224
|
+
};
|
|
43225
|
+
readonly directory: {
|
|
43226
|
+
readonly type: "string";
|
|
43227
|
+
};
|
|
43228
|
+
readonly disconnect: {
|
|
43229
|
+
readonly type: "boolean";
|
|
43230
|
+
readonly default: false;
|
|
43231
|
+
};
|
|
43232
|
+
readonly group: {
|
|
43233
|
+
readonly type: "string";
|
|
43234
|
+
};
|
|
43235
|
+
readonly label: {
|
|
43236
|
+
readonly type: "string";
|
|
43237
|
+
};
|
|
43238
|
+
readonly href: {
|
|
43239
|
+
readonly type: "string";
|
|
43240
|
+
};
|
|
43241
|
+
readonly external: {
|
|
43242
|
+
readonly type: "boolean";
|
|
43243
|
+
};
|
|
43244
|
+
readonly labelTranslationKey: {
|
|
43245
|
+
readonly type: "string";
|
|
43246
|
+
};
|
|
43247
|
+
readonly groupTranslationKey: {
|
|
43248
|
+
readonly type: "string";
|
|
43249
|
+
};
|
|
43250
|
+
readonly icon: {
|
|
43251
|
+
readonly oneOf: readonly [{
|
|
43252
|
+
readonly type: "string";
|
|
43253
|
+
}, {
|
|
43254
|
+
readonly type: "object";
|
|
43255
|
+
readonly properties: {
|
|
43256
|
+
readonly srcSet: {
|
|
43257
|
+
readonly type: "string";
|
|
43258
|
+
};
|
|
43259
|
+
};
|
|
43260
|
+
readonly required: readonly ["srcSet"];
|
|
43261
|
+
}];
|
|
43262
|
+
};
|
|
43263
|
+
readonly separator: {
|
|
43264
|
+
readonly type: "string";
|
|
43265
|
+
};
|
|
43266
|
+
readonly separatorLine: {
|
|
43267
|
+
readonly type: "boolean";
|
|
43268
|
+
};
|
|
43269
|
+
readonly linePosition: {
|
|
43270
|
+
readonly type: "string";
|
|
43271
|
+
readonly enum: readonly ["top", "bottom"];
|
|
43272
|
+
readonly default: "top";
|
|
43273
|
+
};
|
|
43274
|
+
readonly version: {
|
|
43275
|
+
readonly type: "string";
|
|
43276
|
+
};
|
|
43277
|
+
readonly menuStyle: {
|
|
43278
|
+
readonly type: "string";
|
|
43279
|
+
readonly enum: readonly ["drilldown"];
|
|
43280
|
+
};
|
|
43281
|
+
readonly expanded: {
|
|
43282
|
+
readonly type: "string";
|
|
43283
|
+
readonly const: "always";
|
|
43284
|
+
};
|
|
43285
|
+
readonly selectFirstItemOnExpand: {
|
|
43286
|
+
readonly type: "boolean";
|
|
43287
|
+
};
|
|
43288
|
+
readonly flatten: {
|
|
43289
|
+
readonly type: "boolean";
|
|
43290
|
+
};
|
|
43291
|
+
readonly linkedSidebars: {
|
|
43292
|
+
readonly type: "array";
|
|
43293
|
+
readonly items: {
|
|
43294
|
+
readonly type: "string";
|
|
43295
|
+
};
|
|
43296
|
+
};
|
|
43297
|
+
readonly rbac: {
|
|
43298
|
+
readonly type: "object";
|
|
43299
|
+
readonly additionalProperties: {
|
|
43300
|
+
readonly type: "string";
|
|
43301
|
+
};
|
|
43302
|
+
};
|
|
43303
|
+
};
|
|
43304
|
+
readonly type: "object";
|
|
43305
|
+
};
|
|
43306
|
+
};
|
|
43307
|
+
readonly requiredPermission: {
|
|
43308
|
+
readonly type: "string";
|
|
43309
|
+
};
|
|
43310
|
+
readonly separateVersions: {
|
|
43311
|
+
readonly type: "boolean";
|
|
43312
|
+
};
|
|
43313
|
+
readonly title: {
|
|
43314
|
+
readonly type: "string";
|
|
43315
|
+
};
|
|
43316
|
+
readonly titleTranslationKey: {
|
|
43317
|
+
readonly type: "string";
|
|
43318
|
+
};
|
|
43319
|
+
readonly description: {
|
|
43320
|
+
readonly type: "string";
|
|
43321
|
+
};
|
|
43322
|
+
readonly descriptionTranslationKey: {
|
|
43323
|
+
readonly type: "string";
|
|
43324
|
+
};
|
|
43325
|
+
};
|
|
43326
|
+
};
|
|
43327
|
+
};
|
|
43328
|
+
};
|
|
43329
|
+
readonly entitiesCatalog: {
|
|
43330
|
+
readonly type: "object";
|
|
43331
|
+
readonly properties: {
|
|
43332
|
+
readonly catalogs: {
|
|
43333
|
+
readonly type: "object";
|
|
43334
|
+
readonly properties: {
|
|
43335
|
+
readonly all: {
|
|
43336
|
+
readonly type: "object";
|
|
43337
|
+
readonly properties: {
|
|
43338
|
+
readonly slug: {
|
|
43339
|
+
readonly type: "string";
|
|
43340
|
+
};
|
|
43341
|
+
readonly hide: {
|
|
43342
|
+
readonly type: "boolean";
|
|
43343
|
+
};
|
|
43344
|
+
readonly includes: {
|
|
43345
|
+
readonly type: "array";
|
|
43346
|
+
readonly items: {
|
|
43347
|
+
readonly type: "object";
|
|
43348
|
+
readonly required: readonly ["type"];
|
|
43349
|
+
readonly properties: {
|
|
43350
|
+
readonly type: {
|
|
43351
|
+
readonly type: "string";
|
|
43352
|
+
};
|
|
43353
|
+
};
|
|
43354
|
+
readonly additionalProperties: false;
|
|
43355
|
+
};
|
|
43356
|
+
};
|
|
43357
|
+
readonly excludes: {
|
|
43358
|
+
readonly type: "array";
|
|
43359
|
+
readonly items: {
|
|
43360
|
+
readonly type: "object";
|
|
43361
|
+
readonly required: readonly ["key"];
|
|
43362
|
+
readonly properties: {
|
|
43363
|
+
readonly key: {
|
|
43364
|
+
readonly type: "string";
|
|
43365
|
+
};
|
|
43366
|
+
};
|
|
43367
|
+
readonly additionalProperties: false;
|
|
43368
|
+
};
|
|
43369
|
+
};
|
|
43370
|
+
readonly filters: {
|
|
43371
|
+
readonly type: "array";
|
|
43372
|
+
readonly items: {
|
|
43373
|
+
readonly type: "object";
|
|
43374
|
+
readonly required: readonly ["property", "title"];
|
|
43375
|
+
readonly properties: {
|
|
43376
|
+
readonly property: {
|
|
43377
|
+
readonly type: "string";
|
|
43378
|
+
};
|
|
43379
|
+
readonly hide: {
|
|
43380
|
+
readonly type: "boolean";
|
|
43381
|
+
};
|
|
43382
|
+
readonly label: {
|
|
43383
|
+
readonly type: "string";
|
|
43384
|
+
};
|
|
43385
|
+
readonly options: {
|
|
43386
|
+
readonly type: "array";
|
|
43387
|
+
readonly items: {
|
|
43388
|
+
readonly type: "string";
|
|
43389
|
+
};
|
|
43390
|
+
};
|
|
43391
|
+
readonly type: {
|
|
43392
|
+
readonly type: "string";
|
|
43393
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
43394
|
+
readonly default: "checkboxes";
|
|
43395
|
+
};
|
|
43396
|
+
readonly title: {
|
|
43397
|
+
readonly type: "string";
|
|
43398
|
+
};
|
|
43399
|
+
readonly titleTranslationKey: {
|
|
43400
|
+
readonly type: "string";
|
|
43401
|
+
};
|
|
43402
|
+
readonly parentFilter: {
|
|
43403
|
+
readonly type: "string";
|
|
43404
|
+
};
|
|
43405
|
+
readonly valuesMapping: {
|
|
43406
|
+
readonly type: "object";
|
|
43407
|
+
readonly additionalProperties: {
|
|
43408
|
+
readonly type: "string";
|
|
43409
|
+
};
|
|
43410
|
+
};
|
|
43411
|
+
};
|
|
43412
|
+
readonly additionalProperties: false;
|
|
43413
|
+
};
|
|
43414
|
+
};
|
|
43415
|
+
readonly titleTranslationKey: {
|
|
43416
|
+
readonly type: "string";
|
|
43417
|
+
};
|
|
43418
|
+
readonly descriptionTranslationKey: {
|
|
43419
|
+
readonly type: "string";
|
|
43420
|
+
};
|
|
43421
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
43422
|
+
readonly type: "string";
|
|
43423
|
+
};
|
|
43424
|
+
};
|
|
43425
|
+
readonly additionalProperties: false;
|
|
43426
|
+
};
|
|
43427
|
+
readonly services: {
|
|
43428
|
+
readonly type: "object";
|
|
43429
|
+
readonly properties: {
|
|
43430
|
+
readonly slug: {
|
|
43431
|
+
readonly type: "string";
|
|
43432
|
+
};
|
|
43433
|
+
readonly hide: {
|
|
43434
|
+
readonly type: "boolean";
|
|
43435
|
+
};
|
|
43436
|
+
readonly includes: {
|
|
43437
|
+
readonly type: "array";
|
|
43438
|
+
readonly items: {
|
|
43439
|
+
readonly type: "object";
|
|
43440
|
+
readonly required: readonly ["type"];
|
|
43441
|
+
readonly properties: {
|
|
43442
|
+
readonly type: {
|
|
43443
|
+
readonly type: "string";
|
|
43444
|
+
};
|
|
43445
|
+
};
|
|
43446
|
+
readonly additionalProperties: false;
|
|
43447
|
+
};
|
|
43448
|
+
};
|
|
43449
|
+
readonly excludes: {
|
|
43450
|
+
readonly type: "array";
|
|
43451
|
+
readonly items: {
|
|
43452
|
+
readonly type: "object";
|
|
43453
|
+
readonly required: readonly ["key"];
|
|
43454
|
+
readonly properties: {
|
|
43455
|
+
readonly key: {
|
|
43456
|
+
readonly type: "string";
|
|
43457
|
+
};
|
|
43458
|
+
};
|
|
43459
|
+
readonly additionalProperties: false;
|
|
43460
|
+
};
|
|
43461
|
+
};
|
|
43462
|
+
readonly filters: {
|
|
43463
|
+
readonly type: "array";
|
|
43464
|
+
readonly items: {
|
|
43465
|
+
readonly type: "object";
|
|
43466
|
+
readonly required: readonly ["property", "title"];
|
|
43467
|
+
readonly properties: {
|
|
43468
|
+
readonly property: {
|
|
43469
|
+
readonly type: "string";
|
|
43470
|
+
};
|
|
43471
|
+
readonly hide: {
|
|
43472
|
+
readonly type: "boolean";
|
|
43473
|
+
};
|
|
43474
|
+
readonly label: {
|
|
43475
|
+
readonly type: "string";
|
|
43476
|
+
};
|
|
43477
|
+
readonly options: {
|
|
43478
|
+
readonly type: "array";
|
|
43479
|
+
readonly items: {
|
|
43480
|
+
readonly type: "string";
|
|
43481
|
+
};
|
|
43482
|
+
};
|
|
43483
|
+
readonly type: {
|
|
43484
|
+
readonly type: "string";
|
|
43485
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
43486
|
+
readonly default: "checkboxes";
|
|
43487
|
+
};
|
|
43488
|
+
readonly title: {
|
|
43489
|
+
readonly type: "string";
|
|
43490
|
+
};
|
|
43491
|
+
readonly titleTranslationKey: {
|
|
43492
|
+
readonly type: "string";
|
|
43493
|
+
};
|
|
43494
|
+
readonly parentFilter: {
|
|
43495
|
+
readonly type: "string";
|
|
43496
|
+
};
|
|
43497
|
+
readonly valuesMapping: {
|
|
43498
|
+
readonly type: "object";
|
|
43499
|
+
readonly additionalProperties: {
|
|
43500
|
+
readonly type: "string";
|
|
43501
|
+
};
|
|
43502
|
+
};
|
|
43503
|
+
};
|
|
43504
|
+
readonly additionalProperties: false;
|
|
43505
|
+
};
|
|
43506
|
+
};
|
|
43507
|
+
readonly titleTranslationKey: {
|
|
43508
|
+
readonly type: "string";
|
|
43509
|
+
};
|
|
43510
|
+
readonly descriptionTranslationKey: {
|
|
43511
|
+
readonly type: "string";
|
|
43512
|
+
};
|
|
43513
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
43514
|
+
readonly type: "string";
|
|
43515
|
+
};
|
|
43516
|
+
};
|
|
43517
|
+
readonly additionalProperties: false;
|
|
43518
|
+
};
|
|
43519
|
+
readonly domains: {
|
|
43520
|
+
readonly type: "object";
|
|
43521
|
+
readonly properties: {
|
|
43522
|
+
readonly slug: {
|
|
43523
|
+
readonly type: "string";
|
|
43524
|
+
};
|
|
43525
|
+
readonly hide: {
|
|
43526
|
+
readonly type: "boolean";
|
|
43527
|
+
};
|
|
43528
|
+
readonly includes: {
|
|
43529
|
+
readonly type: "array";
|
|
43530
|
+
readonly items: {
|
|
43531
|
+
readonly type: "object";
|
|
43532
|
+
readonly required: readonly ["type"];
|
|
43533
|
+
readonly properties: {
|
|
43534
|
+
readonly type: {
|
|
43535
|
+
readonly type: "string";
|
|
43536
|
+
};
|
|
43537
|
+
};
|
|
43538
|
+
readonly additionalProperties: false;
|
|
43539
|
+
};
|
|
43540
|
+
};
|
|
43541
|
+
readonly excludes: {
|
|
43542
|
+
readonly type: "array";
|
|
43543
|
+
readonly items: {
|
|
43544
|
+
readonly type: "object";
|
|
43545
|
+
readonly required: readonly ["key"];
|
|
43546
|
+
readonly properties: {
|
|
43547
|
+
readonly key: {
|
|
43548
|
+
readonly type: "string";
|
|
43549
|
+
};
|
|
43550
|
+
};
|
|
43551
|
+
readonly additionalProperties: false;
|
|
43552
|
+
};
|
|
43553
|
+
};
|
|
43554
|
+
readonly filters: {
|
|
43555
|
+
readonly type: "array";
|
|
43556
|
+
readonly items: {
|
|
43557
|
+
readonly type: "object";
|
|
43558
|
+
readonly required: readonly ["property", "title"];
|
|
43559
|
+
readonly properties: {
|
|
43560
|
+
readonly property: {
|
|
43561
|
+
readonly type: "string";
|
|
43562
|
+
};
|
|
43563
|
+
readonly hide: {
|
|
43564
|
+
readonly type: "boolean";
|
|
43565
|
+
};
|
|
43566
|
+
readonly label: {
|
|
43567
|
+
readonly type: "string";
|
|
43568
|
+
};
|
|
43569
|
+
readonly options: {
|
|
43570
|
+
readonly type: "array";
|
|
43571
|
+
readonly items: {
|
|
43572
|
+
readonly type: "string";
|
|
43573
|
+
};
|
|
43574
|
+
};
|
|
43575
|
+
readonly type: {
|
|
43576
|
+
readonly type: "string";
|
|
43577
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
43578
|
+
readonly default: "checkboxes";
|
|
43579
|
+
};
|
|
43580
|
+
readonly title: {
|
|
43581
|
+
readonly type: "string";
|
|
43582
|
+
};
|
|
43583
|
+
readonly titleTranslationKey: {
|
|
43584
|
+
readonly type: "string";
|
|
43585
|
+
};
|
|
43586
|
+
readonly parentFilter: {
|
|
43587
|
+
readonly type: "string";
|
|
43588
|
+
};
|
|
43589
|
+
readonly valuesMapping: {
|
|
43590
|
+
readonly type: "object";
|
|
43591
|
+
readonly additionalProperties: {
|
|
43592
|
+
readonly type: "string";
|
|
43593
|
+
};
|
|
43594
|
+
};
|
|
43595
|
+
};
|
|
43596
|
+
readonly additionalProperties: false;
|
|
43597
|
+
};
|
|
43598
|
+
};
|
|
43599
|
+
readonly titleTranslationKey: {
|
|
43600
|
+
readonly type: "string";
|
|
43601
|
+
};
|
|
43602
|
+
readonly descriptionTranslationKey: {
|
|
43603
|
+
readonly type: "string";
|
|
43604
|
+
};
|
|
43605
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
43606
|
+
readonly type: "string";
|
|
43607
|
+
};
|
|
43608
|
+
};
|
|
43609
|
+
readonly additionalProperties: false;
|
|
43610
|
+
};
|
|
43611
|
+
readonly teams: {
|
|
43612
|
+
readonly type: "object";
|
|
43613
|
+
readonly properties: {
|
|
43614
|
+
readonly slug: {
|
|
43615
|
+
readonly type: "string";
|
|
43616
|
+
};
|
|
43617
|
+
readonly hide: {
|
|
43618
|
+
readonly type: "boolean";
|
|
43619
|
+
};
|
|
43620
|
+
readonly includes: {
|
|
43621
|
+
readonly type: "array";
|
|
43622
|
+
readonly items: {
|
|
40483
43623
|
readonly type: "object";
|
|
40484
|
-
readonly
|
|
40485
|
-
|
|
43624
|
+
readonly required: readonly ["type"];
|
|
43625
|
+
readonly properties: {
|
|
43626
|
+
readonly type: {
|
|
43627
|
+
readonly type: "string";
|
|
43628
|
+
};
|
|
40486
43629
|
};
|
|
43630
|
+
readonly additionalProperties: false;
|
|
40487
43631
|
};
|
|
40488
|
-
|
|
40489
|
-
|
|
40490
|
-
|
|
40491
|
-
readonly
|
|
40492
|
-
readonly type: "
|
|
40493
|
-
|
|
40494
|
-
|
|
40495
|
-
|
|
40496
|
-
|
|
40497
|
-
|
|
43632
|
+
};
|
|
43633
|
+
readonly excludes: {
|
|
43634
|
+
readonly type: "array";
|
|
43635
|
+
readonly items: {
|
|
43636
|
+
readonly type: "object";
|
|
43637
|
+
readonly required: readonly ["key"];
|
|
43638
|
+
readonly properties: {
|
|
43639
|
+
readonly key: {
|
|
43640
|
+
readonly type: "string";
|
|
43641
|
+
};
|
|
40498
43642
|
};
|
|
43643
|
+
readonly additionalProperties: false;
|
|
40499
43644
|
};
|
|
40500
43645
|
};
|
|
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: {
|
|
43646
|
+
readonly filters: {
|
|
43647
|
+
readonly type: "array";
|
|
40514
43648
|
readonly items: {
|
|
40515
|
-
readonly type: "
|
|
40516
|
-
readonly
|
|
40517
|
-
|
|
40518
|
-
readonly
|
|
40519
|
-
readonly
|
|
40520
|
-
|
|
40521
|
-
|
|
40522
|
-
readonly
|
|
40523
|
-
|
|
40524
|
-
|
|
40525
|
-
readonly
|
|
40526
|
-
|
|
40527
|
-
|
|
40528
|
-
|
|
40529
|
-
readonly
|
|
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: {
|
|
43649
|
+
readonly type: "object";
|
|
43650
|
+
readonly required: readonly ["property", "title"];
|
|
43651
|
+
readonly properties: {
|
|
43652
|
+
readonly property: {
|
|
43653
|
+
readonly type: "string";
|
|
43654
|
+
};
|
|
43655
|
+
readonly hide: {
|
|
43656
|
+
readonly type: "boolean";
|
|
43657
|
+
};
|
|
43658
|
+
readonly label: {
|
|
43659
|
+
readonly type: "string";
|
|
43660
|
+
};
|
|
43661
|
+
readonly options: {
|
|
43662
|
+
readonly type: "array";
|
|
43663
|
+
readonly items: {
|
|
40575
43664
|
readonly type: "string";
|
|
40576
|
-
readonly enum: readonly ["drilldown"];
|
|
40577
43665
|
};
|
|
40578
|
-
|
|
43666
|
+
};
|
|
43667
|
+
readonly type: {
|
|
43668
|
+
readonly type: "string";
|
|
43669
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
43670
|
+
readonly default: "checkboxes";
|
|
43671
|
+
};
|
|
43672
|
+
readonly title: {
|
|
43673
|
+
readonly type: "string";
|
|
43674
|
+
};
|
|
43675
|
+
readonly titleTranslationKey: {
|
|
43676
|
+
readonly type: "string";
|
|
43677
|
+
};
|
|
43678
|
+
readonly parentFilter: {
|
|
43679
|
+
readonly type: "string";
|
|
43680
|
+
};
|
|
43681
|
+
readonly valuesMapping: {
|
|
43682
|
+
readonly type: "object";
|
|
43683
|
+
readonly additionalProperties: {
|
|
40579
43684
|
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
43685
|
};
|
|
40607
43686
|
};
|
|
40608
43687
|
};
|
|
43688
|
+
readonly additionalProperties: false;
|
|
40609
43689
|
};
|
|
40610
|
-
|
|
40611
|
-
|
|
40612
|
-
|
|
40613
|
-
|
|
40614
|
-
|
|
40615
|
-
|
|
40616
|
-
|
|
40617
|
-
|
|
40618
|
-
|
|
40619
|
-
|
|
40620
|
-
|
|
40621
|
-
|
|
40622
|
-
|
|
40623
|
-
|
|
40624
|
-
|
|
40625
|
-
|
|
40626
|
-
|
|
40627
|
-
|
|
40628
|
-
|
|
40629
|
-
|
|
40630
|
-
|
|
40631
|
-
|
|
40632
|
-
|
|
40633
|
-
|
|
43690
|
+
};
|
|
43691
|
+
readonly titleTranslationKey: {
|
|
43692
|
+
readonly type: "string";
|
|
43693
|
+
};
|
|
43694
|
+
readonly descriptionTranslationKey: {
|
|
43695
|
+
readonly type: "string";
|
|
43696
|
+
};
|
|
43697
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
43698
|
+
readonly type: "string";
|
|
43699
|
+
};
|
|
43700
|
+
};
|
|
43701
|
+
readonly additionalProperties: false;
|
|
43702
|
+
};
|
|
43703
|
+
readonly users: {
|
|
43704
|
+
readonly type: "object";
|
|
43705
|
+
readonly properties: {
|
|
43706
|
+
readonly slug: {
|
|
43707
|
+
readonly type: "string";
|
|
43708
|
+
};
|
|
43709
|
+
readonly hide: {
|
|
43710
|
+
readonly type: "boolean";
|
|
43711
|
+
};
|
|
43712
|
+
readonly includes: {
|
|
43713
|
+
readonly type: "array";
|
|
43714
|
+
readonly items: {
|
|
43715
|
+
readonly type: "object";
|
|
43716
|
+
readonly required: readonly ["type"];
|
|
43717
|
+
readonly properties: {
|
|
43718
|
+
readonly type: {
|
|
43719
|
+
readonly type: "string";
|
|
43720
|
+
};
|
|
43721
|
+
};
|
|
43722
|
+
readonly additionalProperties: false;
|
|
40634
43723
|
};
|
|
40635
|
-
|
|
40636
|
-
|
|
43724
|
+
};
|
|
43725
|
+
readonly excludes: {
|
|
43726
|
+
readonly type: "array";
|
|
43727
|
+
readonly items: {
|
|
43728
|
+
readonly type: "object";
|
|
43729
|
+
readonly required: readonly ["key"];
|
|
43730
|
+
readonly properties: {
|
|
43731
|
+
readonly key: {
|
|
43732
|
+
readonly type: "string";
|
|
43733
|
+
};
|
|
43734
|
+
};
|
|
43735
|
+
readonly additionalProperties: false;
|
|
40637
43736
|
};
|
|
40638
|
-
|
|
40639
|
-
|
|
40640
|
-
|
|
40641
|
-
|
|
40642
|
-
|
|
40643
|
-
|
|
40644
|
-
|
|
43737
|
+
};
|
|
43738
|
+
readonly filters: {
|
|
43739
|
+
readonly type: "array";
|
|
43740
|
+
readonly items: {
|
|
43741
|
+
readonly type: "object";
|
|
43742
|
+
readonly required: readonly ["property", "title"];
|
|
43743
|
+
readonly properties: {
|
|
43744
|
+
readonly property: {
|
|
43745
|
+
readonly type: "string";
|
|
43746
|
+
};
|
|
43747
|
+
readonly hide: {
|
|
43748
|
+
readonly type: "boolean";
|
|
43749
|
+
};
|
|
43750
|
+
readonly label: {
|
|
43751
|
+
readonly type: "string";
|
|
43752
|
+
};
|
|
43753
|
+
readonly options: {
|
|
43754
|
+
readonly type: "array";
|
|
43755
|
+
readonly items: {
|
|
40645
43756
|
readonly type: "string";
|
|
40646
43757
|
};
|
|
40647
43758
|
};
|
|
40648
|
-
readonly
|
|
40649
|
-
|
|
40650
|
-
|
|
40651
|
-
|
|
40652
|
-
|
|
40653
|
-
|
|
40654
|
-
|
|
40655
|
-
|
|
40656
|
-
|
|
40657
|
-
|
|
40658
|
-
|
|
40659
|
-
|
|
40660
|
-
|
|
40661
|
-
|
|
40662
|
-
|
|
40663
|
-
|
|
40664
|
-
|
|
40665
|
-
|
|
40666
|
-
|
|
40667
|
-
|
|
40668
|
-
|
|
40669
|
-
|
|
40670
|
-
readonly type: "string";
|
|
40671
|
-
readonly const: "always";
|
|
40672
|
-
};
|
|
40673
|
-
readonly selectFirstItemOnExpand: {
|
|
40674
|
-
readonly type: "boolean";
|
|
43759
|
+
readonly type: {
|
|
43760
|
+
readonly type: "string";
|
|
43761
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
43762
|
+
readonly default: "checkboxes";
|
|
43763
|
+
};
|
|
43764
|
+
readonly title: {
|
|
43765
|
+
readonly type: "string";
|
|
43766
|
+
};
|
|
43767
|
+
readonly titleTranslationKey: {
|
|
43768
|
+
readonly type: "string";
|
|
43769
|
+
};
|
|
43770
|
+
readonly parentFilter: {
|
|
43771
|
+
readonly type: "string";
|
|
43772
|
+
};
|
|
43773
|
+
readonly valuesMapping: {
|
|
43774
|
+
readonly type: "object";
|
|
43775
|
+
readonly additionalProperties: {
|
|
43776
|
+
readonly type: "string";
|
|
43777
|
+
};
|
|
43778
|
+
};
|
|
43779
|
+
};
|
|
43780
|
+
readonly additionalProperties: false;
|
|
40675
43781
|
};
|
|
40676
|
-
|
|
40677
|
-
|
|
43782
|
+
};
|
|
43783
|
+
readonly titleTranslationKey: {
|
|
43784
|
+
readonly type: "string";
|
|
43785
|
+
};
|
|
43786
|
+
readonly descriptionTranslationKey: {
|
|
43787
|
+
readonly type: "string";
|
|
43788
|
+
};
|
|
43789
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
43790
|
+
readonly type: "string";
|
|
43791
|
+
};
|
|
43792
|
+
};
|
|
43793
|
+
readonly additionalProperties: false;
|
|
43794
|
+
};
|
|
43795
|
+
readonly apiDescriptions: {
|
|
43796
|
+
readonly type: "object";
|
|
43797
|
+
readonly properties: {
|
|
43798
|
+
readonly slug: {
|
|
43799
|
+
readonly type: "string";
|
|
43800
|
+
};
|
|
43801
|
+
readonly hide: {
|
|
43802
|
+
readonly type: "boolean";
|
|
43803
|
+
};
|
|
43804
|
+
readonly includes: {
|
|
43805
|
+
readonly type: "array";
|
|
43806
|
+
readonly items: {
|
|
43807
|
+
readonly type: "object";
|
|
43808
|
+
readonly required: readonly ["type"];
|
|
43809
|
+
readonly properties: {
|
|
43810
|
+
readonly type: {
|
|
43811
|
+
readonly type: "string";
|
|
43812
|
+
};
|
|
43813
|
+
};
|
|
43814
|
+
readonly additionalProperties: false;
|
|
40678
43815
|
};
|
|
40679
|
-
|
|
40680
|
-
|
|
40681
|
-
|
|
40682
|
-
|
|
43816
|
+
};
|
|
43817
|
+
readonly excludes: {
|
|
43818
|
+
readonly type: "array";
|
|
43819
|
+
readonly items: {
|
|
43820
|
+
readonly type: "object";
|
|
43821
|
+
readonly required: readonly ["key"];
|
|
43822
|
+
readonly properties: {
|
|
43823
|
+
readonly key: {
|
|
43824
|
+
readonly type: "string";
|
|
43825
|
+
};
|
|
40683
43826
|
};
|
|
43827
|
+
readonly additionalProperties: false;
|
|
40684
43828
|
};
|
|
40685
|
-
|
|
43829
|
+
};
|
|
43830
|
+
readonly filters: {
|
|
43831
|
+
readonly type: "array";
|
|
43832
|
+
readonly items: {
|
|
40686
43833
|
readonly type: "object";
|
|
40687
|
-
readonly
|
|
40688
|
-
|
|
43834
|
+
readonly required: readonly ["property", "title"];
|
|
43835
|
+
readonly properties: {
|
|
43836
|
+
readonly property: {
|
|
43837
|
+
readonly type: "string";
|
|
43838
|
+
};
|
|
43839
|
+
readonly hide: {
|
|
43840
|
+
readonly type: "boolean";
|
|
43841
|
+
};
|
|
43842
|
+
readonly label: {
|
|
43843
|
+
readonly type: "string";
|
|
43844
|
+
};
|
|
43845
|
+
readonly options: {
|
|
43846
|
+
readonly type: "array";
|
|
43847
|
+
readonly items: {
|
|
43848
|
+
readonly type: "string";
|
|
43849
|
+
};
|
|
43850
|
+
};
|
|
43851
|
+
readonly type: {
|
|
43852
|
+
readonly type: "string";
|
|
43853
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
43854
|
+
readonly default: "checkboxes";
|
|
43855
|
+
};
|
|
43856
|
+
readonly title: {
|
|
43857
|
+
readonly type: "string";
|
|
43858
|
+
};
|
|
43859
|
+
readonly titleTranslationKey: {
|
|
43860
|
+
readonly type: "string";
|
|
43861
|
+
};
|
|
43862
|
+
readonly parentFilter: {
|
|
43863
|
+
readonly type: "string";
|
|
43864
|
+
};
|
|
43865
|
+
readonly valuesMapping: {
|
|
43866
|
+
readonly type: "object";
|
|
43867
|
+
readonly additionalProperties: {
|
|
43868
|
+
readonly type: "string";
|
|
43869
|
+
};
|
|
43870
|
+
};
|
|
40689
43871
|
};
|
|
43872
|
+
readonly additionalProperties: false;
|
|
40690
43873
|
};
|
|
40691
43874
|
};
|
|
40692
|
-
readonly
|
|
43875
|
+
readonly titleTranslationKey: {
|
|
43876
|
+
readonly type: "string";
|
|
43877
|
+
};
|
|
43878
|
+
readonly descriptionTranslationKey: {
|
|
43879
|
+
readonly type: "string";
|
|
43880
|
+
};
|
|
43881
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
43882
|
+
readonly type: "string";
|
|
43883
|
+
};
|
|
40693
43884
|
};
|
|
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";
|
|
43885
|
+
readonly additionalProperties: false;
|
|
40712
43886
|
};
|
|
40713
43887
|
};
|
|
43888
|
+
readonly additionalProperties: false;
|
|
40714
43889
|
};
|
|
40715
43890
|
};
|
|
43891
|
+
readonly additionalProperties: false;
|
|
40716
43892
|
};
|
|
40717
43893
|
readonly catalogClassic: {
|
|
40718
43894
|
readonly type: "object";
|
|
@@ -41013,6 +44189,70 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
41013
44189
|
readonly type: "object";
|
|
41014
44190
|
readonly required: readonly ["name"];
|
|
41015
44191
|
readonly properties: {
|
|
44192
|
+
readonly decorators: {
|
|
44193
|
+
readonly type: "object";
|
|
44194
|
+
readonly additionalProperties: true;
|
|
44195
|
+
};
|
|
44196
|
+
readonly oas2Decorators: {
|
|
44197
|
+
readonly type: "object";
|
|
44198
|
+
readonly additionalProperties: true;
|
|
44199
|
+
};
|
|
44200
|
+
readonly oas3_0Decorators: {
|
|
44201
|
+
readonly type: "object";
|
|
44202
|
+
readonly additionalProperties: true;
|
|
44203
|
+
};
|
|
44204
|
+
readonly oas3_1Decorators: {
|
|
44205
|
+
readonly type: "object";
|
|
44206
|
+
readonly additionalProperties: true;
|
|
44207
|
+
};
|
|
44208
|
+
readonly async2Decorators: {
|
|
44209
|
+
readonly type: "object";
|
|
44210
|
+
readonly additionalProperties: true;
|
|
44211
|
+
};
|
|
44212
|
+
readonly async3Decorators: {
|
|
44213
|
+
readonly type: "object";
|
|
44214
|
+
readonly additionalProperties: true;
|
|
44215
|
+
};
|
|
44216
|
+
readonly arazzo1Decorators: {
|
|
44217
|
+
readonly type: "object";
|
|
44218
|
+
readonly additionalProperties: true;
|
|
44219
|
+
};
|
|
44220
|
+
readonly overlay1Decorators: {
|
|
44221
|
+
readonly type: "object";
|
|
44222
|
+
readonly additionalProperties: true;
|
|
44223
|
+
};
|
|
44224
|
+
readonly preprocessors: {
|
|
44225
|
+
readonly type: "object";
|
|
44226
|
+
readonly additionalProperties: true;
|
|
44227
|
+
};
|
|
44228
|
+
readonly oas2Preprocessors: {
|
|
44229
|
+
readonly type: "object";
|
|
44230
|
+
readonly additionalProperties: true;
|
|
44231
|
+
};
|
|
44232
|
+
readonly oas3_0Preprocessors: {
|
|
44233
|
+
readonly type: "object";
|
|
44234
|
+
readonly additionalProperties: true;
|
|
44235
|
+
};
|
|
44236
|
+
readonly oas3_1Preprocessors: {
|
|
44237
|
+
readonly type: "object";
|
|
44238
|
+
readonly additionalProperties: true;
|
|
44239
|
+
};
|
|
44240
|
+
readonly async2Preprocessors: {
|
|
44241
|
+
readonly type: "object";
|
|
44242
|
+
readonly additionalProperties: true;
|
|
44243
|
+
};
|
|
44244
|
+
readonly async3Preprocessors: {
|
|
44245
|
+
readonly type: "object";
|
|
44246
|
+
readonly additionalProperties: true;
|
|
44247
|
+
};
|
|
44248
|
+
readonly arazzo1Preprocessors: {
|
|
44249
|
+
readonly type: "object";
|
|
44250
|
+
readonly additionalProperties: true;
|
|
44251
|
+
};
|
|
44252
|
+
readonly overlay1Preprocessors: {
|
|
44253
|
+
readonly type: "object";
|
|
44254
|
+
readonly additionalProperties: true;
|
|
44255
|
+
};
|
|
41016
44256
|
readonly rules: {
|
|
41017
44257
|
readonly type: "object";
|
|
41018
44258
|
readonly additionalProperties: {
|
|
@@ -41171,7 +44411,7 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
41171
44411
|
readonly type: "object";
|
|
41172
44412
|
readonly additionalProperties: true;
|
|
41173
44413
|
};
|
|
41174
|
-
readonly
|
|
44414
|
+
readonly arazzo1Preprocessors: {
|
|
41175
44415
|
readonly type: "object";
|
|
41176
44416
|
readonly additionalProperties: true;
|
|
41177
44417
|
};
|
|
@@ -41655,7 +44895,7 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
41655
44895
|
readonly type: "object";
|
|
41656
44896
|
readonly additionalProperties: true;
|
|
41657
44897
|
};
|
|
41658
|
-
readonly
|
|
44898
|
+
readonly arazzo1Preprocessors: {
|
|
41659
44899
|
readonly type: "object";
|
|
41660
44900
|
readonly additionalProperties: true;
|
|
41661
44901
|
};
|