@redocly/config 0.21.0 → 0.22.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 +14 -0
- package/lib/ex-theme-config-schemas.d.ts +14 -0
- package/lib/ex-theme-config-schemas.js +7 -0
- package/lib/product-override-schema.d.ts +21 -0
- package/lib/root-config-schema.d.ts +40 -0
- package/lib-esm/default-theme-config-schema.d.ts +14 -0
- package/lib-esm/ex-theme-config-schemas.d.ts +14 -0
- package/lib-esm/ex-theme-config-schemas.js +7 -0
- package/lib-esm/product-override-schema.d.ts +21 -0
- package/lib-esm/root-config-schema.d.ts +40 -0
- package/package.json +1 -1
|
@@ -844,6 +844,13 @@ export declare const themeConfigSchema: {
|
|
|
844
844
|
readonly type: "boolean";
|
|
845
845
|
readonly default: false;
|
|
846
846
|
};
|
|
847
|
+
readonly suggestions: {
|
|
848
|
+
readonly default: readonly [];
|
|
849
|
+
readonly type: "array";
|
|
850
|
+
readonly items: {
|
|
851
|
+
readonly type: "string";
|
|
852
|
+
};
|
|
853
|
+
};
|
|
847
854
|
readonly prompt: {
|
|
848
855
|
readonly type: "string";
|
|
849
856
|
};
|
|
@@ -4840,6 +4847,13 @@ export declare const closedThemeConfigSchema: {
|
|
|
4840
4847
|
readonly type: "boolean";
|
|
4841
4848
|
readonly default: false;
|
|
4842
4849
|
};
|
|
4850
|
+
readonly suggestions: {
|
|
4851
|
+
readonly default: readonly [];
|
|
4852
|
+
readonly type: "array";
|
|
4853
|
+
readonly items: {
|
|
4854
|
+
readonly type: "string";
|
|
4855
|
+
};
|
|
4856
|
+
};
|
|
4843
4857
|
readonly prompt: {
|
|
4844
4858
|
readonly type: "string";
|
|
4845
4859
|
};
|
|
@@ -194,6 +194,13 @@ export declare const aiSearchConfigSchema: {
|
|
|
194
194
|
readonly type: "boolean";
|
|
195
195
|
readonly default: false;
|
|
196
196
|
};
|
|
197
|
+
readonly suggestions: {
|
|
198
|
+
readonly default: readonly [];
|
|
199
|
+
readonly type: "array";
|
|
200
|
+
readonly items: {
|
|
201
|
+
readonly type: "string";
|
|
202
|
+
};
|
|
203
|
+
};
|
|
197
204
|
readonly prompt: {
|
|
198
205
|
readonly type: "string";
|
|
199
206
|
};
|
|
@@ -847,6 +854,13 @@ export declare const searchConfigSchema: {
|
|
|
847
854
|
readonly type: "boolean";
|
|
848
855
|
readonly default: false;
|
|
849
856
|
};
|
|
857
|
+
readonly suggestions: {
|
|
858
|
+
readonly default: readonly [];
|
|
859
|
+
readonly type: "array";
|
|
860
|
+
readonly items: {
|
|
861
|
+
readonly type: "string";
|
|
862
|
+
};
|
|
863
|
+
};
|
|
850
864
|
readonly prompt: {
|
|
851
865
|
readonly type: "string";
|
|
852
866
|
};
|
|
@@ -433,6 +433,13 @@ export declare const productThemeOverrideSchema: {
|
|
|
433
433
|
readonly type: "boolean";
|
|
434
434
|
readonly default: false;
|
|
435
435
|
};
|
|
436
|
+
readonly suggestions: {
|
|
437
|
+
readonly default: readonly [];
|
|
438
|
+
readonly type: "array";
|
|
439
|
+
readonly items: {
|
|
440
|
+
readonly type: "string";
|
|
441
|
+
};
|
|
442
|
+
};
|
|
436
443
|
readonly prompt: {
|
|
437
444
|
readonly type: "string";
|
|
438
445
|
};
|
|
@@ -7621,6 +7628,13 @@ export declare const productConfigOverrideSchema: {
|
|
|
7621
7628
|
readonly type: "boolean";
|
|
7622
7629
|
readonly default: false;
|
|
7623
7630
|
};
|
|
7631
|
+
readonly suggestions: {
|
|
7632
|
+
readonly default: readonly [];
|
|
7633
|
+
readonly type: "array";
|
|
7634
|
+
readonly items: {
|
|
7635
|
+
readonly type: "string";
|
|
7636
|
+
};
|
|
7637
|
+
};
|
|
7624
7638
|
readonly prompt: {
|
|
7625
7639
|
readonly type: "string";
|
|
7626
7640
|
};
|
|
@@ -10296,6 +10310,13 @@ export declare const productConfigOverrideSchema: {
|
|
|
10296
10310
|
readonly type: "boolean";
|
|
10297
10311
|
readonly default: false;
|
|
10298
10312
|
};
|
|
10313
|
+
readonly suggestions: {
|
|
10314
|
+
readonly default: readonly [];
|
|
10315
|
+
readonly type: "array";
|
|
10316
|
+
readonly items: {
|
|
10317
|
+
readonly type: "string";
|
|
10318
|
+
};
|
|
10319
|
+
};
|
|
10299
10320
|
readonly prompt: {
|
|
10300
10321
|
readonly type: "string";
|
|
10301
10322
|
};
|
|
@@ -11615,6 +11615,13 @@ export declare const redoclyConfigSchema: {
|
|
|
11615
11615
|
readonly type: "boolean";
|
|
11616
11616
|
readonly default: false;
|
|
11617
11617
|
};
|
|
11618
|
+
readonly suggestions: {
|
|
11619
|
+
readonly default: readonly [];
|
|
11620
|
+
readonly type: "array";
|
|
11621
|
+
readonly items: {
|
|
11622
|
+
readonly type: "string";
|
|
11623
|
+
};
|
|
11624
|
+
};
|
|
11618
11625
|
readonly prompt: {
|
|
11619
11626
|
readonly type: "string";
|
|
11620
11627
|
};
|
|
@@ -15692,6 +15699,13 @@ export declare const redoclyConfigSchema: {
|
|
|
15692
15699
|
readonly type: "boolean";
|
|
15693
15700
|
readonly default: false;
|
|
15694
15701
|
};
|
|
15702
|
+
readonly suggestions: {
|
|
15703
|
+
readonly default: readonly [];
|
|
15704
|
+
readonly type: "array";
|
|
15705
|
+
readonly items: {
|
|
15706
|
+
readonly type: "string";
|
|
15707
|
+
};
|
|
15708
|
+
};
|
|
15695
15709
|
readonly prompt: {
|
|
15696
15710
|
readonly type: "string";
|
|
15697
15711
|
};
|
|
@@ -19543,6 +19557,12 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
19543
19557
|
hide: {
|
|
19544
19558
|
type: "boolean";
|
|
19545
19559
|
};
|
|
19560
|
+
suggestions: {
|
|
19561
|
+
items: {
|
|
19562
|
+
type: "string";
|
|
19563
|
+
};
|
|
19564
|
+
type: "array";
|
|
19565
|
+
};
|
|
19546
19566
|
prompt: {
|
|
19547
19567
|
type: "string";
|
|
19548
19568
|
};
|
|
@@ -27022,6 +27042,12 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
27022
27042
|
hide: {
|
|
27023
27043
|
type: "boolean";
|
|
27024
27044
|
};
|
|
27045
|
+
suggestions: {
|
|
27046
|
+
items: {
|
|
27047
|
+
type: "string";
|
|
27048
|
+
};
|
|
27049
|
+
type: "array";
|
|
27050
|
+
};
|
|
27025
27051
|
prompt: {
|
|
27026
27052
|
type: "string";
|
|
27027
27053
|
};
|
|
@@ -35584,6 +35610,13 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
35584
35610
|
readonly type: "boolean";
|
|
35585
35611
|
readonly default: false;
|
|
35586
35612
|
};
|
|
35613
|
+
readonly suggestions: {
|
|
35614
|
+
readonly default: readonly [];
|
|
35615
|
+
readonly type: "array";
|
|
35616
|
+
readonly items: {
|
|
35617
|
+
readonly type: "string";
|
|
35618
|
+
};
|
|
35619
|
+
};
|
|
35587
35620
|
readonly prompt: {
|
|
35588
35621
|
readonly type: "string";
|
|
35589
35622
|
};
|
|
@@ -39661,6 +39694,13 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
39661
39694
|
readonly type: "boolean";
|
|
39662
39695
|
readonly default: false;
|
|
39663
39696
|
};
|
|
39697
|
+
readonly suggestions: {
|
|
39698
|
+
readonly default: readonly [];
|
|
39699
|
+
readonly type: "array";
|
|
39700
|
+
readonly items: {
|
|
39701
|
+
readonly type: "string";
|
|
39702
|
+
};
|
|
39703
|
+
};
|
|
39664
39704
|
readonly prompt: {
|
|
39665
39705
|
readonly type: "string";
|
|
39666
39706
|
};
|
|
@@ -844,6 +844,13 @@ export declare const themeConfigSchema: {
|
|
|
844
844
|
readonly type: "boolean";
|
|
845
845
|
readonly default: false;
|
|
846
846
|
};
|
|
847
|
+
readonly suggestions: {
|
|
848
|
+
readonly default: readonly [];
|
|
849
|
+
readonly type: "array";
|
|
850
|
+
readonly items: {
|
|
851
|
+
readonly type: "string";
|
|
852
|
+
};
|
|
853
|
+
};
|
|
847
854
|
readonly prompt: {
|
|
848
855
|
readonly type: "string";
|
|
849
856
|
};
|
|
@@ -4840,6 +4847,13 @@ export declare const closedThemeConfigSchema: {
|
|
|
4840
4847
|
readonly type: "boolean";
|
|
4841
4848
|
readonly default: false;
|
|
4842
4849
|
};
|
|
4850
|
+
readonly suggestions: {
|
|
4851
|
+
readonly default: readonly [];
|
|
4852
|
+
readonly type: "array";
|
|
4853
|
+
readonly items: {
|
|
4854
|
+
readonly type: "string";
|
|
4855
|
+
};
|
|
4856
|
+
};
|
|
4843
4857
|
readonly prompt: {
|
|
4844
4858
|
readonly type: "string";
|
|
4845
4859
|
};
|
|
@@ -194,6 +194,13 @@ export declare const aiSearchConfigSchema: {
|
|
|
194
194
|
readonly type: "boolean";
|
|
195
195
|
readonly default: false;
|
|
196
196
|
};
|
|
197
|
+
readonly suggestions: {
|
|
198
|
+
readonly default: readonly [];
|
|
199
|
+
readonly type: "array";
|
|
200
|
+
readonly items: {
|
|
201
|
+
readonly type: "string";
|
|
202
|
+
};
|
|
203
|
+
};
|
|
197
204
|
readonly prompt: {
|
|
198
205
|
readonly type: "string";
|
|
199
206
|
};
|
|
@@ -847,6 +854,13 @@ export declare const searchConfigSchema: {
|
|
|
847
854
|
readonly type: "boolean";
|
|
848
855
|
readonly default: false;
|
|
849
856
|
};
|
|
857
|
+
readonly suggestions: {
|
|
858
|
+
readonly default: readonly [];
|
|
859
|
+
readonly type: "array";
|
|
860
|
+
readonly items: {
|
|
861
|
+
readonly type: "string";
|
|
862
|
+
};
|
|
863
|
+
};
|
|
850
864
|
readonly prompt: {
|
|
851
865
|
readonly type: "string";
|
|
852
866
|
};
|
|
@@ -433,6 +433,13 @@ export declare const productThemeOverrideSchema: {
|
|
|
433
433
|
readonly type: "boolean";
|
|
434
434
|
readonly default: false;
|
|
435
435
|
};
|
|
436
|
+
readonly suggestions: {
|
|
437
|
+
readonly default: readonly [];
|
|
438
|
+
readonly type: "array";
|
|
439
|
+
readonly items: {
|
|
440
|
+
readonly type: "string";
|
|
441
|
+
};
|
|
442
|
+
};
|
|
436
443
|
readonly prompt: {
|
|
437
444
|
readonly type: "string";
|
|
438
445
|
};
|
|
@@ -7621,6 +7628,13 @@ export declare const productConfigOverrideSchema: {
|
|
|
7621
7628
|
readonly type: "boolean";
|
|
7622
7629
|
readonly default: false;
|
|
7623
7630
|
};
|
|
7631
|
+
readonly suggestions: {
|
|
7632
|
+
readonly default: readonly [];
|
|
7633
|
+
readonly type: "array";
|
|
7634
|
+
readonly items: {
|
|
7635
|
+
readonly type: "string";
|
|
7636
|
+
};
|
|
7637
|
+
};
|
|
7624
7638
|
readonly prompt: {
|
|
7625
7639
|
readonly type: "string";
|
|
7626
7640
|
};
|
|
@@ -10296,6 +10310,13 @@ export declare const productConfigOverrideSchema: {
|
|
|
10296
10310
|
readonly type: "boolean";
|
|
10297
10311
|
readonly default: false;
|
|
10298
10312
|
};
|
|
10313
|
+
readonly suggestions: {
|
|
10314
|
+
readonly default: readonly [];
|
|
10315
|
+
readonly type: "array";
|
|
10316
|
+
readonly items: {
|
|
10317
|
+
readonly type: "string";
|
|
10318
|
+
};
|
|
10319
|
+
};
|
|
10299
10320
|
readonly prompt: {
|
|
10300
10321
|
readonly type: "string";
|
|
10301
10322
|
};
|
|
@@ -11615,6 +11615,13 @@ export declare const redoclyConfigSchema: {
|
|
|
11615
11615
|
readonly type: "boolean";
|
|
11616
11616
|
readonly default: false;
|
|
11617
11617
|
};
|
|
11618
|
+
readonly suggestions: {
|
|
11619
|
+
readonly default: readonly [];
|
|
11620
|
+
readonly type: "array";
|
|
11621
|
+
readonly items: {
|
|
11622
|
+
readonly type: "string";
|
|
11623
|
+
};
|
|
11624
|
+
};
|
|
11618
11625
|
readonly prompt: {
|
|
11619
11626
|
readonly type: "string";
|
|
11620
11627
|
};
|
|
@@ -15692,6 +15699,13 @@ export declare const redoclyConfigSchema: {
|
|
|
15692
15699
|
readonly type: "boolean";
|
|
15693
15700
|
readonly default: false;
|
|
15694
15701
|
};
|
|
15702
|
+
readonly suggestions: {
|
|
15703
|
+
readonly default: readonly [];
|
|
15704
|
+
readonly type: "array";
|
|
15705
|
+
readonly items: {
|
|
15706
|
+
readonly type: "string";
|
|
15707
|
+
};
|
|
15708
|
+
};
|
|
15695
15709
|
readonly prompt: {
|
|
15696
15710
|
readonly type: "string";
|
|
15697
15711
|
};
|
|
@@ -19543,6 +19557,12 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
19543
19557
|
hide: {
|
|
19544
19558
|
type: "boolean";
|
|
19545
19559
|
};
|
|
19560
|
+
suggestions: {
|
|
19561
|
+
items: {
|
|
19562
|
+
type: "string";
|
|
19563
|
+
};
|
|
19564
|
+
type: "array";
|
|
19565
|
+
};
|
|
19546
19566
|
prompt: {
|
|
19547
19567
|
type: "string";
|
|
19548
19568
|
};
|
|
@@ -27022,6 +27042,12 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
27022
27042
|
hide: {
|
|
27023
27043
|
type: "boolean";
|
|
27024
27044
|
};
|
|
27045
|
+
suggestions: {
|
|
27046
|
+
items: {
|
|
27047
|
+
type: "string";
|
|
27048
|
+
};
|
|
27049
|
+
type: "array";
|
|
27050
|
+
};
|
|
27025
27051
|
prompt: {
|
|
27026
27052
|
type: "string";
|
|
27027
27053
|
};
|
|
@@ -35584,6 +35610,13 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
35584
35610
|
readonly type: "boolean";
|
|
35585
35611
|
readonly default: false;
|
|
35586
35612
|
};
|
|
35613
|
+
readonly suggestions: {
|
|
35614
|
+
readonly default: readonly [];
|
|
35615
|
+
readonly type: "array";
|
|
35616
|
+
readonly items: {
|
|
35617
|
+
readonly type: "string";
|
|
35618
|
+
};
|
|
35619
|
+
};
|
|
35587
35620
|
readonly prompt: {
|
|
35588
35621
|
readonly type: "string";
|
|
35589
35622
|
};
|
|
@@ -39661,6 +39694,13 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
39661
39694
|
readonly type: "boolean";
|
|
39662
39695
|
readonly default: false;
|
|
39663
39696
|
};
|
|
39697
|
+
readonly suggestions: {
|
|
39698
|
+
readonly default: readonly [];
|
|
39699
|
+
readonly type: "array";
|
|
39700
|
+
readonly items: {
|
|
39701
|
+
readonly type: "string";
|
|
39702
|
+
};
|
|
39703
|
+
};
|
|
39664
39704
|
readonly prompt: {
|
|
39665
39705
|
readonly type: "string";
|
|
39666
39706
|
};
|