@redocly/config 0.30.0 → 0.31.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/default-theme-config-schema.d.ts +92 -1
- package/lib/entities-catalog-config-schema.d.ts +92 -1
- package/lib/entities-catalog-config-schema.js +1 -1
- package/lib/reunite-config-schema.d.ts +0 -7
- package/lib/reunite-config-schema.js +0 -4
- package/lib/root-config-schema.d.ts +676 -230
- package/lib/types/catalog-entity-types.d.ts +16 -0
- package/lib/types/config-types.d.ts +2 -2
- package/lib-esm/default-theme-config-schema.d.ts +92 -1
- package/lib-esm/entities-catalog-config-schema.d.ts +92 -1
- package/lib-esm/entities-catalog-config-schema.js +1 -1
- package/lib-esm/reunite-config-schema.d.ts +0 -7
- package/lib-esm/reunite-config-schema.js +0 -4
- package/lib-esm/root-config-schema.d.ts +676 -230
- package/lib-esm/types/catalog-entity-types.d.ts +16 -0
- package/lib-esm/types/config-types.d.ts +2 -2
- package/package.json +1 -1
|
@@ -11027,7 +11027,98 @@ export declare const redoclyConfigSchema: {
|
|
|
11027
11027
|
readonly additionalProperties: false;
|
|
11028
11028
|
};
|
|
11029
11029
|
};
|
|
11030
|
-
readonly additionalProperties:
|
|
11030
|
+
readonly additionalProperties: {
|
|
11031
|
+
readonly type: "object";
|
|
11032
|
+
readonly properties: {
|
|
11033
|
+
readonly slug: {
|
|
11034
|
+
readonly type: "string";
|
|
11035
|
+
};
|
|
11036
|
+
readonly hide: {
|
|
11037
|
+
readonly type: "boolean";
|
|
11038
|
+
};
|
|
11039
|
+
readonly includes: {
|
|
11040
|
+
readonly type: "array";
|
|
11041
|
+
readonly items: {
|
|
11042
|
+
readonly type: "object";
|
|
11043
|
+
readonly required: readonly ["type"];
|
|
11044
|
+
readonly properties: {
|
|
11045
|
+
readonly type: {
|
|
11046
|
+
readonly type: "string";
|
|
11047
|
+
};
|
|
11048
|
+
};
|
|
11049
|
+
readonly additionalProperties: false;
|
|
11050
|
+
};
|
|
11051
|
+
};
|
|
11052
|
+
readonly excludes: {
|
|
11053
|
+
readonly type: "array";
|
|
11054
|
+
readonly items: {
|
|
11055
|
+
readonly type: "object";
|
|
11056
|
+
readonly required: readonly ["key"];
|
|
11057
|
+
readonly properties: {
|
|
11058
|
+
readonly key: {
|
|
11059
|
+
readonly type: "string";
|
|
11060
|
+
};
|
|
11061
|
+
};
|
|
11062
|
+
readonly additionalProperties: false;
|
|
11063
|
+
};
|
|
11064
|
+
};
|
|
11065
|
+
readonly filters: {
|
|
11066
|
+
readonly type: "array";
|
|
11067
|
+
readonly items: {
|
|
11068
|
+
readonly type: "object";
|
|
11069
|
+
readonly required: readonly ["property", "title"];
|
|
11070
|
+
readonly properties: {
|
|
11071
|
+
readonly property: {
|
|
11072
|
+
readonly type: "string";
|
|
11073
|
+
};
|
|
11074
|
+
readonly hide: {
|
|
11075
|
+
readonly type: "boolean";
|
|
11076
|
+
};
|
|
11077
|
+
readonly label: {
|
|
11078
|
+
readonly type: "string";
|
|
11079
|
+
};
|
|
11080
|
+
readonly options: {
|
|
11081
|
+
readonly type: "array";
|
|
11082
|
+
readonly items: {
|
|
11083
|
+
readonly type: "string";
|
|
11084
|
+
};
|
|
11085
|
+
};
|
|
11086
|
+
readonly type: {
|
|
11087
|
+
readonly type: "string";
|
|
11088
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
11089
|
+
readonly default: "checkboxes";
|
|
11090
|
+
};
|
|
11091
|
+
readonly title: {
|
|
11092
|
+
readonly type: "string";
|
|
11093
|
+
};
|
|
11094
|
+
readonly titleTranslationKey: {
|
|
11095
|
+
readonly type: "string";
|
|
11096
|
+
};
|
|
11097
|
+
readonly parentFilter: {
|
|
11098
|
+
readonly type: "string";
|
|
11099
|
+
};
|
|
11100
|
+
readonly valuesMapping: {
|
|
11101
|
+
readonly type: "object";
|
|
11102
|
+
readonly additionalProperties: {
|
|
11103
|
+
readonly type: "string";
|
|
11104
|
+
};
|
|
11105
|
+
};
|
|
11106
|
+
};
|
|
11107
|
+
readonly additionalProperties: false;
|
|
11108
|
+
};
|
|
11109
|
+
};
|
|
11110
|
+
readonly titleTranslationKey: {
|
|
11111
|
+
readonly type: "string";
|
|
11112
|
+
};
|
|
11113
|
+
readonly descriptionTranslationKey: {
|
|
11114
|
+
readonly type: "string";
|
|
11115
|
+
};
|
|
11116
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
11117
|
+
readonly type: "string";
|
|
11118
|
+
};
|
|
11119
|
+
};
|
|
11120
|
+
readonly additionalProperties: false;
|
|
11121
|
+
};
|
|
11031
11122
|
};
|
|
11032
11123
|
};
|
|
11033
11124
|
readonly additionalProperties: false;
|
|
@@ -11642,10 +11733,6 @@ export declare const redoclyConfigSchema: {
|
|
|
11642
11733
|
readonly additionalProperties: false;
|
|
11643
11734
|
};
|
|
11644
11735
|
};
|
|
11645
|
-
readonly projectUrl: {
|
|
11646
|
-
readonly type: "string";
|
|
11647
|
-
readonly format: "uri";
|
|
11648
|
-
};
|
|
11649
11736
|
};
|
|
11650
11737
|
readonly additionalProperties: false;
|
|
11651
11738
|
};
|
|
@@ -16361,7 +16448,98 @@ export declare const redoclyConfigSchema: {
|
|
|
16361
16448
|
readonly additionalProperties: false;
|
|
16362
16449
|
};
|
|
16363
16450
|
};
|
|
16364
|
-
readonly additionalProperties:
|
|
16451
|
+
readonly additionalProperties: {
|
|
16452
|
+
readonly type: "object";
|
|
16453
|
+
readonly properties: {
|
|
16454
|
+
readonly slug: {
|
|
16455
|
+
readonly type: "string";
|
|
16456
|
+
};
|
|
16457
|
+
readonly hide: {
|
|
16458
|
+
readonly type: "boolean";
|
|
16459
|
+
};
|
|
16460
|
+
readonly includes: {
|
|
16461
|
+
readonly type: "array";
|
|
16462
|
+
readonly items: {
|
|
16463
|
+
readonly type: "object";
|
|
16464
|
+
readonly required: readonly ["type"];
|
|
16465
|
+
readonly properties: {
|
|
16466
|
+
readonly type: {
|
|
16467
|
+
readonly type: "string";
|
|
16468
|
+
};
|
|
16469
|
+
};
|
|
16470
|
+
readonly additionalProperties: false;
|
|
16471
|
+
};
|
|
16472
|
+
};
|
|
16473
|
+
readonly excludes: {
|
|
16474
|
+
readonly type: "array";
|
|
16475
|
+
readonly items: {
|
|
16476
|
+
readonly type: "object";
|
|
16477
|
+
readonly required: readonly ["key"];
|
|
16478
|
+
readonly properties: {
|
|
16479
|
+
readonly key: {
|
|
16480
|
+
readonly type: "string";
|
|
16481
|
+
};
|
|
16482
|
+
};
|
|
16483
|
+
readonly additionalProperties: false;
|
|
16484
|
+
};
|
|
16485
|
+
};
|
|
16486
|
+
readonly filters: {
|
|
16487
|
+
readonly type: "array";
|
|
16488
|
+
readonly items: {
|
|
16489
|
+
readonly type: "object";
|
|
16490
|
+
readonly required: readonly ["property", "title"];
|
|
16491
|
+
readonly properties: {
|
|
16492
|
+
readonly property: {
|
|
16493
|
+
readonly type: "string";
|
|
16494
|
+
};
|
|
16495
|
+
readonly hide: {
|
|
16496
|
+
readonly type: "boolean";
|
|
16497
|
+
};
|
|
16498
|
+
readonly label: {
|
|
16499
|
+
readonly type: "string";
|
|
16500
|
+
};
|
|
16501
|
+
readonly options: {
|
|
16502
|
+
readonly type: "array";
|
|
16503
|
+
readonly items: {
|
|
16504
|
+
readonly type: "string";
|
|
16505
|
+
};
|
|
16506
|
+
};
|
|
16507
|
+
readonly type: {
|
|
16508
|
+
readonly type: "string";
|
|
16509
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
16510
|
+
readonly default: "checkboxes";
|
|
16511
|
+
};
|
|
16512
|
+
readonly title: {
|
|
16513
|
+
readonly type: "string";
|
|
16514
|
+
};
|
|
16515
|
+
readonly titleTranslationKey: {
|
|
16516
|
+
readonly type: "string";
|
|
16517
|
+
};
|
|
16518
|
+
readonly parentFilter: {
|
|
16519
|
+
readonly type: "string";
|
|
16520
|
+
};
|
|
16521
|
+
readonly valuesMapping: {
|
|
16522
|
+
readonly type: "object";
|
|
16523
|
+
readonly additionalProperties: {
|
|
16524
|
+
readonly type: "string";
|
|
16525
|
+
};
|
|
16526
|
+
};
|
|
16527
|
+
};
|
|
16528
|
+
readonly additionalProperties: false;
|
|
16529
|
+
};
|
|
16530
|
+
};
|
|
16531
|
+
readonly titleTranslationKey: {
|
|
16532
|
+
readonly type: "string";
|
|
16533
|
+
};
|
|
16534
|
+
readonly descriptionTranslationKey: {
|
|
16535
|
+
readonly type: "string";
|
|
16536
|
+
};
|
|
16537
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
16538
|
+
readonly type: "string";
|
|
16539
|
+
};
|
|
16540
|
+
};
|
|
16541
|
+
readonly additionalProperties: false;
|
|
16542
|
+
};
|
|
16365
16543
|
};
|
|
16366
16544
|
};
|
|
16367
16545
|
readonly additionalProperties: false;
|
|
@@ -22705,28 +22883,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
22705
22883
|
hide: {
|
|
22706
22884
|
type: "boolean";
|
|
22707
22885
|
};
|
|
22708
|
-
engine: {
|
|
22709
|
-
enum: ("flexsearch" | "typesense")[];
|
|
22710
|
-
type: "string";
|
|
22711
|
-
};
|
|
22712
|
-
ai: {
|
|
22713
|
-
properties: {
|
|
22714
|
-
hide: {
|
|
22715
|
-
type: "boolean";
|
|
22716
|
-
};
|
|
22717
|
-
suggestions: {
|
|
22718
|
-
items: {
|
|
22719
|
-
type: "string";
|
|
22720
|
-
};
|
|
22721
|
-
type: "array";
|
|
22722
|
-
};
|
|
22723
|
-
prompt: {
|
|
22724
|
-
type: "string";
|
|
22725
|
-
};
|
|
22726
|
-
};
|
|
22727
|
-
additionalProperties: false;
|
|
22728
|
-
type: "object";
|
|
22729
|
-
};
|
|
22730
22886
|
filters: {
|
|
22731
22887
|
properties: {
|
|
22732
22888
|
hide: {
|
|
@@ -22756,6 +22912,28 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
22756
22912
|
additionalProperties: false;
|
|
22757
22913
|
type: "object";
|
|
22758
22914
|
};
|
|
22915
|
+
engine: {
|
|
22916
|
+
enum: ("flexsearch" | "typesense")[];
|
|
22917
|
+
type: "string";
|
|
22918
|
+
};
|
|
22919
|
+
ai: {
|
|
22920
|
+
properties: {
|
|
22921
|
+
hide: {
|
|
22922
|
+
type: "boolean";
|
|
22923
|
+
};
|
|
22924
|
+
suggestions: {
|
|
22925
|
+
items: {
|
|
22926
|
+
type: "string";
|
|
22927
|
+
};
|
|
22928
|
+
type: "array";
|
|
22929
|
+
};
|
|
22930
|
+
prompt: {
|
|
22931
|
+
type: "string";
|
|
22932
|
+
};
|
|
22933
|
+
};
|
|
22934
|
+
additionalProperties: false;
|
|
22935
|
+
type: "object";
|
|
22936
|
+
};
|
|
22759
22937
|
placement: {
|
|
22760
22938
|
type: "string";
|
|
22761
22939
|
};
|
|
@@ -25193,6 +25371,12 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25193
25371
|
};
|
|
25194
25372
|
type: "array";
|
|
25195
25373
|
};
|
|
25374
|
+
titleTranslationKey: {
|
|
25375
|
+
type: "string";
|
|
25376
|
+
};
|
|
25377
|
+
descriptionTranslationKey: {
|
|
25378
|
+
type: "string";
|
|
25379
|
+
};
|
|
25196
25380
|
groupByFirstFilter: {
|
|
25197
25381
|
type: "boolean";
|
|
25198
25382
|
};
|
|
@@ -25206,12 +25390,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25206
25390
|
separateVersions: {
|
|
25207
25391
|
type: "boolean";
|
|
25208
25392
|
};
|
|
25209
|
-
titleTranslationKey: {
|
|
25210
|
-
type: "string";
|
|
25211
|
-
};
|
|
25212
|
-
descriptionTranslationKey: {
|
|
25213
|
-
type: "string";
|
|
25214
|
-
};
|
|
25215
25393
|
};
|
|
25216
25394
|
additionalProperties: true;
|
|
25217
25395
|
type: "object";
|
|
@@ -25241,6 +25419,15 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25241
25419
|
hide: {
|
|
25242
25420
|
type: "boolean";
|
|
25243
25421
|
};
|
|
25422
|
+
excludes: {
|
|
25423
|
+
items: {
|
|
25424
|
+
properties: any;
|
|
25425
|
+
additionalProperties: false;
|
|
25426
|
+
type: "object";
|
|
25427
|
+
required: "key"[];
|
|
25428
|
+
};
|
|
25429
|
+
type: "array";
|
|
25430
|
+
};
|
|
25244
25431
|
filters: {
|
|
25245
25432
|
items: {
|
|
25246
25433
|
properties: any;
|
|
@@ -25256,15 +25443,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25256
25443
|
descriptionTranslationKey: {
|
|
25257
25444
|
type: "string";
|
|
25258
25445
|
};
|
|
25259
|
-
excludes: {
|
|
25260
|
-
items: {
|
|
25261
|
-
properties: any;
|
|
25262
|
-
additionalProperties: false;
|
|
25263
|
-
type: "object";
|
|
25264
|
-
required: "key"[];
|
|
25265
|
-
};
|
|
25266
|
-
type: "array";
|
|
25267
|
-
};
|
|
25268
25446
|
catalogSwitcherLabelTranslationKey: {
|
|
25269
25447
|
type: "string";
|
|
25270
25448
|
};
|
|
@@ -25289,6 +25467,15 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25289
25467
|
hide: {
|
|
25290
25468
|
type: "boolean";
|
|
25291
25469
|
};
|
|
25470
|
+
excludes: {
|
|
25471
|
+
items: {
|
|
25472
|
+
properties: any;
|
|
25473
|
+
additionalProperties: false;
|
|
25474
|
+
type: "object";
|
|
25475
|
+
required: "key"[];
|
|
25476
|
+
};
|
|
25477
|
+
type: "array";
|
|
25478
|
+
};
|
|
25292
25479
|
filters: {
|
|
25293
25480
|
items: {
|
|
25294
25481
|
properties: any;
|
|
@@ -25304,15 +25491,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25304
25491
|
descriptionTranslationKey: {
|
|
25305
25492
|
type: "string";
|
|
25306
25493
|
};
|
|
25307
|
-
excludes: {
|
|
25308
|
-
items: {
|
|
25309
|
-
properties: any;
|
|
25310
|
-
additionalProperties: false;
|
|
25311
|
-
type: "object";
|
|
25312
|
-
required: "key"[];
|
|
25313
|
-
};
|
|
25314
|
-
type: "array";
|
|
25315
|
-
};
|
|
25316
25494
|
catalogSwitcherLabelTranslationKey: {
|
|
25317
25495
|
type: "string";
|
|
25318
25496
|
};
|
|
@@ -25337,6 +25515,15 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25337
25515
|
hide: {
|
|
25338
25516
|
type: "boolean";
|
|
25339
25517
|
};
|
|
25518
|
+
excludes: {
|
|
25519
|
+
items: {
|
|
25520
|
+
properties: any;
|
|
25521
|
+
additionalProperties: false;
|
|
25522
|
+
type: "object";
|
|
25523
|
+
required: "key"[];
|
|
25524
|
+
};
|
|
25525
|
+
type: "array";
|
|
25526
|
+
};
|
|
25340
25527
|
filters: {
|
|
25341
25528
|
items: {
|
|
25342
25529
|
properties: any;
|
|
@@ -25352,15 +25539,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25352
25539
|
descriptionTranslationKey: {
|
|
25353
25540
|
type: "string";
|
|
25354
25541
|
};
|
|
25355
|
-
excludes: {
|
|
25356
|
-
items: {
|
|
25357
|
-
properties: any;
|
|
25358
|
-
additionalProperties: false;
|
|
25359
|
-
type: "object";
|
|
25360
|
-
required: "key"[];
|
|
25361
|
-
};
|
|
25362
|
-
type: "array";
|
|
25363
|
-
};
|
|
25364
25542
|
catalogSwitcherLabelTranslationKey: {
|
|
25365
25543
|
type: "string";
|
|
25366
25544
|
};
|
|
@@ -25385,6 +25563,15 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25385
25563
|
hide: {
|
|
25386
25564
|
type: "boolean";
|
|
25387
25565
|
};
|
|
25566
|
+
excludes: {
|
|
25567
|
+
items: {
|
|
25568
|
+
properties: any;
|
|
25569
|
+
additionalProperties: false;
|
|
25570
|
+
type: "object";
|
|
25571
|
+
required: "key"[];
|
|
25572
|
+
};
|
|
25573
|
+
type: "array";
|
|
25574
|
+
};
|
|
25388
25575
|
filters: {
|
|
25389
25576
|
items: {
|
|
25390
25577
|
properties: any;
|
|
@@ -25400,15 +25587,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25400
25587
|
descriptionTranslationKey: {
|
|
25401
25588
|
type: "string";
|
|
25402
25589
|
};
|
|
25403
|
-
excludes: {
|
|
25404
|
-
items: {
|
|
25405
|
-
properties: any;
|
|
25406
|
-
additionalProperties: false;
|
|
25407
|
-
type: "object";
|
|
25408
|
-
required: "key"[];
|
|
25409
|
-
};
|
|
25410
|
-
type: "array";
|
|
25411
|
-
};
|
|
25412
25590
|
catalogSwitcherLabelTranslationKey: {
|
|
25413
25591
|
type: "string";
|
|
25414
25592
|
};
|
|
@@ -25433,6 +25611,15 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25433
25611
|
hide: {
|
|
25434
25612
|
type: "boolean";
|
|
25435
25613
|
};
|
|
25614
|
+
excludes: {
|
|
25615
|
+
items: {
|
|
25616
|
+
properties: any;
|
|
25617
|
+
additionalProperties: false;
|
|
25618
|
+
type: "object";
|
|
25619
|
+
required: "key"[];
|
|
25620
|
+
};
|
|
25621
|
+
type: "array";
|
|
25622
|
+
};
|
|
25436
25623
|
filters: {
|
|
25437
25624
|
items: {
|
|
25438
25625
|
properties: any;
|
|
@@ -25448,15 +25635,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25448
25635
|
descriptionTranslationKey: {
|
|
25449
25636
|
type: "string";
|
|
25450
25637
|
};
|
|
25451
|
-
excludes: {
|
|
25452
|
-
items: {
|
|
25453
|
-
properties: any;
|
|
25454
|
-
additionalProperties: false;
|
|
25455
|
-
type: "object";
|
|
25456
|
-
required: "key"[];
|
|
25457
|
-
};
|
|
25458
|
-
type: "array";
|
|
25459
|
-
};
|
|
25460
25638
|
catalogSwitcherLabelTranslationKey: {
|
|
25461
25639
|
type: "string";
|
|
25462
25640
|
};
|
|
@@ -25481,6 +25659,15 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25481
25659
|
hide: {
|
|
25482
25660
|
type: "boolean";
|
|
25483
25661
|
};
|
|
25662
|
+
excludes: {
|
|
25663
|
+
items: {
|
|
25664
|
+
properties: any;
|
|
25665
|
+
additionalProperties: false;
|
|
25666
|
+
type: "object";
|
|
25667
|
+
required: "key"[];
|
|
25668
|
+
};
|
|
25669
|
+
type: "array";
|
|
25670
|
+
};
|
|
25484
25671
|
filters: {
|
|
25485
25672
|
items: {
|
|
25486
25673
|
properties: any;
|
|
@@ -25496,15 +25683,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25496
25683
|
descriptionTranslationKey: {
|
|
25497
25684
|
type: "string";
|
|
25498
25685
|
};
|
|
25499
|
-
excludes: {
|
|
25500
|
-
items: {
|
|
25501
|
-
properties: any;
|
|
25502
|
-
additionalProperties: false;
|
|
25503
|
-
type: "object";
|
|
25504
|
-
required: "key"[];
|
|
25505
|
-
};
|
|
25506
|
-
type: "array";
|
|
25507
|
-
};
|
|
25508
25686
|
catalogSwitcherLabelTranslationKey: {
|
|
25509
25687
|
type: "string";
|
|
25510
25688
|
};
|
|
@@ -25529,6 +25707,15 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25529
25707
|
hide: {
|
|
25530
25708
|
type: "boolean";
|
|
25531
25709
|
};
|
|
25710
|
+
excludes: {
|
|
25711
|
+
items: {
|
|
25712
|
+
properties: any;
|
|
25713
|
+
additionalProperties: false;
|
|
25714
|
+
type: "object";
|
|
25715
|
+
required: "key"[];
|
|
25716
|
+
};
|
|
25717
|
+
type: "array";
|
|
25718
|
+
};
|
|
25532
25719
|
filters: {
|
|
25533
25720
|
items: {
|
|
25534
25721
|
properties: any;
|
|
@@ -25544,15 +25731,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25544
25731
|
descriptionTranslationKey: {
|
|
25545
25732
|
type: "string";
|
|
25546
25733
|
};
|
|
25547
|
-
excludes: {
|
|
25548
|
-
items: {
|
|
25549
|
-
properties: any;
|
|
25550
|
-
additionalProperties: false;
|
|
25551
|
-
type: "object";
|
|
25552
|
-
required: "key"[];
|
|
25553
|
-
};
|
|
25554
|
-
type: "array";
|
|
25555
|
-
};
|
|
25556
25734
|
catalogSwitcherLabelTranslationKey: {
|
|
25557
25735
|
type: "string";
|
|
25558
25736
|
};
|
|
@@ -25577,6 +25755,15 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25577
25755
|
hide: {
|
|
25578
25756
|
type: "boolean";
|
|
25579
25757
|
};
|
|
25758
|
+
excludes: {
|
|
25759
|
+
items: {
|
|
25760
|
+
properties: any;
|
|
25761
|
+
additionalProperties: false;
|
|
25762
|
+
type: "object";
|
|
25763
|
+
required: "key"[];
|
|
25764
|
+
};
|
|
25765
|
+
type: "array";
|
|
25766
|
+
};
|
|
25580
25767
|
filters: {
|
|
25581
25768
|
items: {
|
|
25582
25769
|
properties: any;
|
|
@@ -25592,15 +25779,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25592
25779
|
descriptionTranslationKey: {
|
|
25593
25780
|
type: "string";
|
|
25594
25781
|
};
|
|
25595
|
-
excludes: {
|
|
25596
|
-
items: {
|
|
25597
|
-
properties: any;
|
|
25598
|
-
additionalProperties: false;
|
|
25599
|
-
type: "object";
|
|
25600
|
-
required: "key"[];
|
|
25601
|
-
};
|
|
25602
|
-
type: "array";
|
|
25603
|
-
};
|
|
25604
25782
|
catalogSwitcherLabelTranslationKey: {
|
|
25605
25783
|
type: "string";
|
|
25606
25784
|
};
|
|
@@ -25609,7 +25787,54 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25609
25787
|
type: "object";
|
|
25610
25788
|
};
|
|
25611
25789
|
};
|
|
25612
|
-
additionalProperties:
|
|
25790
|
+
additionalProperties: {
|
|
25791
|
+
properties: {
|
|
25792
|
+
includes: {
|
|
25793
|
+
items: {
|
|
25794
|
+
properties: any;
|
|
25795
|
+
additionalProperties: false;
|
|
25796
|
+
type: "object";
|
|
25797
|
+
required: "type"[];
|
|
25798
|
+
};
|
|
25799
|
+
type: "array";
|
|
25800
|
+
};
|
|
25801
|
+
slug: {
|
|
25802
|
+
type: "string";
|
|
25803
|
+
};
|
|
25804
|
+
hide: {
|
|
25805
|
+
type: "boolean";
|
|
25806
|
+
};
|
|
25807
|
+
excludes: {
|
|
25808
|
+
items: {
|
|
25809
|
+
properties: any;
|
|
25810
|
+
additionalProperties: false;
|
|
25811
|
+
type: "object";
|
|
25812
|
+
required: "key"[];
|
|
25813
|
+
};
|
|
25814
|
+
type: "array";
|
|
25815
|
+
};
|
|
25816
|
+
filters: {
|
|
25817
|
+
items: {
|
|
25818
|
+
properties: any;
|
|
25819
|
+
additionalProperties: false;
|
|
25820
|
+
type: "object";
|
|
25821
|
+
required: ("title" | "property")[];
|
|
25822
|
+
};
|
|
25823
|
+
type: "array";
|
|
25824
|
+
};
|
|
25825
|
+
titleTranslationKey: {
|
|
25826
|
+
type: "string";
|
|
25827
|
+
};
|
|
25828
|
+
descriptionTranslationKey: {
|
|
25829
|
+
type: "string";
|
|
25830
|
+
};
|
|
25831
|
+
catalogSwitcherLabelTranslationKey: {
|
|
25832
|
+
type: "string";
|
|
25833
|
+
};
|
|
25834
|
+
};
|
|
25835
|
+
additionalProperties: false;
|
|
25836
|
+
type: "object";
|
|
25837
|
+
};
|
|
25613
25838
|
type: "object";
|
|
25614
25839
|
};
|
|
25615
25840
|
};
|
|
@@ -25785,6 +26010,12 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25785
26010
|
};
|
|
25786
26011
|
type: "array";
|
|
25787
26012
|
};
|
|
26013
|
+
titleTranslationKey: {
|
|
26014
|
+
type: "string";
|
|
26015
|
+
};
|
|
26016
|
+
descriptionTranslationKey: {
|
|
26017
|
+
type: "string";
|
|
26018
|
+
};
|
|
25788
26019
|
groupByFirstFilter: {
|
|
25789
26020
|
type: "boolean";
|
|
25790
26021
|
};
|
|
@@ -25798,12 +26029,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25798
26029
|
separateVersions: {
|
|
25799
26030
|
type: "boolean";
|
|
25800
26031
|
};
|
|
25801
|
-
titleTranslationKey: {
|
|
25802
|
-
type: "string";
|
|
25803
|
-
};
|
|
25804
|
-
descriptionTranslationKey: {
|
|
25805
|
-
type: "string";
|
|
25806
|
-
};
|
|
25807
26032
|
};
|
|
25808
26033
|
additionalProperties: true;
|
|
25809
26034
|
type: "object";
|
|
@@ -26800,10 +27025,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
26800
27025
|
};
|
|
26801
27026
|
type: "array";
|
|
26802
27027
|
};
|
|
26803
|
-
projectUrl: {
|
|
26804
|
-
type: "string";
|
|
26805
|
-
format: "uri";
|
|
26806
|
-
};
|
|
26807
27028
|
};
|
|
26808
27029
|
additionalProperties: false;
|
|
26809
27030
|
type: "object";
|
|
@@ -27280,28 +27501,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
27280
27501
|
hide: {
|
|
27281
27502
|
type: "boolean";
|
|
27282
27503
|
};
|
|
27283
|
-
engine: {
|
|
27284
|
-
enum: ("flexsearch" | "typesense")[];
|
|
27285
|
-
type: "string";
|
|
27286
|
-
};
|
|
27287
|
-
ai: {
|
|
27288
|
-
properties: {
|
|
27289
|
-
hide: {
|
|
27290
|
-
type: "boolean";
|
|
27291
|
-
};
|
|
27292
|
-
suggestions: {
|
|
27293
|
-
items: {
|
|
27294
|
-
type: "string";
|
|
27295
|
-
};
|
|
27296
|
-
type: "array";
|
|
27297
|
-
};
|
|
27298
|
-
prompt: {
|
|
27299
|
-
type: "string";
|
|
27300
|
-
};
|
|
27301
|
-
};
|
|
27302
|
-
additionalProperties: false;
|
|
27303
|
-
type: "object";
|
|
27304
|
-
};
|
|
27305
27504
|
filters: {
|
|
27306
27505
|
properties: {
|
|
27307
27506
|
hide: {
|
|
@@ -27331,6 +27530,28 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
27331
27530
|
additionalProperties: false;
|
|
27332
27531
|
type: "object";
|
|
27333
27532
|
};
|
|
27533
|
+
engine: {
|
|
27534
|
+
enum: ("flexsearch" | "typesense")[];
|
|
27535
|
+
type: "string";
|
|
27536
|
+
};
|
|
27537
|
+
ai: {
|
|
27538
|
+
properties: {
|
|
27539
|
+
hide: {
|
|
27540
|
+
type: "boolean";
|
|
27541
|
+
};
|
|
27542
|
+
suggestions: {
|
|
27543
|
+
items: {
|
|
27544
|
+
type: "string";
|
|
27545
|
+
};
|
|
27546
|
+
type: "array";
|
|
27547
|
+
};
|
|
27548
|
+
prompt: {
|
|
27549
|
+
type: "string";
|
|
27550
|
+
};
|
|
27551
|
+
};
|
|
27552
|
+
additionalProperties: false;
|
|
27553
|
+
type: "object";
|
|
27554
|
+
};
|
|
27334
27555
|
placement: {
|
|
27335
27556
|
type: "string";
|
|
27336
27557
|
};
|
|
@@ -29768,6 +29989,12 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29768
29989
|
};
|
|
29769
29990
|
type: "array";
|
|
29770
29991
|
};
|
|
29992
|
+
titleTranslationKey: {
|
|
29993
|
+
type: "string";
|
|
29994
|
+
};
|
|
29995
|
+
descriptionTranslationKey: {
|
|
29996
|
+
type: "string";
|
|
29997
|
+
};
|
|
29771
29998
|
groupByFirstFilter: {
|
|
29772
29999
|
type: "boolean";
|
|
29773
30000
|
};
|
|
@@ -29781,12 +30008,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29781
30008
|
separateVersions: {
|
|
29782
30009
|
type: "boolean";
|
|
29783
30010
|
};
|
|
29784
|
-
titleTranslationKey: {
|
|
29785
|
-
type: "string";
|
|
29786
|
-
};
|
|
29787
|
-
descriptionTranslationKey: {
|
|
29788
|
-
type: "string";
|
|
29789
|
-
};
|
|
29790
30011
|
};
|
|
29791
30012
|
additionalProperties: true;
|
|
29792
30013
|
type: "object";
|
|
@@ -29816,6 +30037,15 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29816
30037
|
hide: {
|
|
29817
30038
|
type: "boolean";
|
|
29818
30039
|
};
|
|
30040
|
+
excludes: {
|
|
30041
|
+
items: {
|
|
30042
|
+
properties: any;
|
|
30043
|
+
additionalProperties: false;
|
|
30044
|
+
type: "object";
|
|
30045
|
+
required: "key"[];
|
|
30046
|
+
};
|
|
30047
|
+
type: "array";
|
|
30048
|
+
};
|
|
29819
30049
|
filters: {
|
|
29820
30050
|
items: {
|
|
29821
30051
|
properties: any;
|
|
@@ -29831,15 +30061,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29831
30061
|
descriptionTranslationKey: {
|
|
29832
30062
|
type: "string";
|
|
29833
30063
|
};
|
|
29834
|
-
excludes: {
|
|
29835
|
-
items: {
|
|
29836
|
-
properties: any;
|
|
29837
|
-
additionalProperties: false;
|
|
29838
|
-
type: "object";
|
|
29839
|
-
required: "key"[];
|
|
29840
|
-
};
|
|
29841
|
-
type: "array";
|
|
29842
|
-
};
|
|
29843
30064
|
catalogSwitcherLabelTranslationKey: {
|
|
29844
30065
|
type: "string";
|
|
29845
30066
|
};
|
|
@@ -29864,6 +30085,15 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29864
30085
|
hide: {
|
|
29865
30086
|
type: "boolean";
|
|
29866
30087
|
};
|
|
30088
|
+
excludes: {
|
|
30089
|
+
items: {
|
|
30090
|
+
properties: any;
|
|
30091
|
+
additionalProperties: false;
|
|
30092
|
+
type: "object";
|
|
30093
|
+
required: "key"[];
|
|
30094
|
+
};
|
|
30095
|
+
type: "array";
|
|
30096
|
+
};
|
|
29867
30097
|
filters: {
|
|
29868
30098
|
items: {
|
|
29869
30099
|
properties: any;
|
|
@@ -29879,15 +30109,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29879
30109
|
descriptionTranslationKey: {
|
|
29880
30110
|
type: "string";
|
|
29881
30111
|
};
|
|
29882
|
-
excludes: {
|
|
29883
|
-
items: {
|
|
29884
|
-
properties: any;
|
|
29885
|
-
additionalProperties: false;
|
|
29886
|
-
type: "object";
|
|
29887
|
-
required: "key"[];
|
|
29888
|
-
};
|
|
29889
|
-
type: "array";
|
|
29890
|
-
};
|
|
29891
30112
|
catalogSwitcherLabelTranslationKey: {
|
|
29892
30113
|
type: "string";
|
|
29893
30114
|
};
|
|
@@ -29912,6 +30133,15 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29912
30133
|
hide: {
|
|
29913
30134
|
type: "boolean";
|
|
29914
30135
|
};
|
|
30136
|
+
excludes: {
|
|
30137
|
+
items: {
|
|
30138
|
+
properties: any;
|
|
30139
|
+
additionalProperties: false;
|
|
30140
|
+
type: "object";
|
|
30141
|
+
required: "key"[];
|
|
30142
|
+
};
|
|
30143
|
+
type: "array";
|
|
30144
|
+
};
|
|
29915
30145
|
filters: {
|
|
29916
30146
|
items: {
|
|
29917
30147
|
properties: any;
|
|
@@ -29927,15 +30157,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29927
30157
|
descriptionTranslationKey: {
|
|
29928
30158
|
type: "string";
|
|
29929
30159
|
};
|
|
29930
|
-
excludes: {
|
|
29931
|
-
items: {
|
|
29932
|
-
properties: any;
|
|
29933
|
-
additionalProperties: false;
|
|
29934
|
-
type: "object";
|
|
29935
|
-
required: "key"[];
|
|
29936
|
-
};
|
|
29937
|
-
type: "array";
|
|
29938
|
-
};
|
|
29939
30160
|
catalogSwitcherLabelTranslationKey: {
|
|
29940
30161
|
type: "string";
|
|
29941
30162
|
};
|
|
@@ -29960,6 +30181,15 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29960
30181
|
hide: {
|
|
29961
30182
|
type: "boolean";
|
|
29962
30183
|
};
|
|
30184
|
+
excludes: {
|
|
30185
|
+
items: {
|
|
30186
|
+
properties: any;
|
|
30187
|
+
additionalProperties: false;
|
|
30188
|
+
type: "object";
|
|
30189
|
+
required: "key"[];
|
|
30190
|
+
};
|
|
30191
|
+
type: "array";
|
|
30192
|
+
};
|
|
29963
30193
|
filters: {
|
|
29964
30194
|
items: {
|
|
29965
30195
|
properties: any;
|
|
@@ -29975,15 +30205,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29975
30205
|
descriptionTranslationKey: {
|
|
29976
30206
|
type: "string";
|
|
29977
30207
|
};
|
|
29978
|
-
excludes: {
|
|
29979
|
-
items: {
|
|
29980
|
-
properties: any;
|
|
29981
|
-
additionalProperties: false;
|
|
29982
|
-
type: "object";
|
|
29983
|
-
required: "key"[];
|
|
29984
|
-
};
|
|
29985
|
-
type: "array";
|
|
29986
|
-
};
|
|
29987
30208
|
catalogSwitcherLabelTranslationKey: {
|
|
29988
30209
|
type: "string";
|
|
29989
30210
|
};
|
|
@@ -30008,6 +30229,15 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
30008
30229
|
hide: {
|
|
30009
30230
|
type: "boolean";
|
|
30010
30231
|
};
|
|
30232
|
+
excludes: {
|
|
30233
|
+
items: {
|
|
30234
|
+
properties: any;
|
|
30235
|
+
additionalProperties: false;
|
|
30236
|
+
type: "object";
|
|
30237
|
+
required: "key"[];
|
|
30238
|
+
};
|
|
30239
|
+
type: "array";
|
|
30240
|
+
};
|
|
30011
30241
|
filters: {
|
|
30012
30242
|
items: {
|
|
30013
30243
|
properties: any;
|
|
@@ -30023,15 +30253,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
30023
30253
|
descriptionTranslationKey: {
|
|
30024
30254
|
type: "string";
|
|
30025
30255
|
};
|
|
30026
|
-
excludes: {
|
|
30027
|
-
items: {
|
|
30028
|
-
properties: any;
|
|
30029
|
-
additionalProperties: false;
|
|
30030
|
-
type: "object";
|
|
30031
|
-
required: "key"[];
|
|
30032
|
-
};
|
|
30033
|
-
type: "array";
|
|
30034
|
-
};
|
|
30035
30256
|
catalogSwitcherLabelTranslationKey: {
|
|
30036
30257
|
type: "string";
|
|
30037
30258
|
};
|
|
@@ -30056,6 +30277,15 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
30056
30277
|
hide: {
|
|
30057
30278
|
type: "boolean";
|
|
30058
30279
|
};
|
|
30280
|
+
excludes: {
|
|
30281
|
+
items: {
|
|
30282
|
+
properties: any;
|
|
30283
|
+
additionalProperties: false;
|
|
30284
|
+
type: "object";
|
|
30285
|
+
required: "key"[];
|
|
30286
|
+
};
|
|
30287
|
+
type: "array";
|
|
30288
|
+
};
|
|
30059
30289
|
filters: {
|
|
30060
30290
|
items: {
|
|
30061
30291
|
properties: any;
|
|
@@ -30071,15 +30301,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
30071
30301
|
descriptionTranslationKey: {
|
|
30072
30302
|
type: "string";
|
|
30073
30303
|
};
|
|
30074
|
-
excludes: {
|
|
30075
|
-
items: {
|
|
30076
|
-
properties: any;
|
|
30077
|
-
additionalProperties: false;
|
|
30078
|
-
type: "object";
|
|
30079
|
-
required: "key"[];
|
|
30080
|
-
};
|
|
30081
|
-
type: "array";
|
|
30082
|
-
};
|
|
30083
30304
|
catalogSwitcherLabelTranslationKey: {
|
|
30084
30305
|
type: "string";
|
|
30085
30306
|
};
|
|
@@ -30104,6 +30325,15 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
30104
30325
|
hide: {
|
|
30105
30326
|
type: "boolean";
|
|
30106
30327
|
};
|
|
30328
|
+
excludes: {
|
|
30329
|
+
items: {
|
|
30330
|
+
properties: any;
|
|
30331
|
+
additionalProperties: false;
|
|
30332
|
+
type: "object";
|
|
30333
|
+
required: "key"[];
|
|
30334
|
+
};
|
|
30335
|
+
type: "array";
|
|
30336
|
+
};
|
|
30107
30337
|
filters: {
|
|
30108
30338
|
items: {
|
|
30109
30339
|
properties: any;
|
|
@@ -30119,15 +30349,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
30119
30349
|
descriptionTranslationKey: {
|
|
30120
30350
|
type: "string";
|
|
30121
30351
|
};
|
|
30122
|
-
excludes: {
|
|
30123
|
-
items: {
|
|
30124
|
-
properties: any;
|
|
30125
|
-
additionalProperties: false;
|
|
30126
|
-
type: "object";
|
|
30127
|
-
required: "key"[];
|
|
30128
|
-
};
|
|
30129
|
-
type: "array";
|
|
30130
|
-
};
|
|
30131
30352
|
catalogSwitcherLabelTranslationKey: {
|
|
30132
30353
|
type: "string";
|
|
30133
30354
|
};
|
|
@@ -30152,6 +30373,15 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
30152
30373
|
hide: {
|
|
30153
30374
|
type: "boolean";
|
|
30154
30375
|
};
|
|
30376
|
+
excludes: {
|
|
30377
|
+
items: {
|
|
30378
|
+
properties: any;
|
|
30379
|
+
additionalProperties: false;
|
|
30380
|
+
type: "object";
|
|
30381
|
+
required: "key"[];
|
|
30382
|
+
};
|
|
30383
|
+
type: "array";
|
|
30384
|
+
};
|
|
30155
30385
|
filters: {
|
|
30156
30386
|
items: {
|
|
30157
30387
|
properties: any;
|
|
@@ -30167,15 +30397,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
30167
30397
|
descriptionTranslationKey: {
|
|
30168
30398
|
type: "string";
|
|
30169
30399
|
};
|
|
30170
|
-
excludes: {
|
|
30171
|
-
items: {
|
|
30172
|
-
properties: any;
|
|
30173
|
-
additionalProperties: false;
|
|
30174
|
-
type: "object";
|
|
30175
|
-
required: "key"[];
|
|
30176
|
-
};
|
|
30177
|
-
type: "array";
|
|
30178
|
-
};
|
|
30179
30400
|
catalogSwitcherLabelTranslationKey: {
|
|
30180
30401
|
type: "string";
|
|
30181
30402
|
};
|
|
@@ -30184,7 +30405,54 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
30184
30405
|
type: "object";
|
|
30185
30406
|
};
|
|
30186
30407
|
};
|
|
30187
|
-
additionalProperties:
|
|
30408
|
+
additionalProperties: {
|
|
30409
|
+
properties: {
|
|
30410
|
+
includes: {
|
|
30411
|
+
items: {
|
|
30412
|
+
properties: any;
|
|
30413
|
+
additionalProperties: false;
|
|
30414
|
+
type: "object";
|
|
30415
|
+
required: "type"[];
|
|
30416
|
+
};
|
|
30417
|
+
type: "array";
|
|
30418
|
+
};
|
|
30419
|
+
slug: {
|
|
30420
|
+
type: "string";
|
|
30421
|
+
};
|
|
30422
|
+
hide: {
|
|
30423
|
+
type: "boolean";
|
|
30424
|
+
};
|
|
30425
|
+
excludes: {
|
|
30426
|
+
items: {
|
|
30427
|
+
properties: any;
|
|
30428
|
+
additionalProperties: false;
|
|
30429
|
+
type: "object";
|
|
30430
|
+
required: "key"[];
|
|
30431
|
+
};
|
|
30432
|
+
type: "array";
|
|
30433
|
+
};
|
|
30434
|
+
filters: {
|
|
30435
|
+
items: {
|
|
30436
|
+
properties: any;
|
|
30437
|
+
additionalProperties: false;
|
|
30438
|
+
type: "object";
|
|
30439
|
+
required: ("title" | "property")[];
|
|
30440
|
+
};
|
|
30441
|
+
type: "array";
|
|
30442
|
+
};
|
|
30443
|
+
titleTranslationKey: {
|
|
30444
|
+
type: "string";
|
|
30445
|
+
};
|
|
30446
|
+
descriptionTranslationKey: {
|
|
30447
|
+
type: "string";
|
|
30448
|
+
};
|
|
30449
|
+
catalogSwitcherLabelTranslationKey: {
|
|
30450
|
+
type: "string";
|
|
30451
|
+
};
|
|
30452
|
+
};
|
|
30453
|
+
additionalProperties: false;
|
|
30454
|
+
type: "object";
|
|
30455
|
+
};
|
|
30188
30456
|
type: "object";
|
|
30189
30457
|
};
|
|
30190
30458
|
};
|
|
@@ -30360,6 +30628,12 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
30360
30628
|
};
|
|
30361
30629
|
type: "array";
|
|
30362
30630
|
};
|
|
30631
|
+
titleTranslationKey: {
|
|
30632
|
+
type: "string";
|
|
30633
|
+
};
|
|
30634
|
+
descriptionTranslationKey: {
|
|
30635
|
+
type: "string";
|
|
30636
|
+
};
|
|
30363
30637
|
groupByFirstFilter: {
|
|
30364
30638
|
type: "boolean";
|
|
30365
30639
|
};
|
|
@@ -30373,12 +30647,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
30373
30647
|
separateVersions: {
|
|
30374
30648
|
type: "boolean";
|
|
30375
30649
|
};
|
|
30376
|
-
titleTranslationKey: {
|
|
30377
|
-
type: "string";
|
|
30378
|
-
};
|
|
30379
|
-
descriptionTranslationKey: {
|
|
30380
|
-
type: "string";
|
|
30381
|
-
};
|
|
30382
30650
|
};
|
|
30383
30651
|
additionalProperties: true;
|
|
30384
30652
|
type: "object";
|
|
@@ -39864,7 +40132,98 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
39864
40132
|
readonly additionalProperties: false;
|
|
39865
40133
|
};
|
|
39866
40134
|
};
|
|
39867
|
-
readonly additionalProperties:
|
|
40135
|
+
readonly additionalProperties: {
|
|
40136
|
+
readonly type: "object";
|
|
40137
|
+
readonly properties: {
|
|
40138
|
+
readonly slug: {
|
|
40139
|
+
readonly type: "string";
|
|
40140
|
+
};
|
|
40141
|
+
readonly hide: {
|
|
40142
|
+
readonly type: "boolean";
|
|
40143
|
+
};
|
|
40144
|
+
readonly includes: {
|
|
40145
|
+
readonly type: "array";
|
|
40146
|
+
readonly items: {
|
|
40147
|
+
readonly type: "object";
|
|
40148
|
+
readonly required: readonly ["type"];
|
|
40149
|
+
readonly properties: {
|
|
40150
|
+
readonly type: {
|
|
40151
|
+
readonly type: "string";
|
|
40152
|
+
};
|
|
40153
|
+
};
|
|
40154
|
+
readonly additionalProperties: false;
|
|
40155
|
+
};
|
|
40156
|
+
};
|
|
40157
|
+
readonly excludes: {
|
|
40158
|
+
readonly type: "array";
|
|
40159
|
+
readonly items: {
|
|
40160
|
+
readonly type: "object";
|
|
40161
|
+
readonly required: readonly ["key"];
|
|
40162
|
+
readonly properties: {
|
|
40163
|
+
readonly key: {
|
|
40164
|
+
readonly type: "string";
|
|
40165
|
+
};
|
|
40166
|
+
};
|
|
40167
|
+
readonly additionalProperties: false;
|
|
40168
|
+
};
|
|
40169
|
+
};
|
|
40170
|
+
readonly filters: {
|
|
40171
|
+
readonly type: "array";
|
|
40172
|
+
readonly items: {
|
|
40173
|
+
readonly type: "object";
|
|
40174
|
+
readonly required: readonly ["property", "title"];
|
|
40175
|
+
readonly properties: {
|
|
40176
|
+
readonly property: {
|
|
40177
|
+
readonly type: "string";
|
|
40178
|
+
};
|
|
40179
|
+
readonly hide: {
|
|
40180
|
+
readonly type: "boolean";
|
|
40181
|
+
};
|
|
40182
|
+
readonly label: {
|
|
40183
|
+
readonly type: "string";
|
|
40184
|
+
};
|
|
40185
|
+
readonly options: {
|
|
40186
|
+
readonly type: "array";
|
|
40187
|
+
readonly items: {
|
|
40188
|
+
readonly type: "string";
|
|
40189
|
+
};
|
|
40190
|
+
};
|
|
40191
|
+
readonly type: {
|
|
40192
|
+
readonly type: "string";
|
|
40193
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
40194
|
+
readonly default: "checkboxes";
|
|
40195
|
+
};
|
|
40196
|
+
readonly title: {
|
|
40197
|
+
readonly type: "string";
|
|
40198
|
+
};
|
|
40199
|
+
readonly titleTranslationKey: {
|
|
40200
|
+
readonly type: "string";
|
|
40201
|
+
};
|
|
40202
|
+
readonly parentFilter: {
|
|
40203
|
+
readonly type: "string";
|
|
40204
|
+
};
|
|
40205
|
+
readonly valuesMapping: {
|
|
40206
|
+
readonly type: "object";
|
|
40207
|
+
readonly additionalProperties: {
|
|
40208
|
+
readonly type: "string";
|
|
40209
|
+
};
|
|
40210
|
+
};
|
|
40211
|
+
};
|
|
40212
|
+
readonly additionalProperties: false;
|
|
40213
|
+
};
|
|
40214
|
+
};
|
|
40215
|
+
readonly titleTranslationKey: {
|
|
40216
|
+
readonly type: "string";
|
|
40217
|
+
};
|
|
40218
|
+
readonly descriptionTranslationKey: {
|
|
40219
|
+
readonly type: "string";
|
|
40220
|
+
};
|
|
40221
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
40222
|
+
readonly type: "string";
|
|
40223
|
+
};
|
|
40224
|
+
};
|
|
40225
|
+
readonly additionalProperties: false;
|
|
40226
|
+
};
|
|
39868
40227
|
};
|
|
39869
40228
|
};
|
|
39870
40229
|
readonly additionalProperties: false;
|
|
@@ -40479,10 +40838,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
40479
40838
|
readonly additionalProperties: false;
|
|
40480
40839
|
};
|
|
40481
40840
|
};
|
|
40482
|
-
readonly projectUrl: {
|
|
40483
|
-
readonly type: "string";
|
|
40484
|
-
readonly format: "uri";
|
|
40485
|
-
};
|
|
40486
40841
|
};
|
|
40487
40842
|
readonly additionalProperties: false;
|
|
40488
40843
|
};
|
|
@@ -45198,7 +45553,98 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
45198
45553
|
readonly additionalProperties: false;
|
|
45199
45554
|
};
|
|
45200
45555
|
};
|
|
45201
|
-
readonly additionalProperties:
|
|
45556
|
+
readonly additionalProperties: {
|
|
45557
|
+
readonly type: "object";
|
|
45558
|
+
readonly properties: {
|
|
45559
|
+
readonly slug: {
|
|
45560
|
+
readonly type: "string";
|
|
45561
|
+
};
|
|
45562
|
+
readonly hide: {
|
|
45563
|
+
readonly type: "boolean";
|
|
45564
|
+
};
|
|
45565
|
+
readonly includes: {
|
|
45566
|
+
readonly type: "array";
|
|
45567
|
+
readonly items: {
|
|
45568
|
+
readonly type: "object";
|
|
45569
|
+
readonly required: readonly ["type"];
|
|
45570
|
+
readonly properties: {
|
|
45571
|
+
readonly type: {
|
|
45572
|
+
readonly type: "string";
|
|
45573
|
+
};
|
|
45574
|
+
};
|
|
45575
|
+
readonly additionalProperties: false;
|
|
45576
|
+
};
|
|
45577
|
+
};
|
|
45578
|
+
readonly excludes: {
|
|
45579
|
+
readonly type: "array";
|
|
45580
|
+
readonly items: {
|
|
45581
|
+
readonly type: "object";
|
|
45582
|
+
readonly required: readonly ["key"];
|
|
45583
|
+
readonly properties: {
|
|
45584
|
+
readonly key: {
|
|
45585
|
+
readonly type: "string";
|
|
45586
|
+
};
|
|
45587
|
+
};
|
|
45588
|
+
readonly additionalProperties: false;
|
|
45589
|
+
};
|
|
45590
|
+
};
|
|
45591
|
+
readonly filters: {
|
|
45592
|
+
readonly type: "array";
|
|
45593
|
+
readonly items: {
|
|
45594
|
+
readonly type: "object";
|
|
45595
|
+
readonly required: readonly ["property", "title"];
|
|
45596
|
+
readonly properties: {
|
|
45597
|
+
readonly property: {
|
|
45598
|
+
readonly type: "string";
|
|
45599
|
+
};
|
|
45600
|
+
readonly hide: {
|
|
45601
|
+
readonly type: "boolean";
|
|
45602
|
+
};
|
|
45603
|
+
readonly label: {
|
|
45604
|
+
readonly type: "string";
|
|
45605
|
+
};
|
|
45606
|
+
readonly options: {
|
|
45607
|
+
readonly type: "array";
|
|
45608
|
+
readonly items: {
|
|
45609
|
+
readonly type: "string";
|
|
45610
|
+
};
|
|
45611
|
+
};
|
|
45612
|
+
readonly type: {
|
|
45613
|
+
readonly type: "string";
|
|
45614
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
45615
|
+
readonly default: "checkboxes";
|
|
45616
|
+
};
|
|
45617
|
+
readonly title: {
|
|
45618
|
+
readonly type: "string";
|
|
45619
|
+
};
|
|
45620
|
+
readonly titleTranslationKey: {
|
|
45621
|
+
readonly type: "string";
|
|
45622
|
+
};
|
|
45623
|
+
readonly parentFilter: {
|
|
45624
|
+
readonly type: "string";
|
|
45625
|
+
};
|
|
45626
|
+
readonly valuesMapping: {
|
|
45627
|
+
readonly type: "object";
|
|
45628
|
+
readonly additionalProperties: {
|
|
45629
|
+
readonly type: "string";
|
|
45630
|
+
};
|
|
45631
|
+
};
|
|
45632
|
+
};
|
|
45633
|
+
readonly additionalProperties: false;
|
|
45634
|
+
};
|
|
45635
|
+
};
|
|
45636
|
+
readonly titleTranslationKey: {
|
|
45637
|
+
readonly type: "string";
|
|
45638
|
+
};
|
|
45639
|
+
readonly descriptionTranslationKey: {
|
|
45640
|
+
readonly type: "string";
|
|
45641
|
+
};
|
|
45642
|
+
readonly catalogSwitcherLabelTranslationKey: {
|
|
45643
|
+
readonly type: "string";
|
|
45644
|
+
};
|
|
45645
|
+
};
|
|
45646
|
+
readonly additionalProperties: false;
|
|
45647
|
+
};
|
|
45202
45648
|
};
|
|
45203
45649
|
};
|
|
45204
45650
|
readonly additionalProperties: false;
|