@mintlify/validation 0.1.585 → 0.1.586
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 +1138 -1874
- package/dist/mint-config/schemas/v2/properties/navigation/divisionNav.d.ts +12 -4
- package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +24 -717
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +360 -428
- package/dist/mint-config/schemas/v2/properties/navigation/pages.d.ts +177 -4
- package/dist/mint-config/schemas/v2/properties/reusable/page.d.ts +101 -55
- package/dist/mint-config/schemas/v2/properties/reusable/page.js +12 -0
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +140 -232
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +140 -232
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +140 -232
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +140 -232
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +140 -232
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +140 -232
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +92 -182
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +140 -232
- package/dist/mint-config/upgrades/convertMintDecoratedNavToDocsDecoratedNav.js +7 -3
- package/dist/mint-config/validateConfig.d.ts +336 -350
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +3 -3
|
@@ -526,45 +526,8 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
526
526
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
527
527
|
global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
528
528
|
}, {
|
|
529
|
-
groups: z.ZodArray<z.
|
|
530
|
-
group: z.ZodString;
|
|
531
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
532
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
533
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
534
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
535
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
536
|
-
}, "strip", z.ZodTypeAny, {
|
|
537
|
-
name: string;
|
|
538
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
539
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
540
|
-
}, {
|
|
541
|
-
name: string;
|
|
542
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
543
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
544
|
-
}>]>>;
|
|
545
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
546
|
-
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
547
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
548
|
-
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
549
|
-
}, {
|
|
550
|
-
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
551
|
-
source: z.ZodEffects<z.ZodString, string, string>;
|
|
552
|
-
directory: z.ZodOptional<z.ZodString>;
|
|
553
|
-
}, "strict", z.ZodTypeAny, {
|
|
554
|
-
source: string;
|
|
555
|
-
directory?: string | undefined;
|
|
556
|
-
}, {
|
|
557
|
-
source: string;
|
|
558
|
-
directory?: string | undefined;
|
|
559
|
-
}>]>;
|
|
560
|
-
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
561
|
-
}>, "strip", z.ZodTypeAny, {
|
|
562
|
-
openapi: string | string[] | {
|
|
563
|
-
source: string;
|
|
564
|
-
directory?: string | undefined;
|
|
565
|
-
};
|
|
529
|
+
groups: z.ZodArray<z.ZodType<{
|
|
566
530
|
group: string;
|
|
567
|
-
pages: any[];
|
|
568
531
|
icon?: string | {
|
|
569
532
|
name: string;
|
|
570
533
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -575,11 +538,18 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
575
538
|
tag?: string | undefined;
|
|
576
539
|
hidden?: boolean | undefined;
|
|
577
540
|
root?: string | undefined;
|
|
578
|
-
}
|
|
579
|
-
openapi
|
|
541
|
+
} & {
|
|
542
|
+
openapi?: string | string[] | {
|
|
580
543
|
source: string;
|
|
581
544
|
directory?: string | undefined;
|
|
582
|
-
};
|
|
545
|
+
} | undefined;
|
|
546
|
+
asyncapi?: string | string[] | {
|
|
547
|
+
source: string;
|
|
548
|
+
directory?: string | undefined;
|
|
549
|
+
} | undefined;
|
|
550
|
+
} & {
|
|
551
|
+
pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
552
|
+
}, z.ZodTypeDef, {
|
|
583
553
|
group: string;
|
|
584
554
|
icon?: string | {
|
|
585
555
|
name: string;
|
|
@@ -588,49 +558,24 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
588
558
|
} | undefined;
|
|
589
559
|
expanded?: boolean | undefined;
|
|
590
560
|
public?: boolean | undefined;
|
|
591
|
-
pages?: any[] | undefined;
|
|
592
561
|
tag?: string | undefined;
|
|
593
562
|
hidden?: boolean | undefined;
|
|
594
563
|
root?: string | undefined;
|
|
595
|
-
}
|
|
596
|
-
|
|
597
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
598
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
599
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
600
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
601
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
602
|
-
}, "strip", z.ZodTypeAny, {
|
|
603
|
-
name: string;
|
|
604
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
605
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
606
|
-
}, {
|
|
607
|
-
name: string;
|
|
608
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
609
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
610
|
-
}>]>>;
|
|
611
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
612
|
-
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
613
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
614
|
-
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
615
|
-
}, {
|
|
616
|
-
asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
617
|
-
source: z.ZodEffects<z.ZodString, string, string>;
|
|
618
|
-
directory: z.ZodOptional<z.ZodString>;
|
|
619
|
-
}, "strict", z.ZodTypeAny, {
|
|
564
|
+
} & {
|
|
565
|
+
openapi?: string | string[] | {
|
|
620
566
|
source: string;
|
|
621
567
|
directory?: string | undefined;
|
|
622
|
-
}
|
|
568
|
+
} | undefined;
|
|
569
|
+
asyncapi?: string | string[] | {
|
|
623
570
|
source: string;
|
|
624
571
|
directory?: string | undefined;
|
|
625
|
-
}
|
|
626
|
-
|
|
627
|
-
|
|
572
|
+
} | undefined;
|
|
573
|
+
} & {
|
|
574
|
+
pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
575
|
+
}>, "many">;
|
|
576
|
+
}>, "strip", z.ZodTypeAny, {
|
|
577
|
+
groups: ({
|
|
628
578
|
group: string;
|
|
629
|
-
pages: any[];
|
|
630
|
-
asyncapi: string | string[] | {
|
|
631
|
-
source: string;
|
|
632
|
-
directory?: string | undefined;
|
|
633
|
-
};
|
|
634
579
|
icon?: string | {
|
|
635
580
|
name: string;
|
|
636
581
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -641,59 +586,21 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
641
586
|
tag?: string | undefined;
|
|
642
587
|
hidden?: boolean | undefined;
|
|
643
588
|
root?: string | undefined;
|
|
644
|
-
}
|
|
645
|
-
|
|
646
|
-
asyncapi: string | string[] | {
|
|
589
|
+
} & {
|
|
590
|
+
openapi?: string | string[] | {
|
|
647
591
|
source: string;
|
|
648
592
|
directory?: string | undefined;
|
|
649
|
-
};
|
|
650
|
-
icon?: string | {
|
|
651
|
-
name: string;
|
|
652
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
653
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
654
593
|
} | undefined;
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
tag?: string | undefined;
|
|
659
|
-
hidden?: boolean | undefined;
|
|
660
|
-
root?: string | undefined;
|
|
661
|
-
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
662
|
-
group: z.ZodString;
|
|
663
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
664
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
665
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
666
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
667
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
668
|
-
}, "strip", z.ZodTypeAny, {
|
|
669
|
-
name: string;
|
|
670
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
671
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
672
|
-
}, {
|
|
673
|
-
name: string;
|
|
674
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
675
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
676
|
-
}>]>>;
|
|
677
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
678
|
-
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
679
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
680
|
-
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
681
|
-
}, {
|
|
682
|
-
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
683
|
-
}>, "strip", z.ZodTypeAny, {
|
|
684
|
-
group: string;
|
|
685
|
-
pages: any[];
|
|
686
|
-
icon?: string | {
|
|
687
|
-
name: string;
|
|
688
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
689
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
594
|
+
asyncapi?: string | string[] | {
|
|
595
|
+
source: string;
|
|
596
|
+
directory?: string | undefined;
|
|
690
597
|
} | undefined;
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
598
|
+
} & {
|
|
599
|
+
pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
600
|
+
})[];
|
|
601
|
+
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
602
|
+
}, {
|
|
603
|
+
groups: ({
|
|
697
604
|
group: string;
|
|
698
605
|
icon?: string | {
|
|
699
606
|
name: string;
|
|
@@ -702,19 +609,27 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
702
609
|
} | undefined;
|
|
703
610
|
expanded?: boolean | undefined;
|
|
704
611
|
public?: boolean | undefined;
|
|
705
|
-
pages?: any[] | undefined;
|
|
706
612
|
tag?: string | undefined;
|
|
707
613
|
hidden?: boolean | undefined;
|
|
708
614
|
root?: string | undefined;
|
|
709
|
-
}
|
|
710
|
-
|
|
711
|
-
groups: ({
|
|
712
|
-
openapi: string | string[] | {
|
|
615
|
+
} & {
|
|
616
|
+
openapi?: string | string[] | {
|
|
713
617
|
source: string;
|
|
714
618
|
directory?: string | undefined;
|
|
715
|
-
};
|
|
619
|
+
} | undefined;
|
|
620
|
+
asyncapi?: string | string[] | {
|
|
621
|
+
source: string;
|
|
622
|
+
directory?: string | undefined;
|
|
623
|
+
} | undefined;
|
|
624
|
+
} & {
|
|
625
|
+
pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
626
|
+
})[];
|
|
627
|
+
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
628
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
629
|
+
global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
630
|
+
}, {
|
|
631
|
+
pages: z.ZodArray<z.ZodType<string | ({
|
|
716
632
|
group: string;
|
|
717
|
-
pages: any[];
|
|
718
633
|
icon?: string | {
|
|
719
634
|
name: string;
|
|
720
635
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -725,26 +640,19 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
725
640
|
tag?: string | undefined;
|
|
726
641
|
hidden?: boolean | undefined;
|
|
727
642
|
root?: string | undefined;
|
|
728
|
-
}
|
|
729
|
-
|
|
730
|
-
pages: any[];
|
|
731
|
-
asyncapi: string | string[] | {
|
|
643
|
+
} & {
|
|
644
|
+
openapi?: string | string[] | {
|
|
732
645
|
source: string;
|
|
733
646
|
directory?: string | undefined;
|
|
734
|
-
};
|
|
735
|
-
icon?: string | {
|
|
736
|
-
name: string;
|
|
737
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
738
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
739
647
|
} | undefined;
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
648
|
+
asyncapi?: string | string[] | {
|
|
649
|
+
source: string;
|
|
650
|
+
directory?: string | undefined;
|
|
651
|
+
} | undefined;
|
|
652
|
+
} & {
|
|
653
|
+
pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
654
|
+
}), z.ZodTypeDef, string | ({
|
|
746
655
|
group: string;
|
|
747
|
-
pages: any[];
|
|
748
656
|
icon?: string | {
|
|
749
657
|
name: string;
|
|
750
658
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -755,14 +663,20 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
755
663
|
tag?: string | undefined;
|
|
756
664
|
hidden?: boolean | undefined;
|
|
757
665
|
root?: string | undefined;
|
|
758
|
-
}
|
|
759
|
-
|
|
760
|
-
}, {
|
|
761
|
-
groups: ({
|
|
762
|
-
openapi: string | string[] | {
|
|
666
|
+
} & {
|
|
667
|
+
openapi?: string | string[] | {
|
|
763
668
|
source: string;
|
|
764
669
|
directory?: string | undefined;
|
|
765
|
-
};
|
|
670
|
+
} | undefined;
|
|
671
|
+
asyncapi?: string | string[] | {
|
|
672
|
+
source: string;
|
|
673
|
+
directory?: string | undefined;
|
|
674
|
+
} | undefined;
|
|
675
|
+
} & {
|
|
676
|
+
pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
677
|
+
})>, "many">;
|
|
678
|
+
}>, "strip", z.ZodTypeAny, {
|
|
679
|
+
pages: (string | ({
|
|
766
680
|
group: string;
|
|
767
681
|
icon?: string | {
|
|
768
682
|
name: string;
|
|
@@ -771,28 +685,24 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
771
685
|
} | undefined;
|
|
772
686
|
expanded?: boolean | undefined;
|
|
773
687
|
public?: boolean | undefined;
|
|
774
|
-
pages?: any[] | undefined;
|
|
775
688
|
tag?: string | undefined;
|
|
776
689
|
hidden?: boolean | undefined;
|
|
777
690
|
root?: string | undefined;
|
|
778
|
-
}
|
|
779
|
-
|
|
780
|
-
asyncapi: string | string[] | {
|
|
691
|
+
} & {
|
|
692
|
+
openapi?: string | string[] | {
|
|
781
693
|
source: string;
|
|
782
694
|
directory?: string | undefined;
|
|
783
|
-
};
|
|
784
|
-
icon?: string | {
|
|
785
|
-
name: string;
|
|
786
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
787
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
788
695
|
} | undefined;
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
}
|
|
696
|
+
asyncapi?: string | string[] | {
|
|
697
|
+
source: string;
|
|
698
|
+
directory?: string | undefined;
|
|
699
|
+
} | undefined;
|
|
700
|
+
} & {
|
|
701
|
+
pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
702
|
+
}))[];
|
|
703
|
+
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
704
|
+
}, {
|
|
705
|
+
pages: (string | ({
|
|
796
706
|
group: string;
|
|
797
707
|
icon?: string | {
|
|
798
708
|
name: string;
|
|
@@ -801,21 +711,21 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
801
711
|
} | undefined;
|
|
802
712
|
expanded?: boolean | undefined;
|
|
803
713
|
public?: boolean | undefined;
|
|
804
|
-
pages?: any[] | undefined;
|
|
805
714
|
tag?: string | undefined;
|
|
806
715
|
hidden?: boolean | undefined;
|
|
807
716
|
root?: string | undefined;
|
|
808
|
-
}
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
717
|
+
} & {
|
|
718
|
+
openapi?: string | string[] | {
|
|
719
|
+
source: string;
|
|
720
|
+
directory?: string | undefined;
|
|
721
|
+
} | undefined;
|
|
722
|
+
asyncapi?: string | string[] | {
|
|
723
|
+
source: string;
|
|
724
|
+
directory?: string | undefined;
|
|
725
|
+
} | undefined;
|
|
726
|
+
} & {
|
|
727
|
+
pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
728
|
+
}))[];
|
|
819
729
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
820
730
|
}>]>;
|
|
821
731
|
footer: z.ZodOptional<z.ZodObject<{
|
|
@@ -1608,12 +1518,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1608
1518
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1609
1519
|
} | {
|
|
1610
1520
|
groups: ({
|
|
1611
|
-
openapi: string | string[] | {
|
|
1612
|
-
source: string;
|
|
1613
|
-
directory?: string | undefined;
|
|
1614
|
-
};
|
|
1615
1521
|
group: string;
|
|
1616
|
-
pages: any[];
|
|
1617
1522
|
icon?: string | {
|
|
1618
1523
|
name: string;
|
|
1619
1524
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -1624,26 +1529,22 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1624
1529
|
tag?: string | undefined;
|
|
1625
1530
|
hidden?: boolean | undefined;
|
|
1626
1531
|
root?: string | undefined;
|
|
1627
|
-
}
|
|
1628
|
-
|
|
1629
|
-
pages: any[];
|
|
1630
|
-
asyncapi: string | string[] | {
|
|
1532
|
+
} & {
|
|
1533
|
+
openapi?: string | string[] | {
|
|
1631
1534
|
source: string;
|
|
1632
1535
|
directory?: string | undefined;
|
|
1633
|
-
};
|
|
1634
|
-
icon?: string | {
|
|
1635
|
-
name: string;
|
|
1636
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1637
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1638
1536
|
} | undefined;
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
|
|
1537
|
+
asyncapi?: string | string[] | {
|
|
1538
|
+
source: string;
|
|
1539
|
+
directory?: string | undefined;
|
|
1540
|
+
} | undefined;
|
|
1541
|
+
} & {
|
|
1542
|
+
pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1543
|
+
})[];
|
|
1544
|
+
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1545
|
+
} | {
|
|
1546
|
+
pages: (string | ({
|
|
1645
1547
|
group: string;
|
|
1646
|
-
pages: any[];
|
|
1647
1548
|
icon?: string | {
|
|
1648
1549
|
name: string;
|
|
1649
1550
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -1654,10 +1555,18 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1654
1555
|
tag?: string | undefined;
|
|
1655
1556
|
hidden?: boolean | undefined;
|
|
1656
1557
|
root?: string | undefined;
|
|
1657
|
-
}
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1558
|
+
} & {
|
|
1559
|
+
openapi?: string | string[] | {
|
|
1560
|
+
source: string;
|
|
1561
|
+
directory?: string | undefined;
|
|
1562
|
+
} | undefined;
|
|
1563
|
+
asyncapi?: string | string[] | {
|
|
1564
|
+
source: string;
|
|
1565
|
+
directory?: string | undefined;
|
|
1566
|
+
} | undefined;
|
|
1567
|
+
} & {
|
|
1568
|
+
pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1569
|
+
}))[];
|
|
1661
1570
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1662
1571
|
};
|
|
1663
1572
|
background?: {
|
|
@@ -1953,10 +1862,6 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1953
1862
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1954
1863
|
} | {
|
|
1955
1864
|
groups: ({
|
|
1956
|
-
openapi: string | string[] | {
|
|
1957
|
-
source: string;
|
|
1958
|
-
directory?: string | undefined;
|
|
1959
|
-
};
|
|
1960
1865
|
group: string;
|
|
1961
1866
|
icon?: string | {
|
|
1962
1867
|
name: string;
|
|
@@ -1965,28 +1870,24 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1965
1870
|
} | undefined;
|
|
1966
1871
|
expanded?: boolean | undefined;
|
|
1967
1872
|
public?: boolean | undefined;
|
|
1968
|
-
pages?: any[] | undefined;
|
|
1969
1873
|
tag?: string | undefined;
|
|
1970
1874
|
hidden?: boolean | undefined;
|
|
1971
1875
|
root?: string | undefined;
|
|
1972
|
-
}
|
|
1973
|
-
|
|
1974
|
-
asyncapi: string | string[] | {
|
|
1876
|
+
} & {
|
|
1877
|
+
openapi?: string | string[] | {
|
|
1975
1878
|
source: string;
|
|
1976
1879
|
directory?: string | undefined;
|
|
1977
|
-
};
|
|
1978
|
-
icon?: string | {
|
|
1979
|
-
name: string;
|
|
1980
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1981
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1982
1880
|
} | undefined;
|
|
1983
|
-
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
}
|
|
1881
|
+
asyncapi?: string | string[] | {
|
|
1882
|
+
source: string;
|
|
1883
|
+
directory?: string | undefined;
|
|
1884
|
+
} | undefined;
|
|
1885
|
+
} & {
|
|
1886
|
+
pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1887
|
+
})[];
|
|
1888
|
+
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1889
|
+
} | {
|
|
1890
|
+
pages: (string | ({
|
|
1990
1891
|
group: string;
|
|
1991
1892
|
icon?: string | {
|
|
1992
1893
|
name: string;
|
|
@@ -1995,14 +1896,21 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1995
1896
|
} | undefined;
|
|
1996
1897
|
expanded?: boolean | undefined;
|
|
1997
1898
|
public?: boolean | undefined;
|
|
1998
|
-
pages?: any[] | undefined;
|
|
1999
1899
|
tag?: string | undefined;
|
|
2000
1900
|
hidden?: boolean | undefined;
|
|
2001
1901
|
root?: string | undefined;
|
|
2002
|
-
}
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
|
|
1902
|
+
} & {
|
|
1903
|
+
openapi?: string | string[] | {
|
|
1904
|
+
source: string;
|
|
1905
|
+
directory?: string | undefined;
|
|
1906
|
+
} | undefined;
|
|
1907
|
+
asyncapi?: string | string[] | {
|
|
1908
|
+
source: string;
|
|
1909
|
+
directory?: string | undefined;
|
|
1910
|
+
} | undefined;
|
|
1911
|
+
} & {
|
|
1912
|
+
pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1913
|
+
}))[];
|
|
2006
1914
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2007
1915
|
};
|
|
2008
1916
|
background?: {
|