@mintlify/validation 0.1.433 → 0.1.435
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 +161 -35
- package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +16 -4
- package/dist/mint-config/schemas/v2/properties/navigation/groups.js +9 -3
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +13 -3
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +23 -5
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +23 -5
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +23 -5
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +23 -5
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +23 -5
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +23 -5
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +13 -3
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +23 -5
- package/dist/mint-config/validateConfig.d.ts +70 -14
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +3 -3
|
@@ -389,6 +389,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
389
389
|
source: string;
|
|
390
390
|
directory?: string | undefined;
|
|
391
391
|
}>]>;
|
|
392
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
392
393
|
}, "strip", z.ZodTypeAny, {
|
|
393
394
|
openapi: (string | string[] | {
|
|
394
395
|
source: string;
|
|
@@ -398,6 +399,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
398
399
|
directory?: string | undefined;
|
|
399
400
|
} | undefined);
|
|
400
401
|
group: string;
|
|
402
|
+
pages: any[];
|
|
401
403
|
icon?: string | {
|
|
402
404
|
name: string;
|
|
403
405
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -425,6 +427,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
425
427
|
tag?: string | undefined;
|
|
426
428
|
hidden?: boolean | undefined;
|
|
427
429
|
root?: string | undefined;
|
|
430
|
+
pages?: any[] | undefined;
|
|
428
431
|
}>, z.ZodObject<{
|
|
429
432
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
430
433
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
@@ -454,8 +457,10 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
454
457
|
source: string;
|
|
455
458
|
directory?: string | undefined;
|
|
456
459
|
}>]>;
|
|
460
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
457
461
|
}, "strip", z.ZodTypeAny, {
|
|
458
462
|
group: string;
|
|
463
|
+
pages: any[];
|
|
459
464
|
asyncapi: (string | string[] | {
|
|
460
465
|
source: string;
|
|
461
466
|
directory?: string | undefined;
|
|
@@ -490,6 +495,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
490
495
|
tag?: string | undefined;
|
|
491
496
|
hidden?: boolean | undefined;
|
|
492
497
|
root?: string | undefined;
|
|
498
|
+
pages?: any[] | undefined;
|
|
493
499
|
}>, z.ZodObject<{
|
|
494
500
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
495
501
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
@@ -509,7 +515,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
509
515
|
tag: z.ZodOptional<z.ZodString>;
|
|
510
516
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
511
517
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
512
|
-
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many"
|
|
518
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
513
519
|
}, "strip", z.ZodTypeAny, {
|
|
514
520
|
group: string;
|
|
515
521
|
pages: any[];
|
|
@@ -524,7 +530,6 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
524
530
|
root?: string | undefined;
|
|
525
531
|
}, {
|
|
526
532
|
group: string;
|
|
527
|
-
pages: any[];
|
|
528
533
|
icon?: string | {
|
|
529
534
|
name: string;
|
|
530
535
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -534,6 +539,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
534
539
|
tag?: string | undefined;
|
|
535
540
|
hidden?: boolean | undefined;
|
|
536
541
|
root?: string | undefined;
|
|
542
|
+
pages?: any[] | undefined;
|
|
537
543
|
}>]>, "many">;
|
|
538
544
|
}, "strip", z.ZodTypeAny, {
|
|
539
545
|
groups: ({
|
|
@@ -545,6 +551,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
545
551
|
directory?: string | undefined;
|
|
546
552
|
} | undefined);
|
|
547
553
|
group: string;
|
|
554
|
+
pages: any[];
|
|
548
555
|
icon?: string | {
|
|
549
556
|
name: string;
|
|
550
557
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -556,6 +563,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
556
563
|
root?: string | undefined;
|
|
557
564
|
} | {
|
|
558
565
|
group: string;
|
|
566
|
+
pages: any[];
|
|
559
567
|
asyncapi: (string | string[] | {
|
|
560
568
|
source: string;
|
|
561
569
|
directory?: string | undefined;
|
|
@@ -605,6 +613,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
605
613
|
tag?: string | undefined;
|
|
606
614
|
hidden?: boolean | undefined;
|
|
607
615
|
root?: string | undefined;
|
|
616
|
+
pages?: any[] | undefined;
|
|
608
617
|
} | {
|
|
609
618
|
group: string;
|
|
610
619
|
asyncapi: (string | string[] | {
|
|
@@ -623,9 +632,9 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
623
632
|
tag?: string | undefined;
|
|
624
633
|
hidden?: boolean | undefined;
|
|
625
634
|
root?: string | undefined;
|
|
635
|
+
pages?: any[] | undefined;
|
|
626
636
|
} | {
|
|
627
637
|
group: string;
|
|
628
|
-
pages: any[];
|
|
629
638
|
icon?: string | {
|
|
630
639
|
name: string;
|
|
631
640
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -635,6 +644,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
635
644
|
tag?: string | undefined;
|
|
636
645
|
hidden?: boolean | undefined;
|
|
637
646
|
root?: string | undefined;
|
|
647
|
+
pages?: any[] | undefined;
|
|
638
648
|
})[];
|
|
639
649
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
640
650
|
}>, z.ZodObject<{
|
|
@@ -1370,6 +1380,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1370
1380
|
directory?: string | undefined;
|
|
1371
1381
|
} | undefined);
|
|
1372
1382
|
group: string;
|
|
1383
|
+
pages: any[];
|
|
1373
1384
|
icon?: string | {
|
|
1374
1385
|
name: string;
|
|
1375
1386
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -1381,6 +1392,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1381
1392
|
root?: string | undefined;
|
|
1382
1393
|
} | {
|
|
1383
1394
|
group: string;
|
|
1395
|
+
pages: any[];
|
|
1384
1396
|
asyncapi: (string | string[] | {
|
|
1385
1397
|
source: string;
|
|
1386
1398
|
directory?: string | undefined;
|
|
@@ -1439,6 +1451,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1439
1451
|
directory?: string | undefined;
|
|
1440
1452
|
} | undefined);
|
|
1441
1453
|
group: string;
|
|
1454
|
+
pages: any[];
|
|
1442
1455
|
icon?: string | {
|
|
1443
1456
|
name: string;
|
|
1444
1457
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -1450,6 +1463,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1450
1463
|
root?: string | undefined;
|
|
1451
1464
|
} | {
|
|
1452
1465
|
group: string;
|
|
1466
|
+
pages: any[];
|
|
1453
1467
|
asyncapi: (string | string[] | {
|
|
1454
1468
|
source: string;
|
|
1455
1469
|
directory?: string | undefined;
|
|
@@ -1746,6 +1760,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1746
1760
|
tag?: string | undefined;
|
|
1747
1761
|
hidden?: boolean | undefined;
|
|
1748
1762
|
root?: string | undefined;
|
|
1763
|
+
pages?: any[] | undefined;
|
|
1749
1764
|
} | {
|
|
1750
1765
|
group: string;
|
|
1751
1766
|
asyncapi: (string | string[] | {
|
|
@@ -1764,9 +1779,9 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1764
1779
|
tag?: string | undefined;
|
|
1765
1780
|
hidden?: boolean | undefined;
|
|
1766
1781
|
root?: string | undefined;
|
|
1782
|
+
pages?: any[] | undefined;
|
|
1767
1783
|
} | {
|
|
1768
1784
|
group: string;
|
|
1769
|
-
pages: any[];
|
|
1770
1785
|
icon?: string | {
|
|
1771
1786
|
name: string;
|
|
1772
1787
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -1776,6 +1791,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1776
1791
|
tag?: string | undefined;
|
|
1777
1792
|
hidden?: boolean | undefined;
|
|
1778
1793
|
root?: string | undefined;
|
|
1794
|
+
pages?: any[] | undefined;
|
|
1779
1795
|
})[];
|
|
1780
1796
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1781
1797
|
} | {
|
|
@@ -1815,6 +1831,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1815
1831
|
tag?: string | undefined;
|
|
1816
1832
|
hidden?: boolean | undefined;
|
|
1817
1833
|
root?: string | undefined;
|
|
1834
|
+
pages?: any[] | undefined;
|
|
1818
1835
|
} | {
|
|
1819
1836
|
group: string;
|
|
1820
1837
|
asyncapi: (string | string[] | {
|
|
@@ -1833,9 +1850,9 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1833
1850
|
tag?: string | undefined;
|
|
1834
1851
|
hidden?: boolean | undefined;
|
|
1835
1852
|
root?: string | undefined;
|
|
1853
|
+
pages?: any[] | undefined;
|
|
1836
1854
|
} | {
|
|
1837
1855
|
group: string;
|
|
1838
|
-
pages: any[];
|
|
1839
1856
|
icon?: string | {
|
|
1840
1857
|
name: string;
|
|
1841
1858
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -1845,6 +1862,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1845
1862
|
tag?: string | undefined;
|
|
1846
1863
|
hidden?: boolean | undefined;
|
|
1847
1864
|
root?: string | undefined;
|
|
1865
|
+
pages?: any[] | undefined;
|
|
1848
1866
|
})[];
|
|
1849
1867
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1850
1868
|
} | {
|
|
@@ -388,6 +388,7 @@ export declare const standardConfigSchema: {
|
|
|
388
388
|
source: string;
|
|
389
389
|
directory?: string | undefined;
|
|
390
390
|
}>]>;
|
|
391
|
+
pages: import("zod").ZodDefault<import("zod").ZodLazy<import("zod").ZodArray<import("zod").ZodType<any, import("zod").ZodTypeDef, any>, "many">>>;
|
|
391
392
|
}, "strip", import("zod").ZodTypeAny, {
|
|
392
393
|
openapi: (string | string[] | {
|
|
393
394
|
source: string;
|
|
@@ -397,6 +398,7 @@ export declare const standardConfigSchema: {
|
|
|
397
398
|
directory?: string | undefined;
|
|
398
399
|
} | undefined);
|
|
399
400
|
group: string;
|
|
401
|
+
pages: any[];
|
|
400
402
|
icon?: string | {
|
|
401
403
|
name: string;
|
|
402
404
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -424,6 +426,7 @@ export declare const standardConfigSchema: {
|
|
|
424
426
|
tag?: string | undefined;
|
|
425
427
|
hidden?: boolean | undefined;
|
|
426
428
|
root?: string | undefined;
|
|
429
|
+
pages?: any[] | undefined;
|
|
427
430
|
}>, import("zod").ZodObject<{
|
|
428
431
|
icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
|
|
429
432
|
style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
@@ -453,8 +456,10 @@ export declare const standardConfigSchema: {
|
|
|
453
456
|
source: string;
|
|
454
457
|
directory?: string | undefined;
|
|
455
458
|
}>]>;
|
|
459
|
+
pages: import("zod").ZodDefault<import("zod").ZodLazy<import("zod").ZodArray<import("zod").ZodType<any, import("zod").ZodTypeDef, any>, "many">>>;
|
|
456
460
|
}, "strip", import("zod").ZodTypeAny, {
|
|
457
461
|
group: string;
|
|
462
|
+
pages: any[];
|
|
458
463
|
asyncapi: (string | string[] | {
|
|
459
464
|
source: string;
|
|
460
465
|
directory?: string | undefined;
|
|
@@ -489,6 +494,7 @@ export declare const standardConfigSchema: {
|
|
|
489
494
|
tag?: string | undefined;
|
|
490
495
|
hidden?: boolean | undefined;
|
|
491
496
|
root?: string | undefined;
|
|
497
|
+
pages?: any[] | undefined;
|
|
492
498
|
}>, import("zod").ZodObject<{
|
|
493
499
|
icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
|
|
494
500
|
style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
@@ -508,7 +514,7 @@ export declare const standardConfigSchema: {
|
|
|
508
514
|
tag: import("zod").ZodOptional<import("zod").ZodString>;
|
|
509
515
|
hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
510
516
|
root: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodString, string, string>>;
|
|
511
|
-
pages: import("zod").ZodLazy<import("zod").ZodArray<import("zod").ZodType<any, import("zod").ZodTypeDef, any>, "many"
|
|
517
|
+
pages: import("zod").ZodDefault<import("zod").ZodLazy<import("zod").ZodArray<import("zod").ZodType<any, import("zod").ZodTypeDef, any>, "many">>>;
|
|
512
518
|
}, "strip", import("zod").ZodTypeAny, {
|
|
513
519
|
group: string;
|
|
514
520
|
pages: any[];
|
|
@@ -523,7 +529,6 @@ export declare const standardConfigSchema: {
|
|
|
523
529
|
root?: string | undefined;
|
|
524
530
|
}, {
|
|
525
531
|
group: string;
|
|
526
|
-
pages: any[];
|
|
527
532
|
icon?: string | {
|
|
528
533
|
name: string;
|
|
529
534
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -533,6 +538,7 @@ export declare const standardConfigSchema: {
|
|
|
533
538
|
tag?: string | undefined;
|
|
534
539
|
hidden?: boolean | undefined;
|
|
535
540
|
root?: string | undefined;
|
|
541
|
+
pages?: any[] | undefined;
|
|
536
542
|
}>]>, "many">;
|
|
537
543
|
}, "strip", import("zod").ZodTypeAny, {
|
|
538
544
|
groups: ({
|
|
@@ -544,6 +550,7 @@ export declare const standardConfigSchema: {
|
|
|
544
550
|
directory?: string | undefined;
|
|
545
551
|
} | undefined);
|
|
546
552
|
group: string;
|
|
553
|
+
pages: any[];
|
|
547
554
|
icon?: string | {
|
|
548
555
|
name: string;
|
|
549
556
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -555,6 +562,7 @@ export declare const standardConfigSchema: {
|
|
|
555
562
|
root?: string | undefined;
|
|
556
563
|
} | {
|
|
557
564
|
group: string;
|
|
565
|
+
pages: any[];
|
|
558
566
|
asyncapi: (string | string[] | {
|
|
559
567
|
source: string;
|
|
560
568
|
directory?: string | undefined;
|
|
@@ -604,6 +612,7 @@ export declare const standardConfigSchema: {
|
|
|
604
612
|
tag?: string | undefined;
|
|
605
613
|
hidden?: boolean | undefined;
|
|
606
614
|
root?: string | undefined;
|
|
615
|
+
pages?: any[] | undefined;
|
|
607
616
|
} | {
|
|
608
617
|
group: string;
|
|
609
618
|
asyncapi: (string | string[] | {
|
|
@@ -622,9 +631,9 @@ export declare const standardConfigSchema: {
|
|
|
622
631
|
tag?: string | undefined;
|
|
623
632
|
hidden?: boolean | undefined;
|
|
624
633
|
root?: string | undefined;
|
|
634
|
+
pages?: any[] | undefined;
|
|
625
635
|
} | {
|
|
626
636
|
group: string;
|
|
627
|
-
pages: any[];
|
|
628
637
|
icon?: string | {
|
|
629
638
|
name: string;
|
|
630
639
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -634,6 +643,7 @@ export declare const standardConfigSchema: {
|
|
|
634
643
|
tag?: string | undefined;
|
|
635
644
|
hidden?: boolean | undefined;
|
|
636
645
|
root?: string | undefined;
|
|
646
|
+
pages?: any[] | undefined;
|
|
637
647
|
})[];
|
|
638
648
|
global?: import("../../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
639
649
|
}>, import("zod").ZodObject<{
|
|
@@ -389,6 +389,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
389
389
|
source: string;
|
|
390
390
|
directory?: string | undefined;
|
|
391
391
|
}>]>;
|
|
392
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
392
393
|
}, "strip", z.ZodTypeAny, {
|
|
393
394
|
openapi: (string | string[] | {
|
|
394
395
|
source: string;
|
|
@@ -398,6 +399,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
398
399
|
directory?: string | undefined;
|
|
399
400
|
} | undefined);
|
|
400
401
|
group: string;
|
|
402
|
+
pages: any[];
|
|
401
403
|
icon?: string | {
|
|
402
404
|
name: string;
|
|
403
405
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -425,6 +427,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
425
427
|
tag?: string | undefined;
|
|
426
428
|
hidden?: boolean | undefined;
|
|
427
429
|
root?: string | undefined;
|
|
430
|
+
pages?: any[] | undefined;
|
|
428
431
|
}>, z.ZodObject<{
|
|
429
432
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
430
433
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
@@ -454,8 +457,10 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
454
457
|
source: string;
|
|
455
458
|
directory?: string | undefined;
|
|
456
459
|
}>]>;
|
|
460
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
457
461
|
}, "strip", z.ZodTypeAny, {
|
|
458
462
|
group: string;
|
|
463
|
+
pages: any[];
|
|
459
464
|
asyncapi: (string | string[] | {
|
|
460
465
|
source: string;
|
|
461
466
|
directory?: string | undefined;
|
|
@@ -490,6 +495,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
490
495
|
tag?: string | undefined;
|
|
491
496
|
hidden?: boolean | undefined;
|
|
492
497
|
root?: string | undefined;
|
|
498
|
+
pages?: any[] | undefined;
|
|
493
499
|
}>, z.ZodObject<{
|
|
494
500
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
495
501
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
@@ -509,7 +515,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
509
515
|
tag: z.ZodOptional<z.ZodString>;
|
|
510
516
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
511
517
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
512
|
-
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many"
|
|
518
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
513
519
|
}, "strip", z.ZodTypeAny, {
|
|
514
520
|
group: string;
|
|
515
521
|
pages: any[];
|
|
@@ -524,7 +530,6 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
524
530
|
root?: string | undefined;
|
|
525
531
|
}, {
|
|
526
532
|
group: string;
|
|
527
|
-
pages: any[];
|
|
528
533
|
icon?: string | {
|
|
529
534
|
name: string;
|
|
530
535
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -534,6 +539,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
534
539
|
tag?: string | undefined;
|
|
535
540
|
hidden?: boolean | undefined;
|
|
536
541
|
root?: string | undefined;
|
|
542
|
+
pages?: any[] | undefined;
|
|
537
543
|
}>]>, "many">;
|
|
538
544
|
}, "strip", z.ZodTypeAny, {
|
|
539
545
|
groups: ({
|
|
@@ -545,6 +551,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
545
551
|
directory?: string | undefined;
|
|
546
552
|
} | undefined);
|
|
547
553
|
group: string;
|
|
554
|
+
pages: any[];
|
|
548
555
|
icon?: string | {
|
|
549
556
|
name: string;
|
|
550
557
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -556,6 +563,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
556
563
|
root?: string | undefined;
|
|
557
564
|
} | {
|
|
558
565
|
group: string;
|
|
566
|
+
pages: any[];
|
|
559
567
|
asyncapi: (string | string[] | {
|
|
560
568
|
source: string;
|
|
561
569
|
directory?: string | undefined;
|
|
@@ -605,6 +613,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
605
613
|
tag?: string | undefined;
|
|
606
614
|
hidden?: boolean | undefined;
|
|
607
615
|
root?: string | undefined;
|
|
616
|
+
pages?: any[] | undefined;
|
|
608
617
|
} | {
|
|
609
618
|
group: string;
|
|
610
619
|
asyncapi: (string | string[] | {
|
|
@@ -623,9 +632,9 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
623
632
|
tag?: string | undefined;
|
|
624
633
|
hidden?: boolean | undefined;
|
|
625
634
|
root?: string | undefined;
|
|
635
|
+
pages?: any[] | undefined;
|
|
626
636
|
} | {
|
|
627
637
|
group: string;
|
|
628
|
-
pages: any[];
|
|
629
638
|
icon?: string | {
|
|
630
639
|
name: string;
|
|
631
640
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -635,6 +644,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
635
644
|
tag?: string | undefined;
|
|
636
645
|
hidden?: boolean | undefined;
|
|
637
646
|
root?: string | undefined;
|
|
647
|
+
pages?: any[] | undefined;
|
|
638
648
|
})[];
|
|
639
649
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
640
650
|
}>, z.ZodObject<{
|
|
@@ -1370,6 +1380,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1370
1380
|
directory?: string | undefined;
|
|
1371
1381
|
} | undefined);
|
|
1372
1382
|
group: string;
|
|
1383
|
+
pages: any[];
|
|
1373
1384
|
icon?: string | {
|
|
1374
1385
|
name: string;
|
|
1375
1386
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -1381,6 +1392,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1381
1392
|
root?: string | undefined;
|
|
1382
1393
|
} | {
|
|
1383
1394
|
group: string;
|
|
1395
|
+
pages: any[];
|
|
1384
1396
|
asyncapi: (string | string[] | {
|
|
1385
1397
|
source: string;
|
|
1386
1398
|
directory?: string | undefined;
|
|
@@ -1439,6 +1451,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1439
1451
|
directory?: string | undefined;
|
|
1440
1452
|
} | undefined);
|
|
1441
1453
|
group: string;
|
|
1454
|
+
pages: any[];
|
|
1442
1455
|
icon?: string | {
|
|
1443
1456
|
name: string;
|
|
1444
1457
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -1450,6 +1463,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1450
1463
|
root?: string | undefined;
|
|
1451
1464
|
} | {
|
|
1452
1465
|
group: string;
|
|
1466
|
+
pages: any[];
|
|
1453
1467
|
asyncapi: (string | string[] | {
|
|
1454
1468
|
source: string;
|
|
1455
1469
|
directory?: string | undefined;
|
|
@@ -1746,6 +1760,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1746
1760
|
tag?: string | undefined;
|
|
1747
1761
|
hidden?: boolean | undefined;
|
|
1748
1762
|
root?: string | undefined;
|
|
1763
|
+
pages?: any[] | undefined;
|
|
1749
1764
|
} | {
|
|
1750
1765
|
group: string;
|
|
1751
1766
|
asyncapi: (string | string[] | {
|
|
@@ -1764,9 +1779,9 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1764
1779
|
tag?: string | undefined;
|
|
1765
1780
|
hidden?: boolean | undefined;
|
|
1766
1781
|
root?: string | undefined;
|
|
1782
|
+
pages?: any[] | undefined;
|
|
1767
1783
|
} | {
|
|
1768
1784
|
group: string;
|
|
1769
|
-
pages: any[];
|
|
1770
1785
|
icon?: string | {
|
|
1771
1786
|
name: string;
|
|
1772
1787
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -1776,6 +1791,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1776
1791
|
tag?: string | undefined;
|
|
1777
1792
|
hidden?: boolean | undefined;
|
|
1778
1793
|
root?: string | undefined;
|
|
1794
|
+
pages?: any[] | undefined;
|
|
1779
1795
|
})[];
|
|
1780
1796
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1781
1797
|
} | {
|
|
@@ -1815,6 +1831,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1815
1831
|
tag?: string | undefined;
|
|
1816
1832
|
hidden?: boolean | undefined;
|
|
1817
1833
|
root?: string | undefined;
|
|
1834
|
+
pages?: any[] | undefined;
|
|
1818
1835
|
} | {
|
|
1819
1836
|
group: string;
|
|
1820
1837
|
asyncapi: (string | string[] | {
|
|
@@ -1833,9 +1850,9 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1833
1850
|
tag?: string | undefined;
|
|
1834
1851
|
hidden?: boolean | undefined;
|
|
1835
1852
|
root?: string | undefined;
|
|
1853
|
+
pages?: any[] | undefined;
|
|
1836
1854
|
} | {
|
|
1837
1855
|
group: string;
|
|
1838
|
-
pages: any[];
|
|
1839
1856
|
icon?: string | {
|
|
1840
1857
|
name: string;
|
|
1841
1858
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -1845,6 +1862,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1845
1862
|
tag?: string | undefined;
|
|
1846
1863
|
hidden?: boolean | undefined;
|
|
1847
1864
|
root?: string | undefined;
|
|
1865
|
+
pages?: any[] | undefined;
|
|
1848
1866
|
})[];
|
|
1849
1867
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1850
1868
|
} | {
|