@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
|
@@ -529,45 +529,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
529
529
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
530
530
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
531
531
|
}, {
|
|
532
|
-
groups: z.ZodArray<z.
|
|
533
|
-
group: z.ZodString;
|
|
534
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
535
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
536
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
537
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
538
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
539
|
-
}, "strip", z.ZodTypeAny, {
|
|
540
|
-
name: string;
|
|
541
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
542
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
543
|
-
}, {
|
|
544
|
-
name: string;
|
|
545
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
546
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
547
|
-
}>]>>;
|
|
548
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
549
|
-
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
550
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
551
|
-
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
552
|
-
}, {
|
|
553
|
-
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
554
|
-
source: z.ZodEffects<z.ZodString, string, string>;
|
|
555
|
-
directory: z.ZodOptional<z.ZodString>;
|
|
556
|
-
}, "strict", z.ZodTypeAny, {
|
|
557
|
-
source: string;
|
|
558
|
-
directory?: string | undefined;
|
|
559
|
-
}, {
|
|
560
|
-
source: string;
|
|
561
|
-
directory?: string | undefined;
|
|
562
|
-
}>]>;
|
|
563
|
-
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
564
|
-
}>, "strip", z.ZodTypeAny, {
|
|
565
|
-
openapi: string | string[] | {
|
|
566
|
-
source: string;
|
|
567
|
-
directory?: string | undefined;
|
|
568
|
-
};
|
|
532
|
+
groups: z.ZodArray<z.ZodType<{
|
|
569
533
|
group: string;
|
|
570
|
-
pages: any[];
|
|
571
534
|
icon?: string | {
|
|
572
535
|
name: string;
|
|
573
536
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -578,11 +541,18 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
578
541
|
tag?: string | undefined;
|
|
579
542
|
hidden?: boolean | undefined;
|
|
580
543
|
root?: string | undefined;
|
|
581
|
-
}
|
|
582
|
-
openapi
|
|
544
|
+
} & {
|
|
545
|
+
openapi?: string | string[] | {
|
|
583
546
|
source: string;
|
|
584
547
|
directory?: string | undefined;
|
|
585
|
-
};
|
|
548
|
+
} | undefined;
|
|
549
|
+
asyncapi?: string | string[] | {
|
|
550
|
+
source: string;
|
|
551
|
+
directory?: string | undefined;
|
|
552
|
+
} | undefined;
|
|
553
|
+
} & {
|
|
554
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
555
|
+
}, z.ZodTypeDef, {
|
|
586
556
|
group: string;
|
|
587
557
|
icon?: string | {
|
|
588
558
|
name: string;
|
|
@@ -591,49 +561,24 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
591
561
|
} | undefined;
|
|
592
562
|
expanded?: boolean | undefined;
|
|
593
563
|
public?: boolean | undefined;
|
|
594
|
-
pages?: any[] | undefined;
|
|
595
564
|
tag?: string | undefined;
|
|
596
565
|
hidden?: boolean | undefined;
|
|
597
566
|
root?: string | undefined;
|
|
598
|
-
}
|
|
599
|
-
|
|
600
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
601
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
602
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
603
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
604
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
605
|
-
}, "strip", z.ZodTypeAny, {
|
|
606
|
-
name: string;
|
|
607
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
608
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
609
|
-
}, {
|
|
610
|
-
name: string;
|
|
611
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
612
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
613
|
-
}>]>>;
|
|
614
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
615
|
-
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
616
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
617
|
-
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
618
|
-
}, {
|
|
619
|
-
asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
620
|
-
source: z.ZodEffects<z.ZodString, string, string>;
|
|
621
|
-
directory: z.ZodOptional<z.ZodString>;
|
|
622
|
-
}, "strict", z.ZodTypeAny, {
|
|
567
|
+
} & {
|
|
568
|
+
openapi?: string | string[] | {
|
|
623
569
|
source: string;
|
|
624
570
|
directory?: string | undefined;
|
|
625
|
-
}
|
|
571
|
+
} | undefined;
|
|
572
|
+
asyncapi?: string | string[] | {
|
|
626
573
|
source: string;
|
|
627
574
|
directory?: string | undefined;
|
|
628
|
-
}
|
|
629
|
-
|
|
630
|
-
|
|
575
|
+
} | undefined;
|
|
576
|
+
} & {
|
|
577
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
578
|
+
}>, "many">;
|
|
579
|
+
}>, "strip", z.ZodTypeAny, {
|
|
580
|
+
groups: ({
|
|
631
581
|
group: string;
|
|
632
|
-
pages: any[];
|
|
633
|
-
asyncapi: string | string[] | {
|
|
634
|
-
source: string;
|
|
635
|
-
directory?: string | undefined;
|
|
636
|
-
};
|
|
637
582
|
icon?: string | {
|
|
638
583
|
name: string;
|
|
639
584
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -644,59 +589,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
644
589
|
tag?: string | undefined;
|
|
645
590
|
hidden?: boolean | undefined;
|
|
646
591
|
root?: string | undefined;
|
|
647
|
-
}
|
|
648
|
-
|
|
649
|
-
asyncapi: string | string[] | {
|
|
592
|
+
} & {
|
|
593
|
+
openapi?: string | string[] | {
|
|
650
594
|
source: string;
|
|
651
595
|
directory?: string | undefined;
|
|
652
|
-
};
|
|
653
|
-
icon?: string | {
|
|
654
|
-
name: string;
|
|
655
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
656
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
657
596
|
} | undefined;
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
tag?: string | undefined;
|
|
662
|
-
hidden?: boolean | undefined;
|
|
663
|
-
root?: string | undefined;
|
|
664
|
-
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
665
|
-
group: z.ZodString;
|
|
666
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
667
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
668
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
669
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
670
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
671
|
-
}, "strip", z.ZodTypeAny, {
|
|
672
|
-
name: string;
|
|
673
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
674
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
675
|
-
}, {
|
|
676
|
-
name: string;
|
|
677
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
678
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
679
|
-
}>]>>;
|
|
680
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
681
|
-
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
682
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
683
|
-
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
684
|
-
}, {
|
|
685
|
-
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
686
|
-
}>, "strip", z.ZodTypeAny, {
|
|
687
|
-
group: string;
|
|
688
|
-
pages: any[];
|
|
689
|
-
icon?: string | {
|
|
690
|
-
name: string;
|
|
691
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
692
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
597
|
+
asyncapi?: string | string[] | {
|
|
598
|
+
source: string;
|
|
599
|
+
directory?: string | undefined;
|
|
693
600
|
} | undefined;
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
601
|
+
} & {
|
|
602
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
603
|
+
})[];
|
|
604
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
605
|
+
}, {
|
|
606
|
+
groups: ({
|
|
700
607
|
group: string;
|
|
701
608
|
icon?: string | {
|
|
702
609
|
name: string;
|
|
@@ -705,19 +612,27 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
705
612
|
} | undefined;
|
|
706
613
|
expanded?: boolean | undefined;
|
|
707
614
|
public?: boolean | undefined;
|
|
708
|
-
pages?: any[] | undefined;
|
|
709
615
|
tag?: string | undefined;
|
|
710
616
|
hidden?: boolean | undefined;
|
|
711
617
|
root?: string | undefined;
|
|
712
|
-
}
|
|
713
|
-
|
|
714
|
-
groups: ({
|
|
715
|
-
openapi: string | string[] | {
|
|
618
|
+
} & {
|
|
619
|
+
openapi?: string | string[] | {
|
|
716
620
|
source: string;
|
|
717
621
|
directory?: string | undefined;
|
|
718
|
-
};
|
|
622
|
+
} | undefined;
|
|
623
|
+
asyncapi?: string | string[] | {
|
|
624
|
+
source: string;
|
|
625
|
+
directory?: string | undefined;
|
|
626
|
+
} | undefined;
|
|
627
|
+
} & {
|
|
628
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
629
|
+
})[];
|
|
630
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
631
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
632
|
+
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
633
|
+
}, {
|
|
634
|
+
pages: z.ZodArray<z.ZodType<string | ({
|
|
719
635
|
group: string;
|
|
720
|
-
pages: any[];
|
|
721
636
|
icon?: string | {
|
|
722
637
|
name: string;
|
|
723
638
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -728,26 +643,19 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
728
643
|
tag?: string | undefined;
|
|
729
644
|
hidden?: boolean | undefined;
|
|
730
645
|
root?: string | undefined;
|
|
731
|
-
}
|
|
732
|
-
|
|
733
|
-
pages: any[];
|
|
734
|
-
asyncapi: string | string[] | {
|
|
646
|
+
} & {
|
|
647
|
+
openapi?: string | string[] | {
|
|
735
648
|
source: string;
|
|
736
649
|
directory?: string | undefined;
|
|
737
|
-
};
|
|
738
|
-
icon?: string | {
|
|
739
|
-
name: string;
|
|
740
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
741
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
742
650
|
} | undefined;
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
651
|
+
asyncapi?: string | string[] | {
|
|
652
|
+
source: string;
|
|
653
|
+
directory?: string | undefined;
|
|
654
|
+
} | undefined;
|
|
655
|
+
} & {
|
|
656
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
657
|
+
}), z.ZodTypeDef, string | ({
|
|
749
658
|
group: string;
|
|
750
|
-
pages: any[];
|
|
751
659
|
icon?: string | {
|
|
752
660
|
name: string;
|
|
753
661
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -758,14 +666,20 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
758
666
|
tag?: string | undefined;
|
|
759
667
|
hidden?: boolean | undefined;
|
|
760
668
|
root?: string | undefined;
|
|
761
|
-
}
|
|
762
|
-
|
|
763
|
-
}, {
|
|
764
|
-
groups: ({
|
|
765
|
-
openapi: string | string[] | {
|
|
669
|
+
} & {
|
|
670
|
+
openapi?: string | string[] | {
|
|
766
671
|
source: string;
|
|
767
672
|
directory?: string | undefined;
|
|
768
|
-
};
|
|
673
|
+
} | undefined;
|
|
674
|
+
asyncapi?: string | string[] | {
|
|
675
|
+
source: string;
|
|
676
|
+
directory?: string | undefined;
|
|
677
|
+
} | undefined;
|
|
678
|
+
} & {
|
|
679
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
680
|
+
})>, "many">;
|
|
681
|
+
}>, "strip", z.ZodTypeAny, {
|
|
682
|
+
pages: (string | ({
|
|
769
683
|
group: string;
|
|
770
684
|
icon?: string | {
|
|
771
685
|
name: string;
|
|
@@ -774,28 +688,24 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
774
688
|
} | undefined;
|
|
775
689
|
expanded?: boolean | undefined;
|
|
776
690
|
public?: boolean | undefined;
|
|
777
|
-
pages?: any[] | undefined;
|
|
778
691
|
tag?: string | undefined;
|
|
779
692
|
hidden?: boolean | undefined;
|
|
780
693
|
root?: string | undefined;
|
|
781
|
-
}
|
|
782
|
-
|
|
783
|
-
asyncapi: string | string[] | {
|
|
694
|
+
} & {
|
|
695
|
+
openapi?: string | string[] | {
|
|
784
696
|
source: string;
|
|
785
697
|
directory?: string | undefined;
|
|
786
|
-
};
|
|
787
|
-
icon?: string | {
|
|
788
|
-
name: string;
|
|
789
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
790
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
791
698
|
} | undefined;
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
}
|
|
699
|
+
asyncapi?: string | string[] | {
|
|
700
|
+
source: string;
|
|
701
|
+
directory?: string | undefined;
|
|
702
|
+
} | undefined;
|
|
703
|
+
} & {
|
|
704
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
705
|
+
}))[];
|
|
706
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
707
|
+
}, {
|
|
708
|
+
pages: (string | ({
|
|
799
709
|
group: string;
|
|
800
710
|
icon?: string | {
|
|
801
711
|
name: string;
|
|
@@ -804,21 +714,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
804
714
|
} | undefined;
|
|
805
715
|
expanded?: boolean | undefined;
|
|
806
716
|
public?: boolean | undefined;
|
|
807
|
-
pages?: any[] | undefined;
|
|
808
717
|
tag?: string | undefined;
|
|
809
718
|
hidden?: boolean | undefined;
|
|
810
719
|
root?: string | undefined;
|
|
811
|
-
}
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
720
|
+
} & {
|
|
721
|
+
openapi?: string | string[] | {
|
|
722
|
+
source: string;
|
|
723
|
+
directory?: string | undefined;
|
|
724
|
+
} | undefined;
|
|
725
|
+
asyncapi?: string | string[] | {
|
|
726
|
+
source: string;
|
|
727
|
+
directory?: string | undefined;
|
|
728
|
+
} | undefined;
|
|
729
|
+
} & {
|
|
730
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
731
|
+
}))[];
|
|
822
732
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
823
733
|
}>]>;
|
|
824
734
|
footer: z.ZodOptional<z.ZodObject<{
|
|
@@ -1611,12 +1521,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1611
1521
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1612
1522
|
} | {
|
|
1613
1523
|
groups: ({
|
|
1614
|
-
openapi: string | string[] | {
|
|
1615
|
-
source: string;
|
|
1616
|
-
directory?: string | undefined;
|
|
1617
|
-
};
|
|
1618
1524
|
group: string;
|
|
1619
|
-
pages: any[];
|
|
1620
1525
|
icon?: string | {
|
|
1621
1526
|
name: string;
|
|
1622
1527
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -1627,26 +1532,22 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1627
1532
|
tag?: string | undefined;
|
|
1628
1533
|
hidden?: boolean | undefined;
|
|
1629
1534
|
root?: string | undefined;
|
|
1630
|
-
}
|
|
1631
|
-
|
|
1632
|
-
pages: any[];
|
|
1633
|
-
asyncapi: string | string[] | {
|
|
1535
|
+
} & {
|
|
1536
|
+
openapi?: string | string[] | {
|
|
1634
1537
|
source: string;
|
|
1635
1538
|
directory?: string | undefined;
|
|
1636
|
-
};
|
|
1637
|
-
icon?: string | {
|
|
1638
|
-
name: string;
|
|
1639
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1640
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1641
1539
|
} | undefined;
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
|
|
1540
|
+
asyncapi?: string | string[] | {
|
|
1541
|
+
source: string;
|
|
1542
|
+
directory?: string | undefined;
|
|
1543
|
+
} | undefined;
|
|
1544
|
+
} & {
|
|
1545
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1546
|
+
})[];
|
|
1547
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1548
|
+
} | {
|
|
1549
|
+
pages: (string | ({
|
|
1648
1550
|
group: string;
|
|
1649
|
-
pages: any[];
|
|
1650
1551
|
icon?: string | {
|
|
1651
1552
|
name: string;
|
|
1652
1553
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -1657,10 +1558,18 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1657
1558
|
tag?: string | undefined;
|
|
1658
1559
|
hidden?: boolean | undefined;
|
|
1659
1560
|
root?: string | undefined;
|
|
1660
|
-
}
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1561
|
+
} & {
|
|
1562
|
+
openapi?: string | string[] | {
|
|
1563
|
+
source: string;
|
|
1564
|
+
directory?: string | undefined;
|
|
1565
|
+
} | undefined;
|
|
1566
|
+
asyncapi?: string | string[] | {
|
|
1567
|
+
source: string;
|
|
1568
|
+
directory?: string | undefined;
|
|
1569
|
+
} | undefined;
|
|
1570
|
+
} & {
|
|
1571
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1572
|
+
}))[];
|
|
1664
1573
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1665
1574
|
};
|
|
1666
1575
|
background?: {
|
|
@@ -1956,10 +1865,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1956
1865
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1957
1866
|
} | {
|
|
1958
1867
|
groups: ({
|
|
1959
|
-
openapi: string | string[] | {
|
|
1960
|
-
source: string;
|
|
1961
|
-
directory?: string | undefined;
|
|
1962
|
-
};
|
|
1963
1868
|
group: string;
|
|
1964
1869
|
icon?: string | {
|
|
1965
1870
|
name: string;
|
|
@@ -1968,28 +1873,24 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1968
1873
|
} | undefined;
|
|
1969
1874
|
expanded?: boolean | undefined;
|
|
1970
1875
|
public?: boolean | undefined;
|
|
1971
|
-
pages?: any[] | undefined;
|
|
1972
1876
|
tag?: string | undefined;
|
|
1973
1877
|
hidden?: boolean | undefined;
|
|
1974
1878
|
root?: string | undefined;
|
|
1975
|
-
}
|
|
1976
|
-
|
|
1977
|
-
asyncapi: string | string[] | {
|
|
1879
|
+
} & {
|
|
1880
|
+
openapi?: string | string[] | {
|
|
1978
1881
|
source: string;
|
|
1979
1882
|
directory?: string | undefined;
|
|
1980
|
-
};
|
|
1981
|
-
icon?: string | {
|
|
1982
|
-
name: string;
|
|
1983
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1984
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1985
1883
|
} | undefined;
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
}
|
|
1884
|
+
asyncapi?: string | string[] | {
|
|
1885
|
+
source: string;
|
|
1886
|
+
directory?: string | undefined;
|
|
1887
|
+
} | undefined;
|
|
1888
|
+
} & {
|
|
1889
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1890
|
+
})[];
|
|
1891
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1892
|
+
} | {
|
|
1893
|
+
pages: (string | ({
|
|
1993
1894
|
group: string;
|
|
1994
1895
|
icon?: string | {
|
|
1995
1896
|
name: string;
|
|
@@ -1998,14 +1899,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1998
1899
|
} | undefined;
|
|
1999
1900
|
expanded?: boolean | undefined;
|
|
2000
1901
|
public?: boolean | undefined;
|
|
2001
|
-
pages?: any[] | undefined;
|
|
2002
1902
|
tag?: string | undefined;
|
|
2003
1903
|
hidden?: boolean | undefined;
|
|
2004
1904
|
root?: string | undefined;
|
|
2005
|
-
}
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
|
|
1905
|
+
} & {
|
|
1906
|
+
openapi?: string | string[] | {
|
|
1907
|
+
source: string;
|
|
1908
|
+
directory?: string | undefined;
|
|
1909
|
+
} | undefined;
|
|
1910
|
+
asyncapi?: string | string[] | {
|
|
1911
|
+
source: string;
|
|
1912
|
+
directory?: string | undefined;
|
|
1913
|
+
} | undefined;
|
|
1914
|
+
} & {
|
|
1915
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1916
|
+
}))[];
|
|
2009
1917
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2010
1918
|
};
|
|
2011
1919
|
background?: {
|
|
@@ -2801,45 +2709,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2801
2709
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2802
2710
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
2803
2711
|
}, {
|
|
2804
|
-
groups: z.ZodArray<z.
|
|
2805
|
-
group: z.ZodString;
|
|
2806
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
2807
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
2808
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
2809
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
2810
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
2811
|
-
}, "strip", z.ZodTypeAny, {
|
|
2812
|
-
name: string;
|
|
2813
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2814
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2815
|
-
}, {
|
|
2816
|
-
name: string;
|
|
2817
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2818
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2819
|
-
}>]>>;
|
|
2820
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2821
|
-
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
2822
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
2823
|
-
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
2824
|
-
}, {
|
|
2825
|
-
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
2826
|
-
source: z.ZodEffects<z.ZodString, string, string>;
|
|
2827
|
-
directory: z.ZodOptional<z.ZodString>;
|
|
2828
|
-
}, "strict", z.ZodTypeAny, {
|
|
2829
|
-
source: string;
|
|
2830
|
-
directory?: string | undefined;
|
|
2831
|
-
}, {
|
|
2832
|
-
source: string;
|
|
2833
|
-
directory?: string | undefined;
|
|
2834
|
-
}>]>;
|
|
2835
|
-
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
2836
|
-
}>, "strip", z.ZodTypeAny, {
|
|
2837
|
-
openapi: string | string[] | {
|
|
2838
|
-
source: string;
|
|
2839
|
-
directory?: string | undefined;
|
|
2840
|
-
};
|
|
2712
|
+
groups: z.ZodArray<z.ZodType<{
|
|
2841
2713
|
group: string;
|
|
2842
|
-
pages: any[];
|
|
2843
2714
|
icon?: string | {
|
|
2844
2715
|
name: string;
|
|
2845
2716
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -2850,62 +2721,19 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2850
2721
|
tag?: string | undefined;
|
|
2851
2722
|
hidden?: boolean | undefined;
|
|
2852
2723
|
root?: string | undefined;
|
|
2853
|
-
}
|
|
2854
|
-
openapi
|
|
2724
|
+
} & {
|
|
2725
|
+
openapi?: string | string[] | {
|
|
2855
2726
|
source: string;
|
|
2856
2727
|
directory?: string | undefined;
|
|
2857
|
-
};
|
|
2858
|
-
group: string;
|
|
2859
|
-
icon?: string | {
|
|
2860
|
-
name: string;
|
|
2861
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2862
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2863
2728
|
} | undefined;
|
|
2864
|
-
|
|
2865
|
-
public?: boolean | undefined;
|
|
2866
|
-
pages?: any[] | undefined;
|
|
2867
|
-
tag?: string | undefined;
|
|
2868
|
-
hidden?: boolean | undefined;
|
|
2869
|
-
root?: string | undefined;
|
|
2870
|
-
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2871
|
-
group: z.ZodString;
|
|
2872
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
2873
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
2874
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
2875
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
2876
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
2877
|
-
}, "strip", z.ZodTypeAny, {
|
|
2878
|
-
name: string;
|
|
2879
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2880
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2881
|
-
}, {
|
|
2882
|
-
name: string;
|
|
2883
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2884
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2885
|
-
}>]>>;
|
|
2886
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2887
|
-
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
2888
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
2889
|
-
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
2890
|
-
}, {
|
|
2891
|
-
asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
2892
|
-
source: z.ZodEffects<z.ZodString, string, string>;
|
|
2893
|
-
directory: z.ZodOptional<z.ZodString>;
|
|
2894
|
-
}, "strict", z.ZodTypeAny, {
|
|
2895
|
-
source: string;
|
|
2896
|
-
directory?: string | undefined;
|
|
2897
|
-
}, {
|
|
2729
|
+
asyncapi?: string | string[] | {
|
|
2898
2730
|
source: string;
|
|
2899
2731
|
directory?: string | undefined;
|
|
2900
|
-
}
|
|
2901
|
-
|
|
2902
|
-
|
|
2732
|
+
} | undefined;
|
|
2733
|
+
} & {
|
|
2734
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
2735
|
+
}, z.ZodTypeDef, {
|
|
2903
2736
|
group: string;
|
|
2904
|
-
pages: any[];
|
|
2905
|
-
asyncapi: string | string[] | {
|
|
2906
|
-
source: string;
|
|
2907
|
-
directory?: string | undefined;
|
|
2908
|
-
};
|
|
2909
2737
|
icon?: string | {
|
|
2910
2738
|
name: string;
|
|
2911
2739
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -2916,80 +2744,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2916
2744
|
tag?: string | undefined;
|
|
2917
2745
|
hidden?: boolean | undefined;
|
|
2918
2746
|
root?: string | undefined;
|
|
2919
|
-
}
|
|
2920
|
-
|
|
2921
|
-
asyncapi: string | string[] | {
|
|
2747
|
+
} & {
|
|
2748
|
+
openapi?: string | string[] | {
|
|
2922
2749
|
source: string;
|
|
2923
2750
|
directory?: string | undefined;
|
|
2924
|
-
};
|
|
2925
|
-
icon?: string | {
|
|
2926
|
-
name: string;
|
|
2927
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2928
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2929
2751
|
} | undefined;
|
|
2930
|
-
|
|
2931
|
-
|
|
2932
|
-
|
|
2933
|
-
tag?: string | undefined;
|
|
2934
|
-
hidden?: boolean | undefined;
|
|
2935
|
-
root?: string | undefined;
|
|
2936
|
-
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2937
|
-
group: z.ZodString;
|
|
2938
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
2939
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
2940
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
2941
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
2942
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
2943
|
-
}, "strip", z.ZodTypeAny, {
|
|
2944
|
-
name: string;
|
|
2945
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2946
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2947
|
-
}, {
|
|
2948
|
-
name: string;
|
|
2949
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2950
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2951
|
-
}>]>>;
|
|
2952
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2953
|
-
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
2954
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
2955
|
-
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
2956
|
-
}, {
|
|
2957
|
-
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
2958
|
-
}>, "strip", z.ZodTypeAny, {
|
|
2959
|
-
group: string;
|
|
2960
|
-
pages: any[];
|
|
2961
|
-
icon?: string | {
|
|
2962
|
-
name: string;
|
|
2963
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2964
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2965
|
-
} | undefined;
|
|
2966
|
-
expanded?: boolean | undefined;
|
|
2967
|
-
public?: boolean | undefined;
|
|
2968
|
-
tag?: string | undefined;
|
|
2969
|
-
hidden?: boolean | undefined;
|
|
2970
|
-
root?: string | undefined;
|
|
2971
|
-
}, {
|
|
2972
|
-
group: string;
|
|
2973
|
-
icon?: string | {
|
|
2974
|
-
name: string;
|
|
2975
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2976
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2752
|
+
asyncapi?: string | string[] | {
|
|
2753
|
+
source: string;
|
|
2754
|
+
directory?: string | undefined;
|
|
2977
2755
|
} | undefined;
|
|
2978
|
-
|
|
2979
|
-
|
|
2980
|
-
|
|
2981
|
-
tag?: string | undefined;
|
|
2982
|
-
hidden?: boolean | undefined;
|
|
2983
|
-
root?: string | undefined;
|
|
2984
|
-
}>]>, "many">;
|
|
2756
|
+
} & {
|
|
2757
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
2758
|
+
}>, "many">;
|
|
2985
2759
|
}>, "strip", z.ZodTypeAny, {
|
|
2986
2760
|
groups: ({
|
|
2987
|
-
openapi: string | string[] | {
|
|
2988
|
-
source: string;
|
|
2989
|
-
directory?: string | undefined;
|
|
2990
|
-
};
|
|
2991
2761
|
group: string;
|
|
2992
|
-
pages: any[];
|
|
2993
2762
|
icon?: string | {
|
|
2994
2763
|
name: string;
|
|
2995
2764
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -3000,13 +2769,22 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3000
2769
|
tag?: string | undefined;
|
|
3001
2770
|
hidden?: boolean | undefined;
|
|
3002
2771
|
root?: string | undefined;
|
|
3003
|
-
}
|
|
3004
|
-
|
|
3005
|
-
pages: any[];
|
|
3006
|
-
asyncapi: string | string[] | {
|
|
2772
|
+
} & {
|
|
2773
|
+
openapi?: string | string[] | {
|
|
3007
2774
|
source: string;
|
|
3008
2775
|
directory?: string | undefined;
|
|
3009
|
-
};
|
|
2776
|
+
} | undefined;
|
|
2777
|
+
asyncapi?: string | string[] | {
|
|
2778
|
+
source: string;
|
|
2779
|
+
directory?: string | undefined;
|
|
2780
|
+
} | undefined;
|
|
2781
|
+
} & {
|
|
2782
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
2783
|
+
})[];
|
|
2784
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2785
|
+
}, {
|
|
2786
|
+
groups: ({
|
|
2787
|
+
group: string;
|
|
3010
2788
|
icon?: string | {
|
|
3011
2789
|
name: string;
|
|
3012
2790
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -3017,9 +2795,24 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3017
2795
|
tag?: string | undefined;
|
|
3018
2796
|
hidden?: boolean | undefined;
|
|
3019
2797
|
root?: string | undefined;
|
|
3020
|
-
}
|
|
2798
|
+
} & {
|
|
2799
|
+
openapi?: string | string[] | {
|
|
2800
|
+
source: string;
|
|
2801
|
+
directory?: string | undefined;
|
|
2802
|
+
} | undefined;
|
|
2803
|
+
asyncapi?: string | string[] | {
|
|
2804
|
+
source: string;
|
|
2805
|
+
directory?: string | undefined;
|
|
2806
|
+
} | undefined;
|
|
2807
|
+
} & {
|
|
2808
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
2809
|
+
})[];
|
|
2810
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2811
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2812
|
+
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
2813
|
+
}, {
|
|
2814
|
+
pages: z.ZodArray<z.ZodType<string | ({
|
|
3021
2815
|
group: string;
|
|
3022
|
-
pages: any[];
|
|
3023
2816
|
icon?: string | {
|
|
3024
2817
|
name: string;
|
|
3025
2818
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -3030,14 +2823,18 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3030
2823
|
tag?: string | undefined;
|
|
3031
2824
|
hidden?: boolean | undefined;
|
|
3032
2825
|
root?: string | undefined;
|
|
3033
|
-
}
|
|
3034
|
-
|
|
3035
|
-
}, {
|
|
3036
|
-
groups: ({
|
|
3037
|
-
openapi: string | string[] | {
|
|
2826
|
+
} & {
|
|
2827
|
+
openapi?: string | string[] | {
|
|
3038
2828
|
source: string;
|
|
3039
2829
|
directory?: string | undefined;
|
|
3040
|
-
};
|
|
2830
|
+
} | undefined;
|
|
2831
|
+
asyncapi?: string | string[] | {
|
|
2832
|
+
source: string;
|
|
2833
|
+
directory?: string | undefined;
|
|
2834
|
+
} | undefined;
|
|
2835
|
+
} & {
|
|
2836
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
2837
|
+
}), z.ZodTypeDef, string | ({
|
|
3041
2838
|
group: string;
|
|
3042
2839
|
icon?: string | {
|
|
3043
2840
|
name: string;
|
|
@@ -3046,16 +2843,24 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3046
2843
|
} | undefined;
|
|
3047
2844
|
expanded?: boolean | undefined;
|
|
3048
2845
|
public?: boolean | undefined;
|
|
3049
|
-
pages?: any[] | undefined;
|
|
3050
2846
|
tag?: string | undefined;
|
|
3051
2847
|
hidden?: boolean | undefined;
|
|
3052
2848
|
root?: string | undefined;
|
|
3053
|
-
}
|
|
3054
|
-
|
|
3055
|
-
asyncapi: string | string[] | {
|
|
2849
|
+
} & {
|
|
2850
|
+
openapi?: string | string[] | {
|
|
3056
2851
|
source: string;
|
|
3057
2852
|
directory?: string | undefined;
|
|
3058
|
-
};
|
|
2853
|
+
} | undefined;
|
|
2854
|
+
asyncapi?: string | string[] | {
|
|
2855
|
+
source: string;
|
|
2856
|
+
directory?: string | undefined;
|
|
2857
|
+
} | undefined;
|
|
2858
|
+
} & {
|
|
2859
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
2860
|
+
})>, "many">;
|
|
2861
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2862
|
+
pages: (string | ({
|
|
2863
|
+
group: string;
|
|
3059
2864
|
icon?: string | {
|
|
3060
2865
|
name: string;
|
|
3061
2866
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -3063,11 +2868,24 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3063
2868
|
} | undefined;
|
|
3064
2869
|
expanded?: boolean | undefined;
|
|
3065
2870
|
public?: boolean | undefined;
|
|
3066
|
-
pages?: any[] | undefined;
|
|
3067
2871
|
tag?: string | undefined;
|
|
3068
2872
|
hidden?: boolean | undefined;
|
|
3069
2873
|
root?: string | undefined;
|
|
3070
|
-
}
|
|
2874
|
+
} & {
|
|
2875
|
+
openapi?: string | string[] | {
|
|
2876
|
+
source: string;
|
|
2877
|
+
directory?: string | undefined;
|
|
2878
|
+
} | undefined;
|
|
2879
|
+
asyncapi?: string | string[] | {
|
|
2880
|
+
source: string;
|
|
2881
|
+
directory?: string | undefined;
|
|
2882
|
+
} | undefined;
|
|
2883
|
+
} & {
|
|
2884
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
2885
|
+
}))[];
|
|
2886
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2887
|
+
}, {
|
|
2888
|
+
pages: (string | ({
|
|
3071
2889
|
group: string;
|
|
3072
2890
|
icon?: string | {
|
|
3073
2891
|
name: string;
|
|
@@ -3076,21 +2894,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3076
2894
|
} | undefined;
|
|
3077
2895
|
expanded?: boolean | undefined;
|
|
3078
2896
|
public?: boolean | undefined;
|
|
3079
|
-
pages?: any[] | undefined;
|
|
3080
2897
|
tag?: string | undefined;
|
|
3081
2898
|
hidden?: boolean | undefined;
|
|
3082
2899
|
root?: string | undefined;
|
|
3083
|
-
}
|
|
3084
|
-
|
|
3085
|
-
|
|
3086
|
-
|
|
3087
|
-
|
|
3088
|
-
|
|
3089
|
-
|
|
3090
|
-
|
|
3091
|
-
|
|
3092
|
-
|
|
3093
|
-
|
|
2900
|
+
} & {
|
|
2901
|
+
openapi?: string | string[] | {
|
|
2902
|
+
source: string;
|
|
2903
|
+
directory?: string | undefined;
|
|
2904
|
+
} | undefined;
|
|
2905
|
+
asyncapi?: string | string[] | {
|
|
2906
|
+
source: string;
|
|
2907
|
+
directory?: string | undefined;
|
|
2908
|
+
} | undefined;
|
|
2909
|
+
} & {
|
|
2910
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
2911
|
+
}))[];
|
|
3094
2912
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3095
2913
|
}>]>;
|
|
3096
2914
|
footer: z.ZodOptional<z.ZodObject<{
|
|
@@ -3883,12 +3701,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3883
3701
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3884
3702
|
} | {
|
|
3885
3703
|
groups: ({
|
|
3886
|
-
openapi: string | string[] | {
|
|
3887
|
-
source: string;
|
|
3888
|
-
directory?: string | undefined;
|
|
3889
|
-
};
|
|
3890
3704
|
group: string;
|
|
3891
|
-
pages: any[];
|
|
3892
3705
|
icon?: string | {
|
|
3893
3706
|
name: string;
|
|
3894
3707
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -3899,26 +3712,22 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3899
3712
|
tag?: string | undefined;
|
|
3900
3713
|
hidden?: boolean | undefined;
|
|
3901
3714
|
root?: string | undefined;
|
|
3902
|
-
}
|
|
3903
|
-
|
|
3904
|
-
pages: any[];
|
|
3905
|
-
asyncapi: string | string[] | {
|
|
3715
|
+
} & {
|
|
3716
|
+
openapi?: string | string[] | {
|
|
3906
3717
|
source: string;
|
|
3907
3718
|
directory?: string | undefined;
|
|
3908
|
-
};
|
|
3909
|
-
icon?: string | {
|
|
3910
|
-
name: string;
|
|
3911
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3912
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
3913
3719
|
} | undefined;
|
|
3914
|
-
|
|
3915
|
-
|
|
3916
|
-
|
|
3917
|
-
|
|
3918
|
-
|
|
3919
|
-
|
|
3720
|
+
asyncapi?: string | string[] | {
|
|
3721
|
+
source: string;
|
|
3722
|
+
directory?: string | undefined;
|
|
3723
|
+
} | undefined;
|
|
3724
|
+
} & {
|
|
3725
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
3726
|
+
})[];
|
|
3727
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3728
|
+
} | {
|
|
3729
|
+
pages: (string | ({
|
|
3920
3730
|
group: string;
|
|
3921
|
-
pages: any[];
|
|
3922
3731
|
icon?: string | {
|
|
3923
3732
|
name: string;
|
|
3924
3733
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -3929,10 +3738,18 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3929
3738
|
tag?: string | undefined;
|
|
3930
3739
|
hidden?: boolean | undefined;
|
|
3931
3740
|
root?: string | undefined;
|
|
3932
|
-
}
|
|
3933
|
-
|
|
3934
|
-
|
|
3935
|
-
|
|
3741
|
+
} & {
|
|
3742
|
+
openapi?: string | string[] | {
|
|
3743
|
+
source: string;
|
|
3744
|
+
directory?: string | undefined;
|
|
3745
|
+
} | undefined;
|
|
3746
|
+
asyncapi?: string | string[] | {
|
|
3747
|
+
source: string;
|
|
3748
|
+
directory?: string | undefined;
|
|
3749
|
+
} | undefined;
|
|
3750
|
+
} & {
|
|
3751
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
3752
|
+
}))[];
|
|
3936
3753
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3937
3754
|
};
|
|
3938
3755
|
background?: {
|
|
@@ -4228,10 +4045,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4228
4045
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4229
4046
|
} | {
|
|
4230
4047
|
groups: ({
|
|
4231
|
-
openapi: string | string[] | {
|
|
4232
|
-
source: string;
|
|
4233
|
-
directory?: string | undefined;
|
|
4234
|
-
};
|
|
4235
4048
|
group: string;
|
|
4236
4049
|
icon?: string | {
|
|
4237
4050
|
name: string;
|
|
@@ -4240,28 +4053,24 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4240
4053
|
} | undefined;
|
|
4241
4054
|
expanded?: boolean | undefined;
|
|
4242
4055
|
public?: boolean | undefined;
|
|
4243
|
-
pages?: any[] | undefined;
|
|
4244
4056
|
tag?: string | undefined;
|
|
4245
4057
|
hidden?: boolean | undefined;
|
|
4246
4058
|
root?: string | undefined;
|
|
4247
|
-
}
|
|
4248
|
-
|
|
4249
|
-
asyncapi: string | string[] | {
|
|
4059
|
+
} & {
|
|
4060
|
+
openapi?: string | string[] | {
|
|
4250
4061
|
source: string;
|
|
4251
4062
|
directory?: string | undefined;
|
|
4252
|
-
};
|
|
4253
|
-
icon?: string | {
|
|
4254
|
-
name: string;
|
|
4255
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4256
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
4257
4063
|
} | undefined;
|
|
4258
|
-
|
|
4259
|
-
|
|
4260
|
-
|
|
4261
|
-
|
|
4262
|
-
|
|
4263
|
-
|
|
4264
|
-
}
|
|
4064
|
+
asyncapi?: string | string[] | {
|
|
4065
|
+
source: string;
|
|
4066
|
+
directory?: string | undefined;
|
|
4067
|
+
} | undefined;
|
|
4068
|
+
} & {
|
|
4069
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
4070
|
+
})[];
|
|
4071
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4072
|
+
} | {
|
|
4073
|
+
pages: (string | ({
|
|
4265
4074
|
group: string;
|
|
4266
4075
|
icon?: string | {
|
|
4267
4076
|
name: string;
|
|
@@ -4270,14 +4079,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4270
4079
|
} | undefined;
|
|
4271
4080
|
expanded?: boolean | undefined;
|
|
4272
4081
|
public?: boolean | undefined;
|
|
4273
|
-
pages?: any[] | undefined;
|
|
4274
4082
|
tag?: string | undefined;
|
|
4275
4083
|
hidden?: boolean | undefined;
|
|
4276
4084
|
root?: string | undefined;
|
|
4277
|
-
}
|
|
4278
|
-
|
|
4279
|
-
|
|
4280
|
-
|
|
4085
|
+
} & {
|
|
4086
|
+
openapi?: string | string[] | {
|
|
4087
|
+
source: string;
|
|
4088
|
+
directory?: string | undefined;
|
|
4089
|
+
} | undefined;
|
|
4090
|
+
asyncapi?: string | string[] | {
|
|
4091
|
+
source: string;
|
|
4092
|
+
directory?: string | undefined;
|
|
4093
|
+
} | undefined;
|
|
4094
|
+
} & {
|
|
4095
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
4096
|
+
}))[];
|
|
4281
4097
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4282
4098
|
};
|
|
4283
4099
|
background?: {
|
|
@@ -5073,45 +4889,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5073
4889
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5074
4890
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
5075
4891
|
}, {
|
|
5076
|
-
groups: z.ZodArray<z.
|
|
5077
|
-
group: z.ZodString;
|
|
5078
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
5079
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
5080
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
5081
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
5082
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
5083
|
-
}, "strip", z.ZodTypeAny, {
|
|
5084
|
-
name: string;
|
|
5085
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5086
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
5087
|
-
}, {
|
|
5088
|
-
name: string;
|
|
5089
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5090
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
5091
|
-
}>]>>;
|
|
5092
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
5093
|
-
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
5094
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
5095
|
-
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
5096
|
-
}, {
|
|
5097
|
-
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
5098
|
-
source: z.ZodEffects<z.ZodString, string, string>;
|
|
5099
|
-
directory: z.ZodOptional<z.ZodString>;
|
|
5100
|
-
}, "strict", z.ZodTypeAny, {
|
|
5101
|
-
source: string;
|
|
5102
|
-
directory?: string | undefined;
|
|
5103
|
-
}, {
|
|
5104
|
-
source: string;
|
|
5105
|
-
directory?: string | undefined;
|
|
5106
|
-
}>]>;
|
|
5107
|
-
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
5108
|
-
}>, "strip", z.ZodTypeAny, {
|
|
5109
|
-
openapi: string | string[] | {
|
|
5110
|
-
source: string;
|
|
5111
|
-
directory?: string | undefined;
|
|
5112
|
-
};
|
|
4892
|
+
groups: z.ZodArray<z.ZodType<{
|
|
5113
4893
|
group: string;
|
|
5114
|
-
pages: any[];
|
|
5115
4894
|
icon?: string | {
|
|
5116
4895
|
name: string;
|
|
5117
4896
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -5122,62 +4901,19 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5122
4901
|
tag?: string | undefined;
|
|
5123
4902
|
hidden?: boolean | undefined;
|
|
5124
4903
|
root?: string | undefined;
|
|
5125
|
-
}
|
|
5126
|
-
openapi
|
|
4904
|
+
} & {
|
|
4905
|
+
openapi?: string | string[] | {
|
|
5127
4906
|
source: string;
|
|
5128
4907
|
directory?: string | undefined;
|
|
5129
|
-
};
|
|
5130
|
-
group: string;
|
|
5131
|
-
icon?: string | {
|
|
5132
|
-
name: string;
|
|
5133
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5134
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
5135
4908
|
} | undefined;
|
|
5136
|
-
|
|
5137
|
-
public?: boolean | undefined;
|
|
5138
|
-
pages?: any[] | undefined;
|
|
5139
|
-
tag?: string | undefined;
|
|
5140
|
-
hidden?: boolean | undefined;
|
|
5141
|
-
root?: string | undefined;
|
|
5142
|
-
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5143
|
-
group: z.ZodString;
|
|
5144
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
5145
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
5146
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
5147
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
5148
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
5149
|
-
}, "strip", z.ZodTypeAny, {
|
|
5150
|
-
name: string;
|
|
5151
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5152
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
5153
|
-
}, {
|
|
5154
|
-
name: string;
|
|
5155
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5156
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
5157
|
-
}>]>>;
|
|
5158
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
5159
|
-
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
5160
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
5161
|
-
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
5162
|
-
}, {
|
|
5163
|
-
asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
5164
|
-
source: z.ZodEffects<z.ZodString, string, string>;
|
|
5165
|
-
directory: z.ZodOptional<z.ZodString>;
|
|
5166
|
-
}, "strict", z.ZodTypeAny, {
|
|
5167
|
-
source: string;
|
|
5168
|
-
directory?: string | undefined;
|
|
5169
|
-
}, {
|
|
4909
|
+
asyncapi?: string | string[] | {
|
|
5170
4910
|
source: string;
|
|
5171
4911
|
directory?: string | undefined;
|
|
5172
|
-
}
|
|
5173
|
-
|
|
5174
|
-
|
|
4912
|
+
} | undefined;
|
|
4913
|
+
} & {
|
|
4914
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
4915
|
+
}, z.ZodTypeDef, {
|
|
5175
4916
|
group: string;
|
|
5176
|
-
pages: any[];
|
|
5177
|
-
asyncapi: string | string[] | {
|
|
5178
|
-
source: string;
|
|
5179
|
-
directory?: string | undefined;
|
|
5180
|
-
};
|
|
5181
4917
|
icon?: string | {
|
|
5182
4918
|
name: string;
|
|
5183
4919
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -5188,59 +4924,20 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5188
4924
|
tag?: string | undefined;
|
|
5189
4925
|
hidden?: boolean | undefined;
|
|
5190
4926
|
root?: string | undefined;
|
|
5191
|
-
}
|
|
5192
|
-
|
|
5193
|
-
asyncapi: string | string[] | {
|
|
4927
|
+
} & {
|
|
4928
|
+
openapi?: string | string[] | {
|
|
5194
4929
|
source: string;
|
|
5195
4930
|
directory?: string | undefined;
|
|
5196
|
-
};
|
|
5197
|
-
icon?: string | {
|
|
5198
|
-
name: string;
|
|
5199
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5200
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
5201
4931
|
} | undefined;
|
|
5202
|
-
|
|
5203
|
-
|
|
5204
|
-
|
|
5205
|
-
tag?: string | undefined;
|
|
5206
|
-
hidden?: boolean | undefined;
|
|
5207
|
-
root?: string | undefined;
|
|
5208
|
-
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5209
|
-
group: z.ZodString;
|
|
5210
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
5211
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
5212
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
5213
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
5214
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
5215
|
-
}, "strip", z.ZodTypeAny, {
|
|
5216
|
-
name: string;
|
|
5217
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5218
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
5219
|
-
}, {
|
|
5220
|
-
name: string;
|
|
5221
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5222
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
5223
|
-
}>]>>;
|
|
5224
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
5225
|
-
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
5226
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
5227
|
-
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
5228
|
-
}, {
|
|
5229
|
-
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
5230
|
-
}>, "strip", z.ZodTypeAny, {
|
|
5231
|
-
group: string;
|
|
5232
|
-
pages: any[];
|
|
5233
|
-
icon?: string | {
|
|
5234
|
-
name: string;
|
|
5235
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5236
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
4932
|
+
asyncapi?: string | string[] | {
|
|
4933
|
+
source: string;
|
|
4934
|
+
directory?: string | undefined;
|
|
5237
4935
|
} | undefined;
|
|
5238
|
-
|
|
5239
|
-
|
|
5240
|
-
|
|
5241
|
-
|
|
5242
|
-
|
|
5243
|
-
}, {
|
|
4936
|
+
} & {
|
|
4937
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
4938
|
+
}>, "many">;
|
|
4939
|
+
}>, "strip", z.ZodTypeAny, {
|
|
4940
|
+
groups: ({
|
|
5244
4941
|
group: string;
|
|
5245
4942
|
icon?: string | {
|
|
5246
4943
|
name: string;
|
|
@@ -5249,19 +4946,25 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5249
4946
|
} | undefined;
|
|
5250
4947
|
expanded?: boolean | undefined;
|
|
5251
4948
|
public?: boolean | undefined;
|
|
5252
|
-
pages?: any[] | undefined;
|
|
5253
4949
|
tag?: string | undefined;
|
|
5254
4950
|
hidden?: boolean | undefined;
|
|
5255
4951
|
root?: string | undefined;
|
|
5256
|
-
}
|
|
5257
|
-
|
|
5258
|
-
groups: ({
|
|
5259
|
-
openapi: string | string[] | {
|
|
4952
|
+
} & {
|
|
4953
|
+
openapi?: string | string[] | {
|
|
5260
4954
|
source: string;
|
|
5261
4955
|
directory?: string | undefined;
|
|
5262
|
-
};
|
|
4956
|
+
} | undefined;
|
|
4957
|
+
asyncapi?: string | string[] | {
|
|
4958
|
+
source: string;
|
|
4959
|
+
directory?: string | undefined;
|
|
4960
|
+
} | undefined;
|
|
4961
|
+
} & {
|
|
4962
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
4963
|
+
})[];
|
|
4964
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4965
|
+
}, {
|
|
4966
|
+
groups: ({
|
|
5263
4967
|
group: string;
|
|
5264
|
-
pages: any[];
|
|
5265
4968
|
icon?: string | {
|
|
5266
4969
|
name: string;
|
|
5267
4970
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -5272,26 +4975,24 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5272
4975
|
tag?: string | undefined;
|
|
5273
4976
|
hidden?: boolean | undefined;
|
|
5274
4977
|
root?: string | undefined;
|
|
5275
|
-
}
|
|
5276
|
-
|
|
5277
|
-
pages: any[];
|
|
5278
|
-
asyncapi: string | string[] | {
|
|
4978
|
+
} & {
|
|
4979
|
+
openapi?: string | string[] | {
|
|
5279
4980
|
source: string;
|
|
5280
4981
|
directory?: string | undefined;
|
|
5281
|
-
};
|
|
5282
|
-
icon?: string | {
|
|
5283
|
-
name: string;
|
|
5284
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5285
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
5286
4982
|
} | undefined;
|
|
5287
|
-
|
|
5288
|
-
|
|
5289
|
-
|
|
5290
|
-
|
|
5291
|
-
|
|
5292
|
-
|
|
4983
|
+
asyncapi?: string | string[] | {
|
|
4984
|
+
source: string;
|
|
4985
|
+
directory?: string | undefined;
|
|
4986
|
+
} | undefined;
|
|
4987
|
+
} & {
|
|
4988
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
4989
|
+
})[];
|
|
4990
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4991
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
4992
|
+
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
4993
|
+
}, {
|
|
4994
|
+
pages: z.ZodArray<z.ZodType<string | ({
|
|
5293
4995
|
group: string;
|
|
5294
|
-
pages: any[];
|
|
5295
4996
|
icon?: string | {
|
|
5296
4997
|
name: string;
|
|
5297
4998
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -5302,14 +5003,18 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5302
5003
|
tag?: string | undefined;
|
|
5303
5004
|
hidden?: boolean | undefined;
|
|
5304
5005
|
root?: string | undefined;
|
|
5305
|
-
}
|
|
5306
|
-
|
|
5307
|
-
}, {
|
|
5308
|
-
groups: ({
|
|
5309
|
-
openapi: string | string[] | {
|
|
5006
|
+
} & {
|
|
5007
|
+
openapi?: string | string[] | {
|
|
5310
5008
|
source: string;
|
|
5311
5009
|
directory?: string | undefined;
|
|
5312
|
-
};
|
|
5010
|
+
} | undefined;
|
|
5011
|
+
asyncapi?: string | string[] | {
|
|
5012
|
+
source: string;
|
|
5013
|
+
directory?: string | undefined;
|
|
5014
|
+
} | undefined;
|
|
5015
|
+
} & {
|
|
5016
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
5017
|
+
}), z.ZodTypeDef, string | ({
|
|
5313
5018
|
group: string;
|
|
5314
5019
|
icon?: string | {
|
|
5315
5020
|
name: string;
|
|
@@ -5318,16 +5023,24 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5318
5023
|
} | undefined;
|
|
5319
5024
|
expanded?: boolean | undefined;
|
|
5320
5025
|
public?: boolean | undefined;
|
|
5321
|
-
pages?: any[] | undefined;
|
|
5322
5026
|
tag?: string | undefined;
|
|
5323
5027
|
hidden?: boolean | undefined;
|
|
5324
5028
|
root?: string | undefined;
|
|
5325
|
-
}
|
|
5326
|
-
|
|
5327
|
-
asyncapi: string | string[] | {
|
|
5029
|
+
} & {
|
|
5030
|
+
openapi?: string | string[] | {
|
|
5328
5031
|
source: string;
|
|
5329
5032
|
directory?: string | undefined;
|
|
5330
|
-
};
|
|
5033
|
+
} | undefined;
|
|
5034
|
+
asyncapi?: string | string[] | {
|
|
5035
|
+
source: string;
|
|
5036
|
+
directory?: string | undefined;
|
|
5037
|
+
} | undefined;
|
|
5038
|
+
} & {
|
|
5039
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
5040
|
+
})>, "many">;
|
|
5041
|
+
}>, "strip", z.ZodTypeAny, {
|
|
5042
|
+
pages: (string | ({
|
|
5043
|
+
group: string;
|
|
5331
5044
|
icon?: string | {
|
|
5332
5045
|
name: string;
|
|
5333
5046
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -5335,11 +5048,24 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5335
5048
|
} | undefined;
|
|
5336
5049
|
expanded?: boolean | undefined;
|
|
5337
5050
|
public?: boolean | undefined;
|
|
5338
|
-
pages?: any[] | undefined;
|
|
5339
5051
|
tag?: string | undefined;
|
|
5340
5052
|
hidden?: boolean | undefined;
|
|
5341
5053
|
root?: string | undefined;
|
|
5342
|
-
}
|
|
5054
|
+
} & {
|
|
5055
|
+
openapi?: string | string[] | {
|
|
5056
|
+
source: string;
|
|
5057
|
+
directory?: string | undefined;
|
|
5058
|
+
} | undefined;
|
|
5059
|
+
asyncapi?: string | string[] | {
|
|
5060
|
+
source: string;
|
|
5061
|
+
directory?: string | undefined;
|
|
5062
|
+
} | undefined;
|
|
5063
|
+
} & {
|
|
5064
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
5065
|
+
}))[];
|
|
5066
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5067
|
+
}, {
|
|
5068
|
+
pages: (string | ({
|
|
5343
5069
|
group: string;
|
|
5344
5070
|
icon?: string | {
|
|
5345
5071
|
name: string;
|
|
@@ -5348,21 +5074,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5348
5074
|
} | undefined;
|
|
5349
5075
|
expanded?: boolean | undefined;
|
|
5350
5076
|
public?: boolean | undefined;
|
|
5351
|
-
pages?: any[] | undefined;
|
|
5352
5077
|
tag?: string | undefined;
|
|
5353
5078
|
hidden?: boolean | undefined;
|
|
5354
5079
|
root?: string | undefined;
|
|
5355
|
-
}
|
|
5356
|
-
|
|
5357
|
-
|
|
5358
|
-
|
|
5359
|
-
|
|
5360
|
-
|
|
5361
|
-
|
|
5362
|
-
|
|
5363
|
-
|
|
5364
|
-
|
|
5365
|
-
|
|
5080
|
+
} & {
|
|
5081
|
+
openapi?: string | string[] | {
|
|
5082
|
+
source: string;
|
|
5083
|
+
directory?: string | undefined;
|
|
5084
|
+
} | undefined;
|
|
5085
|
+
asyncapi?: string | string[] | {
|
|
5086
|
+
source: string;
|
|
5087
|
+
directory?: string | undefined;
|
|
5088
|
+
} | undefined;
|
|
5089
|
+
} & {
|
|
5090
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
5091
|
+
}))[];
|
|
5366
5092
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5367
5093
|
}>]>;
|
|
5368
5094
|
footer: z.ZodOptional<z.ZodObject<{
|
|
@@ -6155,12 +5881,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6155
5881
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
6156
5882
|
} | {
|
|
6157
5883
|
groups: ({
|
|
6158
|
-
openapi: string | string[] | {
|
|
6159
|
-
source: string;
|
|
6160
|
-
directory?: string | undefined;
|
|
6161
|
-
};
|
|
6162
5884
|
group: string;
|
|
6163
|
-
pages: any[];
|
|
6164
5885
|
icon?: string | {
|
|
6165
5886
|
name: string;
|
|
6166
5887
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -6171,26 +5892,22 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6171
5892
|
tag?: string | undefined;
|
|
6172
5893
|
hidden?: boolean | undefined;
|
|
6173
5894
|
root?: string | undefined;
|
|
6174
|
-
}
|
|
6175
|
-
|
|
6176
|
-
pages: any[];
|
|
6177
|
-
asyncapi: string | string[] | {
|
|
5895
|
+
} & {
|
|
5896
|
+
openapi?: string | string[] | {
|
|
6178
5897
|
source: string;
|
|
6179
5898
|
directory?: string | undefined;
|
|
6180
|
-
};
|
|
6181
|
-
icon?: string | {
|
|
6182
|
-
name: string;
|
|
6183
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6184
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
6185
5899
|
} | undefined;
|
|
6186
|
-
|
|
6187
|
-
|
|
6188
|
-
|
|
6189
|
-
|
|
6190
|
-
|
|
6191
|
-
|
|
5900
|
+
asyncapi?: string | string[] | {
|
|
5901
|
+
source: string;
|
|
5902
|
+
directory?: string | undefined;
|
|
5903
|
+
} | undefined;
|
|
5904
|
+
} & {
|
|
5905
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
5906
|
+
})[];
|
|
5907
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5908
|
+
} | {
|
|
5909
|
+
pages: (string | ({
|
|
6192
5910
|
group: string;
|
|
6193
|
-
pages: any[];
|
|
6194
5911
|
icon?: string | {
|
|
6195
5912
|
name: string;
|
|
6196
5913
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -6201,10 +5918,18 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6201
5918
|
tag?: string | undefined;
|
|
6202
5919
|
hidden?: boolean | undefined;
|
|
6203
5920
|
root?: string | undefined;
|
|
6204
|
-
}
|
|
6205
|
-
|
|
6206
|
-
|
|
6207
|
-
|
|
5921
|
+
} & {
|
|
5922
|
+
openapi?: string | string[] | {
|
|
5923
|
+
source: string;
|
|
5924
|
+
directory?: string | undefined;
|
|
5925
|
+
} | undefined;
|
|
5926
|
+
asyncapi?: string | string[] | {
|
|
5927
|
+
source: string;
|
|
5928
|
+
directory?: string | undefined;
|
|
5929
|
+
} | undefined;
|
|
5930
|
+
} & {
|
|
5931
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
5932
|
+
}))[];
|
|
6208
5933
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
6209
5934
|
};
|
|
6210
5935
|
background?: {
|
|
@@ -6500,10 +6225,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6500
6225
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
6501
6226
|
} | {
|
|
6502
6227
|
groups: ({
|
|
6503
|
-
openapi: string | string[] | {
|
|
6504
|
-
source: string;
|
|
6505
|
-
directory?: string | undefined;
|
|
6506
|
-
};
|
|
6507
6228
|
group: string;
|
|
6508
6229
|
icon?: string | {
|
|
6509
6230
|
name: string;
|
|
@@ -6512,28 +6233,24 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6512
6233
|
} | undefined;
|
|
6513
6234
|
expanded?: boolean | undefined;
|
|
6514
6235
|
public?: boolean | undefined;
|
|
6515
|
-
pages?: any[] | undefined;
|
|
6516
6236
|
tag?: string | undefined;
|
|
6517
6237
|
hidden?: boolean | undefined;
|
|
6518
6238
|
root?: string | undefined;
|
|
6519
|
-
}
|
|
6520
|
-
|
|
6521
|
-
asyncapi: string | string[] | {
|
|
6239
|
+
} & {
|
|
6240
|
+
openapi?: string | string[] | {
|
|
6522
6241
|
source: string;
|
|
6523
6242
|
directory?: string | undefined;
|
|
6524
|
-
};
|
|
6525
|
-
icon?: string | {
|
|
6526
|
-
name: string;
|
|
6527
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6528
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
6529
6243
|
} | undefined;
|
|
6530
|
-
|
|
6531
|
-
|
|
6532
|
-
|
|
6533
|
-
|
|
6534
|
-
|
|
6535
|
-
|
|
6536
|
-
}
|
|
6244
|
+
asyncapi?: string | string[] | {
|
|
6245
|
+
source: string;
|
|
6246
|
+
directory?: string | undefined;
|
|
6247
|
+
} | undefined;
|
|
6248
|
+
} & {
|
|
6249
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
6250
|
+
})[];
|
|
6251
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
6252
|
+
} | {
|
|
6253
|
+
pages: (string | ({
|
|
6537
6254
|
group: string;
|
|
6538
6255
|
icon?: string | {
|
|
6539
6256
|
name: string;
|
|
@@ -6542,14 +6259,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6542
6259
|
} | undefined;
|
|
6543
6260
|
expanded?: boolean | undefined;
|
|
6544
6261
|
public?: boolean | undefined;
|
|
6545
|
-
pages?: any[] | undefined;
|
|
6546
6262
|
tag?: string | undefined;
|
|
6547
6263
|
hidden?: boolean | undefined;
|
|
6548
6264
|
root?: string | undefined;
|
|
6549
|
-
}
|
|
6550
|
-
|
|
6551
|
-
|
|
6552
|
-
|
|
6265
|
+
} & {
|
|
6266
|
+
openapi?: string | string[] | {
|
|
6267
|
+
source: string;
|
|
6268
|
+
directory?: string | undefined;
|
|
6269
|
+
} | undefined;
|
|
6270
|
+
asyncapi?: string | string[] | {
|
|
6271
|
+
source: string;
|
|
6272
|
+
directory?: string | undefined;
|
|
6273
|
+
} | undefined;
|
|
6274
|
+
} & {
|
|
6275
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
6276
|
+
}))[];
|
|
6553
6277
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
6554
6278
|
};
|
|
6555
6279
|
background?: {
|
|
@@ -7345,45 +7069,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7345
7069
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7346
7070
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
7347
7071
|
}, {
|
|
7348
|
-
groups: z.ZodArray<z.
|
|
7349
|
-
group: z.ZodString;
|
|
7350
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
7351
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
7352
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
7353
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
7354
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
7355
|
-
}, "strip", z.ZodTypeAny, {
|
|
7356
|
-
name: string;
|
|
7357
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7358
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
7359
|
-
}, {
|
|
7360
|
-
name: string;
|
|
7361
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7362
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
7363
|
-
}>]>>;
|
|
7364
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
7365
|
-
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
7366
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
7367
|
-
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
7368
|
-
}, {
|
|
7369
|
-
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
7370
|
-
source: z.ZodEffects<z.ZodString, string, string>;
|
|
7371
|
-
directory: z.ZodOptional<z.ZodString>;
|
|
7372
|
-
}, "strict", z.ZodTypeAny, {
|
|
7373
|
-
source: string;
|
|
7374
|
-
directory?: string | undefined;
|
|
7375
|
-
}, {
|
|
7376
|
-
source: string;
|
|
7377
|
-
directory?: string | undefined;
|
|
7378
|
-
}>]>;
|
|
7379
|
-
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
7380
|
-
}>, "strip", z.ZodTypeAny, {
|
|
7381
|
-
openapi: string | string[] | {
|
|
7382
|
-
source: string;
|
|
7383
|
-
directory?: string | undefined;
|
|
7384
|
-
};
|
|
7072
|
+
groups: z.ZodArray<z.ZodType<{
|
|
7385
7073
|
group: string;
|
|
7386
|
-
pages: any[];
|
|
7387
7074
|
icon?: string | {
|
|
7388
7075
|
name: string;
|
|
7389
7076
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -7394,11 +7081,18 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7394
7081
|
tag?: string | undefined;
|
|
7395
7082
|
hidden?: boolean | undefined;
|
|
7396
7083
|
root?: string | undefined;
|
|
7397
|
-
}
|
|
7398
|
-
openapi
|
|
7084
|
+
} & {
|
|
7085
|
+
openapi?: string | string[] | {
|
|
7399
7086
|
source: string;
|
|
7400
7087
|
directory?: string | undefined;
|
|
7401
|
-
};
|
|
7088
|
+
} | undefined;
|
|
7089
|
+
asyncapi?: string | string[] | {
|
|
7090
|
+
source: string;
|
|
7091
|
+
directory?: string | undefined;
|
|
7092
|
+
} | undefined;
|
|
7093
|
+
} & {
|
|
7094
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
7095
|
+
}, z.ZodTypeDef, {
|
|
7402
7096
|
group: string;
|
|
7403
7097
|
icon?: string | {
|
|
7404
7098
|
name: string;
|
|
@@ -7407,49 +7101,24 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7407
7101
|
} | undefined;
|
|
7408
7102
|
expanded?: boolean | undefined;
|
|
7409
7103
|
public?: boolean | undefined;
|
|
7410
|
-
pages?: any[] | undefined;
|
|
7411
7104
|
tag?: string | undefined;
|
|
7412
7105
|
hidden?: boolean | undefined;
|
|
7413
7106
|
root?: string | undefined;
|
|
7414
|
-
}
|
|
7415
|
-
|
|
7416
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
7417
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
7418
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
7419
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
7420
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
7421
|
-
}, "strip", z.ZodTypeAny, {
|
|
7422
|
-
name: string;
|
|
7423
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7424
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
7425
|
-
}, {
|
|
7426
|
-
name: string;
|
|
7427
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7428
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
7429
|
-
}>]>>;
|
|
7430
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
7431
|
-
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
7432
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
7433
|
-
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
7434
|
-
}, {
|
|
7435
|
-
asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
7436
|
-
source: z.ZodEffects<z.ZodString, string, string>;
|
|
7437
|
-
directory: z.ZodOptional<z.ZodString>;
|
|
7438
|
-
}, "strict", z.ZodTypeAny, {
|
|
7107
|
+
} & {
|
|
7108
|
+
openapi?: string | string[] | {
|
|
7439
7109
|
source: string;
|
|
7440
7110
|
directory?: string | undefined;
|
|
7441
|
-
}
|
|
7111
|
+
} | undefined;
|
|
7112
|
+
asyncapi?: string | string[] | {
|
|
7442
7113
|
source: string;
|
|
7443
7114
|
directory?: string | undefined;
|
|
7444
|
-
}
|
|
7445
|
-
|
|
7446
|
-
|
|
7115
|
+
} | undefined;
|
|
7116
|
+
} & {
|
|
7117
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
7118
|
+
}>, "many">;
|
|
7119
|
+
}>, "strip", z.ZodTypeAny, {
|
|
7120
|
+
groups: ({
|
|
7447
7121
|
group: string;
|
|
7448
|
-
pages: any[];
|
|
7449
|
-
asyncapi: string | string[] | {
|
|
7450
|
-
source: string;
|
|
7451
|
-
directory?: string | undefined;
|
|
7452
|
-
};
|
|
7453
7122
|
icon?: string | {
|
|
7454
7123
|
name: string;
|
|
7455
7124
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -7460,59 +7129,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7460
7129
|
tag?: string | undefined;
|
|
7461
7130
|
hidden?: boolean | undefined;
|
|
7462
7131
|
root?: string | undefined;
|
|
7463
|
-
}
|
|
7464
|
-
|
|
7465
|
-
asyncapi: string | string[] | {
|
|
7132
|
+
} & {
|
|
7133
|
+
openapi?: string | string[] | {
|
|
7466
7134
|
source: string;
|
|
7467
7135
|
directory?: string | undefined;
|
|
7468
|
-
};
|
|
7469
|
-
icon?: string | {
|
|
7470
|
-
name: string;
|
|
7471
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7472
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
7473
7136
|
} | undefined;
|
|
7474
|
-
|
|
7475
|
-
|
|
7476
|
-
|
|
7477
|
-
tag?: string | undefined;
|
|
7478
|
-
hidden?: boolean | undefined;
|
|
7479
|
-
root?: string | undefined;
|
|
7480
|
-
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7481
|
-
group: z.ZodString;
|
|
7482
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
7483
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
7484
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
7485
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
7486
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
7487
|
-
}, "strip", z.ZodTypeAny, {
|
|
7488
|
-
name: string;
|
|
7489
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7490
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
7491
|
-
}, {
|
|
7492
|
-
name: string;
|
|
7493
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7494
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
7495
|
-
}>]>>;
|
|
7496
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
7497
|
-
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
7498
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
7499
|
-
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
7500
|
-
}, {
|
|
7501
|
-
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
7502
|
-
}>, "strip", z.ZodTypeAny, {
|
|
7503
|
-
group: string;
|
|
7504
|
-
pages: any[];
|
|
7505
|
-
icon?: string | {
|
|
7506
|
-
name: string;
|
|
7507
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7508
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
7137
|
+
asyncapi?: string | string[] | {
|
|
7138
|
+
source: string;
|
|
7139
|
+
directory?: string | undefined;
|
|
7509
7140
|
} | undefined;
|
|
7510
|
-
|
|
7511
|
-
|
|
7512
|
-
|
|
7513
|
-
|
|
7514
|
-
|
|
7515
|
-
|
|
7141
|
+
} & {
|
|
7142
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
7143
|
+
})[];
|
|
7144
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
7145
|
+
}, {
|
|
7146
|
+
groups: ({
|
|
7516
7147
|
group: string;
|
|
7517
7148
|
icon?: string | {
|
|
7518
7149
|
name: string;
|
|
@@ -7521,49 +7152,27 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7521
7152
|
} | undefined;
|
|
7522
7153
|
expanded?: boolean | undefined;
|
|
7523
7154
|
public?: boolean | undefined;
|
|
7524
|
-
pages?: any[] | undefined;
|
|
7525
7155
|
tag?: string | undefined;
|
|
7526
7156
|
hidden?: boolean | undefined;
|
|
7527
7157
|
root?: string | undefined;
|
|
7528
|
-
}
|
|
7529
|
-
|
|
7530
|
-
groups: ({
|
|
7531
|
-
openapi: string | string[] | {
|
|
7158
|
+
} & {
|
|
7159
|
+
openapi?: string | string[] | {
|
|
7532
7160
|
source: string;
|
|
7533
7161
|
directory?: string | undefined;
|
|
7534
|
-
};
|
|
7535
|
-
group: string;
|
|
7536
|
-
pages: any[];
|
|
7537
|
-
icon?: string | {
|
|
7538
|
-
name: string;
|
|
7539
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7540
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
7541
7162
|
} | undefined;
|
|
7542
|
-
|
|
7543
|
-
public?: boolean | undefined;
|
|
7544
|
-
tag?: string | undefined;
|
|
7545
|
-
hidden?: boolean | undefined;
|
|
7546
|
-
root?: string | undefined;
|
|
7547
|
-
} | {
|
|
7548
|
-
group: string;
|
|
7549
|
-
pages: any[];
|
|
7550
|
-
asyncapi: string | string[] | {
|
|
7163
|
+
asyncapi?: string | string[] | {
|
|
7551
7164
|
source: string;
|
|
7552
7165
|
directory?: string | undefined;
|
|
7553
|
-
};
|
|
7554
|
-
icon?: string | {
|
|
7555
|
-
name: string;
|
|
7556
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7557
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
7558
7166
|
} | undefined;
|
|
7559
|
-
|
|
7560
|
-
|
|
7561
|
-
|
|
7562
|
-
|
|
7563
|
-
|
|
7564
|
-
|
|
7167
|
+
} & {
|
|
7168
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
7169
|
+
})[];
|
|
7170
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
7171
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7172
|
+
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
7173
|
+
}, {
|
|
7174
|
+
pages: z.ZodArray<z.ZodType<string | ({
|
|
7565
7175
|
group: string;
|
|
7566
|
-
pages: any[];
|
|
7567
7176
|
icon?: string | {
|
|
7568
7177
|
name: string;
|
|
7569
7178
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -7574,14 +7183,18 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7574
7183
|
tag?: string | undefined;
|
|
7575
7184
|
hidden?: boolean | undefined;
|
|
7576
7185
|
root?: string | undefined;
|
|
7577
|
-
}
|
|
7578
|
-
|
|
7579
|
-
}, {
|
|
7580
|
-
groups: ({
|
|
7581
|
-
openapi: string | string[] | {
|
|
7186
|
+
} & {
|
|
7187
|
+
openapi?: string | string[] | {
|
|
7582
7188
|
source: string;
|
|
7583
7189
|
directory?: string | undefined;
|
|
7584
|
-
};
|
|
7190
|
+
} | undefined;
|
|
7191
|
+
asyncapi?: string | string[] | {
|
|
7192
|
+
source: string;
|
|
7193
|
+
directory?: string | undefined;
|
|
7194
|
+
} | undefined;
|
|
7195
|
+
} & {
|
|
7196
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
7197
|
+
}), z.ZodTypeDef, string | ({
|
|
7585
7198
|
group: string;
|
|
7586
7199
|
icon?: string | {
|
|
7587
7200
|
name: string;
|
|
@@ -7590,16 +7203,24 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7590
7203
|
} | undefined;
|
|
7591
7204
|
expanded?: boolean | undefined;
|
|
7592
7205
|
public?: boolean | undefined;
|
|
7593
|
-
pages?: any[] | undefined;
|
|
7594
7206
|
tag?: string | undefined;
|
|
7595
7207
|
hidden?: boolean | undefined;
|
|
7596
7208
|
root?: string | undefined;
|
|
7597
|
-
}
|
|
7209
|
+
} & {
|
|
7210
|
+
openapi?: string | string[] | {
|
|
7211
|
+
source: string;
|
|
7212
|
+
directory?: string | undefined;
|
|
7213
|
+
} | undefined;
|
|
7214
|
+
asyncapi?: string | string[] | {
|
|
7215
|
+
source: string;
|
|
7216
|
+
directory?: string | undefined;
|
|
7217
|
+
} | undefined;
|
|
7218
|
+
} & {
|
|
7219
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
7220
|
+
})>, "many">;
|
|
7221
|
+
}>, "strip", z.ZodTypeAny, {
|
|
7222
|
+
pages: (string | ({
|
|
7598
7223
|
group: string;
|
|
7599
|
-
asyncapi: string | string[] | {
|
|
7600
|
-
source: string;
|
|
7601
|
-
directory?: string | undefined;
|
|
7602
|
-
};
|
|
7603
7224
|
icon?: string | {
|
|
7604
7225
|
name: string;
|
|
7605
7226
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -7607,11 +7228,24 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7607
7228
|
} | undefined;
|
|
7608
7229
|
expanded?: boolean | undefined;
|
|
7609
7230
|
public?: boolean | undefined;
|
|
7610
|
-
pages?: any[] | undefined;
|
|
7611
7231
|
tag?: string | undefined;
|
|
7612
7232
|
hidden?: boolean | undefined;
|
|
7613
7233
|
root?: string | undefined;
|
|
7614
|
-
}
|
|
7234
|
+
} & {
|
|
7235
|
+
openapi?: string | string[] | {
|
|
7236
|
+
source: string;
|
|
7237
|
+
directory?: string | undefined;
|
|
7238
|
+
} | undefined;
|
|
7239
|
+
asyncapi?: string | string[] | {
|
|
7240
|
+
source: string;
|
|
7241
|
+
directory?: string | undefined;
|
|
7242
|
+
} | undefined;
|
|
7243
|
+
} & {
|
|
7244
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
7245
|
+
}))[];
|
|
7246
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
7247
|
+
}, {
|
|
7248
|
+
pages: (string | ({
|
|
7615
7249
|
group: string;
|
|
7616
7250
|
icon?: string | {
|
|
7617
7251
|
name: string;
|
|
@@ -7620,21 +7254,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7620
7254
|
} | undefined;
|
|
7621
7255
|
expanded?: boolean | undefined;
|
|
7622
7256
|
public?: boolean | undefined;
|
|
7623
|
-
pages?: any[] | undefined;
|
|
7624
7257
|
tag?: string | undefined;
|
|
7625
7258
|
hidden?: boolean | undefined;
|
|
7626
7259
|
root?: string | undefined;
|
|
7627
|
-
}
|
|
7628
|
-
|
|
7629
|
-
|
|
7630
|
-
|
|
7631
|
-
|
|
7632
|
-
|
|
7633
|
-
|
|
7634
|
-
|
|
7635
|
-
|
|
7636
|
-
|
|
7637
|
-
|
|
7260
|
+
} & {
|
|
7261
|
+
openapi?: string | string[] | {
|
|
7262
|
+
source: string;
|
|
7263
|
+
directory?: string | undefined;
|
|
7264
|
+
} | undefined;
|
|
7265
|
+
asyncapi?: string | string[] | {
|
|
7266
|
+
source: string;
|
|
7267
|
+
directory?: string | undefined;
|
|
7268
|
+
} | undefined;
|
|
7269
|
+
} & {
|
|
7270
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
7271
|
+
}))[];
|
|
7638
7272
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
7639
7273
|
}>]>;
|
|
7640
7274
|
footer: z.ZodOptional<z.ZodObject<{
|
|
@@ -8427,12 +8061,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8427
8061
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
8428
8062
|
} | {
|
|
8429
8063
|
groups: ({
|
|
8430
|
-
openapi: string | string[] | {
|
|
8431
|
-
source: string;
|
|
8432
|
-
directory?: string | undefined;
|
|
8433
|
-
};
|
|
8434
8064
|
group: string;
|
|
8435
|
-
pages: any[];
|
|
8436
8065
|
icon?: string | {
|
|
8437
8066
|
name: string;
|
|
8438
8067
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -8443,26 +8072,22 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8443
8072
|
tag?: string | undefined;
|
|
8444
8073
|
hidden?: boolean | undefined;
|
|
8445
8074
|
root?: string | undefined;
|
|
8446
|
-
}
|
|
8447
|
-
|
|
8448
|
-
pages: any[];
|
|
8449
|
-
asyncapi: string | string[] | {
|
|
8075
|
+
} & {
|
|
8076
|
+
openapi?: string | string[] | {
|
|
8450
8077
|
source: string;
|
|
8451
8078
|
directory?: string | undefined;
|
|
8452
|
-
};
|
|
8453
|
-
icon?: string | {
|
|
8454
|
-
name: string;
|
|
8455
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8456
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
8457
8079
|
} | undefined;
|
|
8458
|
-
|
|
8459
|
-
|
|
8460
|
-
|
|
8461
|
-
|
|
8462
|
-
|
|
8463
|
-
|
|
8080
|
+
asyncapi?: string | string[] | {
|
|
8081
|
+
source: string;
|
|
8082
|
+
directory?: string | undefined;
|
|
8083
|
+
} | undefined;
|
|
8084
|
+
} & {
|
|
8085
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
8086
|
+
})[];
|
|
8087
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
8088
|
+
} | {
|
|
8089
|
+
pages: (string | ({
|
|
8464
8090
|
group: string;
|
|
8465
|
-
pages: any[];
|
|
8466
8091
|
icon?: string | {
|
|
8467
8092
|
name: string;
|
|
8468
8093
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -8473,10 +8098,18 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8473
8098
|
tag?: string | undefined;
|
|
8474
8099
|
hidden?: boolean | undefined;
|
|
8475
8100
|
root?: string | undefined;
|
|
8476
|
-
}
|
|
8477
|
-
|
|
8478
|
-
|
|
8479
|
-
|
|
8101
|
+
} & {
|
|
8102
|
+
openapi?: string | string[] | {
|
|
8103
|
+
source: string;
|
|
8104
|
+
directory?: string | undefined;
|
|
8105
|
+
} | undefined;
|
|
8106
|
+
asyncapi?: string | string[] | {
|
|
8107
|
+
source: string;
|
|
8108
|
+
directory?: string | undefined;
|
|
8109
|
+
} | undefined;
|
|
8110
|
+
} & {
|
|
8111
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
8112
|
+
}))[];
|
|
8480
8113
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
8481
8114
|
};
|
|
8482
8115
|
background?: {
|
|
@@ -8772,10 +8405,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8772
8405
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
8773
8406
|
} | {
|
|
8774
8407
|
groups: ({
|
|
8775
|
-
openapi: string | string[] | {
|
|
8776
|
-
source: string;
|
|
8777
|
-
directory?: string | undefined;
|
|
8778
|
-
};
|
|
8779
8408
|
group: string;
|
|
8780
8409
|
icon?: string | {
|
|
8781
8410
|
name: string;
|
|
@@ -8784,28 +8413,24 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8784
8413
|
} | undefined;
|
|
8785
8414
|
expanded?: boolean | undefined;
|
|
8786
8415
|
public?: boolean | undefined;
|
|
8787
|
-
pages?: any[] | undefined;
|
|
8788
8416
|
tag?: string | undefined;
|
|
8789
8417
|
hidden?: boolean | undefined;
|
|
8790
8418
|
root?: string | undefined;
|
|
8791
|
-
}
|
|
8792
|
-
|
|
8793
|
-
asyncapi: string | string[] | {
|
|
8419
|
+
} & {
|
|
8420
|
+
openapi?: string | string[] | {
|
|
8794
8421
|
source: string;
|
|
8795
8422
|
directory?: string | undefined;
|
|
8796
|
-
};
|
|
8797
|
-
icon?: string | {
|
|
8798
|
-
name: string;
|
|
8799
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8800
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
8801
8423
|
} | undefined;
|
|
8802
|
-
|
|
8803
|
-
|
|
8804
|
-
|
|
8805
|
-
|
|
8806
|
-
|
|
8807
|
-
|
|
8808
|
-
}
|
|
8424
|
+
asyncapi?: string | string[] | {
|
|
8425
|
+
source: string;
|
|
8426
|
+
directory?: string | undefined;
|
|
8427
|
+
} | undefined;
|
|
8428
|
+
} & {
|
|
8429
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
8430
|
+
})[];
|
|
8431
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
8432
|
+
} | {
|
|
8433
|
+
pages: (string | ({
|
|
8809
8434
|
group: string;
|
|
8810
8435
|
icon?: string | {
|
|
8811
8436
|
name: string;
|
|
@@ -8814,14 +8439,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8814
8439
|
} | undefined;
|
|
8815
8440
|
expanded?: boolean | undefined;
|
|
8816
8441
|
public?: boolean | undefined;
|
|
8817
|
-
pages?: any[] | undefined;
|
|
8818
8442
|
tag?: string | undefined;
|
|
8819
8443
|
hidden?: boolean | undefined;
|
|
8820
8444
|
root?: string | undefined;
|
|
8821
|
-
}
|
|
8822
|
-
|
|
8823
|
-
|
|
8824
|
-
|
|
8445
|
+
} & {
|
|
8446
|
+
openapi?: string | string[] | {
|
|
8447
|
+
source: string;
|
|
8448
|
+
directory?: string | undefined;
|
|
8449
|
+
} | undefined;
|
|
8450
|
+
asyncapi?: string | string[] | {
|
|
8451
|
+
source: string;
|
|
8452
|
+
directory?: string | undefined;
|
|
8453
|
+
} | undefined;
|
|
8454
|
+
} & {
|
|
8455
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
8456
|
+
}))[];
|
|
8825
8457
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
8826
8458
|
};
|
|
8827
8459
|
background?: {
|
|
@@ -9617,45 +9249,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9617
9249
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9618
9250
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
9619
9251
|
}, {
|
|
9620
|
-
groups: z.ZodArray<z.
|
|
9621
|
-
group: z.ZodString;
|
|
9622
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
9623
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
9624
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
9625
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
9626
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
9627
|
-
}, "strip", z.ZodTypeAny, {
|
|
9628
|
-
name: string;
|
|
9629
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9630
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
9631
|
-
}, {
|
|
9632
|
-
name: string;
|
|
9633
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9634
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
9635
|
-
}>]>>;
|
|
9636
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
9637
|
-
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
9638
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
9639
|
-
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
9640
|
-
}, {
|
|
9641
|
-
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
9642
|
-
source: z.ZodEffects<z.ZodString, string, string>;
|
|
9643
|
-
directory: z.ZodOptional<z.ZodString>;
|
|
9644
|
-
}, "strict", z.ZodTypeAny, {
|
|
9645
|
-
source: string;
|
|
9646
|
-
directory?: string | undefined;
|
|
9647
|
-
}, {
|
|
9648
|
-
source: string;
|
|
9649
|
-
directory?: string | undefined;
|
|
9650
|
-
}>]>;
|
|
9651
|
-
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
9652
|
-
}>, "strip", z.ZodTypeAny, {
|
|
9653
|
-
openapi: string | string[] | {
|
|
9654
|
-
source: string;
|
|
9655
|
-
directory?: string | undefined;
|
|
9656
|
-
};
|
|
9252
|
+
groups: z.ZodArray<z.ZodType<{
|
|
9657
9253
|
group: string;
|
|
9658
|
-
pages: any[];
|
|
9659
9254
|
icon?: string | {
|
|
9660
9255
|
name: string;
|
|
9661
9256
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -9666,11 +9261,18 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9666
9261
|
tag?: string | undefined;
|
|
9667
9262
|
hidden?: boolean | undefined;
|
|
9668
9263
|
root?: string | undefined;
|
|
9669
|
-
}
|
|
9670
|
-
openapi
|
|
9264
|
+
} & {
|
|
9265
|
+
openapi?: string | string[] | {
|
|
9671
9266
|
source: string;
|
|
9672
9267
|
directory?: string | undefined;
|
|
9673
|
-
};
|
|
9268
|
+
} | undefined;
|
|
9269
|
+
asyncapi?: string | string[] | {
|
|
9270
|
+
source: string;
|
|
9271
|
+
directory?: string | undefined;
|
|
9272
|
+
} | undefined;
|
|
9273
|
+
} & {
|
|
9274
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
9275
|
+
}, z.ZodTypeDef, {
|
|
9674
9276
|
group: string;
|
|
9675
9277
|
icon?: string | {
|
|
9676
9278
|
name: string;
|
|
@@ -9679,49 +9281,24 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9679
9281
|
} | undefined;
|
|
9680
9282
|
expanded?: boolean | undefined;
|
|
9681
9283
|
public?: boolean | undefined;
|
|
9682
|
-
pages?: any[] | undefined;
|
|
9683
9284
|
tag?: string | undefined;
|
|
9684
9285
|
hidden?: boolean | undefined;
|
|
9685
9286
|
root?: string | undefined;
|
|
9686
|
-
}
|
|
9687
|
-
|
|
9688
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
9689
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
9690
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
9691
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
9692
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
9693
|
-
}, "strip", z.ZodTypeAny, {
|
|
9694
|
-
name: string;
|
|
9695
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9696
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
9697
|
-
}, {
|
|
9698
|
-
name: string;
|
|
9699
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9700
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
9701
|
-
}>]>>;
|
|
9702
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
9703
|
-
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
9704
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
9705
|
-
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
9706
|
-
}, {
|
|
9707
|
-
asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
9708
|
-
source: z.ZodEffects<z.ZodString, string, string>;
|
|
9709
|
-
directory: z.ZodOptional<z.ZodString>;
|
|
9710
|
-
}, "strict", z.ZodTypeAny, {
|
|
9287
|
+
} & {
|
|
9288
|
+
openapi?: string | string[] | {
|
|
9711
9289
|
source: string;
|
|
9712
9290
|
directory?: string | undefined;
|
|
9713
|
-
}
|
|
9291
|
+
} | undefined;
|
|
9292
|
+
asyncapi?: string | string[] | {
|
|
9714
9293
|
source: string;
|
|
9715
9294
|
directory?: string | undefined;
|
|
9716
|
-
}
|
|
9717
|
-
|
|
9718
|
-
|
|
9295
|
+
} | undefined;
|
|
9296
|
+
} & {
|
|
9297
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
9298
|
+
}>, "many">;
|
|
9299
|
+
}>, "strip", z.ZodTypeAny, {
|
|
9300
|
+
groups: ({
|
|
9719
9301
|
group: string;
|
|
9720
|
-
pages: any[];
|
|
9721
|
-
asyncapi: string | string[] | {
|
|
9722
|
-
source: string;
|
|
9723
|
-
directory?: string | undefined;
|
|
9724
|
-
};
|
|
9725
9302
|
icon?: string | {
|
|
9726
9303
|
name: string;
|
|
9727
9304
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -9732,59 +9309,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9732
9309
|
tag?: string | undefined;
|
|
9733
9310
|
hidden?: boolean | undefined;
|
|
9734
9311
|
root?: string | undefined;
|
|
9735
|
-
}
|
|
9736
|
-
|
|
9737
|
-
asyncapi: string | string[] | {
|
|
9312
|
+
} & {
|
|
9313
|
+
openapi?: string | string[] | {
|
|
9738
9314
|
source: string;
|
|
9739
9315
|
directory?: string | undefined;
|
|
9740
|
-
};
|
|
9741
|
-
icon?: string | {
|
|
9742
|
-
name: string;
|
|
9743
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9744
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
9745
9316
|
} | undefined;
|
|
9746
|
-
|
|
9747
|
-
|
|
9748
|
-
|
|
9749
|
-
tag?: string | undefined;
|
|
9750
|
-
hidden?: boolean | undefined;
|
|
9751
|
-
root?: string | undefined;
|
|
9752
|
-
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9753
|
-
group: z.ZodString;
|
|
9754
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
9755
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
9756
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
9757
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
9758
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
9759
|
-
}, "strip", z.ZodTypeAny, {
|
|
9760
|
-
name: string;
|
|
9761
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9762
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
9763
|
-
}, {
|
|
9764
|
-
name: string;
|
|
9765
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9766
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
9767
|
-
}>]>>;
|
|
9768
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
9769
|
-
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
9770
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
9771
|
-
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
9772
|
-
}, {
|
|
9773
|
-
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
9774
|
-
}>, "strip", z.ZodTypeAny, {
|
|
9775
|
-
group: string;
|
|
9776
|
-
pages: any[];
|
|
9777
|
-
icon?: string | {
|
|
9778
|
-
name: string;
|
|
9779
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9780
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
9317
|
+
asyncapi?: string | string[] | {
|
|
9318
|
+
source: string;
|
|
9319
|
+
directory?: string | undefined;
|
|
9781
9320
|
} | undefined;
|
|
9782
|
-
|
|
9783
|
-
|
|
9784
|
-
|
|
9785
|
-
|
|
9786
|
-
|
|
9787
|
-
|
|
9321
|
+
} & {
|
|
9322
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
9323
|
+
})[];
|
|
9324
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9325
|
+
}, {
|
|
9326
|
+
groups: ({
|
|
9788
9327
|
group: string;
|
|
9789
9328
|
icon?: string | {
|
|
9790
9329
|
name: string;
|
|
@@ -9793,19 +9332,27 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9793
9332
|
} | undefined;
|
|
9794
9333
|
expanded?: boolean | undefined;
|
|
9795
9334
|
public?: boolean | undefined;
|
|
9796
|
-
pages?: any[] | undefined;
|
|
9797
9335
|
tag?: string | undefined;
|
|
9798
9336
|
hidden?: boolean | undefined;
|
|
9799
9337
|
root?: string | undefined;
|
|
9800
|
-
}
|
|
9801
|
-
|
|
9802
|
-
groups: ({
|
|
9803
|
-
openapi: string | string[] | {
|
|
9338
|
+
} & {
|
|
9339
|
+
openapi?: string | string[] | {
|
|
9804
9340
|
source: string;
|
|
9805
9341
|
directory?: string | undefined;
|
|
9806
|
-
};
|
|
9342
|
+
} | undefined;
|
|
9343
|
+
asyncapi?: string | string[] | {
|
|
9344
|
+
source: string;
|
|
9345
|
+
directory?: string | undefined;
|
|
9346
|
+
} | undefined;
|
|
9347
|
+
} & {
|
|
9348
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
9349
|
+
})[];
|
|
9350
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9351
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9352
|
+
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
9353
|
+
}, {
|
|
9354
|
+
pages: z.ZodArray<z.ZodType<string | ({
|
|
9807
9355
|
group: string;
|
|
9808
|
-
pages: any[];
|
|
9809
9356
|
icon?: string | {
|
|
9810
9357
|
name: string;
|
|
9811
9358
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -9816,26 +9363,19 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9816
9363
|
tag?: string | undefined;
|
|
9817
9364
|
hidden?: boolean | undefined;
|
|
9818
9365
|
root?: string | undefined;
|
|
9819
|
-
}
|
|
9820
|
-
|
|
9821
|
-
pages: any[];
|
|
9822
|
-
asyncapi: string | string[] | {
|
|
9366
|
+
} & {
|
|
9367
|
+
openapi?: string | string[] | {
|
|
9823
9368
|
source: string;
|
|
9824
9369
|
directory?: string | undefined;
|
|
9825
|
-
};
|
|
9826
|
-
icon?: string | {
|
|
9827
|
-
name: string;
|
|
9828
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9829
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
9830
9370
|
} | undefined;
|
|
9831
|
-
|
|
9832
|
-
|
|
9833
|
-
|
|
9834
|
-
|
|
9835
|
-
|
|
9836
|
-
|
|
9371
|
+
asyncapi?: string | string[] | {
|
|
9372
|
+
source: string;
|
|
9373
|
+
directory?: string | undefined;
|
|
9374
|
+
} | undefined;
|
|
9375
|
+
} & {
|
|
9376
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
9377
|
+
}), z.ZodTypeDef, string | ({
|
|
9837
9378
|
group: string;
|
|
9838
|
-
pages: any[];
|
|
9839
9379
|
icon?: string | {
|
|
9840
9380
|
name: string;
|
|
9841
9381
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -9846,14 +9386,20 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9846
9386
|
tag?: string | undefined;
|
|
9847
9387
|
hidden?: boolean | undefined;
|
|
9848
9388
|
root?: string | undefined;
|
|
9849
|
-
}
|
|
9850
|
-
|
|
9851
|
-
}, {
|
|
9852
|
-
groups: ({
|
|
9853
|
-
openapi: string | string[] | {
|
|
9389
|
+
} & {
|
|
9390
|
+
openapi?: string | string[] | {
|
|
9854
9391
|
source: string;
|
|
9855
9392
|
directory?: string | undefined;
|
|
9856
|
-
};
|
|
9393
|
+
} | undefined;
|
|
9394
|
+
asyncapi?: string | string[] | {
|
|
9395
|
+
source: string;
|
|
9396
|
+
directory?: string | undefined;
|
|
9397
|
+
} | undefined;
|
|
9398
|
+
} & {
|
|
9399
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
9400
|
+
})>, "many">;
|
|
9401
|
+
}>, "strip", z.ZodTypeAny, {
|
|
9402
|
+
pages: (string | ({
|
|
9857
9403
|
group: string;
|
|
9858
9404
|
icon?: string | {
|
|
9859
9405
|
name: string;
|
|
@@ -9862,28 +9408,24 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9862
9408
|
} | undefined;
|
|
9863
9409
|
expanded?: boolean | undefined;
|
|
9864
9410
|
public?: boolean | undefined;
|
|
9865
|
-
pages?: any[] | undefined;
|
|
9866
9411
|
tag?: string | undefined;
|
|
9867
9412
|
hidden?: boolean | undefined;
|
|
9868
9413
|
root?: string | undefined;
|
|
9869
|
-
}
|
|
9870
|
-
|
|
9871
|
-
asyncapi: string | string[] | {
|
|
9414
|
+
} & {
|
|
9415
|
+
openapi?: string | string[] | {
|
|
9872
9416
|
source: string;
|
|
9873
9417
|
directory?: string | undefined;
|
|
9874
|
-
};
|
|
9875
|
-
icon?: string | {
|
|
9876
|
-
name: string;
|
|
9877
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9878
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
9879
9418
|
} | undefined;
|
|
9880
|
-
|
|
9881
|
-
|
|
9882
|
-
|
|
9883
|
-
|
|
9884
|
-
|
|
9885
|
-
|
|
9886
|
-
}
|
|
9419
|
+
asyncapi?: string | string[] | {
|
|
9420
|
+
source: string;
|
|
9421
|
+
directory?: string | undefined;
|
|
9422
|
+
} | undefined;
|
|
9423
|
+
} & {
|
|
9424
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
9425
|
+
}))[];
|
|
9426
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9427
|
+
}, {
|
|
9428
|
+
pages: (string | ({
|
|
9887
9429
|
group: string;
|
|
9888
9430
|
icon?: string | {
|
|
9889
9431
|
name: string;
|
|
@@ -9892,21 +9434,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9892
9434
|
} | undefined;
|
|
9893
9435
|
expanded?: boolean | undefined;
|
|
9894
9436
|
public?: boolean | undefined;
|
|
9895
|
-
pages?: any[] | undefined;
|
|
9896
9437
|
tag?: string | undefined;
|
|
9897
9438
|
hidden?: boolean | undefined;
|
|
9898
9439
|
root?: string | undefined;
|
|
9899
|
-
}
|
|
9900
|
-
|
|
9901
|
-
|
|
9902
|
-
|
|
9903
|
-
|
|
9904
|
-
|
|
9905
|
-
|
|
9906
|
-
|
|
9907
|
-
|
|
9908
|
-
|
|
9909
|
-
|
|
9440
|
+
} & {
|
|
9441
|
+
openapi?: string | string[] | {
|
|
9442
|
+
source: string;
|
|
9443
|
+
directory?: string | undefined;
|
|
9444
|
+
} | undefined;
|
|
9445
|
+
asyncapi?: string | string[] | {
|
|
9446
|
+
source: string;
|
|
9447
|
+
directory?: string | undefined;
|
|
9448
|
+
} | undefined;
|
|
9449
|
+
} & {
|
|
9450
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
9451
|
+
}))[];
|
|
9910
9452
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9911
9453
|
}>]>;
|
|
9912
9454
|
footer: z.ZodOptional<z.ZodObject<{
|
|
@@ -10699,12 +10241,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10699
10241
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10700
10242
|
} | {
|
|
10701
10243
|
groups: ({
|
|
10702
|
-
openapi: string | string[] | {
|
|
10703
|
-
source: string;
|
|
10704
|
-
directory?: string | undefined;
|
|
10705
|
-
};
|
|
10706
10244
|
group: string;
|
|
10707
|
-
pages: any[];
|
|
10708
10245
|
icon?: string | {
|
|
10709
10246
|
name: string;
|
|
10710
10247
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -10715,26 +10252,22 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10715
10252
|
tag?: string | undefined;
|
|
10716
10253
|
hidden?: boolean | undefined;
|
|
10717
10254
|
root?: string | undefined;
|
|
10718
|
-
}
|
|
10719
|
-
|
|
10720
|
-
pages: any[];
|
|
10721
|
-
asyncapi: string | string[] | {
|
|
10255
|
+
} & {
|
|
10256
|
+
openapi?: string | string[] | {
|
|
10722
10257
|
source: string;
|
|
10723
10258
|
directory?: string | undefined;
|
|
10724
|
-
};
|
|
10725
|
-
icon?: string | {
|
|
10726
|
-
name: string;
|
|
10727
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10728
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
10729
10259
|
} | undefined;
|
|
10730
|
-
|
|
10731
|
-
|
|
10732
|
-
|
|
10733
|
-
|
|
10734
|
-
|
|
10735
|
-
|
|
10260
|
+
asyncapi?: string | string[] | {
|
|
10261
|
+
source: string;
|
|
10262
|
+
directory?: string | undefined;
|
|
10263
|
+
} | undefined;
|
|
10264
|
+
} & {
|
|
10265
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
10266
|
+
})[];
|
|
10267
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10268
|
+
} | {
|
|
10269
|
+
pages: (string | ({
|
|
10736
10270
|
group: string;
|
|
10737
|
-
pages: any[];
|
|
10738
10271
|
icon?: string | {
|
|
10739
10272
|
name: string;
|
|
10740
10273
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -10745,10 +10278,18 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10745
10278
|
tag?: string | undefined;
|
|
10746
10279
|
hidden?: boolean | undefined;
|
|
10747
10280
|
root?: string | undefined;
|
|
10748
|
-
}
|
|
10749
|
-
|
|
10750
|
-
|
|
10751
|
-
|
|
10281
|
+
} & {
|
|
10282
|
+
openapi?: string | string[] | {
|
|
10283
|
+
source: string;
|
|
10284
|
+
directory?: string | undefined;
|
|
10285
|
+
} | undefined;
|
|
10286
|
+
asyncapi?: string | string[] | {
|
|
10287
|
+
source: string;
|
|
10288
|
+
directory?: string | undefined;
|
|
10289
|
+
} | undefined;
|
|
10290
|
+
} & {
|
|
10291
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
10292
|
+
}))[];
|
|
10752
10293
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10753
10294
|
};
|
|
10754
10295
|
background?: {
|
|
@@ -11044,10 +10585,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11044
10585
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
11045
10586
|
} | {
|
|
11046
10587
|
groups: ({
|
|
11047
|
-
openapi: string | string[] | {
|
|
11048
|
-
source: string;
|
|
11049
|
-
directory?: string | undefined;
|
|
11050
|
-
};
|
|
11051
10588
|
group: string;
|
|
11052
10589
|
icon?: string | {
|
|
11053
10590
|
name: string;
|
|
@@ -11056,28 +10593,24 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11056
10593
|
} | undefined;
|
|
11057
10594
|
expanded?: boolean | undefined;
|
|
11058
10595
|
public?: boolean | undefined;
|
|
11059
|
-
pages?: any[] | undefined;
|
|
11060
10596
|
tag?: string | undefined;
|
|
11061
10597
|
hidden?: boolean | undefined;
|
|
11062
10598
|
root?: string | undefined;
|
|
11063
|
-
}
|
|
11064
|
-
|
|
11065
|
-
asyncapi: string | string[] | {
|
|
10599
|
+
} & {
|
|
10600
|
+
openapi?: string | string[] | {
|
|
11066
10601
|
source: string;
|
|
11067
10602
|
directory?: string | undefined;
|
|
11068
|
-
};
|
|
11069
|
-
icon?: string | {
|
|
11070
|
-
name: string;
|
|
11071
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11072
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
11073
10603
|
} | undefined;
|
|
11074
|
-
|
|
11075
|
-
|
|
11076
|
-
|
|
11077
|
-
|
|
11078
|
-
|
|
11079
|
-
|
|
11080
|
-
}
|
|
10604
|
+
asyncapi?: string | string[] | {
|
|
10605
|
+
source: string;
|
|
10606
|
+
directory?: string | undefined;
|
|
10607
|
+
} | undefined;
|
|
10608
|
+
} & {
|
|
10609
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
10610
|
+
})[];
|
|
10611
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10612
|
+
} | {
|
|
10613
|
+
pages: (string | ({
|
|
11081
10614
|
group: string;
|
|
11082
10615
|
icon?: string | {
|
|
11083
10616
|
name: string;
|
|
@@ -11086,14 +10619,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11086
10619
|
} | undefined;
|
|
11087
10620
|
expanded?: boolean | undefined;
|
|
11088
10621
|
public?: boolean | undefined;
|
|
11089
|
-
pages?: any[] | undefined;
|
|
11090
10622
|
tag?: string | undefined;
|
|
11091
10623
|
hidden?: boolean | undefined;
|
|
11092
10624
|
root?: string | undefined;
|
|
11093
|
-
}
|
|
11094
|
-
|
|
11095
|
-
|
|
11096
|
-
|
|
10625
|
+
} & {
|
|
10626
|
+
openapi?: string | string[] | {
|
|
10627
|
+
source: string;
|
|
10628
|
+
directory?: string | undefined;
|
|
10629
|
+
} | undefined;
|
|
10630
|
+
asyncapi?: string | string[] | {
|
|
10631
|
+
source: string;
|
|
10632
|
+
directory?: string | undefined;
|
|
10633
|
+
} | undefined;
|
|
10634
|
+
} & {
|
|
10635
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
10636
|
+
}))[];
|
|
11097
10637
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
11098
10638
|
};
|
|
11099
10639
|
background?: {
|
|
@@ -11889,45 +11429,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11889
11429
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11890
11430
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
11891
11431
|
}, {
|
|
11892
|
-
groups: z.ZodArray<z.
|
|
11893
|
-
group: z.ZodString;
|
|
11894
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
11895
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
11896
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
11897
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
11898
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
11899
|
-
}, "strip", z.ZodTypeAny, {
|
|
11900
|
-
name: string;
|
|
11901
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11902
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
11903
|
-
}, {
|
|
11904
|
-
name: string;
|
|
11905
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11906
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
11907
|
-
}>]>>;
|
|
11908
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
11909
|
-
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
11910
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
11911
|
-
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
11912
|
-
}, {
|
|
11913
|
-
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
11914
|
-
source: z.ZodEffects<z.ZodString, string, string>;
|
|
11915
|
-
directory: z.ZodOptional<z.ZodString>;
|
|
11916
|
-
}, "strict", z.ZodTypeAny, {
|
|
11917
|
-
source: string;
|
|
11918
|
-
directory?: string | undefined;
|
|
11919
|
-
}, {
|
|
11920
|
-
source: string;
|
|
11921
|
-
directory?: string | undefined;
|
|
11922
|
-
}>]>;
|
|
11923
|
-
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
11924
|
-
}>, "strip", z.ZodTypeAny, {
|
|
11925
|
-
openapi: string | string[] | {
|
|
11926
|
-
source: string;
|
|
11927
|
-
directory?: string | undefined;
|
|
11928
|
-
};
|
|
11432
|
+
groups: z.ZodArray<z.ZodType<{
|
|
11929
11433
|
group: string;
|
|
11930
|
-
pages: any[];
|
|
11931
11434
|
icon?: string | {
|
|
11932
11435
|
name: string;
|
|
11933
11436
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -11938,11 +11441,18 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11938
11441
|
tag?: string | undefined;
|
|
11939
11442
|
hidden?: boolean | undefined;
|
|
11940
11443
|
root?: string | undefined;
|
|
11941
|
-
}
|
|
11942
|
-
openapi
|
|
11444
|
+
} & {
|
|
11445
|
+
openapi?: string | string[] | {
|
|
11943
11446
|
source: string;
|
|
11944
11447
|
directory?: string | undefined;
|
|
11945
|
-
};
|
|
11448
|
+
} | undefined;
|
|
11449
|
+
asyncapi?: string | string[] | {
|
|
11450
|
+
source: string;
|
|
11451
|
+
directory?: string | undefined;
|
|
11452
|
+
} | undefined;
|
|
11453
|
+
} & {
|
|
11454
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
11455
|
+
}, z.ZodTypeDef, {
|
|
11946
11456
|
group: string;
|
|
11947
11457
|
icon?: string | {
|
|
11948
11458
|
name: string;
|
|
@@ -11951,49 +11461,24 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11951
11461
|
} | undefined;
|
|
11952
11462
|
expanded?: boolean | undefined;
|
|
11953
11463
|
public?: boolean | undefined;
|
|
11954
|
-
pages?: any[] | undefined;
|
|
11955
11464
|
tag?: string | undefined;
|
|
11956
11465
|
hidden?: boolean | undefined;
|
|
11957
11466
|
root?: string | undefined;
|
|
11958
|
-
}
|
|
11959
|
-
|
|
11960
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
11961
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
11962
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
11963
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
11964
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
11965
|
-
}, "strip", z.ZodTypeAny, {
|
|
11966
|
-
name: string;
|
|
11967
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11968
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
11969
|
-
}, {
|
|
11970
|
-
name: string;
|
|
11971
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11972
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
11973
|
-
}>]>>;
|
|
11974
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
11975
|
-
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
11976
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
11977
|
-
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
11978
|
-
}, {
|
|
11979
|
-
asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
11980
|
-
source: z.ZodEffects<z.ZodString, string, string>;
|
|
11981
|
-
directory: z.ZodOptional<z.ZodString>;
|
|
11982
|
-
}, "strict", z.ZodTypeAny, {
|
|
11467
|
+
} & {
|
|
11468
|
+
openapi?: string | string[] | {
|
|
11983
11469
|
source: string;
|
|
11984
11470
|
directory?: string | undefined;
|
|
11985
|
-
}
|
|
11471
|
+
} | undefined;
|
|
11472
|
+
asyncapi?: string | string[] | {
|
|
11986
11473
|
source: string;
|
|
11987
11474
|
directory?: string | undefined;
|
|
11988
|
-
}
|
|
11989
|
-
|
|
11990
|
-
|
|
11475
|
+
} | undefined;
|
|
11476
|
+
} & {
|
|
11477
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
11478
|
+
}>, "many">;
|
|
11479
|
+
}>, "strip", z.ZodTypeAny, {
|
|
11480
|
+
groups: ({
|
|
11991
11481
|
group: string;
|
|
11992
|
-
pages: any[];
|
|
11993
|
-
asyncapi: string | string[] | {
|
|
11994
|
-
source: string;
|
|
11995
|
-
directory?: string | undefined;
|
|
11996
|
-
};
|
|
11997
11482
|
icon?: string | {
|
|
11998
11483
|
name: string;
|
|
11999
11484
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -12004,59 +11489,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12004
11489
|
tag?: string | undefined;
|
|
12005
11490
|
hidden?: boolean | undefined;
|
|
12006
11491
|
root?: string | undefined;
|
|
12007
|
-
}
|
|
12008
|
-
|
|
12009
|
-
asyncapi: string | string[] | {
|
|
11492
|
+
} & {
|
|
11493
|
+
openapi?: string | string[] | {
|
|
12010
11494
|
source: string;
|
|
12011
11495
|
directory?: string | undefined;
|
|
12012
|
-
};
|
|
12013
|
-
icon?: string | {
|
|
12014
|
-
name: string;
|
|
12015
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
12016
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
12017
11496
|
} | undefined;
|
|
12018
|
-
|
|
12019
|
-
|
|
12020
|
-
|
|
12021
|
-
tag?: string | undefined;
|
|
12022
|
-
hidden?: boolean | undefined;
|
|
12023
|
-
root?: string | undefined;
|
|
12024
|
-
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
12025
|
-
group: z.ZodString;
|
|
12026
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
12027
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
12028
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
12029
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
12030
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
12031
|
-
}, "strip", z.ZodTypeAny, {
|
|
12032
|
-
name: string;
|
|
12033
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
12034
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
12035
|
-
}, {
|
|
12036
|
-
name: string;
|
|
12037
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
12038
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
12039
|
-
}>]>>;
|
|
12040
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
12041
|
-
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
12042
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
12043
|
-
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
12044
|
-
}, {
|
|
12045
|
-
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
12046
|
-
}>, "strip", z.ZodTypeAny, {
|
|
12047
|
-
group: string;
|
|
12048
|
-
pages: any[];
|
|
12049
|
-
icon?: string | {
|
|
12050
|
-
name: string;
|
|
12051
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
12052
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
11497
|
+
asyncapi?: string | string[] | {
|
|
11498
|
+
source: string;
|
|
11499
|
+
directory?: string | undefined;
|
|
12053
11500
|
} | undefined;
|
|
12054
|
-
|
|
12055
|
-
|
|
12056
|
-
|
|
12057
|
-
|
|
12058
|
-
|
|
12059
|
-
|
|
11501
|
+
} & {
|
|
11502
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
11503
|
+
})[];
|
|
11504
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
11505
|
+
}, {
|
|
11506
|
+
groups: ({
|
|
12060
11507
|
group: string;
|
|
12061
11508
|
icon?: string | {
|
|
12062
11509
|
name: string;
|
|
@@ -12065,19 +11512,27 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12065
11512
|
} | undefined;
|
|
12066
11513
|
expanded?: boolean | undefined;
|
|
12067
11514
|
public?: boolean | undefined;
|
|
12068
|
-
pages?: any[] | undefined;
|
|
12069
11515
|
tag?: string | undefined;
|
|
12070
11516
|
hidden?: boolean | undefined;
|
|
12071
11517
|
root?: string | undefined;
|
|
12072
|
-
}
|
|
12073
|
-
|
|
12074
|
-
groups: ({
|
|
12075
|
-
openapi: string | string[] | {
|
|
11518
|
+
} & {
|
|
11519
|
+
openapi?: string | string[] | {
|
|
12076
11520
|
source: string;
|
|
12077
11521
|
directory?: string | undefined;
|
|
12078
|
-
};
|
|
11522
|
+
} | undefined;
|
|
11523
|
+
asyncapi?: string | string[] | {
|
|
11524
|
+
source: string;
|
|
11525
|
+
directory?: string | undefined;
|
|
11526
|
+
} | undefined;
|
|
11527
|
+
} & {
|
|
11528
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
11529
|
+
})[];
|
|
11530
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
11531
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11532
|
+
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
11533
|
+
}, {
|
|
11534
|
+
pages: z.ZodArray<z.ZodType<string | ({
|
|
12079
11535
|
group: string;
|
|
12080
|
-
pages: any[];
|
|
12081
11536
|
icon?: string | {
|
|
12082
11537
|
name: string;
|
|
12083
11538
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -12088,26 +11543,19 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12088
11543
|
tag?: string | undefined;
|
|
12089
11544
|
hidden?: boolean | undefined;
|
|
12090
11545
|
root?: string | undefined;
|
|
12091
|
-
}
|
|
12092
|
-
|
|
12093
|
-
pages: any[];
|
|
12094
|
-
asyncapi: string | string[] | {
|
|
11546
|
+
} & {
|
|
11547
|
+
openapi?: string | string[] | {
|
|
12095
11548
|
source: string;
|
|
12096
11549
|
directory?: string | undefined;
|
|
12097
|
-
};
|
|
12098
|
-
icon?: string | {
|
|
12099
|
-
name: string;
|
|
12100
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
12101
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
12102
11550
|
} | undefined;
|
|
12103
|
-
|
|
12104
|
-
|
|
12105
|
-
|
|
12106
|
-
|
|
12107
|
-
|
|
12108
|
-
|
|
11551
|
+
asyncapi?: string | string[] | {
|
|
11552
|
+
source: string;
|
|
11553
|
+
directory?: string | undefined;
|
|
11554
|
+
} | undefined;
|
|
11555
|
+
} & {
|
|
11556
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
11557
|
+
}), z.ZodTypeDef, string | ({
|
|
12109
11558
|
group: string;
|
|
12110
|
-
pages: any[];
|
|
12111
11559
|
icon?: string | {
|
|
12112
11560
|
name: string;
|
|
12113
11561
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -12118,14 +11566,20 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12118
11566
|
tag?: string | undefined;
|
|
12119
11567
|
hidden?: boolean | undefined;
|
|
12120
11568
|
root?: string | undefined;
|
|
12121
|
-
}
|
|
12122
|
-
|
|
12123
|
-
}, {
|
|
12124
|
-
groups: ({
|
|
12125
|
-
openapi: string | string[] | {
|
|
11569
|
+
} & {
|
|
11570
|
+
openapi?: string | string[] | {
|
|
12126
11571
|
source: string;
|
|
12127
11572
|
directory?: string | undefined;
|
|
12128
|
-
};
|
|
11573
|
+
} | undefined;
|
|
11574
|
+
asyncapi?: string | string[] | {
|
|
11575
|
+
source: string;
|
|
11576
|
+
directory?: string | undefined;
|
|
11577
|
+
} | undefined;
|
|
11578
|
+
} & {
|
|
11579
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
11580
|
+
})>, "many">;
|
|
11581
|
+
}>, "strip", z.ZodTypeAny, {
|
|
11582
|
+
pages: (string | ({
|
|
12129
11583
|
group: string;
|
|
12130
11584
|
icon?: string | {
|
|
12131
11585
|
name: string;
|
|
@@ -12134,28 +11588,24 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12134
11588
|
} | undefined;
|
|
12135
11589
|
expanded?: boolean | undefined;
|
|
12136
11590
|
public?: boolean | undefined;
|
|
12137
|
-
pages?: any[] | undefined;
|
|
12138
11591
|
tag?: string | undefined;
|
|
12139
11592
|
hidden?: boolean | undefined;
|
|
12140
11593
|
root?: string | undefined;
|
|
12141
|
-
}
|
|
12142
|
-
|
|
12143
|
-
asyncapi: string | string[] | {
|
|
11594
|
+
} & {
|
|
11595
|
+
openapi?: string | string[] | {
|
|
12144
11596
|
source: string;
|
|
12145
11597
|
directory?: string | undefined;
|
|
12146
|
-
};
|
|
12147
|
-
icon?: string | {
|
|
12148
|
-
name: string;
|
|
12149
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
12150
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
12151
11598
|
} | undefined;
|
|
12152
|
-
|
|
12153
|
-
|
|
12154
|
-
|
|
12155
|
-
|
|
12156
|
-
|
|
12157
|
-
|
|
12158
|
-
}
|
|
11599
|
+
asyncapi?: string | string[] | {
|
|
11600
|
+
source: string;
|
|
11601
|
+
directory?: string | undefined;
|
|
11602
|
+
} | undefined;
|
|
11603
|
+
} & {
|
|
11604
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
11605
|
+
}))[];
|
|
11606
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
11607
|
+
}, {
|
|
11608
|
+
pages: (string | ({
|
|
12159
11609
|
group: string;
|
|
12160
11610
|
icon?: string | {
|
|
12161
11611
|
name: string;
|
|
@@ -12164,21 +11614,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12164
11614
|
} | undefined;
|
|
12165
11615
|
expanded?: boolean | undefined;
|
|
12166
11616
|
public?: boolean | undefined;
|
|
12167
|
-
pages?: any[] | undefined;
|
|
12168
11617
|
tag?: string | undefined;
|
|
12169
11618
|
hidden?: boolean | undefined;
|
|
12170
11619
|
root?: string | undefined;
|
|
12171
|
-
}
|
|
12172
|
-
|
|
12173
|
-
|
|
12174
|
-
|
|
12175
|
-
|
|
12176
|
-
|
|
12177
|
-
|
|
12178
|
-
|
|
12179
|
-
|
|
12180
|
-
|
|
12181
|
-
|
|
11620
|
+
} & {
|
|
11621
|
+
openapi?: string | string[] | {
|
|
11622
|
+
source: string;
|
|
11623
|
+
directory?: string | undefined;
|
|
11624
|
+
} | undefined;
|
|
11625
|
+
asyncapi?: string | string[] | {
|
|
11626
|
+
source: string;
|
|
11627
|
+
directory?: string | undefined;
|
|
11628
|
+
} | undefined;
|
|
11629
|
+
} & {
|
|
11630
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
11631
|
+
}))[];
|
|
12182
11632
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
12183
11633
|
}>]>;
|
|
12184
11634
|
footer: z.ZodOptional<z.ZodObject<{
|
|
@@ -12971,12 +12421,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12971
12421
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
12972
12422
|
} | {
|
|
12973
12423
|
groups: ({
|
|
12974
|
-
openapi: string | string[] | {
|
|
12975
|
-
source: string;
|
|
12976
|
-
directory?: string | undefined;
|
|
12977
|
-
};
|
|
12978
12424
|
group: string;
|
|
12979
|
-
pages: any[];
|
|
12980
12425
|
icon?: string | {
|
|
12981
12426
|
name: string;
|
|
12982
12427
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -12987,26 +12432,22 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12987
12432
|
tag?: string | undefined;
|
|
12988
12433
|
hidden?: boolean | undefined;
|
|
12989
12434
|
root?: string | undefined;
|
|
12990
|
-
}
|
|
12991
|
-
|
|
12992
|
-
pages: any[];
|
|
12993
|
-
asyncapi: string | string[] | {
|
|
12435
|
+
} & {
|
|
12436
|
+
openapi?: string | string[] | {
|
|
12994
12437
|
source: string;
|
|
12995
12438
|
directory?: string | undefined;
|
|
12996
|
-
};
|
|
12997
|
-
icon?: string | {
|
|
12998
|
-
name: string;
|
|
12999
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13000
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
13001
12439
|
} | undefined;
|
|
13002
|
-
|
|
13003
|
-
|
|
13004
|
-
|
|
13005
|
-
|
|
13006
|
-
|
|
13007
|
-
|
|
12440
|
+
asyncapi?: string | string[] | {
|
|
12441
|
+
source: string;
|
|
12442
|
+
directory?: string | undefined;
|
|
12443
|
+
} | undefined;
|
|
12444
|
+
} & {
|
|
12445
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
12446
|
+
})[];
|
|
12447
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
12448
|
+
} | {
|
|
12449
|
+
pages: (string | ({
|
|
13008
12450
|
group: string;
|
|
13009
|
-
pages: any[];
|
|
13010
12451
|
icon?: string | {
|
|
13011
12452
|
name: string;
|
|
13012
12453
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -13016,11 +12457,19 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13016
12457
|
public?: boolean | undefined;
|
|
13017
12458
|
tag?: string | undefined;
|
|
13018
12459
|
hidden?: boolean | undefined;
|
|
13019
|
-
root?: string | undefined;
|
|
13020
|
-
}
|
|
13021
|
-
|
|
13022
|
-
|
|
13023
|
-
|
|
12460
|
+
root?: string | undefined;
|
|
12461
|
+
} & {
|
|
12462
|
+
openapi?: string | string[] | {
|
|
12463
|
+
source: string;
|
|
12464
|
+
directory?: string | undefined;
|
|
12465
|
+
} | undefined;
|
|
12466
|
+
asyncapi?: string | string[] | {
|
|
12467
|
+
source: string;
|
|
12468
|
+
directory?: string | undefined;
|
|
12469
|
+
} | undefined;
|
|
12470
|
+
} & {
|
|
12471
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
12472
|
+
}))[];
|
|
13024
12473
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
13025
12474
|
};
|
|
13026
12475
|
background?: {
|
|
@@ -13316,10 +12765,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13316
12765
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
13317
12766
|
} | {
|
|
13318
12767
|
groups: ({
|
|
13319
|
-
openapi: string | string[] | {
|
|
13320
|
-
source: string;
|
|
13321
|
-
directory?: string | undefined;
|
|
13322
|
-
};
|
|
13323
12768
|
group: string;
|
|
13324
12769
|
icon?: string | {
|
|
13325
12770
|
name: string;
|
|
@@ -13328,28 +12773,24 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13328
12773
|
} | undefined;
|
|
13329
12774
|
expanded?: boolean | undefined;
|
|
13330
12775
|
public?: boolean | undefined;
|
|
13331
|
-
pages?: any[] | undefined;
|
|
13332
12776
|
tag?: string | undefined;
|
|
13333
12777
|
hidden?: boolean | undefined;
|
|
13334
12778
|
root?: string | undefined;
|
|
13335
|
-
}
|
|
13336
|
-
|
|
13337
|
-
asyncapi: string | string[] | {
|
|
12779
|
+
} & {
|
|
12780
|
+
openapi?: string | string[] | {
|
|
13338
12781
|
source: string;
|
|
13339
12782
|
directory?: string | undefined;
|
|
13340
|
-
};
|
|
13341
|
-
icon?: string | {
|
|
13342
|
-
name: string;
|
|
13343
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13344
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
13345
12783
|
} | undefined;
|
|
13346
|
-
|
|
13347
|
-
|
|
13348
|
-
|
|
13349
|
-
|
|
13350
|
-
|
|
13351
|
-
|
|
13352
|
-
}
|
|
12784
|
+
asyncapi?: string | string[] | {
|
|
12785
|
+
source: string;
|
|
12786
|
+
directory?: string | undefined;
|
|
12787
|
+
} | undefined;
|
|
12788
|
+
} & {
|
|
12789
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
12790
|
+
})[];
|
|
12791
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
12792
|
+
} | {
|
|
12793
|
+
pages: (string | ({
|
|
13353
12794
|
group: string;
|
|
13354
12795
|
icon?: string | {
|
|
13355
12796
|
name: string;
|
|
@@ -13358,14 +12799,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13358
12799
|
} | undefined;
|
|
13359
12800
|
expanded?: boolean | undefined;
|
|
13360
12801
|
public?: boolean | undefined;
|
|
13361
|
-
pages?: any[] | undefined;
|
|
13362
12802
|
tag?: string | undefined;
|
|
13363
12803
|
hidden?: boolean | undefined;
|
|
13364
12804
|
root?: string | undefined;
|
|
13365
|
-
}
|
|
13366
|
-
|
|
13367
|
-
|
|
13368
|
-
|
|
12805
|
+
} & {
|
|
12806
|
+
openapi?: string | string[] | {
|
|
12807
|
+
source: string;
|
|
12808
|
+
directory?: string | undefined;
|
|
12809
|
+
} | undefined;
|
|
12810
|
+
asyncapi?: string | string[] | {
|
|
12811
|
+
source: string;
|
|
12812
|
+
directory?: string | undefined;
|
|
12813
|
+
} | undefined;
|
|
12814
|
+
} & {
|
|
12815
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
12816
|
+
}))[];
|
|
13369
12817
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
13370
12818
|
};
|
|
13371
12819
|
background?: {
|
|
@@ -14161,45 +13609,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14161
13609
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
14162
13610
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
14163
13611
|
}, {
|
|
14164
|
-
groups: z.ZodArray<z.
|
|
14165
|
-
group: z.ZodString;
|
|
14166
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
14167
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
14168
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
14169
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
14170
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
14171
|
-
}, "strip", z.ZodTypeAny, {
|
|
14172
|
-
name: string;
|
|
14173
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
14174
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
14175
|
-
}, {
|
|
14176
|
-
name: string;
|
|
14177
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
14178
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
14179
|
-
}>]>>;
|
|
14180
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
14181
|
-
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
14182
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
14183
|
-
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
14184
|
-
}, {
|
|
14185
|
-
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
14186
|
-
source: z.ZodEffects<z.ZodString, string, string>;
|
|
14187
|
-
directory: z.ZodOptional<z.ZodString>;
|
|
14188
|
-
}, "strict", z.ZodTypeAny, {
|
|
14189
|
-
source: string;
|
|
14190
|
-
directory?: string | undefined;
|
|
14191
|
-
}, {
|
|
14192
|
-
source: string;
|
|
14193
|
-
directory?: string | undefined;
|
|
14194
|
-
}>]>;
|
|
14195
|
-
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
14196
|
-
}>, "strip", z.ZodTypeAny, {
|
|
14197
|
-
openapi: string | string[] | {
|
|
14198
|
-
source: string;
|
|
14199
|
-
directory?: string | undefined;
|
|
14200
|
-
};
|
|
13612
|
+
groups: z.ZodArray<z.ZodType<{
|
|
14201
13613
|
group: string;
|
|
14202
|
-
pages: any[];
|
|
14203
13614
|
icon?: string | {
|
|
14204
13615
|
name: string;
|
|
14205
13616
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -14210,11 +13621,18 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14210
13621
|
tag?: string | undefined;
|
|
14211
13622
|
hidden?: boolean | undefined;
|
|
14212
13623
|
root?: string | undefined;
|
|
14213
|
-
}
|
|
14214
|
-
openapi
|
|
13624
|
+
} & {
|
|
13625
|
+
openapi?: string | string[] | {
|
|
14215
13626
|
source: string;
|
|
14216
13627
|
directory?: string | undefined;
|
|
14217
|
-
};
|
|
13628
|
+
} | undefined;
|
|
13629
|
+
asyncapi?: string | string[] | {
|
|
13630
|
+
source: string;
|
|
13631
|
+
directory?: string | undefined;
|
|
13632
|
+
} | undefined;
|
|
13633
|
+
} & {
|
|
13634
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
13635
|
+
}, z.ZodTypeDef, {
|
|
14218
13636
|
group: string;
|
|
14219
13637
|
icon?: string | {
|
|
14220
13638
|
name: string;
|
|
@@ -14223,49 +13641,24 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14223
13641
|
} | undefined;
|
|
14224
13642
|
expanded?: boolean | undefined;
|
|
14225
13643
|
public?: boolean | undefined;
|
|
14226
|
-
pages?: any[] | undefined;
|
|
14227
13644
|
tag?: string | undefined;
|
|
14228
13645
|
hidden?: boolean | undefined;
|
|
14229
13646
|
root?: string | undefined;
|
|
14230
|
-
}
|
|
14231
|
-
|
|
14232
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
14233
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
14234
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
14235
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
14236
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
14237
|
-
}, "strip", z.ZodTypeAny, {
|
|
14238
|
-
name: string;
|
|
14239
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
14240
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
14241
|
-
}, {
|
|
14242
|
-
name: string;
|
|
14243
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
14244
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
14245
|
-
}>]>>;
|
|
14246
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
14247
|
-
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
14248
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
14249
|
-
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
14250
|
-
}, {
|
|
14251
|
-
asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
14252
|
-
source: z.ZodEffects<z.ZodString, string, string>;
|
|
14253
|
-
directory: z.ZodOptional<z.ZodString>;
|
|
14254
|
-
}, "strict", z.ZodTypeAny, {
|
|
13647
|
+
} & {
|
|
13648
|
+
openapi?: string | string[] | {
|
|
14255
13649
|
source: string;
|
|
14256
13650
|
directory?: string | undefined;
|
|
14257
|
-
}
|
|
13651
|
+
} | undefined;
|
|
13652
|
+
asyncapi?: string | string[] | {
|
|
14258
13653
|
source: string;
|
|
14259
13654
|
directory?: string | undefined;
|
|
14260
|
-
}
|
|
14261
|
-
|
|
14262
|
-
|
|
13655
|
+
} | undefined;
|
|
13656
|
+
} & {
|
|
13657
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
13658
|
+
}>, "many">;
|
|
13659
|
+
}>, "strip", z.ZodTypeAny, {
|
|
13660
|
+
groups: ({
|
|
14263
13661
|
group: string;
|
|
14264
|
-
pages: any[];
|
|
14265
|
-
asyncapi: string | string[] | {
|
|
14266
|
-
source: string;
|
|
14267
|
-
directory?: string | undefined;
|
|
14268
|
-
};
|
|
14269
13662
|
icon?: string | {
|
|
14270
13663
|
name: string;
|
|
14271
13664
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -14276,59 +13669,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14276
13669
|
tag?: string | undefined;
|
|
14277
13670
|
hidden?: boolean | undefined;
|
|
14278
13671
|
root?: string | undefined;
|
|
14279
|
-
}
|
|
14280
|
-
|
|
14281
|
-
asyncapi: string | string[] | {
|
|
13672
|
+
} & {
|
|
13673
|
+
openapi?: string | string[] | {
|
|
14282
13674
|
source: string;
|
|
14283
13675
|
directory?: string | undefined;
|
|
14284
|
-
};
|
|
14285
|
-
icon?: string | {
|
|
14286
|
-
name: string;
|
|
14287
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
14288
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
14289
13676
|
} | undefined;
|
|
14290
|
-
|
|
14291
|
-
|
|
14292
|
-
|
|
14293
|
-
tag?: string | undefined;
|
|
14294
|
-
hidden?: boolean | undefined;
|
|
14295
|
-
root?: string | undefined;
|
|
14296
|
-
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
14297
|
-
group: z.ZodString;
|
|
14298
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
14299
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
14300
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
14301
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
14302
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
14303
|
-
}, "strip", z.ZodTypeAny, {
|
|
14304
|
-
name: string;
|
|
14305
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
14306
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
14307
|
-
}, {
|
|
14308
|
-
name: string;
|
|
14309
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
14310
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
14311
|
-
}>]>>;
|
|
14312
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
14313
|
-
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
14314
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
14315
|
-
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
14316
|
-
}, {
|
|
14317
|
-
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
14318
|
-
}>, "strip", z.ZodTypeAny, {
|
|
14319
|
-
group: string;
|
|
14320
|
-
pages: any[];
|
|
14321
|
-
icon?: string | {
|
|
14322
|
-
name: string;
|
|
14323
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
14324
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
13677
|
+
asyncapi?: string | string[] | {
|
|
13678
|
+
source: string;
|
|
13679
|
+
directory?: string | undefined;
|
|
14325
13680
|
} | undefined;
|
|
14326
|
-
|
|
14327
|
-
|
|
14328
|
-
|
|
14329
|
-
|
|
14330
|
-
|
|
14331
|
-
|
|
13681
|
+
} & {
|
|
13682
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
13683
|
+
})[];
|
|
13684
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
13685
|
+
}, {
|
|
13686
|
+
groups: ({
|
|
14332
13687
|
group: string;
|
|
14333
13688
|
icon?: string | {
|
|
14334
13689
|
name: string;
|
|
@@ -14337,19 +13692,27 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14337
13692
|
} | undefined;
|
|
14338
13693
|
expanded?: boolean | undefined;
|
|
14339
13694
|
public?: boolean | undefined;
|
|
14340
|
-
pages?: any[] | undefined;
|
|
14341
13695
|
tag?: string | undefined;
|
|
14342
13696
|
hidden?: boolean | undefined;
|
|
14343
13697
|
root?: string | undefined;
|
|
14344
|
-
}
|
|
14345
|
-
|
|
14346
|
-
groups: ({
|
|
14347
|
-
openapi: string | string[] | {
|
|
13698
|
+
} & {
|
|
13699
|
+
openapi?: string | string[] | {
|
|
14348
13700
|
source: string;
|
|
14349
13701
|
directory?: string | undefined;
|
|
14350
|
-
};
|
|
13702
|
+
} | undefined;
|
|
13703
|
+
asyncapi?: string | string[] | {
|
|
13704
|
+
source: string;
|
|
13705
|
+
directory?: string | undefined;
|
|
13706
|
+
} | undefined;
|
|
13707
|
+
} & {
|
|
13708
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
13709
|
+
})[];
|
|
13710
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
13711
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
13712
|
+
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
13713
|
+
}, {
|
|
13714
|
+
pages: z.ZodArray<z.ZodType<string | ({
|
|
14351
13715
|
group: string;
|
|
14352
|
-
pages: any[];
|
|
14353
13716
|
icon?: string | {
|
|
14354
13717
|
name: string;
|
|
14355
13718
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -14360,26 +13723,19 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14360
13723
|
tag?: string | undefined;
|
|
14361
13724
|
hidden?: boolean | undefined;
|
|
14362
13725
|
root?: string | undefined;
|
|
14363
|
-
}
|
|
14364
|
-
|
|
14365
|
-
pages: any[];
|
|
14366
|
-
asyncapi: string | string[] | {
|
|
13726
|
+
} & {
|
|
13727
|
+
openapi?: string | string[] | {
|
|
14367
13728
|
source: string;
|
|
14368
13729
|
directory?: string | undefined;
|
|
14369
|
-
};
|
|
14370
|
-
icon?: string | {
|
|
14371
|
-
name: string;
|
|
14372
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
14373
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
14374
13730
|
} | undefined;
|
|
14375
|
-
|
|
14376
|
-
|
|
14377
|
-
|
|
14378
|
-
|
|
14379
|
-
|
|
14380
|
-
|
|
13731
|
+
asyncapi?: string | string[] | {
|
|
13732
|
+
source: string;
|
|
13733
|
+
directory?: string | undefined;
|
|
13734
|
+
} | undefined;
|
|
13735
|
+
} & {
|
|
13736
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
13737
|
+
}), z.ZodTypeDef, string | ({
|
|
14381
13738
|
group: string;
|
|
14382
|
-
pages: any[];
|
|
14383
13739
|
icon?: string | {
|
|
14384
13740
|
name: string;
|
|
14385
13741
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -14390,14 +13746,20 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14390
13746
|
tag?: string | undefined;
|
|
14391
13747
|
hidden?: boolean | undefined;
|
|
14392
13748
|
root?: string | undefined;
|
|
14393
|
-
}
|
|
14394
|
-
|
|
14395
|
-
}, {
|
|
14396
|
-
groups: ({
|
|
14397
|
-
openapi: string | string[] | {
|
|
13749
|
+
} & {
|
|
13750
|
+
openapi?: string | string[] | {
|
|
14398
13751
|
source: string;
|
|
14399
13752
|
directory?: string | undefined;
|
|
14400
|
-
};
|
|
13753
|
+
} | undefined;
|
|
13754
|
+
asyncapi?: string | string[] | {
|
|
13755
|
+
source: string;
|
|
13756
|
+
directory?: string | undefined;
|
|
13757
|
+
} | undefined;
|
|
13758
|
+
} & {
|
|
13759
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
13760
|
+
})>, "many">;
|
|
13761
|
+
}>, "strip", z.ZodTypeAny, {
|
|
13762
|
+
pages: (string | ({
|
|
14401
13763
|
group: string;
|
|
14402
13764
|
icon?: string | {
|
|
14403
13765
|
name: string;
|
|
@@ -14406,28 +13768,24 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14406
13768
|
} | undefined;
|
|
14407
13769
|
expanded?: boolean | undefined;
|
|
14408
13770
|
public?: boolean | undefined;
|
|
14409
|
-
pages?: any[] | undefined;
|
|
14410
13771
|
tag?: string | undefined;
|
|
14411
13772
|
hidden?: boolean | undefined;
|
|
14412
13773
|
root?: string | undefined;
|
|
14413
|
-
}
|
|
14414
|
-
|
|
14415
|
-
asyncapi: string | string[] | {
|
|
13774
|
+
} & {
|
|
13775
|
+
openapi?: string | string[] | {
|
|
14416
13776
|
source: string;
|
|
14417
13777
|
directory?: string | undefined;
|
|
14418
|
-
};
|
|
14419
|
-
icon?: string | {
|
|
14420
|
-
name: string;
|
|
14421
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
14422
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
14423
13778
|
} | undefined;
|
|
14424
|
-
|
|
14425
|
-
|
|
14426
|
-
|
|
14427
|
-
|
|
14428
|
-
|
|
14429
|
-
|
|
14430
|
-
}
|
|
13779
|
+
asyncapi?: string | string[] | {
|
|
13780
|
+
source: string;
|
|
13781
|
+
directory?: string | undefined;
|
|
13782
|
+
} | undefined;
|
|
13783
|
+
} & {
|
|
13784
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
13785
|
+
}))[];
|
|
13786
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
13787
|
+
}, {
|
|
13788
|
+
pages: (string | ({
|
|
14431
13789
|
group: string;
|
|
14432
13790
|
icon?: string | {
|
|
14433
13791
|
name: string;
|
|
@@ -14436,21 +13794,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14436
13794
|
} | undefined;
|
|
14437
13795
|
expanded?: boolean | undefined;
|
|
14438
13796
|
public?: boolean | undefined;
|
|
14439
|
-
pages?: any[] | undefined;
|
|
14440
13797
|
tag?: string | undefined;
|
|
14441
13798
|
hidden?: boolean | undefined;
|
|
14442
13799
|
root?: string | undefined;
|
|
14443
|
-
}
|
|
14444
|
-
|
|
14445
|
-
|
|
14446
|
-
|
|
14447
|
-
|
|
14448
|
-
|
|
14449
|
-
|
|
14450
|
-
|
|
14451
|
-
|
|
14452
|
-
|
|
14453
|
-
|
|
13800
|
+
} & {
|
|
13801
|
+
openapi?: string | string[] | {
|
|
13802
|
+
source: string;
|
|
13803
|
+
directory?: string | undefined;
|
|
13804
|
+
} | undefined;
|
|
13805
|
+
asyncapi?: string | string[] | {
|
|
13806
|
+
source: string;
|
|
13807
|
+
directory?: string | undefined;
|
|
13808
|
+
} | undefined;
|
|
13809
|
+
} & {
|
|
13810
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
13811
|
+
}))[];
|
|
14454
13812
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
14455
13813
|
}>]>;
|
|
14456
13814
|
footer: z.ZodOptional<z.ZodObject<{
|
|
@@ -15243,12 +14601,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15243
14601
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15244
14602
|
} | {
|
|
15245
14603
|
groups: ({
|
|
15246
|
-
openapi: string | string[] | {
|
|
15247
|
-
source: string;
|
|
15248
|
-
directory?: string | undefined;
|
|
15249
|
-
};
|
|
15250
14604
|
group: string;
|
|
15251
|
-
pages: any[];
|
|
15252
14605
|
icon?: string | {
|
|
15253
14606
|
name: string;
|
|
15254
14607
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -15259,26 +14612,22 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15259
14612
|
tag?: string | undefined;
|
|
15260
14613
|
hidden?: boolean | undefined;
|
|
15261
14614
|
root?: string | undefined;
|
|
15262
|
-
}
|
|
15263
|
-
|
|
15264
|
-
pages: any[];
|
|
15265
|
-
asyncapi: string | string[] | {
|
|
14615
|
+
} & {
|
|
14616
|
+
openapi?: string | string[] | {
|
|
15266
14617
|
source: string;
|
|
15267
14618
|
directory?: string | undefined;
|
|
15268
|
-
};
|
|
15269
|
-
icon?: string | {
|
|
15270
|
-
name: string;
|
|
15271
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
15272
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
15273
14619
|
} | undefined;
|
|
15274
|
-
|
|
15275
|
-
|
|
15276
|
-
|
|
15277
|
-
|
|
15278
|
-
|
|
15279
|
-
|
|
14620
|
+
asyncapi?: string | string[] | {
|
|
14621
|
+
source: string;
|
|
14622
|
+
directory?: string | undefined;
|
|
14623
|
+
} | undefined;
|
|
14624
|
+
} & {
|
|
14625
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
14626
|
+
})[];
|
|
14627
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
14628
|
+
} | {
|
|
14629
|
+
pages: (string | ({
|
|
15280
14630
|
group: string;
|
|
15281
|
-
pages: any[];
|
|
15282
14631
|
icon?: string | {
|
|
15283
14632
|
name: string;
|
|
15284
14633
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -15289,10 +14638,18 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15289
14638
|
tag?: string | undefined;
|
|
15290
14639
|
hidden?: boolean | undefined;
|
|
15291
14640
|
root?: string | undefined;
|
|
15292
|
-
}
|
|
15293
|
-
|
|
15294
|
-
|
|
15295
|
-
|
|
14641
|
+
} & {
|
|
14642
|
+
openapi?: string | string[] | {
|
|
14643
|
+
source: string;
|
|
14644
|
+
directory?: string | undefined;
|
|
14645
|
+
} | undefined;
|
|
14646
|
+
asyncapi?: string | string[] | {
|
|
14647
|
+
source: string;
|
|
14648
|
+
directory?: string | undefined;
|
|
14649
|
+
} | undefined;
|
|
14650
|
+
} & {
|
|
14651
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
14652
|
+
}))[];
|
|
15296
14653
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15297
14654
|
};
|
|
15298
14655
|
background?: {
|
|
@@ -15584,32 +14941,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15584
14941
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
15585
14942
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15586
14943
|
} | {
|
|
15587
|
-
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
15588
|
-
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15589
|
-
} | {
|
|
15590
|
-
groups: ({
|
|
15591
|
-
openapi: string | string[] | {
|
|
15592
|
-
source: string;
|
|
15593
|
-
directory?: string | undefined;
|
|
15594
|
-
};
|
|
15595
|
-
group: string;
|
|
15596
|
-
icon?: string | {
|
|
15597
|
-
name: string;
|
|
15598
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
15599
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
15600
|
-
} | undefined;
|
|
15601
|
-
expanded?: boolean | undefined;
|
|
15602
|
-
public?: boolean | undefined;
|
|
15603
|
-
pages?: any[] | undefined;
|
|
15604
|
-
tag?: string | undefined;
|
|
15605
|
-
hidden?: boolean | undefined;
|
|
15606
|
-
root?: string | undefined;
|
|
15607
|
-
} | {
|
|
14944
|
+
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
14945
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
14946
|
+
} | {
|
|
14947
|
+
groups: ({
|
|
15608
14948
|
group: string;
|
|
15609
|
-
asyncapi: string | string[] | {
|
|
15610
|
-
source: string;
|
|
15611
|
-
directory?: string | undefined;
|
|
15612
|
-
};
|
|
15613
14949
|
icon?: string | {
|
|
15614
14950
|
name: string;
|
|
15615
14951
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -15617,11 +14953,24 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15617
14953
|
} | undefined;
|
|
15618
14954
|
expanded?: boolean | undefined;
|
|
15619
14955
|
public?: boolean | undefined;
|
|
15620
|
-
pages?: any[] | undefined;
|
|
15621
14956
|
tag?: string | undefined;
|
|
15622
14957
|
hidden?: boolean | undefined;
|
|
15623
14958
|
root?: string | undefined;
|
|
15624
|
-
}
|
|
14959
|
+
} & {
|
|
14960
|
+
openapi?: string | string[] | {
|
|
14961
|
+
source: string;
|
|
14962
|
+
directory?: string | undefined;
|
|
14963
|
+
} | undefined;
|
|
14964
|
+
asyncapi?: string | string[] | {
|
|
14965
|
+
source: string;
|
|
14966
|
+
directory?: string | undefined;
|
|
14967
|
+
} | undefined;
|
|
14968
|
+
} & {
|
|
14969
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
14970
|
+
})[];
|
|
14971
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
14972
|
+
} | {
|
|
14973
|
+
pages: (string | ({
|
|
15625
14974
|
group: string;
|
|
15626
14975
|
icon?: string | {
|
|
15627
14976
|
name: string;
|
|
@@ -15630,14 +14979,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15630
14979
|
} | undefined;
|
|
15631
14980
|
expanded?: boolean | undefined;
|
|
15632
14981
|
public?: boolean | undefined;
|
|
15633
|
-
pages?: any[] | undefined;
|
|
15634
14982
|
tag?: string | undefined;
|
|
15635
14983
|
hidden?: boolean | undefined;
|
|
15636
14984
|
root?: string | undefined;
|
|
15637
|
-
}
|
|
15638
|
-
|
|
15639
|
-
|
|
15640
|
-
|
|
14985
|
+
} & {
|
|
14986
|
+
openapi?: string | string[] | {
|
|
14987
|
+
source: string;
|
|
14988
|
+
directory?: string | undefined;
|
|
14989
|
+
} | undefined;
|
|
14990
|
+
asyncapi?: string | string[] | {
|
|
14991
|
+
source: string;
|
|
14992
|
+
directory?: string | undefined;
|
|
14993
|
+
} | undefined;
|
|
14994
|
+
} & {
|
|
14995
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
14996
|
+
}))[];
|
|
15641
14997
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15642
14998
|
};
|
|
15643
14999
|
background?: {
|
|
@@ -16434,45 +15790,8 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
16434
15790
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
16435
15791
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
16436
15792
|
}, {
|
|
16437
|
-
groups: z.ZodArray<z.
|
|
16438
|
-
group: z.ZodString;
|
|
16439
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
16440
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
16441
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
16442
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
16443
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
16444
|
-
}, "strip", z.ZodTypeAny, {
|
|
16445
|
-
name: string;
|
|
16446
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
16447
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
16448
|
-
}, {
|
|
16449
|
-
name: string;
|
|
16450
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
16451
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
16452
|
-
}>]>>;
|
|
16453
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
16454
|
-
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
16455
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
16456
|
-
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
16457
|
-
}, {
|
|
16458
|
-
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
16459
|
-
source: z.ZodEffects<z.ZodString, string, string>;
|
|
16460
|
-
directory: z.ZodOptional<z.ZodString>;
|
|
16461
|
-
}, "strict", z.ZodTypeAny, {
|
|
16462
|
-
source: string;
|
|
16463
|
-
directory?: string | undefined;
|
|
16464
|
-
}, {
|
|
16465
|
-
source: string;
|
|
16466
|
-
directory?: string | undefined;
|
|
16467
|
-
}>]>;
|
|
16468
|
-
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
16469
|
-
}>, "strip", z.ZodTypeAny, {
|
|
16470
|
-
openapi: string | string[] | {
|
|
16471
|
-
source: string;
|
|
16472
|
-
directory?: string | undefined;
|
|
16473
|
-
};
|
|
15793
|
+
groups: z.ZodArray<z.ZodType<{
|
|
16474
15794
|
group: string;
|
|
16475
|
-
pages: any[];
|
|
16476
15795
|
icon?: string | {
|
|
16477
15796
|
name: string;
|
|
16478
15797
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -16483,11 +15802,18 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
16483
15802
|
tag?: string | undefined;
|
|
16484
15803
|
hidden?: boolean | undefined;
|
|
16485
15804
|
root?: string | undefined;
|
|
16486
|
-
}
|
|
16487
|
-
openapi
|
|
15805
|
+
} & {
|
|
15806
|
+
openapi?: string | string[] | {
|
|
16488
15807
|
source: string;
|
|
16489
15808
|
directory?: string | undefined;
|
|
16490
|
-
};
|
|
15809
|
+
} | undefined;
|
|
15810
|
+
asyncapi?: string | string[] | {
|
|
15811
|
+
source: string;
|
|
15812
|
+
directory?: string | undefined;
|
|
15813
|
+
} | undefined;
|
|
15814
|
+
} & {
|
|
15815
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
15816
|
+
}, z.ZodTypeDef, {
|
|
16491
15817
|
group: string;
|
|
16492
15818
|
icon?: string | {
|
|
16493
15819
|
name: string;
|
|
@@ -16496,49 +15822,24 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
16496
15822
|
} | undefined;
|
|
16497
15823
|
expanded?: boolean | undefined;
|
|
16498
15824
|
public?: boolean | undefined;
|
|
16499
|
-
pages?: any[] | undefined;
|
|
16500
15825
|
tag?: string | undefined;
|
|
16501
15826
|
hidden?: boolean | undefined;
|
|
16502
15827
|
root?: string | undefined;
|
|
16503
|
-
}
|
|
16504
|
-
|
|
16505
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
16506
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
16507
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
16508
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
16509
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
16510
|
-
}, "strip", z.ZodTypeAny, {
|
|
16511
|
-
name: string;
|
|
16512
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
16513
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
16514
|
-
}, {
|
|
16515
|
-
name: string;
|
|
16516
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
16517
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
16518
|
-
}>]>>;
|
|
16519
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
16520
|
-
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
16521
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
16522
|
-
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
16523
|
-
}, {
|
|
16524
|
-
asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
16525
|
-
source: z.ZodEffects<z.ZodString, string, string>;
|
|
16526
|
-
directory: z.ZodOptional<z.ZodString>;
|
|
16527
|
-
}, "strict", z.ZodTypeAny, {
|
|
15828
|
+
} & {
|
|
15829
|
+
openapi?: string | string[] | {
|
|
16528
15830
|
source: string;
|
|
16529
15831
|
directory?: string | undefined;
|
|
16530
|
-
}
|
|
15832
|
+
} | undefined;
|
|
15833
|
+
asyncapi?: string | string[] | {
|
|
16531
15834
|
source: string;
|
|
16532
15835
|
directory?: string | undefined;
|
|
16533
|
-
}
|
|
16534
|
-
|
|
16535
|
-
|
|
15836
|
+
} | undefined;
|
|
15837
|
+
} & {
|
|
15838
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
15839
|
+
}>, "many">;
|
|
15840
|
+
}>, "strip", z.ZodTypeAny, {
|
|
15841
|
+
groups: ({
|
|
16536
15842
|
group: string;
|
|
16537
|
-
pages: any[];
|
|
16538
|
-
asyncapi: string | string[] | {
|
|
16539
|
-
source: string;
|
|
16540
|
-
directory?: string | undefined;
|
|
16541
|
-
};
|
|
16542
15843
|
icon?: string | {
|
|
16543
15844
|
name: string;
|
|
16544
15845
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -16549,59 +15850,21 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
16549
15850
|
tag?: string | undefined;
|
|
16550
15851
|
hidden?: boolean | undefined;
|
|
16551
15852
|
root?: string | undefined;
|
|
16552
|
-
}
|
|
16553
|
-
|
|
16554
|
-
asyncapi: string | string[] | {
|
|
15853
|
+
} & {
|
|
15854
|
+
openapi?: string | string[] | {
|
|
16555
15855
|
source: string;
|
|
16556
15856
|
directory?: string | undefined;
|
|
16557
|
-
};
|
|
16558
|
-
icon?: string | {
|
|
16559
|
-
name: string;
|
|
16560
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
16561
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
16562
15857
|
} | undefined;
|
|
16563
|
-
|
|
16564
|
-
|
|
16565
|
-
|
|
16566
|
-
tag?: string | undefined;
|
|
16567
|
-
hidden?: boolean | undefined;
|
|
16568
|
-
root?: string | undefined;
|
|
16569
|
-
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
16570
|
-
group: z.ZodString;
|
|
16571
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
16572
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
16573
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
16574
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
16575
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
16576
|
-
}, "strip", z.ZodTypeAny, {
|
|
16577
|
-
name: string;
|
|
16578
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
16579
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
16580
|
-
}, {
|
|
16581
|
-
name: string;
|
|
16582
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
16583
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
16584
|
-
}>]>>;
|
|
16585
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
16586
|
-
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
16587
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
16588
|
-
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
16589
|
-
}, {
|
|
16590
|
-
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
16591
|
-
}>, "strip", z.ZodTypeAny, {
|
|
16592
|
-
group: string;
|
|
16593
|
-
pages: any[];
|
|
16594
|
-
icon?: string | {
|
|
16595
|
-
name: string;
|
|
16596
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
16597
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
15858
|
+
asyncapi?: string | string[] | {
|
|
15859
|
+
source: string;
|
|
15860
|
+
directory?: string | undefined;
|
|
16598
15861
|
} | undefined;
|
|
16599
|
-
|
|
16600
|
-
|
|
16601
|
-
|
|
16602
|
-
|
|
16603
|
-
|
|
16604
|
-
|
|
15862
|
+
} & {
|
|
15863
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
15864
|
+
})[];
|
|
15865
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15866
|
+
}, {
|
|
15867
|
+
groups: ({
|
|
16605
15868
|
group: string;
|
|
16606
15869
|
icon?: string | {
|
|
16607
15870
|
name: string;
|
|
@@ -16610,19 +15873,27 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
16610
15873
|
} | undefined;
|
|
16611
15874
|
expanded?: boolean | undefined;
|
|
16612
15875
|
public?: boolean | undefined;
|
|
16613
|
-
pages?: any[] | undefined;
|
|
16614
15876
|
tag?: string | undefined;
|
|
16615
15877
|
hidden?: boolean | undefined;
|
|
16616
15878
|
root?: string | undefined;
|
|
16617
|
-
}
|
|
16618
|
-
|
|
16619
|
-
groups: ({
|
|
16620
|
-
openapi: string | string[] | {
|
|
15879
|
+
} & {
|
|
15880
|
+
openapi?: string | string[] | {
|
|
16621
15881
|
source: string;
|
|
16622
15882
|
directory?: string | undefined;
|
|
16623
|
-
};
|
|
15883
|
+
} | undefined;
|
|
15884
|
+
asyncapi?: string | string[] | {
|
|
15885
|
+
source: string;
|
|
15886
|
+
directory?: string | undefined;
|
|
15887
|
+
} | undefined;
|
|
15888
|
+
} & {
|
|
15889
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
15890
|
+
})[];
|
|
15891
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15892
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
15893
|
+
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
15894
|
+
}, {
|
|
15895
|
+
pages: z.ZodArray<z.ZodType<string | ({
|
|
16624
15896
|
group: string;
|
|
16625
|
-
pages: any[];
|
|
16626
15897
|
icon?: string | {
|
|
16627
15898
|
name: string;
|
|
16628
15899
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -16633,26 +15904,19 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
16633
15904
|
tag?: string | undefined;
|
|
16634
15905
|
hidden?: boolean | undefined;
|
|
16635
15906
|
root?: string | undefined;
|
|
16636
|
-
}
|
|
16637
|
-
|
|
16638
|
-
pages: any[];
|
|
16639
|
-
asyncapi: string | string[] | {
|
|
15907
|
+
} & {
|
|
15908
|
+
openapi?: string | string[] | {
|
|
16640
15909
|
source: string;
|
|
16641
15910
|
directory?: string | undefined;
|
|
16642
|
-
};
|
|
16643
|
-
icon?: string | {
|
|
16644
|
-
name: string;
|
|
16645
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
16646
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
16647
15911
|
} | undefined;
|
|
16648
|
-
|
|
16649
|
-
|
|
16650
|
-
|
|
16651
|
-
|
|
16652
|
-
|
|
16653
|
-
|
|
15912
|
+
asyncapi?: string | string[] | {
|
|
15913
|
+
source: string;
|
|
15914
|
+
directory?: string | undefined;
|
|
15915
|
+
} | undefined;
|
|
15916
|
+
} & {
|
|
15917
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
15918
|
+
}), z.ZodTypeDef, string | ({
|
|
16654
15919
|
group: string;
|
|
16655
|
-
pages: any[];
|
|
16656
15920
|
icon?: string | {
|
|
16657
15921
|
name: string;
|
|
16658
15922
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -16663,14 +15927,20 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
16663
15927
|
tag?: string | undefined;
|
|
16664
15928
|
hidden?: boolean | undefined;
|
|
16665
15929
|
root?: string | undefined;
|
|
16666
|
-
}
|
|
16667
|
-
|
|
16668
|
-
}, {
|
|
16669
|
-
groups: ({
|
|
16670
|
-
openapi: string | string[] | {
|
|
15930
|
+
} & {
|
|
15931
|
+
openapi?: string | string[] | {
|
|
16671
15932
|
source: string;
|
|
16672
15933
|
directory?: string | undefined;
|
|
16673
|
-
};
|
|
15934
|
+
} | undefined;
|
|
15935
|
+
asyncapi?: string | string[] | {
|
|
15936
|
+
source: string;
|
|
15937
|
+
directory?: string | undefined;
|
|
15938
|
+
} | undefined;
|
|
15939
|
+
} & {
|
|
15940
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
15941
|
+
})>, "many">;
|
|
15942
|
+
}>, "strip", z.ZodTypeAny, {
|
|
15943
|
+
pages: (string | ({
|
|
16674
15944
|
group: string;
|
|
16675
15945
|
icon?: string | {
|
|
16676
15946
|
name: string;
|
|
@@ -16679,28 +15949,24 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
16679
15949
|
} | undefined;
|
|
16680
15950
|
expanded?: boolean | undefined;
|
|
16681
15951
|
public?: boolean | undefined;
|
|
16682
|
-
pages?: any[] | undefined;
|
|
16683
15952
|
tag?: string | undefined;
|
|
16684
15953
|
hidden?: boolean | undefined;
|
|
16685
15954
|
root?: string | undefined;
|
|
16686
|
-
}
|
|
16687
|
-
|
|
16688
|
-
asyncapi: string | string[] | {
|
|
15955
|
+
} & {
|
|
15956
|
+
openapi?: string | string[] | {
|
|
16689
15957
|
source: string;
|
|
16690
15958
|
directory?: string | undefined;
|
|
16691
|
-
};
|
|
16692
|
-
icon?: string | {
|
|
16693
|
-
name: string;
|
|
16694
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
16695
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
16696
15959
|
} | undefined;
|
|
16697
|
-
|
|
16698
|
-
|
|
16699
|
-
|
|
16700
|
-
|
|
16701
|
-
|
|
16702
|
-
|
|
16703
|
-
}
|
|
15960
|
+
asyncapi?: string | string[] | {
|
|
15961
|
+
source: string;
|
|
15962
|
+
directory?: string | undefined;
|
|
15963
|
+
} | undefined;
|
|
15964
|
+
} & {
|
|
15965
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
15966
|
+
}))[];
|
|
15967
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15968
|
+
}, {
|
|
15969
|
+
pages: (string | ({
|
|
16704
15970
|
group: string;
|
|
16705
15971
|
icon?: string | {
|
|
16706
15972
|
name: string;
|
|
@@ -16709,21 +15975,21 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
16709
15975
|
} | undefined;
|
|
16710
15976
|
expanded?: boolean | undefined;
|
|
16711
15977
|
public?: boolean | undefined;
|
|
16712
|
-
pages?: any[] | undefined;
|
|
16713
15978
|
tag?: string | undefined;
|
|
16714
15979
|
hidden?: boolean | undefined;
|
|
16715
15980
|
root?: string | undefined;
|
|
16716
|
-
}
|
|
16717
|
-
|
|
16718
|
-
|
|
16719
|
-
|
|
16720
|
-
|
|
16721
|
-
|
|
16722
|
-
|
|
16723
|
-
|
|
16724
|
-
|
|
16725
|
-
|
|
16726
|
-
|
|
15981
|
+
} & {
|
|
15982
|
+
openapi?: string | string[] | {
|
|
15983
|
+
source: string;
|
|
15984
|
+
directory?: string | undefined;
|
|
15985
|
+
} | undefined;
|
|
15986
|
+
asyncapi?: string | string[] | {
|
|
15987
|
+
source: string;
|
|
15988
|
+
directory?: string | undefined;
|
|
15989
|
+
} | undefined;
|
|
15990
|
+
} & {
|
|
15991
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
15992
|
+
}))[];
|
|
16727
15993
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
16728
15994
|
}>]>;
|
|
16729
15995
|
footer: z.ZodOptional<z.ZodObject<{
|
|
@@ -17516,12 +16782,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
17516
16782
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
17517
16783
|
} | {
|
|
17518
16784
|
groups: ({
|
|
17519
|
-
openapi: string | string[] | {
|
|
17520
|
-
source: string;
|
|
17521
|
-
directory?: string | undefined;
|
|
17522
|
-
};
|
|
17523
16785
|
group: string;
|
|
17524
|
-
pages: any[];
|
|
17525
16786
|
icon?: string | {
|
|
17526
16787
|
name: string;
|
|
17527
16788
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -17532,26 +16793,22 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
17532
16793
|
tag?: string | undefined;
|
|
17533
16794
|
hidden?: boolean | undefined;
|
|
17534
16795
|
root?: string | undefined;
|
|
17535
|
-
}
|
|
17536
|
-
|
|
17537
|
-
pages: any[];
|
|
17538
|
-
asyncapi: string | string[] | {
|
|
16796
|
+
} & {
|
|
16797
|
+
openapi?: string | string[] | {
|
|
17539
16798
|
source: string;
|
|
17540
16799
|
directory?: string | undefined;
|
|
17541
|
-
};
|
|
17542
|
-
icon?: string | {
|
|
17543
|
-
name: string;
|
|
17544
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17545
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
17546
16800
|
} | undefined;
|
|
17547
|
-
|
|
17548
|
-
|
|
17549
|
-
|
|
17550
|
-
|
|
17551
|
-
|
|
17552
|
-
|
|
16801
|
+
asyncapi?: string | string[] | {
|
|
16802
|
+
source: string;
|
|
16803
|
+
directory?: string | undefined;
|
|
16804
|
+
} | undefined;
|
|
16805
|
+
} & {
|
|
16806
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
16807
|
+
})[];
|
|
16808
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
16809
|
+
} | {
|
|
16810
|
+
pages: (string | ({
|
|
17553
16811
|
group: string;
|
|
17554
|
-
pages: any[];
|
|
17555
16812
|
icon?: string | {
|
|
17556
16813
|
name: string;
|
|
17557
16814
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -17562,10 +16819,18 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
17562
16819
|
tag?: string | undefined;
|
|
17563
16820
|
hidden?: boolean | undefined;
|
|
17564
16821
|
root?: string | undefined;
|
|
17565
|
-
}
|
|
17566
|
-
|
|
17567
|
-
|
|
17568
|
-
|
|
16822
|
+
} & {
|
|
16823
|
+
openapi?: string | string[] | {
|
|
16824
|
+
source: string;
|
|
16825
|
+
directory?: string | undefined;
|
|
16826
|
+
} | undefined;
|
|
16827
|
+
asyncapi?: string | string[] | {
|
|
16828
|
+
source: string;
|
|
16829
|
+
directory?: string | undefined;
|
|
16830
|
+
} | undefined;
|
|
16831
|
+
} & {
|
|
16832
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
16833
|
+
}))[];
|
|
17569
16834
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
17570
16835
|
};
|
|
17571
16836
|
background?: {
|
|
@@ -17861,10 +17126,6 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
17861
17126
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
17862
17127
|
} | {
|
|
17863
17128
|
groups: ({
|
|
17864
|
-
openapi: string | string[] | {
|
|
17865
|
-
source: string;
|
|
17866
|
-
directory?: string | undefined;
|
|
17867
|
-
};
|
|
17868
17129
|
group: string;
|
|
17869
17130
|
icon?: string | {
|
|
17870
17131
|
name: string;
|
|
@@ -17873,28 +17134,24 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
17873
17134
|
} | undefined;
|
|
17874
17135
|
expanded?: boolean | undefined;
|
|
17875
17136
|
public?: boolean | undefined;
|
|
17876
|
-
pages?: any[] | undefined;
|
|
17877
17137
|
tag?: string | undefined;
|
|
17878
17138
|
hidden?: boolean | undefined;
|
|
17879
17139
|
root?: string | undefined;
|
|
17880
|
-
}
|
|
17881
|
-
|
|
17882
|
-
asyncapi: string | string[] | {
|
|
17140
|
+
} & {
|
|
17141
|
+
openapi?: string | string[] | {
|
|
17883
17142
|
source: string;
|
|
17884
17143
|
directory?: string | undefined;
|
|
17885
|
-
};
|
|
17886
|
-
icon?: string | {
|
|
17887
|
-
name: string;
|
|
17888
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17889
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
17890
17144
|
} | undefined;
|
|
17891
|
-
|
|
17892
|
-
|
|
17893
|
-
|
|
17894
|
-
|
|
17895
|
-
|
|
17896
|
-
|
|
17897
|
-
}
|
|
17145
|
+
asyncapi?: string | string[] | {
|
|
17146
|
+
source: string;
|
|
17147
|
+
directory?: string | undefined;
|
|
17148
|
+
} | undefined;
|
|
17149
|
+
} & {
|
|
17150
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
17151
|
+
})[];
|
|
17152
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
17153
|
+
} | {
|
|
17154
|
+
pages: (string | ({
|
|
17898
17155
|
group: string;
|
|
17899
17156
|
icon?: string | {
|
|
17900
17157
|
name: string;
|
|
@@ -17903,14 +17160,21 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
17903
17160
|
} | undefined;
|
|
17904
17161
|
expanded?: boolean | undefined;
|
|
17905
17162
|
public?: boolean | undefined;
|
|
17906
|
-
pages?: any[] | undefined;
|
|
17907
17163
|
tag?: string | undefined;
|
|
17908
17164
|
hidden?: boolean | undefined;
|
|
17909
17165
|
root?: string | undefined;
|
|
17910
|
-
}
|
|
17911
|
-
|
|
17912
|
-
|
|
17913
|
-
|
|
17166
|
+
} & {
|
|
17167
|
+
openapi?: string | string[] | {
|
|
17168
|
+
source: string;
|
|
17169
|
+
directory?: string | undefined;
|
|
17170
|
+
} | undefined;
|
|
17171
|
+
asyncapi?: string | string[] | {
|
|
17172
|
+
source: string;
|
|
17173
|
+
directory?: string | undefined;
|
|
17174
|
+
} | undefined;
|
|
17175
|
+
} & {
|
|
17176
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
17177
|
+
}))[];
|
|
17914
17178
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
17915
17179
|
};
|
|
17916
17180
|
background?: {
|