@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 lindenConfigSchema: 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 lindenConfigSchema: 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 lindenConfigSchema: 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 lindenConfigSchema: 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 lindenConfigSchema: 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 lindenConfigSchema: 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 lindenConfigSchema: 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 lindenConfigSchema: 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 lindenConfigSchema: 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 lindenConfigSchema: 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 lindenConfigSchema: 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 lindenConfigSchema: 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 lindenConfigSchema: 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 lindenConfigSchema: 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 lindenConfigSchema: 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 lindenConfigSchema: 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 lindenConfigSchema: 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 lindenConfigSchema: 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 lindenConfigSchema: 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 lindenConfigSchema: 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 lindenConfigSchema: 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 lindenConfigSchema: 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 lindenConfigSchema: 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
|
} | {
|
|
@@ -389,6 +389,7 @@ export declare const mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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
|
} | {
|
|
@@ -389,6 +389,7 @@ export declare const mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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
|
} | {
|