@mintlify/validation 0.1.513 → 0.1.514
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 +133 -0
- package/dist/mint-config/schemas/v2/properties/thumbnails.d.ts +13 -0
- package/dist/mint-config/schemas/v2/properties/thumbnails.js +6 -0
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +19 -0
- package/dist/mint-config/schemas/v2/themes/aspen.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 +42 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -1438,12 +1438,25 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1438
1438
|
thumbnails: z.ZodOptional<z.ZodObject<{
|
|
1439
1439
|
appearance: z.ZodOptional<z.ZodEnum<[import("../properties/thumbnails.js").ThumbnailAppearance.Light, import("../properties/thumbnails.js").ThumbnailAppearance.Dark]>>;
|
|
1440
1440
|
background: z.ZodOptional<z.ZodString>;
|
|
1441
|
+
fonts: z.ZodOptional<z.ZodObject<{
|
|
1442
|
+
family: z.ZodString;
|
|
1443
|
+
}, "strip", z.ZodTypeAny, {
|
|
1444
|
+
family: string;
|
|
1445
|
+
}, {
|
|
1446
|
+
family: string;
|
|
1447
|
+
}>>;
|
|
1441
1448
|
}, "strip", z.ZodTypeAny, {
|
|
1442
1449
|
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1443
1450
|
background?: string | undefined;
|
|
1451
|
+
fonts?: {
|
|
1452
|
+
family: string;
|
|
1453
|
+
} | undefined;
|
|
1444
1454
|
}, {
|
|
1445
1455
|
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1446
1456
|
background?: string | undefined;
|
|
1457
|
+
fonts?: {
|
|
1458
|
+
family: string;
|
|
1459
|
+
} | undefined;
|
|
1447
1460
|
}>>;
|
|
1448
1461
|
interaction: z.ZodOptional<z.ZodObject<{
|
|
1449
1462
|
drilldown: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1851,6 +1864,9 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1851
1864
|
thumbnails?: {
|
|
1852
1865
|
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1853
1866
|
background?: string | undefined;
|
|
1867
|
+
fonts?: {
|
|
1868
|
+
family: string;
|
|
1869
|
+
} | undefined;
|
|
1854
1870
|
} | undefined;
|
|
1855
1871
|
interaction?: {
|
|
1856
1872
|
drilldown?: boolean | undefined;
|
|
@@ -2253,6 +2269,9 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
2253
2269
|
thumbnails?: {
|
|
2254
2270
|
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
2255
2271
|
background?: string | undefined;
|
|
2272
|
+
fonts?: {
|
|
2273
|
+
family: string;
|
|
2274
|
+
} | undefined;
|
|
2256
2275
|
} | undefined;
|
|
2257
2276
|
interaction?: {
|
|
2258
2277
|
drilldown?: boolean | undefined;
|
|
@@ -884,6 +884,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
884
884
|
thumbnails?: {
|
|
885
885
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
886
886
|
background?: string | undefined;
|
|
887
|
+
fonts?: {
|
|
888
|
+
family: string;
|
|
889
|
+
} | undefined;
|
|
887
890
|
} | undefined;
|
|
888
891
|
interaction?: {
|
|
889
892
|
drilldown?: boolean | undefined;
|
|
@@ -1286,6 +1289,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1286
1289
|
thumbnails?: {
|
|
1287
1290
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
1288
1291
|
background?: string | undefined;
|
|
1292
|
+
fonts?: {
|
|
1293
|
+
family: string;
|
|
1294
|
+
} | undefined;
|
|
1289
1295
|
} | undefined;
|
|
1290
1296
|
interaction?: {
|
|
1291
1297
|
drilldown?: boolean | undefined;
|
|
@@ -1688,6 +1694,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1688
1694
|
thumbnails?: {
|
|
1689
1695
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
1690
1696
|
background?: string | undefined;
|
|
1697
|
+
fonts?: {
|
|
1698
|
+
family: string;
|
|
1699
|
+
} | undefined;
|
|
1691
1700
|
} | undefined;
|
|
1692
1701
|
interaction?: {
|
|
1693
1702
|
drilldown?: boolean | undefined;
|
|
@@ -2090,6 +2099,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2090
2099
|
thumbnails?: {
|
|
2091
2100
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
2092
2101
|
background?: string | undefined;
|
|
2102
|
+
fonts?: {
|
|
2103
|
+
family: string;
|
|
2104
|
+
} | undefined;
|
|
2093
2105
|
} | undefined;
|
|
2094
2106
|
interaction?: {
|
|
2095
2107
|
drilldown?: boolean | undefined;
|
|
@@ -2492,6 +2504,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2492
2504
|
thumbnails?: {
|
|
2493
2505
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
2494
2506
|
background?: string | undefined;
|
|
2507
|
+
fonts?: {
|
|
2508
|
+
family: string;
|
|
2509
|
+
} | undefined;
|
|
2495
2510
|
} | undefined;
|
|
2496
2511
|
interaction?: {
|
|
2497
2512
|
drilldown?: boolean | undefined;
|
|
@@ -2894,6 +2909,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2894
2909
|
thumbnails?: {
|
|
2895
2910
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
2896
2911
|
background?: string | undefined;
|
|
2912
|
+
fonts?: {
|
|
2913
|
+
family: string;
|
|
2914
|
+
} | undefined;
|
|
2897
2915
|
} | undefined;
|
|
2898
2916
|
interaction?: {
|
|
2899
2917
|
drilldown?: boolean | undefined;
|
|
@@ -3296,6 +3314,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3296
3314
|
thumbnails?: {
|
|
3297
3315
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
3298
3316
|
background?: string | undefined;
|
|
3317
|
+
fonts?: {
|
|
3318
|
+
family: string;
|
|
3319
|
+
} | undefined;
|
|
3299
3320
|
} | undefined;
|
|
3300
3321
|
interaction?: {
|
|
3301
3322
|
drilldown?: boolean | undefined;
|
|
@@ -3701,6 +3722,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3701
3722
|
thumbnails?: {
|
|
3702
3723
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
3703
3724
|
background?: string | undefined;
|
|
3725
|
+
fonts?: {
|
|
3726
|
+
family: string;
|
|
3727
|
+
} | undefined;
|
|
3704
3728
|
} | undefined;
|
|
3705
3729
|
interaction?: {
|
|
3706
3730
|
drilldown?: boolean | undefined;
|
|
@@ -4103,6 +4127,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4103
4127
|
thumbnails?: {
|
|
4104
4128
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
4105
4129
|
background?: string | undefined;
|
|
4130
|
+
fonts?: {
|
|
4131
|
+
family: string;
|
|
4132
|
+
} | undefined;
|
|
4106
4133
|
} | undefined;
|
|
4107
4134
|
interaction?: {
|
|
4108
4135
|
drilldown?: boolean | undefined;
|
|
@@ -4505,6 +4532,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4505
4532
|
thumbnails?: {
|
|
4506
4533
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
4507
4534
|
background?: string | undefined;
|
|
4535
|
+
fonts?: {
|
|
4536
|
+
family: string;
|
|
4537
|
+
} | undefined;
|
|
4508
4538
|
} | undefined;
|
|
4509
4539
|
interaction?: {
|
|
4510
4540
|
drilldown?: boolean | undefined;
|
|
@@ -4907,6 +4937,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4907
4937
|
thumbnails?: {
|
|
4908
4938
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
4909
4939
|
background?: string | undefined;
|
|
4940
|
+
fonts?: {
|
|
4941
|
+
family: string;
|
|
4942
|
+
} | undefined;
|
|
4910
4943
|
} | undefined;
|
|
4911
4944
|
interaction?: {
|
|
4912
4945
|
drilldown?: boolean | undefined;
|
|
@@ -5309,6 +5342,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5309
5342
|
thumbnails?: {
|
|
5310
5343
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
5311
5344
|
background?: string | undefined;
|
|
5345
|
+
fonts?: {
|
|
5346
|
+
family: string;
|
|
5347
|
+
} | undefined;
|
|
5312
5348
|
} | undefined;
|
|
5313
5349
|
interaction?: {
|
|
5314
5350
|
drilldown?: boolean | undefined;
|
|
@@ -5711,6 +5747,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5711
5747
|
thumbnails?: {
|
|
5712
5748
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
5713
5749
|
background?: string | undefined;
|
|
5750
|
+
fonts?: {
|
|
5751
|
+
family: string;
|
|
5752
|
+
} | undefined;
|
|
5714
5753
|
} | undefined;
|
|
5715
5754
|
interaction?: {
|
|
5716
5755
|
drilldown?: boolean | undefined;
|
|
@@ -6113,6 +6152,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
6113
6152
|
thumbnails?: {
|
|
6114
6153
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
6115
6154
|
background?: string | undefined;
|
|
6155
|
+
fonts?: {
|
|
6156
|
+
family: string;
|
|
6157
|
+
} | undefined;
|
|
6116
6158
|
} | undefined;
|
|
6117
6159
|
interaction?: {
|
|
6118
6160
|
drilldown?: boolean | undefined;
|