@mintlify/validation 0.1.360 → 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/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
|
@@ -60,6 +60,13 @@ export declare const willowConfigSchema: 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 willowConfigSchema: 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 willowConfigSchema: 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 willowConfigSchema: 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 willowConfigSchema: 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;
|
|
@@ -631,6 +631,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
631
631
|
source: string;
|
|
632
632
|
directory?: string | undefined;
|
|
633
633
|
} | undefined;
|
|
634
|
+
paramFields?: {
|
|
635
|
+
expanded?: "all" | "none" | undefined;
|
|
636
|
+
} | undefined;
|
|
634
637
|
playground?: {
|
|
635
638
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
636
639
|
proxy?: boolean | undefined;
|
|
@@ -954,6 +957,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
954
957
|
source: string;
|
|
955
958
|
directory?: string | undefined;
|
|
956
959
|
} | undefined;
|
|
960
|
+
paramFields?: {
|
|
961
|
+
expanded?: "all" | "none" | undefined;
|
|
962
|
+
} | undefined;
|
|
957
963
|
playground?: {
|
|
958
964
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
959
965
|
proxy?: boolean | undefined;
|
|
@@ -1277,6 +1283,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1277
1283
|
source: string;
|
|
1278
1284
|
directory?: string | undefined;
|
|
1279
1285
|
} | undefined;
|
|
1286
|
+
paramFields?: {
|
|
1287
|
+
expanded?: "all" | "none" | undefined;
|
|
1288
|
+
} | undefined;
|
|
1280
1289
|
playground?: {
|
|
1281
1290
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
1282
1291
|
proxy?: boolean | undefined;
|
|
@@ -1600,6 +1609,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1600
1609
|
source: string;
|
|
1601
1610
|
directory?: string | undefined;
|
|
1602
1611
|
} | undefined;
|
|
1612
|
+
paramFields?: {
|
|
1613
|
+
expanded?: "all" | "none" | undefined;
|
|
1614
|
+
} | undefined;
|
|
1603
1615
|
playground?: {
|
|
1604
1616
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
1605
1617
|
proxy?: boolean | undefined;
|
|
@@ -1923,6 +1935,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1923
1935
|
source: string;
|
|
1924
1936
|
directory?: string | undefined;
|
|
1925
1937
|
} | undefined;
|
|
1938
|
+
paramFields?: {
|
|
1939
|
+
expanded?: "all" | "none" | undefined;
|
|
1940
|
+
} | undefined;
|
|
1926
1941
|
playground?: {
|
|
1927
1942
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
1928
1943
|
proxy?: boolean | undefined;
|
|
@@ -2246,6 +2261,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2246
2261
|
source: string;
|
|
2247
2262
|
directory?: string | undefined;
|
|
2248
2263
|
} | undefined;
|
|
2264
|
+
paramFields?: {
|
|
2265
|
+
expanded?: "all" | "none" | undefined;
|
|
2266
|
+
} | undefined;
|
|
2249
2267
|
playground?: {
|
|
2250
2268
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
2251
2269
|
proxy?: boolean | undefined;
|
|
@@ -2572,6 +2590,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2572
2590
|
source: string;
|
|
2573
2591
|
directory?: string | undefined;
|
|
2574
2592
|
} | undefined;
|
|
2593
|
+
paramFields?: {
|
|
2594
|
+
expanded?: "all" | "none" | undefined;
|
|
2595
|
+
} | undefined;
|
|
2575
2596
|
playground?: {
|
|
2576
2597
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
2577
2598
|
proxy?: boolean | undefined;
|
|
@@ -2895,6 +2916,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2895
2916
|
source: string;
|
|
2896
2917
|
directory?: string | undefined;
|
|
2897
2918
|
} | undefined;
|
|
2919
|
+
paramFields?: {
|
|
2920
|
+
expanded?: "all" | "none" | undefined;
|
|
2921
|
+
} | undefined;
|
|
2898
2922
|
playground?: {
|
|
2899
2923
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
2900
2924
|
proxy?: boolean | undefined;
|
|
@@ -3218,6 +3242,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3218
3242
|
source: string;
|
|
3219
3243
|
directory?: string | undefined;
|
|
3220
3244
|
} | undefined;
|
|
3245
|
+
paramFields?: {
|
|
3246
|
+
expanded?: "all" | "none" | undefined;
|
|
3247
|
+
} | undefined;
|
|
3221
3248
|
playground?: {
|
|
3222
3249
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
3223
3250
|
proxy?: boolean | undefined;
|
|
@@ -3541,6 +3568,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3541
3568
|
source: string;
|
|
3542
3569
|
directory?: string | undefined;
|
|
3543
3570
|
} | undefined;
|
|
3571
|
+
paramFields?: {
|
|
3572
|
+
expanded?: "all" | "none" | undefined;
|
|
3573
|
+
} | undefined;
|
|
3544
3574
|
playground?: {
|
|
3545
3575
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
3546
3576
|
proxy?: boolean | undefined;
|
|
@@ -3864,6 +3894,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3864
3894
|
source: string;
|
|
3865
3895
|
directory?: string | undefined;
|
|
3866
3896
|
} | undefined;
|
|
3897
|
+
paramFields?: {
|
|
3898
|
+
expanded?: "all" | "none" | undefined;
|
|
3899
|
+
} | undefined;
|
|
3867
3900
|
playground?: {
|
|
3868
3901
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
3869
3902
|
proxy?: boolean | undefined;
|
|
@@ -4187,6 +4220,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4187
4220
|
source: string;
|
|
4188
4221
|
directory?: string | undefined;
|
|
4189
4222
|
} | undefined;
|
|
4223
|
+
paramFields?: {
|
|
4224
|
+
expanded?: "all" | "none" | undefined;
|
|
4225
|
+
} | undefined;
|
|
4190
4226
|
playground?: {
|
|
4191
4227
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
4192
4228
|
proxy?: boolean | undefined;
|