@redocly/config 0.20.0 → 0.20.2
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 +2 -2
- package/lib/ex-theme-config-schemas.d.ts +1 -1
- package/lib/product-override-schema.d.ts +5 -5
- package/lib/reference-docs-config-schema.d.ts +1 -1
- package/lib/reference-docs-config-schema.js +1 -1
- package/lib/root-config-schema.d.ts +14 -14
- package/lib/types/code-walkthrough-types.d.ts +13 -11
- package/lib/types/portal-shared-types.d.ts +10 -0
- package/lib-esm/default-theme-config-schema.d.ts +2 -2
- package/lib-esm/ex-theme-config-schemas.d.ts +1 -1
- package/lib-esm/product-override-schema.d.ts +5 -5
- package/lib-esm/reference-docs-config-schema.d.ts +1 -1
- package/lib-esm/reference-docs-config-schema.js +1 -1
- package/lib-esm/root-config-schema.d.ts +184 -184
- package/lib-esm/types/code-walkthrough-types.d.ts +13 -11
- package/lib-esm/types/portal-shared-types.d.ts +10 -0
- package/package.json +1 -1
|
@@ -1839,7 +1839,7 @@ export declare const apiConfigSchema: {
|
|
|
1839
1839
|
};
|
|
1840
1840
|
readonly sideNavStyle: {
|
|
1841
1841
|
readonly type: "string";
|
|
1842
|
-
readonly enum: readonly ["summary-only", "path-first", "id-only"];
|
|
1842
|
+
readonly enum: readonly ["summary-only", "path-first", "id-only", "path-only"];
|
|
1843
1843
|
};
|
|
1844
1844
|
readonly simpleOneOfTypeLabel: {
|
|
1845
1845
|
readonly type: "boolean";
|
|
@@ -4071,7 +4071,7 @@ export declare const apiConfigSchema: {
|
|
|
4071
4071
|
};
|
|
4072
4072
|
readonly sideNavStyle: {
|
|
4073
4073
|
readonly type: "string";
|
|
4074
|
-
readonly enum: readonly ["summary-only", "path-first", "id-only"];
|
|
4074
|
+
readonly enum: readonly ["summary-only", "path-first", "id-only", "path-only"];
|
|
4075
4075
|
};
|
|
4076
4076
|
readonly simpleOneOfTypeLabel: {
|
|
4077
4077
|
readonly type: "boolean";
|
|
@@ -7139,7 +7139,7 @@ export declare const redoclyConfigSchema: {
|
|
|
7139
7139
|
};
|
|
7140
7140
|
readonly sideNavStyle: {
|
|
7141
7141
|
readonly type: "string";
|
|
7142
|
-
readonly enum: readonly ["summary-only", "path-first", "id-only"];
|
|
7142
|
+
readonly enum: readonly ["summary-only", "path-first", "id-only", "path-only"];
|
|
7143
7143
|
};
|
|
7144
7144
|
readonly simpleOneOfTypeLabel: {
|
|
7145
7145
|
readonly type: "boolean";
|
|
@@ -9371,7 +9371,7 @@ export declare const redoclyConfigSchema: {
|
|
|
9371
9371
|
};
|
|
9372
9372
|
readonly sideNavStyle: {
|
|
9373
9373
|
readonly type: "string";
|
|
9374
|
-
readonly enum: readonly ["summary-only", "path-first", "id-only"];
|
|
9374
|
+
readonly enum: readonly ["summary-only", "path-first", "id-only", "path-only"];
|
|
9375
9375
|
};
|
|
9376
9376
|
readonly simpleOneOfTypeLabel: {
|
|
9377
9377
|
readonly type: "boolean";
|
|
@@ -13188,7 +13188,7 @@ export declare const redoclyConfigSchema: {
|
|
|
13188
13188
|
};
|
|
13189
13189
|
readonly sideNavStyle: {
|
|
13190
13190
|
readonly type: "string";
|
|
13191
|
-
readonly enum: readonly ["summary-only", "path-first", "id-only"];
|
|
13191
|
+
readonly enum: readonly ["summary-only", "path-first", "id-only", "path-only"];
|
|
13192
13192
|
};
|
|
13193
13193
|
readonly simpleOneOfTypeLabel: {
|
|
13194
13194
|
readonly type: "boolean";
|
|
@@ -17243,7 +17243,7 @@ export declare const redoclyConfigSchema: {
|
|
|
17243
17243
|
};
|
|
17244
17244
|
readonly sideNavStyle: {
|
|
17245
17245
|
readonly type: "string";
|
|
17246
|
-
readonly enum: readonly ["summary-only", "path-first", "id-only"];
|
|
17246
|
+
readonly enum: readonly ["summary-only", "path-first", "id-only", "path-only"];
|
|
17247
17247
|
};
|
|
17248
17248
|
readonly simpleOneOfTypeLabel: {
|
|
17249
17249
|
readonly type: "boolean";
|
|
@@ -19275,6 +19275,16 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
19275
19275
|
};
|
|
19276
19276
|
settings: {
|
|
19277
19277
|
properties: {
|
|
19278
|
+
label: {
|
|
19279
|
+
type: "string";
|
|
19280
|
+
};
|
|
19281
|
+
items: {
|
|
19282
|
+
items: {
|
|
19283
|
+
type: "string";
|
|
19284
|
+
};
|
|
19285
|
+
type: "array";
|
|
19286
|
+
minItems: 1;
|
|
19287
|
+
};
|
|
19278
19288
|
comment: {
|
|
19279
19289
|
properties: {
|
|
19280
19290
|
label: {
|
|
@@ -19434,16 +19444,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
19434
19444
|
additionalProperties: false;
|
|
19435
19445
|
type: "object";
|
|
19436
19446
|
};
|
|
19437
|
-
label: {
|
|
19438
|
-
type: "string";
|
|
19439
|
-
};
|
|
19440
|
-
items: {
|
|
19441
|
-
items: {
|
|
19442
|
-
type: "string";
|
|
19443
|
-
};
|
|
19444
|
-
type: "array";
|
|
19445
|
-
minItems: 1;
|
|
19446
|
-
};
|
|
19447
19447
|
submitText: {
|
|
19448
19448
|
type: "string";
|
|
19449
19449
|
};
|
|
@@ -19512,20 +19512,20 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
19512
19512
|
facets: {
|
|
19513
19513
|
items: {
|
|
19514
19514
|
properties: {
|
|
19515
|
-
name: {
|
|
19516
|
-
type: "string";
|
|
19517
|
-
};
|
|
19518
19515
|
type: {
|
|
19519
19516
|
enum: ("multi-select" | "select" | "tags")[];
|
|
19520
19517
|
type: "string";
|
|
19521
19518
|
};
|
|
19519
|
+
name: {
|
|
19520
|
+
type: "string";
|
|
19521
|
+
};
|
|
19522
19522
|
field: {
|
|
19523
19523
|
type: "string";
|
|
19524
19524
|
};
|
|
19525
19525
|
};
|
|
19526
19526
|
additionalProperties: false;
|
|
19527
19527
|
type: "object";
|
|
19528
|
-
required: ("
|
|
19528
|
+
required: ("type" | "name" | "field")[];
|
|
19529
19529
|
};
|
|
19530
19530
|
type: "array";
|
|
19531
19531
|
};
|
|
@@ -19929,6 +19929,9 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
19929
19929
|
};
|
|
19930
19930
|
layout: {
|
|
19931
19931
|
properties: {
|
|
19932
|
+
showDarkRightPanel: {
|
|
19933
|
+
type: "boolean";
|
|
19934
|
+
};
|
|
19932
19935
|
stacked: {
|
|
19933
19936
|
properties: {
|
|
19934
19937
|
maxWidth: {
|
|
@@ -19981,9 +19984,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
19981
19984
|
};
|
|
19982
19985
|
type: "object";
|
|
19983
19986
|
};
|
|
19984
|
-
showDarkRightPanel: {
|
|
19985
|
-
type: "boolean";
|
|
19986
|
-
};
|
|
19987
19987
|
};
|
|
19988
19988
|
type: "object";
|
|
19989
19989
|
};
|
|
@@ -20439,7 +20439,7 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
20439
20439
|
items: {
|
|
20440
20440
|
properties: {
|
|
20441
20441
|
lang: {
|
|
20442
|
-
enum: ("curl" | "
|
|
20442
|
+
enum: ("curl" | "C#" | "Go" | "Java" | "Java8+Apache" | "JavaScript" | "Node.js" | "PHP" | "Python" | "R" | "Ruby")[];
|
|
20443
20443
|
};
|
|
20444
20444
|
label: {
|
|
20445
20445
|
type: "string";
|
|
@@ -20698,7 +20698,7 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
20698
20698
|
type: "object";
|
|
20699
20699
|
};
|
|
20700
20700
|
sideNavStyle: {
|
|
20701
|
-
enum: ("summary-only" | "path-first" | "id-only")[];
|
|
20701
|
+
enum: ("path-only" | "summary-only" | "path-first" | "id-only")[];
|
|
20702
20702
|
type: "string";
|
|
20703
20703
|
};
|
|
20704
20704
|
simpleOneOfTypeLabel: {
|
|
@@ -20746,10 +20746,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
20746
20746
|
};
|
|
20747
20747
|
mockServer: {
|
|
20748
20748
|
properties: {
|
|
20749
|
-
|
|
20749
|
+
description: {
|
|
20750
20750
|
type: "string";
|
|
20751
20751
|
};
|
|
20752
|
-
|
|
20752
|
+
url: {
|
|
20753
20753
|
type: "string";
|
|
20754
20754
|
};
|
|
20755
20755
|
position: {
|
|
@@ -20770,6 +20770,16 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
20770
20770
|
};
|
|
20771
20771
|
settings: {
|
|
20772
20772
|
properties: {
|
|
20773
|
+
label: {
|
|
20774
|
+
type: "string";
|
|
20775
|
+
};
|
|
20776
|
+
items: {
|
|
20777
|
+
items: {
|
|
20778
|
+
type: "string";
|
|
20779
|
+
};
|
|
20780
|
+
type: "array";
|
|
20781
|
+
minItems: 1;
|
|
20782
|
+
};
|
|
20773
20783
|
comment: {
|
|
20774
20784
|
properties: {
|
|
20775
20785
|
label: {
|
|
@@ -20929,16 +20939,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
20929
20939
|
additionalProperties: false;
|
|
20930
20940
|
type: "object";
|
|
20931
20941
|
};
|
|
20932
|
-
label: {
|
|
20933
|
-
type: "string";
|
|
20934
|
-
};
|
|
20935
|
-
items: {
|
|
20936
|
-
items: {
|
|
20937
|
-
type: "string";
|
|
20938
|
-
};
|
|
20939
|
-
type: "array";
|
|
20940
|
-
minItems: 1;
|
|
20941
|
-
};
|
|
20942
20942
|
submitText: {
|
|
20943
20943
|
type: "string";
|
|
20944
20944
|
};
|
|
@@ -21009,10 +21009,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
21009
21009
|
downloadUrls: {
|
|
21010
21010
|
items: {
|
|
21011
21011
|
properties: {
|
|
21012
|
-
|
|
21012
|
+
title: {
|
|
21013
21013
|
type: "string";
|
|
21014
21014
|
};
|
|
21015
|
-
|
|
21015
|
+
url: {
|
|
21016
21016
|
type: "string";
|
|
21017
21017
|
};
|
|
21018
21018
|
};
|
|
@@ -21085,7 +21085,7 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
21085
21085
|
items: {
|
|
21086
21086
|
properties: {
|
|
21087
21087
|
lang: {
|
|
21088
|
-
enum: ("curl" | "
|
|
21088
|
+
enum: ("curl" | "C#" | "Go" | "Java" | "Java8+Apache" | "JavaScript" | "Node.js" | "PHP" | "Python" | "R" | "Ruby" | "C#+Newtonsoft" | "Payload")[];
|
|
21089
21089
|
type: "string";
|
|
21090
21090
|
};
|
|
21091
21091
|
label: {
|
|
@@ -21158,6 +21158,16 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
21158
21158
|
};
|
|
21159
21159
|
settings: {
|
|
21160
21160
|
properties: {
|
|
21161
|
+
label: {
|
|
21162
|
+
type: "string";
|
|
21163
|
+
};
|
|
21164
|
+
items: {
|
|
21165
|
+
items: {
|
|
21166
|
+
type: "string";
|
|
21167
|
+
};
|
|
21168
|
+
type: "array";
|
|
21169
|
+
minItems: 1;
|
|
21170
|
+
};
|
|
21161
21171
|
comment: {
|
|
21162
21172
|
properties: {
|
|
21163
21173
|
label: {
|
|
@@ -21317,16 +21327,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
21317
21327
|
additionalProperties: false;
|
|
21318
21328
|
type: "object";
|
|
21319
21329
|
};
|
|
21320
|
-
label: {
|
|
21321
|
-
type: "string";
|
|
21322
|
-
};
|
|
21323
|
-
items: {
|
|
21324
|
-
items: {
|
|
21325
|
-
type: "string";
|
|
21326
|
-
};
|
|
21327
|
-
type: "array";
|
|
21328
|
-
minItems: 1;
|
|
21329
|
-
};
|
|
21330
21330
|
submitText: {
|
|
21331
21331
|
type: "string";
|
|
21332
21332
|
};
|
|
@@ -21377,14 +21377,14 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
21377
21377
|
groups: {
|
|
21378
21378
|
items: {
|
|
21379
21379
|
properties: {
|
|
21380
|
-
name: {
|
|
21381
|
-
type: "string";
|
|
21382
|
-
};
|
|
21383
21380
|
items: {
|
|
21384
21381
|
properties: any;
|
|
21385
21382
|
additionalProperties: false;
|
|
21386
21383
|
type: "object";
|
|
21387
21384
|
};
|
|
21385
|
+
name: {
|
|
21386
|
+
type: "string";
|
|
21387
|
+
};
|
|
21388
21388
|
queries: {
|
|
21389
21389
|
properties: any;
|
|
21390
21390
|
additionalProperties: false;
|
|
@@ -21978,10 +21978,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
21978
21978
|
levels: {
|
|
21979
21979
|
items: {
|
|
21980
21980
|
properties: {
|
|
21981
|
-
|
|
21981
|
+
color: {
|
|
21982
21982
|
type: "string";
|
|
21983
21983
|
};
|
|
21984
|
-
|
|
21984
|
+
name: {
|
|
21985
21985
|
type: "string";
|
|
21986
21986
|
};
|
|
21987
21987
|
rules: {
|
|
@@ -22409,16 +22409,16 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
22409
22409
|
additionalProperties: {
|
|
22410
22410
|
items: {
|
|
22411
22411
|
properties: {
|
|
22412
|
-
|
|
22412
|
+
value: {
|
|
22413
22413
|
type: "string";
|
|
22414
22414
|
};
|
|
22415
|
-
|
|
22415
|
+
name: {
|
|
22416
22416
|
type: "string";
|
|
22417
22417
|
};
|
|
22418
22418
|
};
|
|
22419
22419
|
additionalProperties: false;
|
|
22420
22420
|
type: "object";
|
|
22421
|
-
required: ("
|
|
22421
|
+
required: ("value" | "name")[];
|
|
22422
22422
|
};
|
|
22423
22423
|
type: "array";
|
|
22424
22424
|
};
|
|
@@ -22426,12 +22426,12 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
22426
22426
|
};
|
|
22427
22427
|
mockServer: {
|
|
22428
22428
|
properties: {
|
|
22429
|
-
off: {
|
|
22430
|
-
type: "boolean";
|
|
22431
|
-
};
|
|
22432
22429
|
description: {
|
|
22433
22430
|
type: "string";
|
|
22434
22431
|
};
|
|
22432
|
+
off: {
|
|
22433
|
+
type: "boolean";
|
|
22434
|
+
};
|
|
22435
22435
|
position: {
|
|
22436
22436
|
enum: ("first" | "last" | "replace" | "off")[];
|
|
22437
22437
|
type: "string";
|
|
@@ -22654,6 +22654,9 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
22654
22654
|
};
|
|
22655
22655
|
layout: {
|
|
22656
22656
|
properties: {
|
|
22657
|
+
showDarkRightPanel: {
|
|
22658
|
+
type: "boolean";
|
|
22659
|
+
};
|
|
22657
22660
|
stacked: {
|
|
22658
22661
|
properties: {
|
|
22659
22662
|
maxWidth: {
|
|
@@ -22706,9 +22709,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
22706
22709
|
};
|
|
22707
22710
|
type: "object";
|
|
22708
22711
|
};
|
|
22709
|
-
showDarkRightPanel: {
|
|
22710
|
-
type: "boolean";
|
|
22711
|
-
};
|
|
22712
22712
|
};
|
|
22713
22713
|
type: "object";
|
|
22714
22714
|
};
|
|
@@ -23164,7 +23164,7 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
23164
23164
|
items: {
|
|
23165
23165
|
properties: {
|
|
23166
23166
|
lang: {
|
|
23167
|
-
enum: ("curl" | "
|
|
23167
|
+
enum: ("curl" | "C#" | "Go" | "Java" | "Java8+Apache" | "JavaScript" | "Node.js" | "PHP" | "Python" | "R" | "Ruby")[];
|
|
23168
23168
|
};
|
|
23169
23169
|
label: {
|
|
23170
23170
|
type: "string";
|
|
@@ -23423,7 +23423,7 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
23423
23423
|
type: "object";
|
|
23424
23424
|
};
|
|
23425
23425
|
sideNavStyle: {
|
|
23426
|
-
enum: ("summary-only" | "path-first" | "id-only")[];
|
|
23426
|
+
enum: ("path-only" | "summary-only" | "path-first" | "id-only")[];
|
|
23427
23427
|
type: "string";
|
|
23428
23428
|
};
|
|
23429
23429
|
simpleOneOfTypeLabel: {
|
|
@@ -23471,10 +23471,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
23471
23471
|
};
|
|
23472
23472
|
mockServer: {
|
|
23473
23473
|
properties: {
|
|
23474
|
-
|
|
23474
|
+
description: {
|
|
23475
23475
|
type: "string";
|
|
23476
23476
|
};
|
|
23477
|
-
|
|
23477
|
+
url: {
|
|
23478
23478
|
type: "string";
|
|
23479
23479
|
};
|
|
23480
23480
|
position: {
|
|
@@ -23495,6 +23495,16 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
23495
23495
|
};
|
|
23496
23496
|
settings: {
|
|
23497
23497
|
properties: {
|
|
23498
|
+
label: {
|
|
23499
|
+
type: "string";
|
|
23500
|
+
};
|
|
23501
|
+
items: {
|
|
23502
|
+
items: {
|
|
23503
|
+
type: "string";
|
|
23504
|
+
};
|
|
23505
|
+
type: "array";
|
|
23506
|
+
minItems: 1;
|
|
23507
|
+
};
|
|
23498
23508
|
comment: {
|
|
23499
23509
|
properties: {
|
|
23500
23510
|
label: {
|
|
@@ -23654,16 +23664,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
23654
23664
|
additionalProperties: false;
|
|
23655
23665
|
type: "object";
|
|
23656
23666
|
};
|
|
23657
|
-
label: {
|
|
23658
|
-
type: "string";
|
|
23659
|
-
};
|
|
23660
|
-
items: {
|
|
23661
|
-
items: {
|
|
23662
|
-
type: "string";
|
|
23663
|
-
};
|
|
23664
|
-
type: "array";
|
|
23665
|
-
minItems: 1;
|
|
23666
|
-
};
|
|
23667
23667
|
submitText: {
|
|
23668
23668
|
type: "string";
|
|
23669
23669
|
};
|
|
@@ -23734,10 +23734,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
23734
23734
|
downloadUrls: {
|
|
23735
23735
|
items: {
|
|
23736
23736
|
properties: {
|
|
23737
|
-
|
|
23737
|
+
title: {
|
|
23738
23738
|
type: "string";
|
|
23739
23739
|
};
|
|
23740
|
-
|
|
23740
|
+
url: {
|
|
23741
23741
|
type: "string";
|
|
23742
23742
|
};
|
|
23743
23743
|
};
|
|
@@ -23810,7 +23810,7 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
23810
23810
|
items: {
|
|
23811
23811
|
properties: {
|
|
23812
23812
|
lang: {
|
|
23813
|
-
enum: ("curl" | "
|
|
23813
|
+
enum: ("curl" | "C#" | "Go" | "Java" | "Java8+Apache" | "JavaScript" | "Node.js" | "PHP" | "Python" | "R" | "Ruby" | "C#+Newtonsoft" | "Payload")[];
|
|
23814
23814
|
type: "string";
|
|
23815
23815
|
};
|
|
23816
23816
|
label: {
|
|
@@ -23883,6 +23883,16 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
23883
23883
|
};
|
|
23884
23884
|
settings: {
|
|
23885
23885
|
properties: {
|
|
23886
|
+
label: {
|
|
23887
|
+
type: "string";
|
|
23888
|
+
};
|
|
23889
|
+
items: {
|
|
23890
|
+
items: {
|
|
23891
|
+
type: "string";
|
|
23892
|
+
};
|
|
23893
|
+
type: "array";
|
|
23894
|
+
minItems: 1;
|
|
23895
|
+
};
|
|
23886
23896
|
comment: {
|
|
23887
23897
|
properties: {
|
|
23888
23898
|
label: {
|
|
@@ -24042,16 +24052,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
24042
24052
|
additionalProperties: false;
|
|
24043
24053
|
type: "object";
|
|
24044
24054
|
};
|
|
24045
|
-
label: {
|
|
24046
|
-
type: "string";
|
|
24047
|
-
};
|
|
24048
|
-
items: {
|
|
24049
|
-
items: {
|
|
24050
|
-
type: "string";
|
|
24051
|
-
};
|
|
24052
|
-
type: "array";
|
|
24053
|
-
minItems: 1;
|
|
24054
|
-
};
|
|
24055
24055
|
submitText: {
|
|
24056
24056
|
type: "string";
|
|
24057
24057
|
};
|
|
@@ -24102,14 +24102,14 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
24102
24102
|
groups: {
|
|
24103
24103
|
items: {
|
|
24104
24104
|
properties: {
|
|
24105
|
-
name: {
|
|
24106
|
-
type: "string";
|
|
24107
|
-
};
|
|
24108
24105
|
items: {
|
|
24109
24106
|
properties: any;
|
|
24110
24107
|
additionalProperties: false;
|
|
24111
24108
|
type: "object";
|
|
24112
24109
|
};
|
|
24110
|
+
name: {
|
|
24111
|
+
type: "string";
|
|
24112
|
+
};
|
|
24113
24113
|
queries: {
|
|
24114
24114
|
properties: any;
|
|
24115
24115
|
additionalProperties: false;
|
|
@@ -24416,6 +24416,9 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
24416
24416
|
};
|
|
24417
24417
|
layout: {
|
|
24418
24418
|
properties: {
|
|
24419
|
+
showDarkRightPanel: {
|
|
24420
|
+
type: "boolean";
|
|
24421
|
+
};
|
|
24419
24422
|
stacked: {
|
|
24420
24423
|
properties: {
|
|
24421
24424
|
maxWidth: {
|
|
@@ -24468,9 +24471,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
24468
24471
|
};
|
|
24469
24472
|
type: "object";
|
|
24470
24473
|
};
|
|
24471
|
-
showDarkRightPanel: {
|
|
24472
|
-
type: "boolean";
|
|
24473
|
-
};
|
|
24474
24474
|
};
|
|
24475
24475
|
type: "object";
|
|
24476
24476
|
};
|
|
@@ -24926,7 +24926,7 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
24926
24926
|
items: {
|
|
24927
24927
|
properties: {
|
|
24928
24928
|
lang: {
|
|
24929
|
-
enum: ("curl" | "
|
|
24929
|
+
enum: ("curl" | "C#" | "Go" | "Java" | "Java8+Apache" | "JavaScript" | "Node.js" | "PHP" | "Python" | "R" | "Ruby")[];
|
|
24930
24930
|
};
|
|
24931
24931
|
label: {
|
|
24932
24932
|
type: "string";
|
|
@@ -25185,7 +25185,7 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25185
25185
|
type: "object";
|
|
25186
25186
|
};
|
|
25187
25187
|
sideNavStyle: {
|
|
25188
|
-
enum: ("summary-only" | "path-first" | "id-only")[];
|
|
25188
|
+
enum: ("path-only" | "summary-only" | "path-first" | "id-only")[];
|
|
25189
25189
|
type: "string";
|
|
25190
25190
|
};
|
|
25191
25191
|
simpleOneOfTypeLabel: {
|
|
@@ -25233,10 +25233,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25233
25233
|
};
|
|
25234
25234
|
mockServer: {
|
|
25235
25235
|
properties: {
|
|
25236
|
-
|
|
25236
|
+
description: {
|
|
25237
25237
|
type: "string";
|
|
25238
25238
|
};
|
|
25239
|
-
|
|
25239
|
+
url: {
|
|
25240
25240
|
type: "string";
|
|
25241
25241
|
};
|
|
25242
25242
|
position: {
|
|
@@ -25257,6 +25257,16 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25257
25257
|
};
|
|
25258
25258
|
settings: {
|
|
25259
25259
|
properties: {
|
|
25260
|
+
label: {
|
|
25261
|
+
type: "string";
|
|
25262
|
+
};
|
|
25263
|
+
items: {
|
|
25264
|
+
items: {
|
|
25265
|
+
type: "string";
|
|
25266
|
+
};
|
|
25267
|
+
type: "array";
|
|
25268
|
+
minItems: 1;
|
|
25269
|
+
};
|
|
25260
25270
|
comment: {
|
|
25261
25271
|
properties: {
|
|
25262
25272
|
label: {
|
|
@@ -25416,16 +25426,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25416
25426
|
additionalProperties: false;
|
|
25417
25427
|
type: "object";
|
|
25418
25428
|
};
|
|
25419
|
-
label: {
|
|
25420
|
-
type: "string";
|
|
25421
|
-
};
|
|
25422
|
-
items: {
|
|
25423
|
-
items: {
|
|
25424
|
-
type: "string";
|
|
25425
|
-
};
|
|
25426
|
-
type: "array";
|
|
25427
|
-
minItems: 1;
|
|
25428
|
-
};
|
|
25429
25429
|
submitText: {
|
|
25430
25430
|
type: "string";
|
|
25431
25431
|
};
|
|
@@ -25496,10 +25496,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25496
25496
|
downloadUrls: {
|
|
25497
25497
|
items: {
|
|
25498
25498
|
properties: {
|
|
25499
|
-
|
|
25499
|
+
title: {
|
|
25500
25500
|
type: "string";
|
|
25501
25501
|
};
|
|
25502
|
-
|
|
25502
|
+
url: {
|
|
25503
25503
|
type: "string";
|
|
25504
25504
|
};
|
|
25505
25505
|
};
|
|
@@ -25572,7 +25572,7 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25572
25572
|
items: {
|
|
25573
25573
|
properties: {
|
|
25574
25574
|
lang: {
|
|
25575
|
-
enum: ("curl" | "
|
|
25575
|
+
enum: ("curl" | "C#" | "Go" | "Java" | "Java8+Apache" | "JavaScript" | "Node.js" | "PHP" | "Python" | "R" | "Ruby" | "C#+Newtonsoft" | "Payload")[];
|
|
25576
25576
|
type: "string";
|
|
25577
25577
|
};
|
|
25578
25578
|
label: {
|
|
@@ -25645,6 +25645,16 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25645
25645
|
};
|
|
25646
25646
|
settings: {
|
|
25647
25647
|
properties: {
|
|
25648
|
+
label: {
|
|
25649
|
+
type: "string";
|
|
25650
|
+
};
|
|
25651
|
+
items: {
|
|
25652
|
+
items: {
|
|
25653
|
+
type: "string";
|
|
25654
|
+
};
|
|
25655
|
+
type: "array";
|
|
25656
|
+
minItems: 1;
|
|
25657
|
+
};
|
|
25648
25658
|
comment: {
|
|
25649
25659
|
properties: {
|
|
25650
25660
|
label: {
|
|
@@ -25804,16 +25814,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25804
25814
|
additionalProperties: false;
|
|
25805
25815
|
type: "object";
|
|
25806
25816
|
};
|
|
25807
|
-
label: {
|
|
25808
|
-
type: "string";
|
|
25809
|
-
};
|
|
25810
|
-
items: {
|
|
25811
|
-
items: {
|
|
25812
|
-
type: "string";
|
|
25813
|
-
};
|
|
25814
|
-
type: "array";
|
|
25815
|
-
minItems: 1;
|
|
25816
|
-
};
|
|
25817
25817
|
submitText: {
|
|
25818
25818
|
type: "string";
|
|
25819
25819
|
};
|
|
@@ -25864,14 +25864,14 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25864
25864
|
groups: {
|
|
25865
25865
|
items: {
|
|
25866
25866
|
properties: {
|
|
25867
|
-
name: {
|
|
25868
|
-
type: "string";
|
|
25869
|
-
};
|
|
25870
25867
|
items: {
|
|
25871
25868
|
properties: any;
|
|
25872
25869
|
additionalProperties: false;
|
|
25873
25870
|
type: "object";
|
|
25874
25871
|
};
|
|
25872
|
+
name: {
|
|
25873
|
+
type: "string";
|
|
25874
|
+
};
|
|
25875
25875
|
queries: {
|
|
25876
25876
|
properties: any;
|
|
25877
25877
|
additionalProperties: false;
|
|
@@ -26342,10 +26342,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
26342
26342
|
locales: {
|
|
26343
26343
|
items: {
|
|
26344
26344
|
properties: {
|
|
26345
|
-
|
|
26345
|
+
code: {
|
|
26346
26346
|
type: "string";
|
|
26347
26347
|
};
|
|
26348
|
-
|
|
26348
|
+
name: {
|
|
26349
26349
|
type: "string";
|
|
26350
26350
|
};
|
|
26351
26351
|
};
|
|
@@ -26367,10 +26367,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
26367
26367
|
locales: {
|
|
26368
26368
|
items: {
|
|
26369
26369
|
properties: {
|
|
26370
|
-
|
|
26370
|
+
code: {
|
|
26371
26371
|
type: "string";
|
|
26372
26372
|
};
|
|
26373
|
-
|
|
26373
|
+
name: {
|
|
26374
26374
|
type: "string";
|
|
26375
26375
|
};
|
|
26376
26376
|
};
|
|
@@ -26720,6 +26720,16 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
26720
26720
|
};
|
|
26721
26721
|
settings: {
|
|
26722
26722
|
properties: {
|
|
26723
|
+
label: {
|
|
26724
|
+
type: "string";
|
|
26725
|
+
};
|
|
26726
|
+
items: {
|
|
26727
|
+
items: {
|
|
26728
|
+
type: "string";
|
|
26729
|
+
};
|
|
26730
|
+
type: "array";
|
|
26731
|
+
minItems: 1;
|
|
26732
|
+
};
|
|
26723
26733
|
comment: {
|
|
26724
26734
|
properties: {
|
|
26725
26735
|
label: {
|
|
@@ -26879,16 +26889,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
26879
26889
|
additionalProperties: false;
|
|
26880
26890
|
type: "object";
|
|
26881
26891
|
};
|
|
26882
|
-
label: {
|
|
26883
|
-
type: "string";
|
|
26884
|
-
};
|
|
26885
|
-
items: {
|
|
26886
|
-
items: {
|
|
26887
|
-
type: "string";
|
|
26888
|
-
};
|
|
26889
|
-
type: "array";
|
|
26890
|
-
minItems: 1;
|
|
26891
|
-
};
|
|
26892
26892
|
submitText: {
|
|
26893
26893
|
type: "string";
|
|
26894
26894
|
};
|
|
@@ -26957,20 +26957,20 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
26957
26957
|
facets: {
|
|
26958
26958
|
items: {
|
|
26959
26959
|
properties: {
|
|
26960
|
-
name: {
|
|
26961
|
-
type: "string";
|
|
26962
|
-
};
|
|
26963
26960
|
type: {
|
|
26964
26961
|
enum: ("multi-select" | "select" | "tags")[];
|
|
26965
26962
|
type: "string";
|
|
26966
26963
|
};
|
|
26964
|
+
name: {
|
|
26965
|
+
type: "string";
|
|
26966
|
+
};
|
|
26967
26967
|
field: {
|
|
26968
26968
|
type: "string";
|
|
26969
26969
|
};
|
|
26970
26970
|
};
|
|
26971
26971
|
additionalProperties: false;
|
|
26972
26972
|
type: "object";
|
|
26973
|
-
required: ("
|
|
26973
|
+
required: ("type" | "name" | "field")[];
|
|
26974
26974
|
};
|
|
26975
26975
|
type: "array";
|
|
26976
26976
|
};
|
|
@@ -27374,6 +27374,9 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
27374
27374
|
};
|
|
27375
27375
|
layout: {
|
|
27376
27376
|
properties: {
|
|
27377
|
+
showDarkRightPanel: {
|
|
27378
|
+
type: "boolean";
|
|
27379
|
+
};
|
|
27377
27380
|
stacked: {
|
|
27378
27381
|
properties: {
|
|
27379
27382
|
maxWidth: {
|
|
@@ -27426,9 +27429,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
27426
27429
|
};
|
|
27427
27430
|
type: "object";
|
|
27428
27431
|
};
|
|
27429
|
-
showDarkRightPanel: {
|
|
27430
|
-
type: "boolean";
|
|
27431
|
-
};
|
|
27432
27432
|
};
|
|
27433
27433
|
type: "object";
|
|
27434
27434
|
};
|
|
@@ -27884,7 +27884,7 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
27884
27884
|
items: {
|
|
27885
27885
|
properties: {
|
|
27886
27886
|
lang: {
|
|
27887
|
-
enum: ("curl" | "
|
|
27887
|
+
enum: ("curl" | "C#" | "Go" | "Java" | "Java8+Apache" | "JavaScript" | "Node.js" | "PHP" | "Python" | "R" | "Ruby")[];
|
|
27888
27888
|
};
|
|
27889
27889
|
label: {
|
|
27890
27890
|
type: "string";
|
|
@@ -28143,7 +28143,7 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
28143
28143
|
type: "object";
|
|
28144
28144
|
};
|
|
28145
28145
|
sideNavStyle: {
|
|
28146
|
-
enum: ("summary-only" | "path-first" | "id-only")[];
|
|
28146
|
+
enum: ("path-only" | "summary-only" | "path-first" | "id-only")[];
|
|
28147
28147
|
type: "string";
|
|
28148
28148
|
};
|
|
28149
28149
|
simpleOneOfTypeLabel: {
|
|
@@ -28191,10 +28191,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
28191
28191
|
};
|
|
28192
28192
|
mockServer: {
|
|
28193
28193
|
properties: {
|
|
28194
|
-
|
|
28194
|
+
description: {
|
|
28195
28195
|
type: "string";
|
|
28196
28196
|
};
|
|
28197
|
-
|
|
28197
|
+
url: {
|
|
28198
28198
|
type: "string";
|
|
28199
28199
|
};
|
|
28200
28200
|
position: {
|
|
@@ -28215,6 +28215,16 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
28215
28215
|
};
|
|
28216
28216
|
settings: {
|
|
28217
28217
|
properties: {
|
|
28218
|
+
label: {
|
|
28219
|
+
type: "string";
|
|
28220
|
+
};
|
|
28221
|
+
items: {
|
|
28222
|
+
items: {
|
|
28223
|
+
type: "string";
|
|
28224
|
+
};
|
|
28225
|
+
type: "array";
|
|
28226
|
+
minItems: 1;
|
|
28227
|
+
};
|
|
28218
28228
|
comment: {
|
|
28219
28229
|
properties: {
|
|
28220
28230
|
label: {
|
|
@@ -28374,16 +28384,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
28374
28384
|
additionalProperties: false;
|
|
28375
28385
|
type: "object";
|
|
28376
28386
|
};
|
|
28377
|
-
label: {
|
|
28378
|
-
type: "string";
|
|
28379
|
-
};
|
|
28380
|
-
items: {
|
|
28381
|
-
items: {
|
|
28382
|
-
type: "string";
|
|
28383
|
-
};
|
|
28384
|
-
type: "array";
|
|
28385
|
-
minItems: 1;
|
|
28386
|
-
};
|
|
28387
28387
|
submitText: {
|
|
28388
28388
|
type: "string";
|
|
28389
28389
|
};
|
|
@@ -28454,10 +28454,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
28454
28454
|
downloadUrls: {
|
|
28455
28455
|
items: {
|
|
28456
28456
|
properties: {
|
|
28457
|
-
|
|
28457
|
+
title: {
|
|
28458
28458
|
type: "string";
|
|
28459
28459
|
};
|
|
28460
|
-
|
|
28460
|
+
url: {
|
|
28461
28461
|
type: "string";
|
|
28462
28462
|
};
|
|
28463
28463
|
};
|
|
@@ -28530,7 +28530,7 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
28530
28530
|
items: {
|
|
28531
28531
|
properties: {
|
|
28532
28532
|
lang: {
|
|
28533
|
-
enum: ("curl" | "
|
|
28533
|
+
enum: ("curl" | "C#" | "Go" | "Java" | "Java8+Apache" | "JavaScript" | "Node.js" | "PHP" | "Python" | "R" | "Ruby" | "C#+Newtonsoft" | "Payload")[];
|
|
28534
28534
|
type: "string";
|
|
28535
28535
|
};
|
|
28536
28536
|
label: {
|
|
@@ -28603,6 +28603,16 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
28603
28603
|
};
|
|
28604
28604
|
settings: {
|
|
28605
28605
|
properties: {
|
|
28606
|
+
label: {
|
|
28607
|
+
type: "string";
|
|
28608
|
+
};
|
|
28609
|
+
items: {
|
|
28610
|
+
items: {
|
|
28611
|
+
type: "string";
|
|
28612
|
+
};
|
|
28613
|
+
type: "array";
|
|
28614
|
+
minItems: 1;
|
|
28615
|
+
};
|
|
28606
28616
|
comment: {
|
|
28607
28617
|
properties: {
|
|
28608
28618
|
label: {
|
|
@@ -28762,16 +28772,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
28762
28772
|
additionalProperties: false;
|
|
28763
28773
|
type: "object";
|
|
28764
28774
|
};
|
|
28765
|
-
label: {
|
|
28766
|
-
type: "string";
|
|
28767
|
-
};
|
|
28768
|
-
items: {
|
|
28769
|
-
items: {
|
|
28770
|
-
type: "string";
|
|
28771
|
-
};
|
|
28772
|
-
type: "array";
|
|
28773
|
-
minItems: 1;
|
|
28774
|
-
};
|
|
28775
28775
|
submitText: {
|
|
28776
28776
|
type: "string";
|
|
28777
28777
|
};
|
|
@@ -28822,14 +28822,14 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
28822
28822
|
groups: {
|
|
28823
28823
|
items: {
|
|
28824
28824
|
properties: {
|
|
28825
|
-
name: {
|
|
28826
|
-
type: "string";
|
|
28827
|
-
};
|
|
28828
28825
|
items: {
|
|
28829
28826
|
properties: any;
|
|
28830
28827
|
additionalProperties: false;
|
|
28831
28828
|
type: "object";
|
|
28832
28829
|
};
|
|
28830
|
+
name: {
|
|
28831
|
+
type: "string";
|
|
28832
|
+
};
|
|
28833
28833
|
queries: {
|
|
28834
28834
|
properties: any;
|
|
28835
28835
|
additionalProperties: false;
|
|
@@ -29423,10 +29423,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29423
29423
|
levels: {
|
|
29424
29424
|
items: {
|
|
29425
29425
|
properties: {
|
|
29426
|
-
|
|
29426
|
+
color: {
|
|
29427
29427
|
type: "string";
|
|
29428
29428
|
};
|
|
29429
|
-
|
|
29429
|
+
name: {
|
|
29430
29430
|
type: "string";
|
|
29431
29431
|
};
|
|
29432
29432
|
rules: {
|
|
@@ -31040,7 +31040,7 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
31040
31040
|
};
|
|
31041
31041
|
readonly sideNavStyle: {
|
|
31042
31042
|
readonly type: "string";
|
|
31043
|
-
readonly enum: readonly ["summary-only", "path-first", "id-only"];
|
|
31043
|
+
readonly enum: readonly ["summary-only", "path-first", "id-only", "path-only"];
|
|
31044
31044
|
};
|
|
31045
31045
|
readonly simpleOneOfTypeLabel: {
|
|
31046
31046
|
readonly type: "boolean";
|
|
@@ -33272,7 +33272,7 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
33272
33272
|
};
|
|
33273
33273
|
readonly sideNavStyle: {
|
|
33274
33274
|
readonly type: "string";
|
|
33275
|
-
readonly enum: readonly ["summary-only", "path-first", "id-only"];
|
|
33275
|
+
readonly enum: readonly ["summary-only", "path-first", "id-only", "path-only"];
|
|
33276
33276
|
};
|
|
33277
33277
|
readonly simpleOneOfTypeLabel: {
|
|
33278
33278
|
readonly type: "boolean";
|
|
@@ -37089,7 +37089,7 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
37089
37089
|
};
|
|
37090
37090
|
readonly sideNavStyle: {
|
|
37091
37091
|
readonly type: "string";
|
|
37092
|
-
readonly enum: readonly ["summary-only", "path-first", "id-only"];
|
|
37092
|
+
readonly enum: readonly ["summary-only", "path-first", "id-only", "path-only"];
|
|
37093
37093
|
};
|
|
37094
37094
|
readonly simpleOneOfTypeLabel: {
|
|
37095
37095
|
readonly type: "boolean";
|
|
@@ -41144,7 +41144,7 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
41144
41144
|
};
|
|
41145
41145
|
readonly sideNavStyle: {
|
|
41146
41146
|
readonly type: "string";
|
|
41147
|
-
readonly enum: readonly ["summary-only", "path-first", "id-only"];
|
|
41147
|
+
readonly enum: readonly ["summary-only", "path-first", "id-only", "path-only"];
|
|
41148
41148
|
};
|
|
41149
41149
|
readonly simpleOneOfTypeLabel: {
|
|
41150
41150
|
readonly type: "boolean";
|