@mintlify/validation 0.1.359 → 0.1.361
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/dist/mint-config/schemas/v2/index.d.ts +114 -0
- package/dist/mint-config/schemas/v2/properties/api.d.ts +13 -0
- package/dist/mint-config/schemas/v2/properties/api.js +9 -0
- package/dist/mint-config/schemas/v2/properties/reusable/page.d.ts +3 -0
- package/dist/mint-config/schemas/v2/properties/reusable/page.js +1 -0
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +19 -0
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +19 -0
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +19 -0
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +19 -0
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +19 -0
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +13 -0
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +19 -0
- package/dist/mint-config/validateConfig.d.ts +36 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -62,6 +62,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
62
62
|
source: string;
|
|
63
63
|
directory?: string | undefined;
|
|
64
64
|
}>]>>;
|
|
65
|
+
paramFields: z.ZodOptional<z.ZodObject<{
|
|
66
|
+
expanded: z.ZodOptional<z.ZodEnum<["all", "none"]>>;
|
|
67
|
+
}, "strip", z.ZodTypeAny, {
|
|
68
|
+
expanded?: "all" | "none" | undefined;
|
|
69
|
+
}, {
|
|
70
|
+
expanded?: "all" | "none" | undefined;
|
|
71
|
+
}>>;
|
|
65
72
|
playground: z.ZodOptional<z.ZodObject<{
|
|
66
73
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
|
|
67
74
|
proxy: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -116,6 +123,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
116
123
|
source: string;
|
|
117
124
|
directory?: string | undefined;
|
|
118
125
|
} | undefined;
|
|
126
|
+
paramFields?: {
|
|
127
|
+
expanded?: "all" | "none" | undefined;
|
|
128
|
+
} | undefined;
|
|
119
129
|
playground?: {
|
|
120
130
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
121
131
|
proxy?: boolean | undefined;
|
|
@@ -140,6 +150,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
140
150
|
source: string;
|
|
141
151
|
directory?: string | undefined;
|
|
142
152
|
} | undefined;
|
|
153
|
+
paramFields?: {
|
|
154
|
+
expanded?: "all" | "none" | undefined;
|
|
155
|
+
} | undefined;
|
|
143
156
|
playground?: {
|
|
144
157
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
145
158
|
proxy?: boolean | undefined;
|
|
@@ -1240,6 +1253,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1240
1253
|
source: string;
|
|
1241
1254
|
directory?: string | undefined;
|
|
1242
1255
|
} | undefined;
|
|
1256
|
+
paramFields?: {
|
|
1257
|
+
expanded?: "all" | "none" | undefined;
|
|
1258
|
+
} | undefined;
|
|
1243
1259
|
playground?: {
|
|
1244
1260
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
1245
1261
|
proxy?: boolean | undefined;
|
|
@@ -1563,6 +1579,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1563
1579
|
source: string;
|
|
1564
1580
|
directory?: string | undefined;
|
|
1565
1581
|
} | undefined;
|
|
1582
|
+
paramFields?: {
|
|
1583
|
+
expanded?: "all" | "none" | undefined;
|
|
1584
|
+
} | undefined;
|
|
1566
1585
|
playground?: {
|
|
1567
1586
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
1568
1587
|
proxy?: boolean | undefined;
|
|
@@ -1792,6 +1811,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1792
1811
|
source: string;
|
|
1793
1812
|
directory?: string | undefined;
|
|
1794
1813
|
}>]>>;
|
|
1814
|
+
paramFields: z.ZodOptional<z.ZodObject<{
|
|
1815
|
+
expanded: z.ZodOptional<z.ZodEnum<["all", "none"]>>;
|
|
1816
|
+
}, "strip", z.ZodTypeAny, {
|
|
1817
|
+
expanded?: "all" | "none" | undefined;
|
|
1818
|
+
}, {
|
|
1819
|
+
expanded?: "all" | "none" | undefined;
|
|
1820
|
+
}>>;
|
|
1795
1821
|
playground: z.ZodOptional<z.ZodObject<{
|
|
1796
1822
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
|
|
1797
1823
|
proxy: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1846,6 +1872,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1846
1872
|
source: string;
|
|
1847
1873
|
directory?: string | undefined;
|
|
1848
1874
|
} | undefined;
|
|
1875
|
+
paramFields?: {
|
|
1876
|
+
expanded?: "all" | "none" | undefined;
|
|
1877
|
+
} | undefined;
|
|
1849
1878
|
playground?: {
|
|
1850
1879
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
1851
1880
|
proxy?: boolean | undefined;
|
|
@@ -1870,6 +1899,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1870
1899
|
source: string;
|
|
1871
1900
|
directory?: string | undefined;
|
|
1872
1901
|
} | undefined;
|
|
1902
|
+
paramFields?: {
|
|
1903
|
+
expanded?: "all" | "none" | undefined;
|
|
1904
|
+
} | undefined;
|
|
1873
1905
|
playground?: {
|
|
1874
1906
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
1875
1907
|
proxy?: boolean | undefined;
|
|
@@ -2970,6 +3002,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2970
3002
|
source: string;
|
|
2971
3003
|
directory?: string | undefined;
|
|
2972
3004
|
} | undefined;
|
|
3005
|
+
paramFields?: {
|
|
3006
|
+
expanded?: "all" | "none" | undefined;
|
|
3007
|
+
} | undefined;
|
|
2973
3008
|
playground?: {
|
|
2974
3009
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
2975
3010
|
proxy?: boolean | undefined;
|
|
@@ -3293,6 +3328,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3293
3328
|
source: string;
|
|
3294
3329
|
directory?: string | undefined;
|
|
3295
3330
|
} | undefined;
|
|
3331
|
+
paramFields?: {
|
|
3332
|
+
expanded?: "all" | "none" | undefined;
|
|
3333
|
+
} | undefined;
|
|
3296
3334
|
playground?: {
|
|
3297
3335
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
3298
3336
|
proxy?: boolean | undefined;
|
|
@@ -3522,6 +3560,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3522
3560
|
source: string;
|
|
3523
3561
|
directory?: string | undefined;
|
|
3524
3562
|
}>]>>;
|
|
3563
|
+
paramFields: z.ZodOptional<z.ZodObject<{
|
|
3564
|
+
expanded: z.ZodOptional<z.ZodEnum<["all", "none"]>>;
|
|
3565
|
+
}, "strip", z.ZodTypeAny, {
|
|
3566
|
+
expanded?: "all" | "none" | undefined;
|
|
3567
|
+
}, {
|
|
3568
|
+
expanded?: "all" | "none" | undefined;
|
|
3569
|
+
}>>;
|
|
3525
3570
|
playground: z.ZodOptional<z.ZodObject<{
|
|
3526
3571
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
|
|
3527
3572
|
proxy: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3576,6 +3621,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3576
3621
|
source: string;
|
|
3577
3622
|
directory?: string | undefined;
|
|
3578
3623
|
} | undefined;
|
|
3624
|
+
paramFields?: {
|
|
3625
|
+
expanded?: "all" | "none" | undefined;
|
|
3626
|
+
} | undefined;
|
|
3579
3627
|
playground?: {
|
|
3580
3628
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
3581
3629
|
proxy?: boolean | undefined;
|
|
@@ -3600,6 +3648,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3600
3648
|
source: string;
|
|
3601
3649
|
directory?: string | undefined;
|
|
3602
3650
|
} | undefined;
|
|
3651
|
+
paramFields?: {
|
|
3652
|
+
expanded?: "all" | "none" | undefined;
|
|
3653
|
+
} | undefined;
|
|
3603
3654
|
playground?: {
|
|
3604
3655
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
3605
3656
|
proxy?: boolean | undefined;
|
|
@@ -4700,6 +4751,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4700
4751
|
source: string;
|
|
4701
4752
|
directory?: string | undefined;
|
|
4702
4753
|
} | undefined;
|
|
4754
|
+
paramFields?: {
|
|
4755
|
+
expanded?: "all" | "none" | undefined;
|
|
4756
|
+
} | undefined;
|
|
4703
4757
|
playground?: {
|
|
4704
4758
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
4705
4759
|
proxy?: boolean | undefined;
|
|
@@ -5023,6 +5077,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5023
5077
|
source: string;
|
|
5024
5078
|
directory?: string | undefined;
|
|
5025
5079
|
} | undefined;
|
|
5080
|
+
paramFields?: {
|
|
5081
|
+
expanded?: "all" | "none" | undefined;
|
|
5082
|
+
} | undefined;
|
|
5026
5083
|
playground?: {
|
|
5027
5084
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
5028
5085
|
proxy?: boolean | undefined;
|
|
@@ -5252,6 +5309,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5252
5309
|
source: string;
|
|
5253
5310
|
directory?: string | undefined;
|
|
5254
5311
|
}>]>>;
|
|
5312
|
+
paramFields: z.ZodOptional<z.ZodObject<{
|
|
5313
|
+
expanded: z.ZodOptional<z.ZodEnum<["all", "none"]>>;
|
|
5314
|
+
}, "strip", z.ZodTypeAny, {
|
|
5315
|
+
expanded?: "all" | "none" | undefined;
|
|
5316
|
+
}, {
|
|
5317
|
+
expanded?: "all" | "none" | undefined;
|
|
5318
|
+
}>>;
|
|
5255
5319
|
playground: z.ZodOptional<z.ZodObject<{
|
|
5256
5320
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
|
|
5257
5321
|
proxy: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5306,6 +5370,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5306
5370
|
source: string;
|
|
5307
5371
|
directory?: string | undefined;
|
|
5308
5372
|
} | undefined;
|
|
5373
|
+
paramFields?: {
|
|
5374
|
+
expanded?: "all" | "none" | undefined;
|
|
5375
|
+
} | undefined;
|
|
5309
5376
|
playground?: {
|
|
5310
5377
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
5311
5378
|
proxy?: boolean | undefined;
|
|
@@ -5330,6 +5397,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5330
5397
|
source: string;
|
|
5331
5398
|
directory?: string | undefined;
|
|
5332
5399
|
} | undefined;
|
|
5400
|
+
paramFields?: {
|
|
5401
|
+
expanded?: "all" | "none" | undefined;
|
|
5402
|
+
} | undefined;
|
|
5333
5403
|
playground?: {
|
|
5334
5404
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
5335
5405
|
proxy?: boolean | undefined;
|
|
@@ -6430,6 +6500,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6430
6500
|
source: string;
|
|
6431
6501
|
directory?: string | undefined;
|
|
6432
6502
|
} | undefined;
|
|
6503
|
+
paramFields?: {
|
|
6504
|
+
expanded?: "all" | "none" | undefined;
|
|
6505
|
+
} | undefined;
|
|
6433
6506
|
playground?: {
|
|
6434
6507
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
6435
6508
|
proxy?: boolean | undefined;
|
|
@@ -6753,6 +6826,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6753
6826
|
source: string;
|
|
6754
6827
|
directory?: string | undefined;
|
|
6755
6828
|
} | undefined;
|
|
6829
|
+
paramFields?: {
|
|
6830
|
+
expanded?: "all" | "none" | undefined;
|
|
6831
|
+
} | undefined;
|
|
6756
6832
|
playground?: {
|
|
6757
6833
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
6758
6834
|
proxy?: boolean | undefined;
|
|
@@ -6982,6 +7058,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6982
7058
|
source: string;
|
|
6983
7059
|
directory?: string | undefined;
|
|
6984
7060
|
}>]>>;
|
|
7061
|
+
paramFields: z.ZodOptional<z.ZodObject<{
|
|
7062
|
+
expanded: z.ZodOptional<z.ZodEnum<["all", "none"]>>;
|
|
7063
|
+
}, "strip", z.ZodTypeAny, {
|
|
7064
|
+
expanded?: "all" | "none" | undefined;
|
|
7065
|
+
}, {
|
|
7066
|
+
expanded?: "all" | "none" | undefined;
|
|
7067
|
+
}>>;
|
|
6985
7068
|
playground: z.ZodOptional<z.ZodObject<{
|
|
6986
7069
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
|
|
6987
7070
|
proxy: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -7036,6 +7119,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7036
7119
|
source: string;
|
|
7037
7120
|
directory?: string | undefined;
|
|
7038
7121
|
} | undefined;
|
|
7122
|
+
paramFields?: {
|
|
7123
|
+
expanded?: "all" | "none" | undefined;
|
|
7124
|
+
} | undefined;
|
|
7039
7125
|
playground?: {
|
|
7040
7126
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
7041
7127
|
proxy?: boolean | undefined;
|
|
@@ -7060,6 +7146,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7060
7146
|
source: string;
|
|
7061
7147
|
directory?: string | undefined;
|
|
7062
7148
|
} | undefined;
|
|
7149
|
+
paramFields?: {
|
|
7150
|
+
expanded?: "all" | "none" | undefined;
|
|
7151
|
+
} | undefined;
|
|
7063
7152
|
playground?: {
|
|
7064
7153
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
7065
7154
|
proxy?: boolean | undefined;
|
|
@@ -8160,6 +8249,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8160
8249
|
source: string;
|
|
8161
8250
|
directory?: string | undefined;
|
|
8162
8251
|
} | undefined;
|
|
8252
|
+
paramFields?: {
|
|
8253
|
+
expanded?: "all" | "none" | undefined;
|
|
8254
|
+
} | undefined;
|
|
8163
8255
|
playground?: {
|
|
8164
8256
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
8165
8257
|
proxy?: boolean | undefined;
|
|
@@ -8483,6 +8575,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8483
8575
|
source: string;
|
|
8484
8576
|
directory?: string | undefined;
|
|
8485
8577
|
} | undefined;
|
|
8578
|
+
paramFields?: {
|
|
8579
|
+
expanded?: "all" | "none" | undefined;
|
|
8580
|
+
} | undefined;
|
|
8486
8581
|
playground?: {
|
|
8487
8582
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
8488
8583
|
proxy?: boolean | undefined;
|
|
@@ -8712,6 +8807,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8712
8807
|
source: string;
|
|
8713
8808
|
directory?: string | undefined;
|
|
8714
8809
|
}>]>>;
|
|
8810
|
+
paramFields: z.ZodOptional<z.ZodObject<{
|
|
8811
|
+
expanded: z.ZodOptional<z.ZodEnum<["all", "none"]>>;
|
|
8812
|
+
}, "strip", z.ZodTypeAny, {
|
|
8813
|
+
expanded?: "all" | "none" | undefined;
|
|
8814
|
+
}, {
|
|
8815
|
+
expanded?: "all" | "none" | undefined;
|
|
8816
|
+
}>>;
|
|
8715
8817
|
playground: z.ZodOptional<z.ZodObject<{
|
|
8716
8818
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
|
|
8717
8819
|
proxy: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -8766,6 +8868,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8766
8868
|
source: string;
|
|
8767
8869
|
directory?: string | undefined;
|
|
8768
8870
|
} | undefined;
|
|
8871
|
+
paramFields?: {
|
|
8872
|
+
expanded?: "all" | "none" | undefined;
|
|
8873
|
+
} | undefined;
|
|
8769
8874
|
playground?: {
|
|
8770
8875
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
8771
8876
|
proxy?: boolean | undefined;
|
|
@@ -8790,6 +8895,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8790
8895
|
source: string;
|
|
8791
8896
|
directory?: string | undefined;
|
|
8792
8897
|
} | undefined;
|
|
8898
|
+
paramFields?: {
|
|
8899
|
+
expanded?: "all" | "none" | undefined;
|
|
8900
|
+
} | undefined;
|
|
8793
8901
|
playground?: {
|
|
8794
8902
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
8795
8903
|
proxy?: boolean | undefined;
|
|
@@ -9890,6 +9998,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9890
9998
|
source: string;
|
|
9891
9999
|
directory?: string | undefined;
|
|
9892
10000
|
} | undefined;
|
|
10001
|
+
paramFields?: {
|
|
10002
|
+
expanded?: "all" | "none" | undefined;
|
|
10003
|
+
} | undefined;
|
|
9893
10004
|
playground?: {
|
|
9894
10005
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
9895
10006
|
proxy?: boolean | undefined;
|
|
@@ -10213,6 +10324,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10213
10324
|
source: string;
|
|
10214
10325
|
directory?: string | undefined;
|
|
10215
10326
|
} | undefined;
|
|
10327
|
+
paramFields?: {
|
|
10328
|
+
expanded?: "all" | "none" | undefined;
|
|
10329
|
+
} | undefined;
|
|
10216
10330
|
playground?: {
|
|
10217
10331
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
10218
10332
|
proxy?: boolean | undefined;
|
|
@@ -20,6 +20,13 @@ export declare const apiSchema: z.ZodObject<{
|
|
|
20
20
|
source: string;
|
|
21
21
|
directory?: string | undefined;
|
|
22
22
|
}>]>>;
|
|
23
|
+
paramFields: z.ZodOptional<z.ZodObject<{
|
|
24
|
+
expanded: z.ZodOptional<z.ZodEnum<["all", "none"]>>;
|
|
25
|
+
}, "strip", z.ZodTypeAny, {
|
|
26
|
+
expanded?: "all" | "none" | undefined;
|
|
27
|
+
}, {
|
|
28
|
+
expanded?: "all" | "none" | undefined;
|
|
29
|
+
}>>;
|
|
23
30
|
playground: z.ZodOptional<z.ZodObject<{
|
|
24
31
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
|
|
25
32
|
proxy: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -74,6 +81,9 @@ export declare const apiSchema: z.ZodObject<{
|
|
|
74
81
|
source: string;
|
|
75
82
|
directory?: string | undefined;
|
|
76
83
|
} | undefined;
|
|
84
|
+
paramFields?: {
|
|
85
|
+
expanded?: "all" | "none" | undefined;
|
|
86
|
+
} | undefined;
|
|
77
87
|
playground?: {
|
|
78
88
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
79
89
|
proxy?: boolean | undefined;
|
|
@@ -98,6 +108,9 @@ export declare const apiSchema: z.ZodObject<{
|
|
|
98
108
|
source: string;
|
|
99
109
|
directory?: string | undefined;
|
|
100
110
|
} | undefined;
|
|
111
|
+
paramFields?: {
|
|
112
|
+
expanded?: "all" | "none" | undefined;
|
|
113
|
+
} | undefined;
|
|
101
114
|
playground?: {
|
|
102
115
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
103
116
|
proxy?: boolean | undefined;
|
|
@@ -5,6 +5,15 @@ export const apiSchema = z
|
|
|
5
5
|
.object({
|
|
6
6
|
openapi: openApiSchema.optional(),
|
|
7
7
|
asyncapi: asyncApiSchema.optional(),
|
|
8
|
+
paramFields: z
|
|
9
|
+
.object({
|
|
10
|
+
expanded: z
|
|
11
|
+
.enum(['all', 'none'])
|
|
12
|
+
.optional()
|
|
13
|
+
.describe('Whether to automatically expand API parameter fields, defaults to `none`.'),
|
|
14
|
+
})
|
|
15
|
+
.optional()
|
|
16
|
+
.describe('Configurations for the API parameters'),
|
|
8
17
|
playground: z
|
|
9
18
|
.object({
|
|
10
19
|
display: z
|
|
@@ -37,6 +37,7 @@ export declare const decoratedPageSchema: z.ZodObject<{
|
|
|
37
37
|
noindex: z.ZodOptional<z.ZodBoolean>;
|
|
38
38
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
39
39
|
public: z.ZodOptional<z.ZodBoolean>;
|
|
40
|
+
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
40
41
|
}, "strip", z.ZodTypeAny, {
|
|
41
42
|
href: string;
|
|
42
43
|
title: string;
|
|
@@ -66,6 +67,7 @@ export declare const decoratedPageSchema: z.ZodObject<{
|
|
|
66
67
|
noindex?: boolean | undefined;
|
|
67
68
|
isPublic?: boolean | undefined;
|
|
68
69
|
public?: boolean | undefined;
|
|
70
|
+
deprecated?: boolean | undefined;
|
|
69
71
|
}, {
|
|
70
72
|
href: string;
|
|
71
73
|
title: string;
|
|
@@ -95,5 +97,6 @@ export declare const decoratedPageSchema: z.ZodObject<{
|
|
|
95
97
|
noindex?: boolean | undefined;
|
|
96
98
|
isPublic?: boolean | undefined;
|
|
97
99
|
public?: boolean | undefined;
|
|
100
|
+
deprecated?: boolean | undefined;
|
|
98
101
|
}>;
|
|
99
102
|
export type DecoratedPageConfig = z.infer<typeof decoratedPageSchema>;
|
|
@@ -60,6 +60,13 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
60
60
|
source: string;
|
|
61
61
|
directory?: string | undefined;
|
|
62
62
|
}>]>>;
|
|
63
|
+
paramFields: z.ZodOptional<z.ZodObject<{
|
|
64
|
+
expanded: z.ZodOptional<z.ZodEnum<["all", "none"]>>;
|
|
65
|
+
}, "strip", z.ZodTypeAny, {
|
|
66
|
+
expanded?: "all" | "none" | undefined;
|
|
67
|
+
}, {
|
|
68
|
+
expanded?: "all" | "none" | undefined;
|
|
69
|
+
}>>;
|
|
63
70
|
playground: z.ZodOptional<z.ZodObject<{
|
|
64
71
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
|
|
65
72
|
proxy: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -114,6 +121,9 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
114
121
|
source: string;
|
|
115
122
|
directory?: string | undefined;
|
|
116
123
|
} | undefined;
|
|
124
|
+
paramFields?: {
|
|
125
|
+
expanded?: "all" | "none" | undefined;
|
|
126
|
+
} | undefined;
|
|
117
127
|
playground?: {
|
|
118
128
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
119
129
|
proxy?: boolean | undefined;
|
|
@@ -138,6 +148,9 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
138
148
|
source: string;
|
|
139
149
|
directory?: string | undefined;
|
|
140
150
|
} | undefined;
|
|
151
|
+
paramFields?: {
|
|
152
|
+
expanded?: "all" | "none" | undefined;
|
|
153
|
+
} | undefined;
|
|
141
154
|
playground?: {
|
|
142
155
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
143
156
|
proxy?: boolean | undefined;
|
|
@@ -1238,6 +1251,9 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1238
1251
|
source: string;
|
|
1239
1252
|
directory?: string | undefined;
|
|
1240
1253
|
} | undefined;
|
|
1254
|
+
paramFields?: {
|
|
1255
|
+
expanded?: "all" | "none" | undefined;
|
|
1256
|
+
} | undefined;
|
|
1241
1257
|
playground?: {
|
|
1242
1258
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
1243
1259
|
proxy?: boolean | undefined;
|
|
@@ -1561,6 +1577,9 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1561
1577
|
source: string;
|
|
1562
1578
|
directory?: string | undefined;
|
|
1563
1579
|
} | undefined;
|
|
1580
|
+
paramFields?: {
|
|
1581
|
+
expanded?: "all" | "none" | undefined;
|
|
1582
|
+
} | undefined;
|
|
1564
1583
|
playground?: {
|
|
1565
1584
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
1566
1585
|
proxy?: boolean | undefined;
|
|
@@ -60,6 +60,13 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
60
60
|
source: string;
|
|
61
61
|
directory?: string | undefined;
|
|
62
62
|
}>]>>;
|
|
63
|
+
paramFields: z.ZodOptional<z.ZodObject<{
|
|
64
|
+
expanded: z.ZodOptional<z.ZodEnum<["all", "none"]>>;
|
|
65
|
+
}, "strip", z.ZodTypeAny, {
|
|
66
|
+
expanded?: "all" | "none" | undefined;
|
|
67
|
+
}, {
|
|
68
|
+
expanded?: "all" | "none" | undefined;
|
|
69
|
+
}>>;
|
|
63
70
|
playground: z.ZodOptional<z.ZodObject<{
|
|
64
71
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
|
|
65
72
|
proxy: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -114,6 +121,9 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
114
121
|
source: string;
|
|
115
122
|
directory?: string | undefined;
|
|
116
123
|
} | undefined;
|
|
124
|
+
paramFields?: {
|
|
125
|
+
expanded?: "all" | "none" | undefined;
|
|
126
|
+
} | undefined;
|
|
117
127
|
playground?: {
|
|
118
128
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
119
129
|
proxy?: boolean | undefined;
|
|
@@ -138,6 +148,9 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
138
148
|
source: string;
|
|
139
149
|
directory?: string | undefined;
|
|
140
150
|
} | undefined;
|
|
151
|
+
paramFields?: {
|
|
152
|
+
expanded?: "all" | "none" | undefined;
|
|
153
|
+
} | undefined;
|
|
141
154
|
playground?: {
|
|
142
155
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
143
156
|
proxy?: boolean | undefined;
|
|
@@ -1238,6 +1251,9 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1238
1251
|
source: string;
|
|
1239
1252
|
directory?: string | undefined;
|
|
1240
1253
|
} | undefined;
|
|
1254
|
+
paramFields?: {
|
|
1255
|
+
expanded?: "all" | "none" | undefined;
|
|
1256
|
+
} | undefined;
|
|
1241
1257
|
playground?: {
|
|
1242
1258
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
1243
1259
|
proxy?: boolean | undefined;
|
|
@@ -1561,6 +1577,9 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1561
1577
|
source: string;
|
|
1562
1578
|
directory?: string | undefined;
|
|
1563
1579
|
} | undefined;
|
|
1580
|
+
paramFields?: {
|
|
1581
|
+
expanded?: "all" | "none" | undefined;
|
|
1582
|
+
} | undefined;
|
|
1564
1583
|
playground?: {
|
|
1565
1584
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
1566
1585
|
proxy?: boolean | undefined;
|
|
@@ -60,6 +60,13 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
60
60
|
source: string;
|
|
61
61
|
directory?: string | undefined;
|
|
62
62
|
}>]>>;
|
|
63
|
+
paramFields: z.ZodOptional<z.ZodObject<{
|
|
64
|
+
expanded: z.ZodOptional<z.ZodEnum<["all", "none"]>>;
|
|
65
|
+
}, "strip", z.ZodTypeAny, {
|
|
66
|
+
expanded?: "all" | "none" | undefined;
|
|
67
|
+
}, {
|
|
68
|
+
expanded?: "all" | "none" | undefined;
|
|
69
|
+
}>>;
|
|
63
70
|
playground: z.ZodOptional<z.ZodObject<{
|
|
64
71
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
|
|
65
72
|
proxy: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -114,6 +121,9 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
114
121
|
source: string;
|
|
115
122
|
directory?: string | undefined;
|
|
116
123
|
} | undefined;
|
|
124
|
+
paramFields?: {
|
|
125
|
+
expanded?: "all" | "none" | undefined;
|
|
126
|
+
} | undefined;
|
|
117
127
|
playground?: {
|
|
118
128
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
119
129
|
proxy?: boolean | undefined;
|
|
@@ -138,6 +148,9 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
138
148
|
source: string;
|
|
139
149
|
directory?: string | undefined;
|
|
140
150
|
} | undefined;
|
|
151
|
+
paramFields?: {
|
|
152
|
+
expanded?: "all" | "none" | undefined;
|
|
153
|
+
} | undefined;
|
|
141
154
|
playground?: {
|
|
142
155
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
143
156
|
proxy?: boolean | undefined;
|
|
@@ -1238,6 +1251,9 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1238
1251
|
source: string;
|
|
1239
1252
|
directory?: string | undefined;
|
|
1240
1253
|
} | undefined;
|
|
1254
|
+
paramFields?: {
|
|
1255
|
+
expanded?: "all" | "none" | undefined;
|
|
1256
|
+
} | undefined;
|
|
1241
1257
|
playground?: {
|
|
1242
1258
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
1243
1259
|
proxy?: boolean | undefined;
|
|
@@ -1561,6 +1577,9 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1561
1577
|
source: string;
|
|
1562
1578
|
directory?: string | undefined;
|
|
1563
1579
|
} | undefined;
|
|
1580
|
+
paramFields?: {
|
|
1581
|
+
expanded?: "all" | "none" | undefined;
|
|
1582
|
+
} | undefined;
|
|
1564
1583
|
playground?: {
|
|
1565
1584
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
1566
1585
|
proxy?: boolean | undefined;
|
|
@@ -60,6 +60,13 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
60
60
|
source: string;
|
|
61
61
|
directory?: string | undefined;
|
|
62
62
|
}>]>>;
|
|
63
|
+
paramFields: z.ZodOptional<z.ZodObject<{
|
|
64
|
+
expanded: z.ZodOptional<z.ZodEnum<["all", "none"]>>;
|
|
65
|
+
}, "strip", z.ZodTypeAny, {
|
|
66
|
+
expanded?: "all" | "none" | undefined;
|
|
67
|
+
}, {
|
|
68
|
+
expanded?: "all" | "none" | undefined;
|
|
69
|
+
}>>;
|
|
63
70
|
playground: z.ZodOptional<z.ZodObject<{
|
|
64
71
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
|
|
65
72
|
proxy: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -114,6 +121,9 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
114
121
|
source: string;
|
|
115
122
|
directory?: string | undefined;
|
|
116
123
|
} | undefined;
|
|
124
|
+
paramFields?: {
|
|
125
|
+
expanded?: "all" | "none" | undefined;
|
|
126
|
+
} | undefined;
|
|
117
127
|
playground?: {
|
|
118
128
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
119
129
|
proxy?: boolean | undefined;
|
|
@@ -138,6 +148,9 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
138
148
|
source: string;
|
|
139
149
|
directory?: string | undefined;
|
|
140
150
|
} | undefined;
|
|
151
|
+
paramFields?: {
|
|
152
|
+
expanded?: "all" | "none" | undefined;
|
|
153
|
+
} | undefined;
|
|
141
154
|
playground?: {
|
|
142
155
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
143
156
|
proxy?: boolean | undefined;
|
|
@@ -1238,6 +1251,9 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1238
1251
|
source: string;
|
|
1239
1252
|
directory?: string | undefined;
|
|
1240
1253
|
} | undefined;
|
|
1254
|
+
paramFields?: {
|
|
1255
|
+
expanded?: "all" | "none" | undefined;
|
|
1256
|
+
} | undefined;
|
|
1241
1257
|
playground?: {
|
|
1242
1258
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
1243
1259
|
proxy?: boolean | undefined;
|
|
@@ -1561,6 +1577,9 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1561
1577
|
source: string;
|
|
1562
1578
|
directory?: string | undefined;
|
|
1563
1579
|
} | undefined;
|
|
1580
|
+
paramFields?: {
|
|
1581
|
+
expanded?: "all" | "none" | undefined;
|
|
1582
|
+
} | undefined;
|
|
1564
1583
|
playground?: {
|
|
1565
1584
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
1566
1585
|
proxy?: boolean | undefined;
|
|
@@ -60,6 +60,13 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
60
60
|
source: string;
|
|
61
61
|
directory?: string | undefined;
|
|
62
62
|
}>]>>;
|
|
63
|
+
paramFields: z.ZodOptional<z.ZodObject<{
|
|
64
|
+
expanded: z.ZodOptional<z.ZodEnum<["all", "none"]>>;
|
|
65
|
+
}, "strip", z.ZodTypeAny, {
|
|
66
|
+
expanded?: "all" | "none" | undefined;
|
|
67
|
+
}, {
|
|
68
|
+
expanded?: "all" | "none" | undefined;
|
|
69
|
+
}>>;
|
|
63
70
|
playground: z.ZodOptional<z.ZodObject<{
|
|
64
71
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
|
|
65
72
|
proxy: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -114,6 +121,9 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
114
121
|
source: string;
|
|
115
122
|
directory?: string | undefined;
|
|
116
123
|
} | undefined;
|
|
124
|
+
paramFields?: {
|
|
125
|
+
expanded?: "all" | "none" | undefined;
|
|
126
|
+
} | undefined;
|
|
117
127
|
playground?: {
|
|
118
128
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
119
129
|
proxy?: boolean | undefined;
|
|
@@ -138,6 +148,9 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
138
148
|
source: string;
|
|
139
149
|
directory?: string | undefined;
|
|
140
150
|
} | undefined;
|
|
151
|
+
paramFields?: {
|
|
152
|
+
expanded?: "all" | "none" | undefined;
|
|
153
|
+
} | undefined;
|
|
141
154
|
playground?: {
|
|
142
155
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
143
156
|
proxy?: boolean | undefined;
|
|
@@ -1238,6 +1251,9 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1238
1251
|
source: string;
|
|
1239
1252
|
directory?: string | undefined;
|
|
1240
1253
|
} | undefined;
|
|
1254
|
+
paramFields?: {
|
|
1255
|
+
expanded?: "all" | "none" | undefined;
|
|
1256
|
+
} | undefined;
|
|
1241
1257
|
playground?: {
|
|
1242
1258
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
1243
1259
|
proxy?: boolean | undefined;
|
|
@@ -1561,6 +1577,9 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1561
1577
|
source: string;
|
|
1562
1578
|
directory?: string | undefined;
|
|
1563
1579
|
} | undefined;
|
|
1580
|
+
paramFields?: {
|
|
1581
|
+
expanded?: "all" | "none" | undefined;
|
|
1582
|
+
} | undefined;
|
|
1564
1583
|
playground?: {
|
|
1565
1584
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
1566
1585
|
proxy?: boolean | undefined;
|