@redocly/config 0.29.1 → 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 +96 -1
- package/lib/entities-catalog-config-schema.d.ts +92 -1
- package/lib/entities-catalog-config-schema.js +1 -1
- package/lib/ex-theme-config-schemas.d.ts +4 -0
- package/lib/ex-theme-config-schemas.js +1 -0
- package/lib/reunite-config-schema.d.ts +0 -4
- package/lib/reunite-config-schema.js +0 -1
- package/lib/root-config-schema.d.ts +700 -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 +96 -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/ex-theme-config-schemas.d.ts +4 -0
- package/lib-esm/ex-theme-config-schemas.js +1 -0
- package/lib-esm/reunite-config-schema.d.ts +0 -4
- package/lib-esm/reunite-config-schema.js +0 -1
- package/lib-esm/root-config-schema.d.ts +700 -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;
|
|
@@ -11527,6 +11618,10 @@ export declare const redoclyConfigSchema: {
|
|
|
11527
11618
|
readonly type: "string";
|
|
11528
11619
|
};
|
|
11529
11620
|
};
|
|
11621
|
+
readonly fromProjectUrl: {
|
|
11622
|
+
readonly type: "string";
|
|
11623
|
+
readonly format: "uri";
|
|
11624
|
+
};
|
|
11530
11625
|
};
|
|
11531
11626
|
};
|
|
11532
11627
|
};
|
|
@@ -11555,10 +11650,6 @@ export declare const redoclyConfigSchema: {
|
|
|
11555
11650
|
readonly ignoreRespectMonitoring: {
|
|
11556
11651
|
readonly type: "boolean";
|
|
11557
11652
|
};
|
|
11558
|
-
readonly projectUrl: {
|
|
11559
|
-
readonly type: "string";
|
|
11560
|
-
readonly format: "uri";
|
|
11561
|
-
};
|
|
11562
11653
|
readonly jobs: {
|
|
11563
11654
|
readonly type: "array";
|
|
11564
11655
|
readonly items: {
|
|
@@ -16357,7 +16448,98 @@ export declare const redoclyConfigSchema: {
|
|
|
16357
16448
|
readonly additionalProperties: false;
|
|
16358
16449
|
};
|
|
16359
16450
|
};
|
|
16360
|
-
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
|
+
};
|
|
16361
16543
|
};
|
|
16362
16544
|
};
|
|
16363
16545
|
readonly additionalProperties: false;
|
|
@@ -16857,6 +17039,10 @@ export declare const redoclyConfigSchema: {
|
|
|
16857
17039
|
readonly type: "string";
|
|
16858
17040
|
};
|
|
16859
17041
|
};
|
|
17042
|
+
readonly fromProjectUrl: {
|
|
17043
|
+
readonly type: "string";
|
|
17044
|
+
readonly format: "uri";
|
|
17045
|
+
};
|
|
16860
17046
|
};
|
|
16861
17047
|
};
|
|
16862
17048
|
readonly preprocessors: {
|
|
@@ -22697,28 +22883,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
22697
22883
|
hide: {
|
|
22698
22884
|
type: "boolean";
|
|
22699
22885
|
};
|
|
22700
|
-
engine: {
|
|
22701
|
-
enum: ("flexsearch" | "typesense")[];
|
|
22702
|
-
type: "string";
|
|
22703
|
-
};
|
|
22704
|
-
ai: {
|
|
22705
|
-
properties: {
|
|
22706
|
-
hide: {
|
|
22707
|
-
type: "boolean";
|
|
22708
|
-
};
|
|
22709
|
-
suggestions: {
|
|
22710
|
-
items: {
|
|
22711
|
-
type: "string";
|
|
22712
|
-
};
|
|
22713
|
-
type: "array";
|
|
22714
|
-
};
|
|
22715
|
-
prompt: {
|
|
22716
|
-
type: "string";
|
|
22717
|
-
};
|
|
22718
|
-
};
|
|
22719
|
-
additionalProperties: false;
|
|
22720
|
-
type: "object";
|
|
22721
|
-
};
|
|
22722
22886
|
filters: {
|
|
22723
22887
|
properties: {
|
|
22724
22888
|
hide: {
|
|
@@ -22748,6 +22912,28 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
22748
22912
|
additionalProperties: false;
|
|
22749
22913
|
type: "object";
|
|
22750
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
|
+
};
|
|
22751
22937
|
placement: {
|
|
22752
22938
|
type: "string";
|
|
22753
22939
|
};
|
|
@@ -25185,6 +25371,12 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25185
25371
|
};
|
|
25186
25372
|
type: "array";
|
|
25187
25373
|
};
|
|
25374
|
+
titleTranslationKey: {
|
|
25375
|
+
type: "string";
|
|
25376
|
+
};
|
|
25377
|
+
descriptionTranslationKey: {
|
|
25378
|
+
type: "string";
|
|
25379
|
+
};
|
|
25188
25380
|
groupByFirstFilter: {
|
|
25189
25381
|
type: "boolean";
|
|
25190
25382
|
};
|
|
@@ -25198,12 +25390,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25198
25390
|
separateVersions: {
|
|
25199
25391
|
type: "boolean";
|
|
25200
25392
|
};
|
|
25201
|
-
titleTranslationKey: {
|
|
25202
|
-
type: "string";
|
|
25203
|
-
};
|
|
25204
|
-
descriptionTranslationKey: {
|
|
25205
|
-
type: "string";
|
|
25206
|
-
};
|
|
25207
25393
|
};
|
|
25208
25394
|
additionalProperties: true;
|
|
25209
25395
|
type: "object";
|
|
@@ -25233,6 +25419,15 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25233
25419
|
hide: {
|
|
25234
25420
|
type: "boolean";
|
|
25235
25421
|
};
|
|
25422
|
+
excludes: {
|
|
25423
|
+
items: {
|
|
25424
|
+
properties: any;
|
|
25425
|
+
additionalProperties: false;
|
|
25426
|
+
type: "object";
|
|
25427
|
+
required: "key"[];
|
|
25428
|
+
};
|
|
25429
|
+
type: "array";
|
|
25430
|
+
};
|
|
25236
25431
|
filters: {
|
|
25237
25432
|
items: {
|
|
25238
25433
|
properties: any;
|
|
@@ -25248,15 +25443,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25248
25443
|
descriptionTranslationKey: {
|
|
25249
25444
|
type: "string";
|
|
25250
25445
|
};
|
|
25251
|
-
excludes: {
|
|
25252
|
-
items: {
|
|
25253
|
-
properties: any;
|
|
25254
|
-
additionalProperties: false;
|
|
25255
|
-
type: "object";
|
|
25256
|
-
required: "key"[];
|
|
25257
|
-
};
|
|
25258
|
-
type: "array";
|
|
25259
|
-
};
|
|
25260
25446
|
catalogSwitcherLabelTranslationKey: {
|
|
25261
25447
|
type: "string";
|
|
25262
25448
|
};
|
|
@@ -25281,6 +25467,15 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25281
25467
|
hide: {
|
|
25282
25468
|
type: "boolean";
|
|
25283
25469
|
};
|
|
25470
|
+
excludes: {
|
|
25471
|
+
items: {
|
|
25472
|
+
properties: any;
|
|
25473
|
+
additionalProperties: false;
|
|
25474
|
+
type: "object";
|
|
25475
|
+
required: "key"[];
|
|
25476
|
+
};
|
|
25477
|
+
type: "array";
|
|
25478
|
+
};
|
|
25284
25479
|
filters: {
|
|
25285
25480
|
items: {
|
|
25286
25481
|
properties: any;
|
|
@@ -25296,15 +25491,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25296
25491
|
descriptionTranslationKey: {
|
|
25297
25492
|
type: "string";
|
|
25298
25493
|
};
|
|
25299
|
-
excludes: {
|
|
25300
|
-
items: {
|
|
25301
|
-
properties: any;
|
|
25302
|
-
additionalProperties: false;
|
|
25303
|
-
type: "object";
|
|
25304
|
-
required: "key"[];
|
|
25305
|
-
};
|
|
25306
|
-
type: "array";
|
|
25307
|
-
};
|
|
25308
25494
|
catalogSwitcherLabelTranslationKey: {
|
|
25309
25495
|
type: "string";
|
|
25310
25496
|
};
|
|
@@ -25329,6 +25515,15 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25329
25515
|
hide: {
|
|
25330
25516
|
type: "boolean";
|
|
25331
25517
|
};
|
|
25518
|
+
excludes: {
|
|
25519
|
+
items: {
|
|
25520
|
+
properties: any;
|
|
25521
|
+
additionalProperties: false;
|
|
25522
|
+
type: "object";
|
|
25523
|
+
required: "key"[];
|
|
25524
|
+
};
|
|
25525
|
+
type: "array";
|
|
25526
|
+
};
|
|
25332
25527
|
filters: {
|
|
25333
25528
|
items: {
|
|
25334
25529
|
properties: any;
|
|
@@ -25344,15 +25539,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25344
25539
|
descriptionTranslationKey: {
|
|
25345
25540
|
type: "string";
|
|
25346
25541
|
};
|
|
25347
|
-
excludes: {
|
|
25348
|
-
items: {
|
|
25349
|
-
properties: any;
|
|
25350
|
-
additionalProperties: false;
|
|
25351
|
-
type: "object";
|
|
25352
|
-
required: "key"[];
|
|
25353
|
-
};
|
|
25354
|
-
type: "array";
|
|
25355
|
-
};
|
|
25356
25542
|
catalogSwitcherLabelTranslationKey: {
|
|
25357
25543
|
type: "string";
|
|
25358
25544
|
};
|
|
@@ -25377,6 +25563,15 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25377
25563
|
hide: {
|
|
25378
25564
|
type: "boolean";
|
|
25379
25565
|
};
|
|
25566
|
+
excludes: {
|
|
25567
|
+
items: {
|
|
25568
|
+
properties: any;
|
|
25569
|
+
additionalProperties: false;
|
|
25570
|
+
type: "object";
|
|
25571
|
+
required: "key"[];
|
|
25572
|
+
};
|
|
25573
|
+
type: "array";
|
|
25574
|
+
};
|
|
25380
25575
|
filters: {
|
|
25381
25576
|
items: {
|
|
25382
25577
|
properties: any;
|
|
@@ -25392,15 +25587,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25392
25587
|
descriptionTranslationKey: {
|
|
25393
25588
|
type: "string";
|
|
25394
25589
|
};
|
|
25395
|
-
excludes: {
|
|
25396
|
-
items: {
|
|
25397
|
-
properties: any;
|
|
25398
|
-
additionalProperties: false;
|
|
25399
|
-
type: "object";
|
|
25400
|
-
required: "key"[];
|
|
25401
|
-
};
|
|
25402
|
-
type: "array";
|
|
25403
|
-
};
|
|
25404
25590
|
catalogSwitcherLabelTranslationKey: {
|
|
25405
25591
|
type: "string";
|
|
25406
25592
|
};
|
|
@@ -25425,6 +25611,15 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25425
25611
|
hide: {
|
|
25426
25612
|
type: "boolean";
|
|
25427
25613
|
};
|
|
25614
|
+
excludes: {
|
|
25615
|
+
items: {
|
|
25616
|
+
properties: any;
|
|
25617
|
+
additionalProperties: false;
|
|
25618
|
+
type: "object";
|
|
25619
|
+
required: "key"[];
|
|
25620
|
+
};
|
|
25621
|
+
type: "array";
|
|
25622
|
+
};
|
|
25428
25623
|
filters: {
|
|
25429
25624
|
items: {
|
|
25430
25625
|
properties: any;
|
|
@@ -25440,15 +25635,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25440
25635
|
descriptionTranslationKey: {
|
|
25441
25636
|
type: "string";
|
|
25442
25637
|
};
|
|
25443
|
-
excludes: {
|
|
25444
|
-
items: {
|
|
25445
|
-
properties: any;
|
|
25446
|
-
additionalProperties: false;
|
|
25447
|
-
type: "object";
|
|
25448
|
-
required: "key"[];
|
|
25449
|
-
};
|
|
25450
|
-
type: "array";
|
|
25451
|
-
};
|
|
25452
25638
|
catalogSwitcherLabelTranslationKey: {
|
|
25453
25639
|
type: "string";
|
|
25454
25640
|
};
|
|
@@ -25473,6 +25659,15 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25473
25659
|
hide: {
|
|
25474
25660
|
type: "boolean";
|
|
25475
25661
|
};
|
|
25662
|
+
excludes: {
|
|
25663
|
+
items: {
|
|
25664
|
+
properties: any;
|
|
25665
|
+
additionalProperties: false;
|
|
25666
|
+
type: "object";
|
|
25667
|
+
required: "key"[];
|
|
25668
|
+
};
|
|
25669
|
+
type: "array";
|
|
25670
|
+
};
|
|
25476
25671
|
filters: {
|
|
25477
25672
|
items: {
|
|
25478
25673
|
properties: any;
|
|
@@ -25488,15 +25683,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25488
25683
|
descriptionTranslationKey: {
|
|
25489
25684
|
type: "string";
|
|
25490
25685
|
};
|
|
25491
|
-
excludes: {
|
|
25492
|
-
items: {
|
|
25493
|
-
properties: any;
|
|
25494
|
-
additionalProperties: false;
|
|
25495
|
-
type: "object";
|
|
25496
|
-
required: "key"[];
|
|
25497
|
-
};
|
|
25498
|
-
type: "array";
|
|
25499
|
-
};
|
|
25500
25686
|
catalogSwitcherLabelTranslationKey: {
|
|
25501
25687
|
type: "string";
|
|
25502
25688
|
};
|
|
@@ -25521,6 +25707,15 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25521
25707
|
hide: {
|
|
25522
25708
|
type: "boolean";
|
|
25523
25709
|
};
|
|
25710
|
+
excludes: {
|
|
25711
|
+
items: {
|
|
25712
|
+
properties: any;
|
|
25713
|
+
additionalProperties: false;
|
|
25714
|
+
type: "object";
|
|
25715
|
+
required: "key"[];
|
|
25716
|
+
};
|
|
25717
|
+
type: "array";
|
|
25718
|
+
};
|
|
25524
25719
|
filters: {
|
|
25525
25720
|
items: {
|
|
25526
25721
|
properties: any;
|
|
@@ -25536,15 +25731,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25536
25731
|
descriptionTranslationKey: {
|
|
25537
25732
|
type: "string";
|
|
25538
25733
|
};
|
|
25539
|
-
excludes: {
|
|
25540
|
-
items: {
|
|
25541
|
-
properties: any;
|
|
25542
|
-
additionalProperties: false;
|
|
25543
|
-
type: "object";
|
|
25544
|
-
required: "key"[];
|
|
25545
|
-
};
|
|
25546
|
-
type: "array";
|
|
25547
|
-
};
|
|
25548
25734
|
catalogSwitcherLabelTranslationKey: {
|
|
25549
25735
|
type: "string";
|
|
25550
25736
|
};
|
|
@@ -25569,6 +25755,15 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25569
25755
|
hide: {
|
|
25570
25756
|
type: "boolean";
|
|
25571
25757
|
};
|
|
25758
|
+
excludes: {
|
|
25759
|
+
items: {
|
|
25760
|
+
properties: any;
|
|
25761
|
+
additionalProperties: false;
|
|
25762
|
+
type: "object";
|
|
25763
|
+
required: "key"[];
|
|
25764
|
+
};
|
|
25765
|
+
type: "array";
|
|
25766
|
+
};
|
|
25572
25767
|
filters: {
|
|
25573
25768
|
items: {
|
|
25574
25769
|
properties: any;
|
|
@@ -25584,15 +25779,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25584
25779
|
descriptionTranslationKey: {
|
|
25585
25780
|
type: "string";
|
|
25586
25781
|
};
|
|
25587
|
-
excludes: {
|
|
25588
|
-
items: {
|
|
25589
|
-
properties: any;
|
|
25590
|
-
additionalProperties: false;
|
|
25591
|
-
type: "object";
|
|
25592
|
-
required: "key"[];
|
|
25593
|
-
};
|
|
25594
|
-
type: "array";
|
|
25595
|
-
};
|
|
25596
25782
|
catalogSwitcherLabelTranslationKey: {
|
|
25597
25783
|
type: "string";
|
|
25598
25784
|
};
|
|
@@ -25601,7 +25787,54 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25601
25787
|
type: "object";
|
|
25602
25788
|
};
|
|
25603
25789
|
};
|
|
25604
|
-
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
|
+
};
|
|
25605
25838
|
type: "object";
|
|
25606
25839
|
};
|
|
25607
25840
|
};
|
|
@@ -25777,6 +26010,12 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25777
26010
|
};
|
|
25778
26011
|
type: "array";
|
|
25779
26012
|
};
|
|
26013
|
+
titleTranslationKey: {
|
|
26014
|
+
type: "string";
|
|
26015
|
+
};
|
|
26016
|
+
descriptionTranslationKey: {
|
|
26017
|
+
type: "string";
|
|
26018
|
+
};
|
|
25780
26019
|
groupByFirstFilter: {
|
|
25781
26020
|
type: "boolean";
|
|
25782
26021
|
};
|
|
@@ -25790,12 +26029,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25790
26029
|
separateVersions: {
|
|
25791
26030
|
type: "boolean";
|
|
25792
26031
|
};
|
|
25793
|
-
titleTranslationKey: {
|
|
25794
|
-
type: "string";
|
|
25795
|
-
};
|
|
25796
|
-
descriptionTranslationKey: {
|
|
25797
|
-
type: "string";
|
|
25798
|
-
};
|
|
25799
26032
|
};
|
|
25800
26033
|
additionalProperties: true;
|
|
25801
26034
|
type: "object";
|
|
@@ -26020,6 +26253,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
26020
26253
|
};
|
|
26021
26254
|
type: "array";
|
|
26022
26255
|
};
|
|
26256
|
+
fromProjectUrl: {
|
|
26257
|
+
type: "string";
|
|
26258
|
+
format: "uri";
|
|
26259
|
+
};
|
|
26023
26260
|
};
|
|
26024
26261
|
additionalProperties: true;
|
|
26025
26262
|
type: "object";
|
|
@@ -26705,10 +26942,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
26705
26942
|
ignoreRespectMonitoring: {
|
|
26706
26943
|
type: "boolean";
|
|
26707
26944
|
};
|
|
26708
|
-
projectUrl: {
|
|
26709
|
-
type: "string";
|
|
26710
|
-
format: "uri";
|
|
26711
|
-
};
|
|
26712
26945
|
jobs: {
|
|
26713
26946
|
items: {
|
|
26714
26947
|
properties: {
|
|
@@ -27268,28 +27501,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
27268
27501
|
hide: {
|
|
27269
27502
|
type: "boolean";
|
|
27270
27503
|
};
|
|
27271
|
-
engine: {
|
|
27272
|
-
enum: ("flexsearch" | "typesense")[];
|
|
27273
|
-
type: "string";
|
|
27274
|
-
};
|
|
27275
|
-
ai: {
|
|
27276
|
-
properties: {
|
|
27277
|
-
hide: {
|
|
27278
|
-
type: "boolean";
|
|
27279
|
-
};
|
|
27280
|
-
suggestions: {
|
|
27281
|
-
items: {
|
|
27282
|
-
type: "string";
|
|
27283
|
-
};
|
|
27284
|
-
type: "array";
|
|
27285
|
-
};
|
|
27286
|
-
prompt: {
|
|
27287
|
-
type: "string";
|
|
27288
|
-
};
|
|
27289
|
-
};
|
|
27290
|
-
additionalProperties: false;
|
|
27291
|
-
type: "object";
|
|
27292
|
-
};
|
|
27293
27504
|
filters: {
|
|
27294
27505
|
properties: {
|
|
27295
27506
|
hide: {
|
|
@@ -27319,6 +27530,28 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
27319
27530
|
additionalProperties: false;
|
|
27320
27531
|
type: "object";
|
|
27321
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
|
+
};
|
|
27322
27555
|
placement: {
|
|
27323
27556
|
type: "string";
|
|
27324
27557
|
};
|
|
@@ -29756,6 +29989,12 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29756
29989
|
};
|
|
29757
29990
|
type: "array";
|
|
29758
29991
|
};
|
|
29992
|
+
titleTranslationKey: {
|
|
29993
|
+
type: "string";
|
|
29994
|
+
};
|
|
29995
|
+
descriptionTranslationKey: {
|
|
29996
|
+
type: "string";
|
|
29997
|
+
};
|
|
29759
29998
|
groupByFirstFilter: {
|
|
29760
29999
|
type: "boolean";
|
|
29761
30000
|
};
|
|
@@ -29769,12 +30008,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29769
30008
|
separateVersions: {
|
|
29770
30009
|
type: "boolean";
|
|
29771
30010
|
};
|
|
29772
|
-
titleTranslationKey: {
|
|
29773
|
-
type: "string";
|
|
29774
|
-
};
|
|
29775
|
-
descriptionTranslationKey: {
|
|
29776
|
-
type: "string";
|
|
29777
|
-
};
|
|
29778
30011
|
};
|
|
29779
30012
|
additionalProperties: true;
|
|
29780
30013
|
type: "object";
|
|
@@ -29804,6 +30037,15 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29804
30037
|
hide: {
|
|
29805
30038
|
type: "boolean";
|
|
29806
30039
|
};
|
|
30040
|
+
excludes: {
|
|
30041
|
+
items: {
|
|
30042
|
+
properties: any;
|
|
30043
|
+
additionalProperties: false;
|
|
30044
|
+
type: "object";
|
|
30045
|
+
required: "key"[];
|
|
30046
|
+
};
|
|
30047
|
+
type: "array";
|
|
30048
|
+
};
|
|
29807
30049
|
filters: {
|
|
29808
30050
|
items: {
|
|
29809
30051
|
properties: any;
|
|
@@ -29819,15 +30061,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29819
30061
|
descriptionTranslationKey: {
|
|
29820
30062
|
type: "string";
|
|
29821
30063
|
};
|
|
29822
|
-
excludes: {
|
|
29823
|
-
items: {
|
|
29824
|
-
properties: any;
|
|
29825
|
-
additionalProperties: false;
|
|
29826
|
-
type: "object";
|
|
29827
|
-
required: "key"[];
|
|
29828
|
-
};
|
|
29829
|
-
type: "array";
|
|
29830
|
-
};
|
|
29831
30064
|
catalogSwitcherLabelTranslationKey: {
|
|
29832
30065
|
type: "string";
|
|
29833
30066
|
};
|
|
@@ -29852,6 +30085,15 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29852
30085
|
hide: {
|
|
29853
30086
|
type: "boolean";
|
|
29854
30087
|
};
|
|
30088
|
+
excludes: {
|
|
30089
|
+
items: {
|
|
30090
|
+
properties: any;
|
|
30091
|
+
additionalProperties: false;
|
|
30092
|
+
type: "object";
|
|
30093
|
+
required: "key"[];
|
|
30094
|
+
};
|
|
30095
|
+
type: "array";
|
|
30096
|
+
};
|
|
29855
30097
|
filters: {
|
|
29856
30098
|
items: {
|
|
29857
30099
|
properties: any;
|
|
@@ -29867,15 +30109,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29867
30109
|
descriptionTranslationKey: {
|
|
29868
30110
|
type: "string";
|
|
29869
30111
|
};
|
|
29870
|
-
excludes: {
|
|
29871
|
-
items: {
|
|
29872
|
-
properties: any;
|
|
29873
|
-
additionalProperties: false;
|
|
29874
|
-
type: "object";
|
|
29875
|
-
required: "key"[];
|
|
29876
|
-
};
|
|
29877
|
-
type: "array";
|
|
29878
|
-
};
|
|
29879
30112
|
catalogSwitcherLabelTranslationKey: {
|
|
29880
30113
|
type: "string";
|
|
29881
30114
|
};
|
|
@@ -29900,6 +30133,15 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29900
30133
|
hide: {
|
|
29901
30134
|
type: "boolean";
|
|
29902
30135
|
};
|
|
30136
|
+
excludes: {
|
|
30137
|
+
items: {
|
|
30138
|
+
properties: any;
|
|
30139
|
+
additionalProperties: false;
|
|
30140
|
+
type: "object";
|
|
30141
|
+
required: "key"[];
|
|
30142
|
+
};
|
|
30143
|
+
type: "array";
|
|
30144
|
+
};
|
|
29903
30145
|
filters: {
|
|
29904
30146
|
items: {
|
|
29905
30147
|
properties: any;
|
|
@@ -29915,15 +30157,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29915
30157
|
descriptionTranslationKey: {
|
|
29916
30158
|
type: "string";
|
|
29917
30159
|
};
|
|
29918
|
-
excludes: {
|
|
29919
|
-
items: {
|
|
29920
|
-
properties: any;
|
|
29921
|
-
additionalProperties: false;
|
|
29922
|
-
type: "object";
|
|
29923
|
-
required: "key"[];
|
|
29924
|
-
};
|
|
29925
|
-
type: "array";
|
|
29926
|
-
};
|
|
29927
30160
|
catalogSwitcherLabelTranslationKey: {
|
|
29928
30161
|
type: "string";
|
|
29929
30162
|
};
|
|
@@ -29948,6 +30181,15 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29948
30181
|
hide: {
|
|
29949
30182
|
type: "boolean";
|
|
29950
30183
|
};
|
|
30184
|
+
excludes: {
|
|
30185
|
+
items: {
|
|
30186
|
+
properties: any;
|
|
30187
|
+
additionalProperties: false;
|
|
30188
|
+
type: "object";
|
|
30189
|
+
required: "key"[];
|
|
30190
|
+
};
|
|
30191
|
+
type: "array";
|
|
30192
|
+
};
|
|
29951
30193
|
filters: {
|
|
29952
30194
|
items: {
|
|
29953
30195
|
properties: any;
|
|
@@ -29963,15 +30205,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29963
30205
|
descriptionTranslationKey: {
|
|
29964
30206
|
type: "string";
|
|
29965
30207
|
};
|
|
29966
|
-
excludes: {
|
|
29967
|
-
items: {
|
|
29968
|
-
properties: any;
|
|
29969
|
-
additionalProperties: false;
|
|
29970
|
-
type: "object";
|
|
29971
|
-
required: "key"[];
|
|
29972
|
-
};
|
|
29973
|
-
type: "array";
|
|
29974
|
-
};
|
|
29975
30208
|
catalogSwitcherLabelTranslationKey: {
|
|
29976
30209
|
type: "string";
|
|
29977
30210
|
};
|
|
@@ -29996,6 +30229,15 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29996
30229
|
hide: {
|
|
29997
30230
|
type: "boolean";
|
|
29998
30231
|
};
|
|
30232
|
+
excludes: {
|
|
30233
|
+
items: {
|
|
30234
|
+
properties: any;
|
|
30235
|
+
additionalProperties: false;
|
|
30236
|
+
type: "object";
|
|
30237
|
+
required: "key"[];
|
|
30238
|
+
};
|
|
30239
|
+
type: "array";
|
|
30240
|
+
};
|
|
29999
30241
|
filters: {
|
|
30000
30242
|
items: {
|
|
30001
30243
|
properties: any;
|
|
@@ -30011,15 +30253,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
30011
30253
|
descriptionTranslationKey: {
|
|
30012
30254
|
type: "string";
|
|
30013
30255
|
};
|
|
30014
|
-
excludes: {
|
|
30015
|
-
items: {
|
|
30016
|
-
properties: any;
|
|
30017
|
-
additionalProperties: false;
|
|
30018
|
-
type: "object";
|
|
30019
|
-
required: "key"[];
|
|
30020
|
-
};
|
|
30021
|
-
type: "array";
|
|
30022
|
-
};
|
|
30023
30256
|
catalogSwitcherLabelTranslationKey: {
|
|
30024
30257
|
type: "string";
|
|
30025
30258
|
};
|
|
@@ -30044,6 +30277,15 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
30044
30277
|
hide: {
|
|
30045
30278
|
type: "boolean";
|
|
30046
30279
|
};
|
|
30280
|
+
excludes: {
|
|
30281
|
+
items: {
|
|
30282
|
+
properties: any;
|
|
30283
|
+
additionalProperties: false;
|
|
30284
|
+
type: "object";
|
|
30285
|
+
required: "key"[];
|
|
30286
|
+
};
|
|
30287
|
+
type: "array";
|
|
30288
|
+
};
|
|
30047
30289
|
filters: {
|
|
30048
30290
|
items: {
|
|
30049
30291
|
properties: any;
|
|
@@ -30059,15 +30301,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
30059
30301
|
descriptionTranslationKey: {
|
|
30060
30302
|
type: "string";
|
|
30061
30303
|
};
|
|
30062
|
-
excludes: {
|
|
30063
|
-
items: {
|
|
30064
|
-
properties: any;
|
|
30065
|
-
additionalProperties: false;
|
|
30066
|
-
type: "object";
|
|
30067
|
-
required: "key"[];
|
|
30068
|
-
};
|
|
30069
|
-
type: "array";
|
|
30070
|
-
};
|
|
30071
30304
|
catalogSwitcherLabelTranslationKey: {
|
|
30072
30305
|
type: "string";
|
|
30073
30306
|
};
|
|
@@ -30092,6 +30325,15 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
30092
30325
|
hide: {
|
|
30093
30326
|
type: "boolean";
|
|
30094
30327
|
};
|
|
30328
|
+
excludes: {
|
|
30329
|
+
items: {
|
|
30330
|
+
properties: any;
|
|
30331
|
+
additionalProperties: false;
|
|
30332
|
+
type: "object";
|
|
30333
|
+
required: "key"[];
|
|
30334
|
+
};
|
|
30335
|
+
type: "array";
|
|
30336
|
+
};
|
|
30095
30337
|
filters: {
|
|
30096
30338
|
items: {
|
|
30097
30339
|
properties: any;
|
|
@@ -30107,15 +30349,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
30107
30349
|
descriptionTranslationKey: {
|
|
30108
30350
|
type: "string";
|
|
30109
30351
|
};
|
|
30110
|
-
excludes: {
|
|
30111
|
-
items: {
|
|
30112
|
-
properties: any;
|
|
30113
|
-
additionalProperties: false;
|
|
30114
|
-
type: "object";
|
|
30115
|
-
required: "key"[];
|
|
30116
|
-
};
|
|
30117
|
-
type: "array";
|
|
30118
|
-
};
|
|
30119
30352
|
catalogSwitcherLabelTranslationKey: {
|
|
30120
30353
|
type: "string";
|
|
30121
30354
|
};
|
|
@@ -30140,6 +30373,15 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
30140
30373
|
hide: {
|
|
30141
30374
|
type: "boolean";
|
|
30142
30375
|
};
|
|
30376
|
+
excludes: {
|
|
30377
|
+
items: {
|
|
30378
|
+
properties: any;
|
|
30379
|
+
additionalProperties: false;
|
|
30380
|
+
type: "object";
|
|
30381
|
+
required: "key"[];
|
|
30382
|
+
};
|
|
30383
|
+
type: "array";
|
|
30384
|
+
};
|
|
30143
30385
|
filters: {
|
|
30144
30386
|
items: {
|
|
30145
30387
|
properties: any;
|
|
@@ -30155,15 +30397,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
30155
30397
|
descriptionTranslationKey: {
|
|
30156
30398
|
type: "string";
|
|
30157
30399
|
};
|
|
30158
|
-
excludes: {
|
|
30159
|
-
items: {
|
|
30160
|
-
properties: any;
|
|
30161
|
-
additionalProperties: false;
|
|
30162
|
-
type: "object";
|
|
30163
|
-
required: "key"[];
|
|
30164
|
-
};
|
|
30165
|
-
type: "array";
|
|
30166
|
-
};
|
|
30167
30400
|
catalogSwitcherLabelTranslationKey: {
|
|
30168
30401
|
type: "string";
|
|
30169
30402
|
};
|
|
@@ -30172,7 +30405,54 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
30172
30405
|
type: "object";
|
|
30173
30406
|
};
|
|
30174
30407
|
};
|
|
30175
|
-
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
|
+
};
|
|
30176
30456
|
type: "object";
|
|
30177
30457
|
};
|
|
30178
30458
|
};
|
|
@@ -30348,6 +30628,12 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
30348
30628
|
};
|
|
30349
30629
|
type: "array";
|
|
30350
30630
|
};
|
|
30631
|
+
titleTranslationKey: {
|
|
30632
|
+
type: "string";
|
|
30633
|
+
};
|
|
30634
|
+
descriptionTranslationKey: {
|
|
30635
|
+
type: "string";
|
|
30636
|
+
};
|
|
30351
30637
|
groupByFirstFilter: {
|
|
30352
30638
|
type: "boolean";
|
|
30353
30639
|
};
|
|
@@ -30361,12 +30647,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
30361
30647
|
separateVersions: {
|
|
30362
30648
|
type: "boolean";
|
|
30363
30649
|
};
|
|
30364
|
-
titleTranslationKey: {
|
|
30365
|
-
type: "string";
|
|
30366
|
-
};
|
|
30367
|
-
descriptionTranslationKey: {
|
|
30368
|
-
type: "string";
|
|
30369
|
-
};
|
|
30370
30650
|
};
|
|
30371
30651
|
additionalProperties: true;
|
|
30372
30652
|
type: "object";
|
|
@@ -30591,6 +30871,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
30591
30871
|
};
|
|
30592
30872
|
type: "array";
|
|
30593
30873
|
};
|
|
30874
|
+
fromProjectUrl: {
|
|
30875
|
+
type: "string";
|
|
30876
|
+
format: "uri";
|
|
30877
|
+
};
|
|
30594
30878
|
};
|
|
30595
30879
|
additionalProperties: true;
|
|
30596
30880
|
type: "object";
|
|
@@ -39848,7 +40132,98 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
39848
40132
|
readonly additionalProperties: false;
|
|
39849
40133
|
};
|
|
39850
40134
|
};
|
|
39851
|
-
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
|
+
};
|
|
39852
40227
|
};
|
|
39853
40228
|
};
|
|
39854
40229
|
readonly additionalProperties: false;
|
|
@@ -40348,6 +40723,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
40348
40723
|
readonly type: "string";
|
|
40349
40724
|
};
|
|
40350
40725
|
};
|
|
40726
|
+
readonly fromProjectUrl: {
|
|
40727
|
+
readonly type: "string";
|
|
40728
|
+
readonly format: "uri";
|
|
40729
|
+
};
|
|
40351
40730
|
};
|
|
40352
40731
|
};
|
|
40353
40732
|
};
|
|
@@ -40376,10 +40755,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
40376
40755
|
readonly ignoreRespectMonitoring: {
|
|
40377
40756
|
readonly type: "boolean";
|
|
40378
40757
|
};
|
|
40379
|
-
readonly projectUrl: {
|
|
40380
|
-
readonly type: "string";
|
|
40381
|
-
readonly format: "uri";
|
|
40382
|
-
};
|
|
40383
40758
|
readonly jobs: {
|
|
40384
40759
|
readonly type: "array";
|
|
40385
40760
|
readonly items: {
|
|
@@ -45178,7 +45553,98 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
45178
45553
|
readonly additionalProperties: false;
|
|
45179
45554
|
};
|
|
45180
45555
|
};
|
|
45181
|
-
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
|
+
};
|
|
45182
45648
|
};
|
|
45183
45649
|
};
|
|
45184
45650
|
readonly additionalProperties: false;
|
|
@@ -45678,6 +46144,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
45678
46144
|
readonly type: "string";
|
|
45679
46145
|
};
|
|
45680
46146
|
};
|
|
46147
|
+
readonly fromProjectUrl: {
|
|
46148
|
+
readonly type: "string";
|
|
46149
|
+
readonly format: "uri";
|
|
46150
|
+
};
|
|
45681
46151
|
};
|
|
45682
46152
|
};
|
|
45683
46153
|
readonly preprocessors: {
|