@mintlify/validation 0.1.428 → 0.1.430
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/v1/navigation.js +1 -1
- package/dist/mint-config/schemas/v2/index.d.ts +189 -0
- package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +27 -0
- package/dist/mint-config/schemas/v2/properties/navigation/groups.js +2 -0
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +20 -0
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +27 -0
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +27 -0
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +27 -0
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +27 -0
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +27 -0
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +27 -0
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +15 -0
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +27 -0
- package/dist/mint-config/validateConfig.d.ts +84 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/deployment/deploymentEntitlements.d.ts +1 -1
- package/dist/types/deployment/deploymentEntitlements.js +1 -0
- package/package.json +3 -3
|
@@ -376,6 +376,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
376
376
|
}>]>>;
|
|
377
377
|
group: z.ZodString;
|
|
378
378
|
tag: z.ZodOptional<z.ZodString>;
|
|
379
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
379
380
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
380
381
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
381
382
|
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -403,6 +404,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
403
404
|
library?: "fontawesome" | "lucide" | undefined;
|
|
404
405
|
} | undefined;
|
|
405
406
|
tag?: string | undefined;
|
|
407
|
+
public?: boolean | undefined;
|
|
406
408
|
hidden?: boolean | undefined;
|
|
407
409
|
root?: string | undefined;
|
|
408
410
|
}, {
|
|
@@ -420,6 +422,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
420
422
|
library?: "fontawesome" | "lucide" | undefined;
|
|
421
423
|
} | undefined;
|
|
422
424
|
tag?: string | undefined;
|
|
425
|
+
public?: boolean | undefined;
|
|
423
426
|
hidden?: boolean | undefined;
|
|
424
427
|
root?: string | undefined;
|
|
425
428
|
}>, z.ZodObject<{
|
|
@@ -438,6 +441,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
438
441
|
}>]>>;
|
|
439
442
|
group: z.ZodString;
|
|
440
443
|
tag: z.ZodOptional<z.ZodString>;
|
|
444
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
441
445
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
442
446
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
443
447
|
asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -465,6 +469,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
465
469
|
library?: "fontawesome" | "lucide" | undefined;
|
|
466
470
|
} | undefined;
|
|
467
471
|
tag?: string | undefined;
|
|
472
|
+
public?: boolean | undefined;
|
|
468
473
|
hidden?: boolean | undefined;
|
|
469
474
|
root?: string | undefined;
|
|
470
475
|
}, {
|
|
@@ -482,6 +487,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
482
487
|
library?: "fontawesome" | "lucide" | undefined;
|
|
483
488
|
} | undefined;
|
|
484
489
|
tag?: string | undefined;
|
|
490
|
+
public?: boolean | undefined;
|
|
485
491
|
hidden?: boolean | undefined;
|
|
486
492
|
root?: string | undefined;
|
|
487
493
|
}>, z.ZodObject<{
|
|
@@ -500,6 +506,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
500
506
|
}>]>>;
|
|
501
507
|
group: z.ZodString;
|
|
502
508
|
tag: z.ZodOptional<z.ZodString>;
|
|
509
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
503
510
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
504
511
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
505
512
|
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
@@ -512,6 +519,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
512
519
|
library?: "fontawesome" | "lucide" | undefined;
|
|
513
520
|
} | undefined;
|
|
514
521
|
tag?: string | undefined;
|
|
522
|
+
public?: boolean | undefined;
|
|
515
523
|
hidden?: boolean | undefined;
|
|
516
524
|
root?: string | undefined;
|
|
517
525
|
}, {
|
|
@@ -523,6 +531,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
523
531
|
library?: "fontawesome" | "lucide" | undefined;
|
|
524
532
|
} | undefined;
|
|
525
533
|
tag?: string | undefined;
|
|
534
|
+
public?: boolean | undefined;
|
|
526
535
|
hidden?: boolean | undefined;
|
|
527
536
|
root?: string | undefined;
|
|
528
537
|
}>]>, "many">;
|
|
@@ -542,6 +551,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
542
551
|
library?: "fontawesome" | "lucide" | undefined;
|
|
543
552
|
} | undefined;
|
|
544
553
|
tag?: string | undefined;
|
|
554
|
+
public?: boolean | undefined;
|
|
545
555
|
hidden?: boolean | undefined;
|
|
546
556
|
root?: string | undefined;
|
|
547
557
|
} | {
|
|
@@ -559,6 +569,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
559
569
|
library?: "fontawesome" | "lucide" | undefined;
|
|
560
570
|
} | undefined;
|
|
561
571
|
tag?: string | undefined;
|
|
572
|
+
public?: boolean | undefined;
|
|
562
573
|
hidden?: boolean | undefined;
|
|
563
574
|
root?: string | undefined;
|
|
564
575
|
} | {
|
|
@@ -570,6 +581,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
570
581
|
library?: "fontawesome" | "lucide" | undefined;
|
|
571
582
|
} | undefined;
|
|
572
583
|
tag?: string | undefined;
|
|
584
|
+
public?: boolean | undefined;
|
|
573
585
|
hidden?: boolean | undefined;
|
|
574
586
|
root?: string | undefined;
|
|
575
587
|
})[];
|
|
@@ -590,6 +602,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
590
602
|
library?: "fontawesome" | "lucide" | undefined;
|
|
591
603
|
} | undefined;
|
|
592
604
|
tag?: string | undefined;
|
|
605
|
+
public?: boolean | undefined;
|
|
593
606
|
hidden?: boolean | undefined;
|
|
594
607
|
root?: string | undefined;
|
|
595
608
|
} | {
|
|
@@ -607,6 +620,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
607
620
|
library?: "fontawesome" | "lucide" | undefined;
|
|
608
621
|
} | undefined;
|
|
609
622
|
tag?: string | undefined;
|
|
623
|
+
public?: boolean | undefined;
|
|
610
624
|
hidden?: boolean | undefined;
|
|
611
625
|
root?: string | undefined;
|
|
612
626
|
} | {
|
|
@@ -618,6 +632,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
618
632
|
library?: "fontawesome" | "lucide" | undefined;
|
|
619
633
|
} | undefined;
|
|
620
634
|
tag?: string | undefined;
|
|
635
|
+
public?: boolean | undefined;
|
|
621
636
|
hidden?: boolean | undefined;
|
|
622
637
|
root?: string | undefined;
|
|
623
638
|
})[];
|
|
@@ -1361,6 +1376,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1361
1376
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1362
1377
|
} | undefined;
|
|
1363
1378
|
tag?: string | undefined;
|
|
1379
|
+
public?: boolean | undefined;
|
|
1364
1380
|
hidden?: boolean | undefined;
|
|
1365
1381
|
root?: string | undefined;
|
|
1366
1382
|
} | {
|
|
@@ -1378,6 +1394,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1378
1394
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1379
1395
|
} | undefined;
|
|
1380
1396
|
tag?: string | undefined;
|
|
1397
|
+
public?: boolean | undefined;
|
|
1381
1398
|
hidden?: boolean | undefined;
|
|
1382
1399
|
root?: string | undefined;
|
|
1383
1400
|
} | {
|
|
@@ -1389,6 +1406,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1389
1406
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1390
1407
|
} | undefined;
|
|
1391
1408
|
tag?: string | undefined;
|
|
1409
|
+
public?: boolean | undefined;
|
|
1392
1410
|
hidden?: boolean | undefined;
|
|
1393
1411
|
root?: string | undefined;
|
|
1394
1412
|
})[];
|
|
@@ -1427,6 +1445,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1427
1445
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1428
1446
|
} | undefined;
|
|
1429
1447
|
tag?: string | undefined;
|
|
1448
|
+
public?: boolean | undefined;
|
|
1430
1449
|
hidden?: boolean | undefined;
|
|
1431
1450
|
root?: string | undefined;
|
|
1432
1451
|
} | {
|
|
@@ -1444,6 +1463,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1444
1463
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1445
1464
|
} | undefined;
|
|
1446
1465
|
tag?: string | undefined;
|
|
1466
|
+
public?: boolean | undefined;
|
|
1447
1467
|
hidden?: boolean | undefined;
|
|
1448
1468
|
root?: string | undefined;
|
|
1449
1469
|
} | {
|
|
@@ -1455,6 +1475,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1455
1475
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1456
1476
|
} | undefined;
|
|
1457
1477
|
tag?: string | undefined;
|
|
1478
|
+
public?: boolean | undefined;
|
|
1458
1479
|
hidden?: boolean | undefined;
|
|
1459
1480
|
root?: string | undefined;
|
|
1460
1481
|
})[];
|
|
@@ -1722,6 +1743,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1722
1743
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1723
1744
|
} | undefined;
|
|
1724
1745
|
tag?: string | undefined;
|
|
1746
|
+
public?: boolean | undefined;
|
|
1725
1747
|
hidden?: boolean | undefined;
|
|
1726
1748
|
root?: string | undefined;
|
|
1727
1749
|
} | {
|
|
@@ -1739,6 +1761,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1739
1761
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1740
1762
|
} | undefined;
|
|
1741
1763
|
tag?: string | undefined;
|
|
1764
|
+
public?: boolean | undefined;
|
|
1742
1765
|
hidden?: boolean | undefined;
|
|
1743
1766
|
root?: string | undefined;
|
|
1744
1767
|
} | {
|
|
@@ -1750,6 +1773,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1750
1773
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1751
1774
|
} | undefined;
|
|
1752
1775
|
tag?: string | undefined;
|
|
1776
|
+
public?: boolean | undefined;
|
|
1753
1777
|
hidden?: boolean | undefined;
|
|
1754
1778
|
root?: string | undefined;
|
|
1755
1779
|
})[];
|
|
@@ -1788,6 +1812,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1788
1812
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1789
1813
|
} | undefined;
|
|
1790
1814
|
tag?: string | undefined;
|
|
1815
|
+
public?: boolean | undefined;
|
|
1791
1816
|
hidden?: boolean | undefined;
|
|
1792
1817
|
root?: string | undefined;
|
|
1793
1818
|
} | {
|
|
@@ -1805,6 +1830,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1805
1830
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1806
1831
|
} | undefined;
|
|
1807
1832
|
tag?: string | undefined;
|
|
1833
|
+
public?: boolean | undefined;
|
|
1808
1834
|
hidden?: boolean | undefined;
|
|
1809
1835
|
root?: string | undefined;
|
|
1810
1836
|
} | {
|
|
@@ -1816,6 +1842,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1816
1842
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1817
1843
|
} | undefined;
|
|
1818
1844
|
tag?: string | undefined;
|
|
1845
|
+
public?: boolean | undefined;
|
|
1819
1846
|
hidden?: boolean | undefined;
|
|
1820
1847
|
root?: string | undefined;
|
|
1821
1848
|
})[];
|