@mintlify/validation 0.1.825 → 0.1.826
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/editor-navigation/conversion/common.d.ts +4 -3
- package/dist/editor-navigation/conversion/common.js +9 -1
- package/dist/editor-navigation/conversion/docsjson-to-tree.js +3 -1
- package/dist/editor-navigation/types.d.ts +7 -3
- package/dist/mint-config/schemas/v2/index.d.ts +480 -360
- package/dist/mint-config/schemas/v2/properties/navigation/anchors.d.ts +4 -4
- package/dist/mint-config/schemas/v2/properties/navigation/divisionNav.d.ts +4 -2
- package/dist/mint-config/schemas/v2/properties/navigation/dropdown.d.ts +4 -4
- package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +15 -12
- package/dist/mint-config/schemas/v2/properties/navigation/groups.js +2 -1
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +100 -40
- package/dist/mint-config/schemas/v2/properties/navigation/languages.d.ts +4 -4
- package/dist/mint-config/schemas/v2/properties/navigation/menu.d.ts +4 -4
- package/dist/mint-config/schemas/v2/properties/navigation/pages.d.ts +38 -10
- package/dist/mint-config/schemas/v2/properties/navigation/products.d.ts +4 -4
- package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +2 -2
- package/dist/mint-config/schemas/v2/properties/navigation/version.d.ts +4 -4
- package/dist/mint-config/schemas/v2/properties/reusable/page.d.ts +39 -0
- package/dist/mint-config/schemas/v2/properties/reusable/page.js +7 -0
- package/dist/mint-config/schemas/v2/properties/reusable/sdk.d.ts +2 -1
- package/dist/mint-config/schemas/v2/properties/reusable/sdk.js +2 -1
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +48 -36
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +48 -36
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +48 -36
- package/dist/mint-config/schemas/v2/themes/luma.d.ts +48 -36
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +48 -36
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +48 -36
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +48 -36
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +32 -24
- package/dist/mint-config/schemas/v2/themes/sequoia.d.ts +48 -36
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +48 -36
- package/dist/mint-config/validateConfig.d.ts +144 -108
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +3 -3
|
@@ -599,7 +599,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
599
599
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
600
600
|
sdk: z.ZodOptional<z.ZodNever>;
|
|
601
601
|
} & {
|
|
602
|
-
groups: z.ZodArray<z.ZodType<{
|
|
602
|
+
groups: z.ZodArray<z.ZodType<Omit<{
|
|
603
603
|
group: string;
|
|
604
604
|
icon?: string | {
|
|
605
605
|
name: string;
|
|
@@ -609,14 +609,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
609
609
|
expanded?: boolean | undefined;
|
|
610
610
|
public?: boolean | undefined;
|
|
611
611
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
612
|
+
graphql?: undefined;
|
|
612
613
|
tag?: string | undefined;
|
|
613
614
|
searchable?: boolean | undefined;
|
|
614
615
|
boost?: number | undefined;
|
|
615
616
|
hidden?: boolean | undefined;
|
|
616
|
-
graphql?: undefined;
|
|
617
617
|
sdk?: undefined;
|
|
618
618
|
root?: string | undefined;
|
|
619
|
-
} & {
|
|
619
|
+
}, "sdk"> & {
|
|
620
620
|
openapi?: string | string[] | {
|
|
621
621
|
source: string;
|
|
622
622
|
directory?: string | undefined;
|
|
@@ -626,8 +626,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
626
626
|
directory?: string | undefined;
|
|
627
627
|
} | undefined;
|
|
628
628
|
} & {
|
|
629
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
629
630
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
630
|
-
}, z.ZodTypeDef, {
|
|
631
|
+
}, z.ZodTypeDef, Omit<{
|
|
631
632
|
group: string;
|
|
632
633
|
icon?: string | {
|
|
633
634
|
name: string;
|
|
@@ -637,14 +638,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
637
638
|
expanded?: boolean | undefined;
|
|
638
639
|
public?: boolean | undefined;
|
|
639
640
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
641
|
+
graphql?: undefined;
|
|
640
642
|
tag?: string | undefined;
|
|
641
643
|
searchable?: boolean | undefined;
|
|
642
644
|
boost?: number | undefined;
|
|
643
645
|
hidden?: boolean | undefined;
|
|
644
|
-
graphql?: undefined;
|
|
645
646
|
sdk?: undefined;
|
|
646
647
|
root?: string | undefined;
|
|
647
|
-
} & {
|
|
648
|
+
}, "sdk"> & {
|
|
648
649
|
openapi?: string | string[] | {
|
|
649
650
|
source: string;
|
|
650
651
|
directory?: string | undefined;
|
|
@@ -654,10 +655,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
654
655
|
directory?: string | undefined;
|
|
655
656
|
} | undefined;
|
|
656
657
|
} & {
|
|
658
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
657
659
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
658
660
|
}>, "many">;
|
|
659
661
|
}, "strip", z.ZodTypeAny, {
|
|
660
|
-
groups: ({
|
|
662
|
+
groups: (Omit<{
|
|
661
663
|
group: string;
|
|
662
664
|
icon?: string | {
|
|
663
665
|
name: string;
|
|
@@ -667,14 +669,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
667
669
|
expanded?: boolean | undefined;
|
|
668
670
|
public?: boolean | undefined;
|
|
669
671
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
672
|
+
graphql?: undefined;
|
|
670
673
|
tag?: string | undefined;
|
|
671
674
|
searchable?: boolean | undefined;
|
|
672
675
|
boost?: number | undefined;
|
|
673
676
|
hidden?: boolean | undefined;
|
|
674
|
-
graphql?: undefined;
|
|
675
677
|
sdk?: undefined;
|
|
676
678
|
root?: string | undefined;
|
|
677
|
-
} & {
|
|
679
|
+
}, "sdk"> & {
|
|
678
680
|
openapi?: string | string[] | {
|
|
679
681
|
source: string;
|
|
680
682
|
directory?: string | undefined;
|
|
@@ -684,6 +686,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
684
686
|
directory?: string | undefined;
|
|
685
687
|
} | undefined;
|
|
686
688
|
} & {
|
|
689
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
687
690
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
688
691
|
})[];
|
|
689
692
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -691,7 +694,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
691
694
|
sdk?: undefined;
|
|
692
695
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
693
696
|
}, {
|
|
694
|
-
groups: ({
|
|
697
|
+
groups: (Omit<{
|
|
695
698
|
group: string;
|
|
696
699
|
icon?: string | {
|
|
697
700
|
name: string;
|
|
@@ -701,14 +704,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
701
704
|
expanded?: boolean | undefined;
|
|
702
705
|
public?: boolean | undefined;
|
|
703
706
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
707
|
+
graphql?: undefined;
|
|
704
708
|
tag?: string | undefined;
|
|
705
709
|
searchable?: boolean | undefined;
|
|
706
710
|
boost?: number | undefined;
|
|
707
711
|
hidden?: boolean | undefined;
|
|
708
|
-
graphql?: undefined;
|
|
709
712
|
sdk?: undefined;
|
|
710
713
|
root?: string | undefined;
|
|
711
|
-
} & {
|
|
714
|
+
}, "sdk"> & {
|
|
712
715
|
openapi?: string | string[] | {
|
|
713
716
|
source: string;
|
|
714
717
|
directory?: string | undefined;
|
|
@@ -718,6 +721,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
718
721
|
directory?: string | undefined;
|
|
719
722
|
} | undefined;
|
|
720
723
|
} & {
|
|
724
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
721
725
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
722
726
|
})[];
|
|
723
727
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -730,7 +734,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
730
734
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
731
735
|
sdk: z.ZodOptional<z.ZodNever>;
|
|
732
736
|
} & {
|
|
733
|
-
pages: z.ZodArray<z.ZodType<string | ({
|
|
737
|
+
pages: z.ZodArray<z.ZodType<string | (Omit<{
|
|
734
738
|
group: string;
|
|
735
739
|
icon?: string | {
|
|
736
740
|
name: string;
|
|
@@ -740,14 +744,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
740
744
|
expanded?: boolean | undefined;
|
|
741
745
|
public?: boolean | undefined;
|
|
742
746
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
747
|
+
graphql?: undefined;
|
|
743
748
|
tag?: string | undefined;
|
|
744
749
|
searchable?: boolean | undefined;
|
|
745
750
|
boost?: number | undefined;
|
|
746
751
|
hidden?: boolean | undefined;
|
|
747
|
-
graphql?: undefined;
|
|
748
752
|
sdk?: undefined;
|
|
749
753
|
root?: string | undefined;
|
|
750
|
-
} & {
|
|
754
|
+
}, "sdk"> & {
|
|
751
755
|
openapi?: string | string[] | {
|
|
752
756
|
source: string;
|
|
753
757
|
directory?: string | undefined;
|
|
@@ -757,8 +761,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
757
761
|
directory?: string | undefined;
|
|
758
762
|
} | undefined;
|
|
759
763
|
} & {
|
|
764
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
760
765
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
761
|
-
}), z.ZodTypeDef, string | ({
|
|
766
|
+
}), z.ZodTypeDef, string | (Omit<{
|
|
762
767
|
group: string;
|
|
763
768
|
icon?: string | {
|
|
764
769
|
name: string;
|
|
@@ -768,14 +773,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
768
773
|
expanded?: boolean | undefined;
|
|
769
774
|
public?: boolean | undefined;
|
|
770
775
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
776
|
+
graphql?: undefined;
|
|
771
777
|
tag?: string | undefined;
|
|
772
778
|
searchable?: boolean | undefined;
|
|
773
779
|
boost?: number | undefined;
|
|
774
780
|
hidden?: boolean | undefined;
|
|
775
|
-
graphql?: undefined;
|
|
776
781
|
sdk?: undefined;
|
|
777
782
|
root?: string | undefined;
|
|
778
|
-
} & {
|
|
783
|
+
}, "sdk"> & {
|
|
779
784
|
openapi?: string | string[] | {
|
|
780
785
|
source: string;
|
|
781
786
|
directory?: string | undefined;
|
|
@@ -785,10 +790,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
785
790
|
directory?: string | undefined;
|
|
786
791
|
} | undefined;
|
|
787
792
|
} & {
|
|
793
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
788
794
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
789
795
|
})>, "many">;
|
|
790
796
|
}, "strip", z.ZodTypeAny, {
|
|
791
|
-
pages: (string | ({
|
|
797
|
+
pages: (string | (Omit<{
|
|
792
798
|
group: string;
|
|
793
799
|
icon?: string | {
|
|
794
800
|
name: string;
|
|
@@ -798,14 +804,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
798
804
|
expanded?: boolean | undefined;
|
|
799
805
|
public?: boolean | undefined;
|
|
800
806
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
807
|
+
graphql?: undefined;
|
|
801
808
|
tag?: string | undefined;
|
|
802
809
|
searchable?: boolean | undefined;
|
|
803
810
|
boost?: number | undefined;
|
|
804
811
|
hidden?: boolean | undefined;
|
|
805
|
-
graphql?: undefined;
|
|
806
812
|
sdk?: undefined;
|
|
807
813
|
root?: string | undefined;
|
|
808
|
-
} & {
|
|
814
|
+
}, "sdk"> & {
|
|
809
815
|
openapi?: string | string[] | {
|
|
810
816
|
source: string;
|
|
811
817
|
directory?: string | undefined;
|
|
@@ -815,6 +821,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
815
821
|
directory?: string | undefined;
|
|
816
822
|
} | undefined;
|
|
817
823
|
} & {
|
|
824
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
818
825
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
819
826
|
}))[];
|
|
820
827
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -822,7 +829,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
822
829
|
sdk?: undefined;
|
|
823
830
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
824
831
|
}, {
|
|
825
|
-
pages: (string | ({
|
|
832
|
+
pages: (string | (Omit<{
|
|
826
833
|
group: string;
|
|
827
834
|
icon?: string | {
|
|
828
835
|
name: string;
|
|
@@ -832,14 +839,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
832
839
|
expanded?: boolean | undefined;
|
|
833
840
|
public?: boolean | undefined;
|
|
834
841
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
842
|
+
graphql?: undefined;
|
|
835
843
|
tag?: string | undefined;
|
|
836
844
|
searchable?: boolean | undefined;
|
|
837
845
|
boost?: number | undefined;
|
|
838
846
|
hidden?: boolean | undefined;
|
|
839
|
-
graphql?: undefined;
|
|
840
847
|
sdk?: undefined;
|
|
841
848
|
root?: string | undefined;
|
|
842
|
-
} & {
|
|
849
|
+
}, "sdk"> & {
|
|
843
850
|
openapi?: string | string[] | {
|
|
844
851
|
source: string;
|
|
845
852
|
directory?: string | undefined;
|
|
@@ -849,6 +856,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
849
856
|
directory?: string | undefined;
|
|
850
857
|
} | undefined;
|
|
851
858
|
} & {
|
|
859
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
852
860
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
853
861
|
}))[];
|
|
854
862
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -1803,7 +1811,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1803
1811
|
sdk?: undefined;
|
|
1804
1812
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1805
1813
|
} | {
|
|
1806
|
-
groups: ({
|
|
1814
|
+
groups: (Omit<{
|
|
1807
1815
|
group: string;
|
|
1808
1816
|
icon?: string | {
|
|
1809
1817
|
name: string;
|
|
@@ -1813,14 +1821,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1813
1821
|
expanded?: boolean | undefined;
|
|
1814
1822
|
public?: boolean | undefined;
|
|
1815
1823
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1824
|
+
graphql?: undefined;
|
|
1816
1825
|
tag?: string | undefined;
|
|
1817
1826
|
searchable?: boolean | undefined;
|
|
1818
1827
|
boost?: number | undefined;
|
|
1819
1828
|
hidden?: boolean | undefined;
|
|
1820
|
-
graphql?: undefined;
|
|
1821
1829
|
sdk?: undefined;
|
|
1822
1830
|
root?: string | undefined;
|
|
1823
|
-
} & {
|
|
1831
|
+
}, "sdk"> & {
|
|
1824
1832
|
openapi?: string | string[] | {
|
|
1825
1833
|
source: string;
|
|
1826
1834
|
directory?: string | undefined;
|
|
@@ -1830,6 +1838,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1830
1838
|
directory?: string | undefined;
|
|
1831
1839
|
} | undefined;
|
|
1832
1840
|
} & {
|
|
1841
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
1833
1842
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1834
1843
|
})[];
|
|
1835
1844
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -1837,7 +1846,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1837
1846
|
sdk?: undefined;
|
|
1838
1847
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1839
1848
|
} | {
|
|
1840
|
-
pages: (string | ({
|
|
1849
|
+
pages: (string | (Omit<{
|
|
1841
1850
|
group: string;
|
|
1842
1851
|
icon?: string | {
|
|
1843
1852
|
name: string;
|
|
@@ -1847,14 +1856,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1847
1856
|
expanded?: boolean | undefined;
|
|
1848
1857
|
public?: boolean | undefined;
|
|
1849
1858
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1859
|
+
graphql?: undefined;
|
|
1850
1860
|
tag?: string | undefined;
|
|
1851
1861
|
searchable?: boolean | undefined;
|
|
1852
1862
|
boost?: number | undefined;
|
|
1853
1863
|
hidden?: boolean | undefined;
|
|
1854
|
-
graphql?: undefined;
|
|
1855
1864
|
sdk?: undefined;
|
|
1856
1865
|
root?: string | undefined;
|
|
1857
|
-
} & {
|
|
1866
|
+
}, "sdk"> & {
|
|
1858
1867
|
openapi?: string | string[] | {
|
|
1859
1868
|
source: string;
|
|
1860
1869
|
directory?: string | undefined;
|
|
@@ -1864,6 +1873,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1864
1873
|
directory?: string | undefined;
|
|
1865
1874
|
} | undefined;
|
|
1866
1875
|
} & {
|
|
1876
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
1867
1877
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1868
1878
|
}))[];
|
|
1869
1879
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -2218,7 +2228,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2218
2228
|
sdk?: undefined;
|
|
2219
2229
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2220
2230
|
} | {
|
|
2221
|
-
groups: ({
|
|
2231
|
+
groups: (Omit<{
|
|
2222
2232
|
group: string;
|
|
2223
2233
|
icon?: string | {
|
|
2224
2234
|
name: string;
|
|
@@ -2228,14 +2238,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2228
2238
|
expanded?: boolean | undefined;
|
|
2229
2239
|
public?: boolean | undefined;
|
|
2230
2240
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
2241
|
+
graphql?: undefined;
|
|
2231
2242
|
tag?: string | undefined;
|
|
2232
2243
|
searchable?: boolean | undefined;
|
|
2233
2244
|
boost?: number | undefined;
|
|
2234
2245
|
hidden?: boolean | undefined;
|
|
2235
|
-
graphql?: undefined;
|
|
2236
2246
|
sdk?: undefined;
|
|
2237
2247
|
root?: string | undefined;
|
|
2238
|
-
} & {
|
|
2248
|
+
}, "sdk"> & {
|
|
2239
2249
|
openapi?: string | string[] | {
|
|
2240
2250
|
source: string;
|
|
2241
2251
|
directory?: string | undefined;
|
|
@@ -2245,6 +2255,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2245
2255
|
directory?: string | undefined;
|
|
2246
2256
|
} | undefined;
|
|
2247
2257
|
} & {
|
|
2258
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
2248
2259
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
2249
2260
|
})[];
|
|
2250
2261
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -2252,7 +2263,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2252
2263
|
sdk?: undefined;
|
|
2253
2264
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2254
2265
|
} | {
|
|
2255
|
-
pages: (string | ({
|
|
2266
|
+
pages: (string | (Omit<{
|
|
2256
2267
|
group: string;
|
|
2257
2268
|
icon?: string | {
|
|
2258
2269
|
name: string;
|
|
@@ -2262,14 +2273,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2262
2273
|
expanded?: boolean | undefined;
|
|
2263
2274
|
public?: boolean | undefined;
|
|
2264
2275
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
2276
|
+
graphql?: undefined;
|
|
2265
2277
|
tag?: string | undefined;
|
|
2266
2278
|
searchable?: boolean | undefined;
|
|
2267
2279
|
boost?: number | undefined;
|
|
2268
2280
|
hidden?: boolean | undefined;
|
|
2269
|
-
graphql?: undefined;
|
|
2270
2281
|
sdk?: undefined;
|
|
2271
2282
|
root?: string | undefined;
|
|
2272
|
-
} & {
|
|
2283
|
+
}, "sdk"> & {
|
|
2273
2284
|
openapi?: string | string[] | {
|
|
2274
2285
|
source: string;
|
|
2275
2286
|
directory?: string | undefined;
|
|
@@ -2279,6 +2290,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2279
2290
|
directory?: string | undefined;
|
|
2280
2291
|
} | undefined;
|
|
2281
2292
|
} & {
|
|
2293
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
2282
2294
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
2283
2295
|
}))[];
|
|
2284
2296
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -3186,7 +3198,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3186
3198
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
3187
3199
|
sdk: z.ZodOptional<z.ZodNever>;
|
|
3188
3200
|
} & {
|
|
3189
|
-
groups: z.ZodArray<z.ZodType<{
|
|
3201
|
+
groups: z.ZodArray<z.ZodType<Omit<{
|
|
3190
3202
|
group: string;
|
|
3191
3203
|
icon?: string | {
|
|
3192
3204
|
name: string;
|
|
@@ -3196,14 +3208,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3196
3208
|
expanded?: boolean | undefined;
|
|
3197
3209
|
public?: boolean | undefined;
|
|
3198
3210
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3211
|
+
graphql?: undefined;
|
|
3199
3212
|
tag?: string | undefined;
|
|
3200
3213
|
searchable?: boolean | undefined;
|
|
3201
3214
|
boost?: number | undefined;
|
|
3202
3215
|
hidden?: boolean | undefined;
|
|
3203
|
-
graphql?: undefined;
|
|
3204
3216
|
sdk?: undefined;
|
|
3205
3217
|
root?: string | undefined;
|
|
3206
|
-
} & {
|
|
3218
|
+
}, "sdk"> & {
|
|
3207
3219
|
openapi?: string | string[] | {
|
|
3208
3220
|
source: string;
|
|
3209
3221
|
directory?: string | undefined;
|
|
@@ -3213,8 +3225,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3213
3225
|
directory?: string | undefined;
|
|
3214
3226
|
} | undefined;
|
|
3215
3227
|
} & {
|
|
3228
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
3216
3229
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
3217
|
-
}, z.ZodTypeDef, {
|
|
3230
|
+
}, z.ZodTypeDef, Omit<{
|
|
3218
3231
|
group: string;
|
|
3219
3232
|
icon?: string | {
|
|
3220
3233
|
name: string;
|
|
@@ -3224,14 +3237,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3224
3237
|
expanded?: boolean | undefined;
|
|
3225
3238
|
public?: boolean | undefined;
|
|
3226
3239
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3240
|
+
graphql?: undefined;
|
|
3227
3241
|
tag?: string | undefined;
|
|
3228
3242
|
searchable?: boolean | undefined;
|
|
3229
3243
|
boost?: number | undefined;
|
|
3230
3244
|
hidden?: boolean | undefined;
|
|
3231
|
-
graphql?: undefined;
|
|
3232
3245
|
sdk?: undefined;
|
|
3233
3246
|
root?: string | undefined;
|
|
3234
|
-
} & {
|
|
3247
|
+
}, "sdk"> & {
|
|
3235
3248
|
openapi?: string | string[] | {
|
|
3236
3249
|
source: string;
|
|
3237
3250
|
directory?: string | undefined;
|
|
@@ -3241,10 +3254,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3241
3254
|
directory?: string | undefined;
|
|
3242
3255
|
} | undefined;
|
|
3243
3256
|
} & {
|
|
3257
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
3244
3258
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
3245
3259
|
}>, "many">;
|
|
3246
3260
|
}, "strip", z.ZodTypeAny, {
|
|
3247
|
-
groups: ({
|
|
3261
|
+
groups: (Omit<{
|
|
3248
3262
|
group: string;
|
|
3249
3263
|
icon?: string | {
|
|
3250
3264
|
name: string;
|
|
@@ -3254,14 +3268,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3254
3268
|
expanded?: boolean | undefined;
|
|
3255
3269
|
public?: boolean | undefined;
|
|
3256
3270
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3271
|
+
graphql?: undefined;
|
|
3257
3272
|
tag?: string | undefined;
|
|
3258
3273
|
searchable?: boolean | undefined;
|
|
3259
3274
|
boost?: number | undefined;
|
|
3260
3275
|
hidden?: boolean | undefined;
|
|
3261
|
-
graphql?: undefined;
|
|
3262
3276
|
sdk?: undefined;
|
|
3263
3277
|
root?: string | undefined;
|
|
3264
|
-
} & {
|
|
3278
|
+
}, "sdk"> & {
|
|
3265
3279
|
openapi?: string | string[] | {
|
|
3266
3280
|
source: string;
|
|
3267
3281
|
directory?: string | undefined;
|
|
@@ -3271,6 +3285,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3271
3285
|
directory?: string | undefined;
|
|
3272
3286
|
} | undefined;
|
|
3273
3287
|
} & {
|
|
3288
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
3274
3289
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
3275
3290
|
})[];
|
|
3276
3291
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -3278,7 +3293,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3278
3293
|
sdk?: undefined;
|
|
3279
3294
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3280
3295
|
}, {
|
|
3281
|
-
groups: ({
|
|
3296
|
+
groups: (Omit<{
|
|
3282
3297
|
group: string;
|
|
3283
3298
|
icon?: string | {
|
|
3284
3299
|
name: string;
|
|
@@ -3288,14 +3303,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3288
3303
|
expanded?: boolean | undefined;
|
|
3289
3304
|
public?: boolean | undefined;
|
|
3290
3305
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3306
|
+
graphql?: undefined;
|
|
3291
3307
|
tag?: string | undefined;
|
|
3292
3308
|
searchable?: boolean | undefined;
|
|
3293
3309
|
boost?: number | undefined;
|
|
3294
3310
|
hidden?: boolean | undefined;
|
|
3295
|
-
graphql?: undefined;
|
|
3296
3311
|
sdk?: undefined;
|
|
3297
3312
|
root?: string | undefined;
|
|
3298
|
-
} & {
|
|
3313
|
+
}, "sdk"> & {
|
|
3299
3314
|
openapi?: string | string[] | {
|
|
3300
3315
|
source: string;
|
|
3301
3316
|
directory?: string | undefined;
|
|
@@ -3305,6 +3320,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3305
3320
|
directory?: string | undefined;
|
|
3306
3321
|
} | undefined;
|
|
3307
3322
|
} & {
|
|
3323
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
3308
3324
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
3309
3325
|
})[];
|
|
3310
3326
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -3317,7 +3333,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3317
3333
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
3318
3334
|
sdk: z.ZodOptional<z.ZodNever>;
|
|
3319
3335
|
} & {
|
|
3320
|
-
pages: z.ZodArray<z.ZodType<string | ({
|
|
3336
|
+
pages: z.ZodArray<z.ZodType<string | (Omit<{
|
|
3321
3337
|
group: string;
|
|
3322
3338
|
icon?: string | {
|
|
3323
3339
|
name: string;
|
|
@@ -3327,14 +3343,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3327
3343
|
expanded?: boolean | undefined;
|
|
3328
3344
|
public?: boolean | undefined;
|
|
3329
3345
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3346
|
+
graphql?: undefined;
|
|
3330
3347
|
tag?: string | undefined;
|
|
3331
3348
|
searchable?: boolean | undefined;
|
|
3332
3349
|
boost?: number | undefined;
|
|
3333
3350
|
hidden?: boolean | undefined;
|
|
3334
|
-
graphql?: undefined;
|
|
3335
3351
|
sdk?: undefined;
|
|
3336
3352
|
root?: string | undefined;
|
|
3337
|
-
} & {
|
|
3353
|
+
}, "sdk"> & {
|
|
3338
3354
|
openapi?: string | string[] | {
|
|
3339
3355
|
source: string;
|
|
3340
3356
|
directory?: string | undefined;
|
|
@@ -3344,8 +3360,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3344
3360
|
directory?: string | undefined;
|
|
3345
3361
|
} | undefined;
|
|
3346
3362
|
} & {
|
|
3363
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
3347
3364
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
3348
|
-
}), z.ZodTypeDef, string | ({
|
|
3365
|
+
}), z.ZodTypeDef, string | (Omit<{
|
|
3349
3366
|
group: string;
|
|
3350
3367
|
icon?: string | {
|
|
3351
3368
|
name: string;
|
|
@@ -3355,14 +3372,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3355
3372
|
expanded?: boolean | undefined;
|
|
3356
3373
|
public?: boolean | undefined;
|
|
3357
3374
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3375
|
+
graphql?: undefined;
|
|
3358
3376
|
tag?: string | undefined;
|
|
3359
3377
|
searchable?: boolean | undefined;
|
|
3360
3378
|
boost?: number | undefined;
|
|
3361
3379
|
hidden?: boolean | undefined;
|
|
3362
|
-
graphql?: undefined;
|
|
3363
3380
|
sdk?: undefined;
|
|
3364
3381
|
root?: string | undefined;
|
|
3365
|
-
} & {
|
|
3382
|
+
}, "sdk"> & {
|
|
3366
3383
|
openapi?: string | string[] | {
|
|
3367
3384
|
source: string;
|
|
3368
3385
|
directory?: string | undefined;
|
|
@@ -3372,10 +3389,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3372
3389
|
directory?: string | undefined;
|
|
3373
3390
|
} | undefined;
|
|
3374
3391
|
} & {
|
|
3392
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
3375
3393
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
3376
3394
|
})>, "many">;
|
|
3377
3395
|
}, "strip", z.ZodTypeAny, {
|
|
3378
|
-
pages: (string | ({
|
|
3396
|
+
pages: (string | (Omit<{
|
|
3379
3397
|
group: string;
|
|
3380
3398
|
icon?: string | {
|
|
3381
3399
|
name: string;
|
|
@@ -3385,14 +3403,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3385
3403
|
expanded?: boolean | undefined;
|
|
3386
3404
|
public?: boolean | undefined;
|
|
3387
3405
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3406
|
+
graphql?: undefined;
|
|
3388
3407
|
tag?: string | undefined;
|
|
3389
3408
|
searchable?: boolean | undefined;
|
|
3390
3409
|
boost?: number | undefined;
|
|
3391
3410
|
hidden?: boolean | undefined;
|
|
3392
|
-
graphql?: undefined;
|
|
3393
3411
|
sdk?: undefined;
|
|
3394
3412
|
root?: string | undefined;
|
|
3395
|
-
} & {
|
|
3413
|
+
}, "sdk"> & {
|
|
3396
3414
|
openapi?: string | string[] | {
|
|
3397
3415
|
source: string;
|
|
3398
3416
|
directory?: string | undefined;
|
|
@@ -3402,6 +3420,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3402
3420
|
directory?: string | undefined;
|
|
3403
3421
|
} | undefined;
|
|
3404
3422
|
} & {
|
|
3423
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
3405
3424
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
3406
3425
|
}))[];
|
|
3407
3426
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -3409,7 +3428,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3409
3428
|
sdk?: undefined;
|
|
3410
3429
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3411
3430
|
}, {
|
|
3412
|
-
pages: (string | ({
|
|
3431
|
+
pages: (string | (Omit<{
|
|
3413
3432
|
group: string;
|
|
3414
3433
|
icon?: string | {
|
|
3415
3434
|
name: string;
|
|
@@ -3419,14 +3438,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3419
3438
|
expanded?: boolean | undefined;
|
|
3420
3439
|
public?: boolean | undefined;
|
|
3421
3440
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3441
|
+
graphql?: undefined;
|
|
3422
3442
|
tag?: string | undefined;
|
|
3423
3443
|
searchable?: boolean | undefined;
|
|
3424
3444
|
boost?: number | undefined;
|
|
3425
3445
|
hidden?: boolean | undefined;
|
|
3426
|
-
graphql?: undefined;
|
|
3427
3446
|
sdk?: undefined;
|
|
3428
3447
|
root?: string | undefined;
|
|
3429
|
-
} & {
|
|
3448
|
+
}, "sdk"> & {
|
|
3430
3449
|
openapi?: string | string[] | {
|
|
3431
3450
|
source: string;
|
|
3432
3451
|
directory?: string | undefined;
|
|
@@ -3436,6 +3455,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3436
3455
|
directory?: string | undefined;
|
|
3437
3456
|
} | undefined;
|
|
3438
3457
|
} & {
|
|
3458
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
3439
3459
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
3440
3460
|
}))[];
|
|
3441
3461
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -4390,7 +4410,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4390
4410
|
sdk?: undefined;
|
|
4391
4411
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4392
4412
|
} | {
|
|
4393
|
-
groups: ({
|
|
4413
|
+
groups: (Omit<{
|
|
4394
4414
|
group: string;
|
|
4395
4415
|
icon?: string | {
|
|
4396
4416
|
name: string;
|
|
@@ -4400,14 +4420,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4400
4420
|
expanded?: boolean | undefined;
|
|
4401
4421
|
public?: boolean | undefined;
|
|
4402
4422
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
4423
|
+
graphql?: undefined;
|
|
4403
4424
|
tag?: string | undefined;
|
|
4404
4425
|
searchable?: boolean | undefined;
|
|
4405
4426
|
boost?: number | undefined;
|
|
4406
4427
|
hidden?: boolean | undefined;
|
|
4407
|
-
graphql?: undefined;
|
|
4408
4428
|
sdk?: undefined;
|
|
4409
4429
|
root?: string | undefined;
|
|
4410
|
-
} & {
|
|
4430
|
+
}, "sdk"> & {
|
|
4411
4431
|
openapi?: string | string[] | {
|
|
4412
4432
|
source: string;
|
|
4413
4433
|
directory?: string | undefined;
|
|
@@ -4417,6 +4437,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4417
4437
|
directory?: string | undefined;
|
|
4418
4438
|
} | undefined;
|
|
4419
4439
|
} & {
|
|
4440
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
4420
4441
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
4421
4442
|
})[];
|
|
4422
4443
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -4424,7 +4445,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4424
4445
|
sdk?: undefined;
|
|
4425
4446
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4426
4447
|
} | {
|
|
4427
|
-
pages: (string | ({
|
|
4448
|
+
pages: (string | (Omit<{
|
|
4428
4449
|
group: string;
|
|
4429
4450
|
icon?: string | {
|
|
4430
4451
|
name: string;
|
|
@@ -4434,14 +4455,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4434
4455
|
expanded?: boolean | undefined;
|
|
4435
4456
|
public?: boolean | undefined;
|
|
4436
4457
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
4458
|
+
graphql?: undefined;
|
|
4437
4459
|
tag?: string | undefined;
|
|
4438
4460
|
searchable?: boolean | undefined;
|
|
4439
4461
|
boost?: number | undefined;
|
|
4440
4462
|
hidden?: boolean | undefined;
|
|
4441
|
-
graphql?: undefined;
|
|
4442
4463
|
sdk?: undefined;
|
|
4443
4464
|
root?: string | undefined;
|
|
4444
|
-
} & {
|
|
4465
|
+
}, "sdk"> & {
|
|
4445
4466
|
openapi?: string | string[] | {
|
|
4446
4467
|
source: string;
|
|
4447
4468
|
directory?: string | undefined;
|
|
@@ -4451,6 +4472,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4451
4472
|
directory?: string | undefined;
|
|
4452
4473
|
} | undefined;
|
|
4453
4474
|
} & {
|
|
4475
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
4454
4476
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
4455
4477
|
}))[];
|
|
4456
4478
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -4805,7 +4827,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4805
4827
|
sdk?: undefined;
|
|
4806
4828
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4807
4829
|
} | {
|
|
4808
|
-
groups: ({
|
|
4830
|
+
groups: (Omit<{
|
|
4809
4831
|
group: string;
|
|
4810
4832
|
icon?: string | {
|
|
4811
4833
|
name: string;
|
|
@@ -4815,14 +4837,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4815
4837
|
expanded?: boolean | undefined;
|
|
4816
4838
|
public?: boolean | undefined;
|
|
4817
4839
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
4840
|
+
graphql?: undefined;
|
|
4818
4841
|
tag?: string | undefined;
|
|
4819
4842
|
searchable?: boolean | undefined;
|
|
4820
4843
|
boost?: number | undefined;
|
|
4821
4844
|
hidden?: boolean | undefined;
|
|
4822
|
-
graphql?: undefined;
|
|
4823
4845
|
sdk?: undefined;
|
|
4824
4846
|
root?: string | undefined;
|
|
4825
|
-
} & {
|
|
4847
|
+
}, "sdk"> & {
|
|
4826
4848
|
openapi?: string | string[] | {
|
|
4827
4849
|
source: string;
|
|
4828
4850
|
directory?: string | undefined;
|
|
@@ -4832,6 +4854,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4832
4854
|
directory?: string | undefined;
|
|
4833
4855
|
} | undefined;
|
|
4834
4856
|
} & {
|
|
4857
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
4835
4858
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
4836
4859
|
})[];
|
|
4837
4860
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -4839,7 +4862,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4839
4862
|
sdk?: undefined;
|
|
4840
4863
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4841
4864
|
} | {
|
|
4842
|
-
pages: (string | ({
|
|
4865
|
+
pages: (string | (Omit<{
|
|
4843
4866
|
group: string;
|
|
4844
4867
|
icon?: string | {
|
|
4845
4868
|
name: string;
|
|
@@ -4849,14 +4872,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4849
4872
|
expanded?: boolean | undefined;
|
|
4850
4873
|
public?: boolean | undefined;
|
|
4851
4874
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
4875
|
+
graphql?: undefined;
|
|
4852
4876
|
tag?: string | undefined;
|
|
4853
4877
|
searchable?: boolean | undefined;
|
|
4854
4878
|
boost?: number | undefined;
|
|
4855
4879
|
hidden?: boolean | undefined;
|
|
4856
|
-
graphql?: undefined;
|
|
4857
4880
|
sdk?: undefined;
|
|
4858
4881
|
root?: string | undefined;
|
|
4859
|
-
} & {
|
|
4882
|
+
}, "sdk"> & {
|
|
4860
4883
|
openapi?: string | string[] | {
|
|
4861
4884
|
source: string;
|
|
4862
4885
|
directory?: string | undefined;
|
|
@@ -4866,6 +4889,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4866
4889
|
directory?: string | undefined;
|
|
4867
4890
|
} | undefined;
|
|
4868
4891
|
} & {
|
|
4892
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
4869
4893
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
4870
4894
|
}))[];
|
|
4871
4895
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -5773,7 +5797,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5773
5797
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
5774
5798
|
sdk: z.ZodOptional<z.ZodNever>;
|
|
5775
5799
|
} & {
|
|
5776
|
-
groups: z.ZodArray<z.ZodType<{
|
|
5800
|
+
groups: z.ZodArray<z.ZodType<Omit<{
|
|
5777
5801
|
group: string;
|
|
5778
5802
|
icon?: string | {
|
|
5779
5803
|
name: string;
|
|
@@ -5783,14 +5807,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5783
5807
|
expanded?: boolean | undefined;
|
|
5784
5808
|
public?: boolean | undefined;
|
|
5785
5809
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5810
|
+
graphql?: undefined;
|
|
5786
5811
|
tag?: string | undefined;
|
|
5787
5812
|
searchable?: boolean | undefined;
|
|
5788
5813
|
boost?: number | undefined;
|
|
5789
5814
|
hidden?: boolean | undefined;
|
|
5790
|
-
graphql?: undefined;
|
|
5791
5815
|
sdk?: undefined;
|
|
5792
5816
|
root?: string | undefined;
|
|
5793
|
-
} & {
|
|
5817
|
+
}, "sdk"> & {
|
|
5794
5818
|
openapi?: string | string[] | {
|
|
5795
5819
|
source: string;
|
|
5796
5820
|
directory?: string | undefined;
|
|
@@ -5800,8 +5824,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5800
5824
|
directory?: string | undefined;
|
|
5801
5825
|
} | undefined;
|
|
5802
5826
|
} & {
|
|
5827
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
5803
5828
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
5804
|
-
}, z.ZodTypeDef, {
|
|
5829
|
+
}, z.ZodTypeDef, Omit<{
|
|
5805
5830
|
group: string;
|
|
5806
5831
|
icon?: string | {
|
|
5807
5832
|
name: string;
|
|
@@ -5811,14 +5836,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5811
5836
|
expanded?: boolean | undefined;
|
|
5812
5837
|
public?: boolean | undefined;
|
|
5813
5838
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5839
|
+
graphql?: undefined;
|
|
5814
5840
|
tag?: string | undefined;
|
|
5815
5841
|
searchable?: boolean | undefined;
|
|
5816
5842
|
boost?: number | undefined;
|
|
5817
5843
|
hidden?: boolean | undefined;
|
|
5818
|
-
graphql?: undefined;
|
|
5819
5844
|
sdk?: undefined;
|
|
5820
5845
|
root?: string | undefined;
|
|
5821
|
-
} & {
|
|
5846
|
+
}, "sdk"> & {
|
|
5822
5847
|
openapi?: string | string[] | {
|
|
5823
5848
|
source: string;
|
|
5824
5849
|
directory?: string | undefined;
|
|
@@ -5828,10 +5853,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5828
5853
|
directory?: string | undefined;
|
|
5829
5854
|
} | undefined;
|
|
5830
5855
|
} & {
|
|
5856
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
5831
5857
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
5832
5858
|
}>, "many">;
|
|
5833
5859
|
}, "strip", z.ZodTypeAny, {
|
|
5834
|
-
groups: ({
|
|
5860
|
+
groups: (Omit<{
|
|
5835
5861
|
group: string;
|
|
5836
5862
|
icon?: string | {
|
|
5837
5863
|
name: string;
|
|
@@ -5841,14 +5867,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5841
5867
|
expanded?: boolean | undefined;
|
|
5842
5868
|
public?: boolean | undefined;
|
|
5843
5869
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5870
|
+
graphql?: undefined;
|
|
5844
5871
|
tag?: string | undefined;
|
|
5845
5872
|
searchable?: boolean | undefined;
|
|
5846
5873
|
boost?: number | undefined;
|
|
5847
5874
|
hidden?: boolean | undefined;
|
|
5848
|
-
graphql?: undefined;
|
|
5849
5875
|
sdk?: undefined;
|
|
5850
5876
|
root?: string | undefined;
|
|
5851
|
-
} & {
|
|
5877
|
+
}, "sdk"> & {
|
|
5852
5878
|
openapi?: string | string[] | {
|
|
5853
5879
|
source: string;
|
|
5854
5880
|
directory?: string | undefined;
|
|
@@ -5858,6 +5884,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5858
5884
|
directory?: string | undefined;
|
|
5859
5885
|
} | undefined;
|
|
5860
5886
|
} & {
|
|
5887
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
5861
5888
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
5862
5889
|
})[];
|
|
5863
5890
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -5865,7 +5892,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5865
5892
|
sdk?: undefined;
|
|
5866
5893
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5867
5894
|
}, {
|
|
5868
|
-
groups: ({
|
|
5895
|
+
groups: (Omit<{
|
|
5869
5896
|
group: string;
|
|
5870
5897
|
icon?: string | {
|
|
5871
5898
|
name: string;
|
|
@@ -5875,14 +5902,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5875
5902
|
expanded?: boolean | undefined;
|
|
5876
5903
|
public?: boolean | undefined;
|
|
5877
5904
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5905
|
+
graphql?: undefined;
|
|
5878
5906
|
tag?: string | undefined;
|
|
5879
5907
|
searchable?: boolean | undefined;
|
|
5880
5908
|
boost?: number | undefined;
|
|
5881
5909
|
hidden?: boolean | undefined;
|
|
5882
|
-
graphql?: undefined;
|
|
5883
5910
|
sdk?: undefined;
|
|
5884
5911
|
root?: string | undefined;
|
|
5885
|
-
} & {
|
|
5912
|
+
}, "sdk"> & {
|
|
5886
5913
|
openapi?: string | string[] | {
|
|
5887
5914
|
source: string;
|
|
5888
5915
|
directory?: string | undefined;
|
|
@@ -5892,6 +5919,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5892
5919
|
directory?: string | undefined;
|
|
5893
5920
|
} | undefined;
|
|
5894
5921
|
} & {
|
|
5922
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
5895
5923
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
5896
5924
|
})[];
|
|
5897
5925
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -5904,7 +5932,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5904
5932
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
5905
5933
|
sdk: z.ZodOptional<z.ZodNever>;
|
|
5906
5934
|
} & {
|
|
5907
|
-
pages: z.ZodArray<z.ZodType<string | ({
|
|
5935
|
+
pages: z.ZodArray<z.ZodType<string | (Omit<{
|
|
5908
5936
|
group: string;
|
|
5909
5937
|
icon?: string | {
|
|
5910
5938
|
name: string;
|
|
@@ -5914,14 +5942,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5914
5942
|
expanded?: boolean | undefined;
|
|
5915
5943
|
public?: boolean | undefined;
|
|
5916
5944
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5945
|
+
graphql?: undefined;
|
|
5917
5946
|
tag?: string | undefined;
|
|
5918
5947
|
searchable?: boolean | undefined;
|
|
5919
5948
|
boost?: number | undefined;
|
|
5920
5949
|
hidden?: boolean | undefined;
|
|
5921
|
-
graphql?: undefined;
|
|
5922
5950
|
sdk?: undefined;
|
|
5923
5951
|
root?: string | undefined;
|
|
5924
|
-
} & {
|
|
5952
|
+
}, "sdk"> & {
|
|
5925
5953
|
openapi?: string | string[] | {
|
|
5926
5954
|
source: string;
|
|
5927
5955
|
directory?: string | undefined;
|
|
@@ -5931,8 +5959,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5931
5959
|
directory?: string | undefined;
|
|
5932
5960
|
} | undefined;
|
|
5933
5961
|
} & {
|
|
5962
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
5934
5963
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
5935
|
-
}), z.ZodTypeDef, string | ({
|
|
5964
|
+
}), z.ZodTypeDef, string | (Omit<{
|
|
5936
5965
|
group: string;
|
|
5937
5966
|
icon?: string | {
|
|
5938
5967
|
name: string;
|
|
@@ -5942,14 +5971,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5942
5971
|
expanded?: boolean | undefined;
|
|
5943
5972
|
public?: boolean | undefined;
|
|
5944
5973
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5974
|
+
graphql?: undefined;
|
|
5945
5975
|
tag?: string | undefined;
|
|
5946
5976
|
searchable?: boolean | undefined;
|
|
5947
5977
|
boost?: number | undefined;
|
|
5948
5978
|
hidden?: boolean | undefined;
|
|
5949
|
-
graphql?: undefined;
|
|
5950
5979
|
sdk?: undefined;
|
|
5951
5980
|
root?: string | undefined;
|
|
5952
|
-
} & {
|
|
5981
|
+
}, "sdk"> & {
|
|
5953
5982
|
openapi?: string | string[] | {
|
|
5954
5983
|
source: string;
|
|
5955
5984
|
directory?: string | undefined;
|
|
@@ -5959,10 +5988,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5959
5988
|
directory?: string | undefined;
|
|
5960
5989
|
} | undefined;
|
|
5961
5990
|
} & {
|
|
5991
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
5962
5992
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
5963
5993
|
})>, "many">;
|
|
5964
5994
|
}, "strip", z.ZodTypeAny, {
|
|
5965
|
-
pages: (string | ({
|
|
5995
|
+
pages: (string | (Omit<{
|
|
5966
5996
|
group: string;
|
|
5967
5997
|
icon?: string | {
|
|
5968
5998
|
name: string;
|
|
@@ -5972,14 +6002,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5972
6002
|
expanded?: boolean | undefined;
|
|
5973
6003
|
public?: boolean | undefined;
|
|
5974
6004
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
6005
|
+
graphql?: undefined;
|
|
5975
6006
|
tag?: string | undefined;
|
|
5976
6007
|
searchable?: boolean | undefined;
|
|
5977
6008
|
boost?: number | undefined;
|
|
5978
6009
|
hidden?: boolean | undefined;
|
|
5979
|
-
graphql?: undefined;
|
|
5980
6010
|
sdk?: undefined;
|
|
5981
6011
|
root?: string | undefined;
|
|
5982
|
-
} & {
|
|
6012
|
+
}, "sdk"> & {
|
|
5983
6013
|
openapi?: string | string[] | {
|
|
5984
6014
|
source: string;
|
|
5985
6015
|
directory?: string | undefined;
|
|
@@ -5989,6 +6019,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5989
6019
|
directory?: string | undefined;
|
|
5990
6020
|
} | undefined;
|
|
5991
6021
|
} & {
|
|
6022
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
5992
6023
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
5993
6024
|
}))[];
|
|
5994
6025
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -5996,7 +6027,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5996
6027
|
sdk?: undefined;
|
|
5997
6028
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5998
6029
|
}, {
|
|
5999
|
-
pages: (string | ({
|
|
6030
|
+
pages: (string | (Omit<{
|
|
6000
6031
|
group: string;
|
|
6001
6032
|
icon?: string | {
|
|
6002
6033
|
name: string;
|
|
@@ -6006,14 +6037,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6006
6037
|
expanded?: boolean | undefined;
|
|
6007
6038
|
public?: boolean | undefined;
|
|
6008
6039
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
6040
|
+
graphql?: undefined;
|
|
6009
6041
|
tag?: string | undefined;
|
|
6010
6042
|
searchable?: boolean | undefined;
|
|
6011
6043
|
boost?: number | undefined;
|
|
6012
6044
|
hidden?: boolean | undefined;
|
|
6013
|
-
graphql?: undefined;
|
|
6014
6045
|
sdk?: undefined;
|
|
6015
6046
|
root?: string | undefined;
|
|
6016
|
-
} & {
|
|
6047
|
+
}, "sdk"> & {
|
|
6017
6048
|
openapi?: string | string[] | {
|
|
6018
6049
|
source: string;
|
|
6019
6050
|
directory?: string | undefined;
|
|
@@ -6023,6 +6054,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6023
6054
|
directory?: string | undefined;
|
|
6024
6055
|
} | undefined;
|
|
6025
6056
|
} & {
|
|
6057
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
6026
6058
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
6027
6059
|
}))[];
|
|
6028
6060
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -6977,7 +7009,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6977
7009
|
sdk?: undefined;
|
|
6978
7010
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
6979
7011
|
} | {
|
|
6980
|
-
groups: ({
|
|
7012
|
+
groups: (Omit<{
|
|
6981
7013
|
group: string;
|
|
6982
7014
|
icon?: string | {
|
|
6983
7015
|
name: string;
|
|
@@ -6987,14 +7019,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6987
7019
|
expanded?: boolean | undefined;
|
|
6988
7020
|
public?: boolean | undefined;
|
|
6989
7021
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
7022
|
+
graphql?: undefined;
|
|
6990
7023
|
tag?: string | undefined;
|
|
6991
7024
|
searchable?: boolean | undefined;
|
|
6992
7025
|
boost?: number | undefined;
|
|
6993
7026
|
hidden?: boolean | undefined;
|
|
6994
|
-
graphql?: undefined;
|
|
6995
7027
|
sdk?: undefined;
|
|
6996
7028
|
root?: string | undefined;
|
|
6997
|
-
} & {
|
|
7029
|
+
}, "sdk"> & {
|
|
6998
7030
|
openapi?: string | string[] | {
|
|
6999
7031
|
source: string;
|
|
7000
7032
|
directory?: string | undefined;
|
|
@@ -7004,6 +7036,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7004
7036
|
directory?: string | undefined;
|
|
7005
7037
|
} | undefined;
|
|
7006
7038
|
} & {
|
|
7039
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
7007
7040
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
7008
7041
|
})[];
|
|
7009
7042
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -7011,7 +7044,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7011
7044
|
sdk?: undefined;
|
|
7012
7045
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
7013
7046
|
} | {
|
|
7014
|
-
pages: (string | ({
|
|
7047
|
+
pages: (string | (Omit<{
|
|
7015
7048
|
group: string;
|
|
7016
7049
|
icon?: string | {
|
|
7017
7050
|
name: string;
|
|
@@ -7021,14 +7054,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7021
7054
|
expanded?: boolean | undefined;
|
|
7022
7055
|
public?: boolean | undefined;
|
|
7023
7056
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
7057
|
+
graphql?: undefined;
|
|
7024
7058
|
tag?: string | undefined;
|
|
7025
7059
|
searchable?: boolean | undefined;
|
|
7026
7060
|
boost?: number | undefined;
|
|
7027
7061
|
hidden?: boolean | undefined;
|
|
7028
|
-
graphql?: undefined;
|
|
7029
7062
|
sdk?: undefined;
|
|
7030
7063
|
root?: string | undefined;
|
|
7031
|
-
} & {
|
|
7064
|
+
}, "sdk"> & {
|
|
7032
7065
|
openapi?: string | string[] | {
|
|
7033
7066
|
source: string;
|
|
7034
7067
|
directory?: string | undefined;
|
|
@@ -7038,6 +7071,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7038
7071
|
directory?: string | undefined;
|
|
7039
7072
|
} | undefined;
|
|
7040
7073
|
} & {
|
|
7074
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
7041
7075
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
7042
7076
|
}))[];
|
|
7043
7077
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -7392,7 +7426,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7392
7426
|
sdk?: undefined;
|
|
7393
7427
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
7394
7428
|
} | {
|
|
7395
|
-
groups: ({
|
|
7429
|
+
groups: (Omit<{
|
|
7396
7430
|
group: string;
|
|
7397
7431
|
icon?: string | {
|
|
7398
7432
|
name: string;
|
|
@@ -7402,14 +7436,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7402
7436
|
expanded?: boolean | undefined;
|
|
7403
7437
|
public?: boolean | undefined;
|
|
7404
7438
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
7439
|
+
graphql?: undefined;
|
|
7405
7440
|
tag?: string | undefined;
|
|
7406
7441
|
searchable?: boolean | undefined;
|
|
7407
7442
|
boost?: number | undefined;
|
|
7408
7443
|
hidden?: boolean | undefined;
|
|
7409
|
-
graphql?: undefined;
|
|
7410
7444
|
sdk?: undefined;
|
|
7411
7445
|
root?: string | undefined;
|
|
7412
|
-
} & {
|
|
7446
|
+
}, "sdk"> & {
|
|
7413
7447
|
openapi?: string | string[] | {
|
|
7414
7448
|
source: string;
|
|
7415
7449
|
directory?: string | undefined;
|
|
@@ -7419,6 +7453,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7419
7453
|
directory?: string | undefined;
|
|
7420
7454
|
} | undefined;
|
|
7421
7455
|
} & {
|
|
7456
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
7422
7457
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
7423
7458
|
})[];
|
|
7424
7459
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -7426,7 +7461,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7426
7461
|
sdk?: undefined;
|
|
7427
7462
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
7428
7463
|
} | {
|
|
7429
|
-
pages: (string | ({
|
|
7464
|
+
pages: (string | (Omit<{
|
|
7430
7465
|
group: string;
|
|
7431
7466
|
icon?: string | {
|
|
7432
7467
|
name: string;
|
|
@@ -7436,14 +7471,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7436
7471
|
expanded?: boolean | undefined;
|
|
7437
7472
|
public?: boolean | undefined;
|
|
7438
7473
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
7474
|
+
graphql?: undefined;
|
|
7439
7475
|
tag?: string | undefined;
|
|
7440
7476
|
searchable?: boolean | undefined;
|
|
7441
7477
|
boost?: number | undefined;
|
|
7442
7478
|
hidden?: boolean | undefined;
|
|
7443
|
-
graphql?: undefined;
|
|
7444
7479
|
sdk?: undefined;
|
|
7445
7480
|
root?: string | undefined;
|
|
7446
|
-
} & {
|
|
7481
|
+
}, "sdk"> & {
|
|
7447
7482
|
openapi?: string | string[] | {
|
|
7448
7483
|
source: string;
|
|
7449
7484
|
directory?: string | undefined;
|
|
@@ -7453,6 +7488,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7453
7488
|
directory?: string | undefined;
|
|
7454
7489
|
} | undefined;
|
|
7455
7490
|
} & {
|
|
7491
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
7456
7492
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
7457
7493
|
}))[];
|
|
7458
7494
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -8392,7 +8428,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8392
8428
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
8393
8429
|
sdk: z.ZodOptional<z.ZodNever>;
|
|
8394
8430
|
} & {
|
|
8395
|
-
groups: z.ZodArray<z.ZodType<{
|
|
8431
|
+
groups: z.ZodArray<z.ZodType<Omit<{
|
|
8396
8432
|
group: string;
|
|
8397
8433
|
icon?: string | {
|
|
8398
8434
|
name: string;
|
|
@@ -8402,14 +8438,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8402
8438
|
expanded?: boolean | undefined;
|
|
8403
8439
|
public?: boolean | undefined;
|
|
8404
8440
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
8441
|
+
graphql?: undefined;
|
|
8405
8442
|
tag?: string | undefined;
|
|
8406
8443
|
searchable?: boolean | undefined;
|
|
8407
8444
|
boost?: number | undefined;
|
|
8408
8445
|
hidden?: boolean | undefined;
|
|
8409
|
-
graphql?: undefined;
|
|
8410
8446
|
sdk?: undefined;
|
|
8411
8447
|
root?: string | undefined;
|
|
8412
|
-
} & {
|
|
8448
|
+
}, "sdk"> & {
|
|
8413
8449
|
openapi?: string | string[] | {
|
|
8414
8450
|
source: string;
|
|
8415
8451
|
directory?: string | undefined;
|
|
@@ -8419,8 +8455,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8419
8455
|
directory?: string | undefined;
|
|
8420
8456
|
} | undefined;
|
|
8421
8457
|
} & {
|
|
8458
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
8422
8459
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
8423
|
-
}, z.ZodTypeDef, {
|
|
8460
|
+
}, z.ZodTypeDef, Omit<{
|
|
8424
8461
|
group: string;
|
|
8425
8462
|
icon?: string | {
|
|
8426
8463
|
name: string;
|
|
@@ -8430,14 +8467,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8430
8467
|
expanded?: boolean | undefined;
|
|
8431
8468
|
public?: boolean | undefined;
|
|
8432
8469
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
8470
|
+
graphql?: undefined;
|
|
8433
8471
|
tag?: string | undefined;
|
|
8434
8472
|
searchable?: boolean | undefined;
|
|
8435
8473
|
boost?: number | undefined;
|
|
8436
8474
|
hidden?: boolean | undefined;
|
|
8437
|
-
graphql?: undefined;
|
|
8438
8475
|
sdk?: undefined;
|
|
8439
8476
|
root?: string | undefined;
|
|
8440
|
-
} & {
|
|
8477
|
+
}, "sdk"> & {
|
|
8441
8478
|
openapi?: string | string[] | {
|
|
8442
8479
|
source: string;
|
|
8443
8480
|
directory?: string | undefined;
|
|
@@ -8447,10 +8484,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8447
8484
|
directory?: string | undefined;
|
|
8448
8485
|
} | undefined;
|
|
8449
8486
|
} & {
|
|
8487
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
8450
8488
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
8451
8489
|
}>, "many">;
|
|
8452
8490
|
}, "strip", z.ZodTypeAny, {
|
|
8453
|
-
groups: ({
|
|
8491
|
+
groups: (Omit<{
|
|
8454
8492
|
group: string;
|
|
8455
8493
|
icon?: string | {
|
|
8456
8494
|
name: string;
|
|
@@ -8460,14 +8498,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8460
8498
|
expanded?: boolean | undefined;
|
|
8461
8499
|
public?: boolean | undefined;
|
|
8462
8500
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
8501
|
+
graphql?: undefined;
|
|
8463
8502
|
tag?: string | undefined;
|
|
8464
8503
|
searchable?: boolean | undefined;
|
|
8465
8504
|
boost?: number | undefined;
|
|
8466
8505
|
hidden?: boolean | undefined;
|
|
8467
|
-
graphql?: undefined;
|
|
8468
8506
|
sdk?: undefined;
|
|
8469
8507
|
root?: string | undefined;
|
|
8470
|
-
} & {
|
|
8508
|
+
}, "sdk"> & {
|
|
8471
8509
|
openapi?: string | string[] | {
|
|
8472
8510
|
source: string;
|
|
8473
8511
|
directory?: string | undefined;
|
|
@@ -8477,6 +8515,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8477
8515
|
directory?: string | undefined;
|
|
8478
8516
|
} | undefined;
|
|
8479
8517
|
} & {
|
|
8518
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
8480
8519
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
8481
8520
|
})[];
|
|
8482
8521
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -8484,7 +8523,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8484
8523
|
sdk?: undefined;
|
|
8485
8524
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
8486
8525
|
}, {
|
|
8487
|
-
groups: ({
|
|
8526
|
+
groups: (Omit<{
|
|
8488
8527
|
group: string;
|
|
8489
8528
|
icon?: string | {
|
|
8490
8529
|
name: string;
|
|
@@ -8494,14 +8533,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8494
8533
|
expanded?: boolean | undefined;
|
|
8495
8534
|
public?: boolean | undefined;
|
|
8496
8535
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
8536
|
+
graphql?: undefined;
|
|
8497
8537
|
tag?: string | undefined;
|
|
8498
8538
|
searchable?: boolean | undefined;
|
|
8499
8539
|
boost?: number | undefined;
|
|
8500
8540
|
hidden?: boolean | undefined;
|
|
8501
|
-
graphql?: undefined;
|
|
8502
8541
|
sdk?: undefined;
|
|
8503
8542
|
root?: string | undefined;
|
|
8504
|
-
} & {
|
|
8543
|
+
}, "sdk"> & {
|
|
8505
8544
|
openapi?: string | string[] | {
|
|
8506
8545
|
source: string;
|
|
8507
8546
|
directory?: string | undefined;
|
|
@@ -8511,6 +8550,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8511
8550
|
directory?: string | undefined;
|
|
8512
8551
|
} | undefined;
|
|
8513
8552
|
} & {
|
|
8553
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
8514
8554
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
8515
8555
|
})[];
|
|
8516
8556
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -8523,7 +8563,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8523
8563
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
8524
8564
|
sdk: z.ZodOptional<z.ZodNever>;
|
|
8525
8565
|
} & {
|
|
8526
|
-
pages: z.ZodArray<z.ZodType<string | ({
|
|
8566
|
+
pages: z.ZodArray<z.ZodType<string | (Omit<{
|
|
8527
8567
|
group: string;
|
|
8528
8568
|
icon?: string | {
|
|
8529
8569
|
name: string;
|
|
@@ -8533,14 +8573,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8533
8573
|
expanded?: boolean | undefined;
|
|
8534
8574
|
public?: boolean | undefined;
|
|
8535
8575
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
8576
|
+
graphql?: undefined;
|
|
8536
8577
|
tag?: string | undefined;
|
|
8537
8578
|
searchable?: boolean | undefined;
|
|
8538
8579
|
boost?: number | undefined;
|
|
8539
8580
|
hidden?: boolean | undefined;
|
|
8540
|
-
graphql?: undefined;
|
|
8541
8581
|
sdk?: undefined;
|
|
8542
8582
|
root?: string | undefined;
|
|
8543
|
-
} & {
|
|
8583
|
+
}, "sdk"> & {
|
|
8544
8584
|
openapi?: string | string[] | {
|
|
8545
8585
|
source: string;
|
|
8546
8586
|
directory?: string | undefined;
|
|
@@ -8550,8 +8590,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8550
8590
|
directory?: string | undefined;
|
|
8551
8591
|
} | undefined;
|
|
8552
8592
|
} & {
|
|
8593
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
8553
8594
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
8554
|
-
}), z.ZodTypeDef, string | ({
|
|
8595
|
+
}), z.ZodTypeDef, string | (Omit<{
|
|
8555
8596
|
group: string;
|
|
8556
8597
|
icon?: string | {
|
|
8557
8598
|
name: string;
|
|
@@ -8561,14 +8602,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8561
8602
|
expanded?: boolean | undefined;
|
|
8562
8603
|
public?: boolean | undefined;
|
|
8563
8604
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
8605
|
+
graphql?: undefined;
|
|
8564
8606
|
tag?: string | undefined;
|
|
8565
8607
|
searchable?: boolean | undefined;
|
|
8566
8608
|
boost?: number | undefined;
|
|
8567
8609
|
hidden?: boolean | undefined;
|
|
8568
|
-
graphql?: undefined;
|
|
8569
8610
|
sdk?: undefined;
|
|
8570
8611
|
root?: string | undefined;
|
|
8571
|
-
} & {
|
|
8612
|
+
}, "sdk"> & {
|
|
8572
8613
|
openapi?: string | string[] | {
|
|
8573
8614
|
source: string;
|
|
8574
8615
|
directory?: string | undefined;
|
|
@@ -8578,10 +8619,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8578
8619
|
directory?: string | undefined;
|
|
8579
8620
|
} | undefined;
|
|
8580
8621
|
} & {
|
|
8622
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
8581
8623
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
8582
8624
|
})>, "many">;
|
|
8583
8625
|
}, "strip", z.ZodTypeAny, {
|
|
8584
|
-
pages: (string | ({
|
|
8626
|
+
pages: (string | (Omit<{
|
|
8585
8627
|
group: string;
|
|
8586
8628
|
icon?: string | {
|
|
8587
8629
|
name: string;
|
|
@@ -8591,14 +8633,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8591
8633
|
expanded?: boolean | undefined;
|
|
8592
8634
|
public?: boolean | undefined;
|
|
8593
8635
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
8636
|
+
graphql?: undefined;
|
|
8594
8637
|
tag?: string | undefined;
|
|
8595
8638
|
searchable?: boolean | undefined;
|
|
8596
8639
|
boost?: number | undefined;
|
|
8597
8640
|
hidden?: boolean | undefined;
|
|
8598
|
-
graphql?: undefined;
|
|
8599
8641
|
sdk?: undefined;
|
|
8600
8642
|
root?: string | undefined;
|
|
8601
|
-
} & {
|
|
8643
|
+
}, "sdk"> & {
|
|
8602
8644
|
openapi?: string | string[] | {
|
|
8603
8645
|
source: string;
|
|
8604
8646
|
directory?: string | undefined;
|
|
@@ -8608,6 +8650,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8608
8650
|
directory?: string | undefined;
|
|
8609
8651
|
} | undefined;
|
|
8610
8652
|
} & {
|
|
8653
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
8611
8654
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
8612
8655
|
}))[];
|
|
8613
8656
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -8615,7 +8658,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8615
8658
|
sdk?: undefined;
|
|
8616
8659
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
8617
8660
|
}, {
|
|
8618
|
-
pages: (string | ({
|
|
8661
|
+
pages: (string | (Omit<{
|
|
8619
8662
|
group: string;
|
|
8620
8663
|
icon?: string | {
|
|
8621
8664
|
name: string;
|
|
@@ -8625,14 +8668,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8625
8668
|
expanded?: boolean | undefined;
|
|
8626
8669
|
public?: boolean | undefined;
|
|
8627
8670
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
8671
|
+
graphql?: undefined;
|
|
8628
8672
|
tag?: string | undefined;
|
|
8629
8673
|
searchable?: boolean | undefined;
|
|
8630
8674
|
boost?: number | undefined;
|
|
8631
8675
|
hidden?: boolean | undefined;
|
|
8632
|
-
graphql?: undefined;
|
|
8633
8676
|
sdk?: undefined;
|
|
8634
8677
|
root?: string | undefined;
|
|
8635
|
-
} & {
|
|
8678
|
+
}, "sdk"> & {
|
|
8636
8679
|
openapi?: string | string[] | {
|
|
8637
8680
|
source: string;
|
|
8638
8681
|
directory?: string | undefined;
|
|
@@ -8642,6 +8685,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8642
8685
|
directory?: string | undefined;
|
|
8643
8686
|
} | undefined;
|
|
8644
8687
|
} & {
|
|
8688
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
8645
8689
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
8646
8690
|
}))[];
|
|
8647
8691
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -9596,7 +9640,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9596
9640
|
sdk?: undefined;
|
|
9597
9641
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9598
9642
|
} | {
|
|
9599
|
-
groups: ({
|
|
9643
|
+
groups: (Omit<{
|
|
9600
9644
|
group: string;
|
|
9601
9645
|
icon?: string | {
|
|
9602
9646
|
name: string;
|
|
@@ -9606,14 +9650,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9606
9650
|
expanded?: boolean | undefined;
|
|
9607
9651
|
public?: boolean | undefined;
|
|
9608
9652
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
9653
|
+
graphql?: undefined;
|
|
9609
9654
|
tag?: string | undefined;
|
|
9610
9655
|
searchable?: boolean | undefined;
|
|
9611
9656
|
boost?: number | undefined;
|
|
9612
9657
|
hidden?: boolean | undefined;
|
|
9613
|
-
graphql?: undefined;
|
|
9614
9658
|
sdk?: undefined;
|
|
9615
9659
|
root?: string | undefined;
|
|
9616
|
-
} & {
|
|
9660
|
+
}, "sdk"> & {
|
|
9617
9661
|
openapi?: string | string[] | {
|
|
9618
9662
|
source: string;
|
|
9619
9663
|
directory?: string | undefined;
|
|
@@ -9623,6 +9667,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9623
9667
|
directory?: string | undefined;
|
|
9624
9668
|
} | undefined;
|
|
9625
9669
|
} & {
|
|
9670
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
9626
9671
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
9627
9672
|
})[];
|
|
9628
9673
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -9630,7 +9675,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9630
9675
|
sdk?: undefined;
|
|
9631
9676
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9632
9677
|
} | {
|
|
9633
|
-
pages: (string | ({
|
|
9678
|
+
pages: (string | (Omit<{
|
|
9634
9679
|
group: string;
|
|
9635
9680
|
icon?: string | {
|
|
9636
9681
|
name: string;
|
|
@@ -9640,14 +9685,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9640
9685
|
expanded?: boolean | undefined;
|
|
9641
9686
|
public?: boolean | undefined;
|
|
9642
9687
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
9688
|
+
graphql?: undefined;
|
|
9643
9689
|
tag?: string | undefined;
|
|
9644
9690
|
searchable?: boolean | undefined;
|
|
9645
9691
|
boost?: number | undefined;
|
|
9646
9692
|
hidden?: boolean | undefined;
|
|
9647
|
-
graphql?: undefined;
|
|
9648
9693
|
sdk?: undefined;
|
|
9649
9694
|
root?: string | undefined;
|
|
9650
|
-
} & {
|
|
9695
|
+
}, "sdk"> & {
|
|
9651
9696
|
openapi?: string | string[] | {
|
|
9652
9697
|
source: string;
|
|
9653
9698
|
directory?: string | undefined;
|
|
@@ -9657,6 +9702,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9657
9702
|
directory?: string | undefined;
|
|
9658
9703
|
} | undefined;
|
|
9659
9704
|
} & {
|
|
9705
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
9660
9706
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
9661
9707
|
}))[];
|
|
9662
9708
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -10017,7 +10063,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10017
10063
|
sdk?: undefined;
|
|
10018
10064
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10019
10065
|
} | {
|
|
10020
|
-
groups: ({
|
|
10066
|
+
groups: (Omit<{
|
|
10021
10067
|
group: string;
|
|
10022
10068
|
icon?: string | {
|
|
10023
10069
|
name: string;
|
|
@@ -10027,14 +10073,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10027
10073
|
expanded?: boolean | undefined;
|
|
10028
10074
|
public?: boolean | undefined;
|
|
10029
10075
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
10076
|
+
graphql?: undefined;
|
|
10030
10077
|
tag?: string | undefined;
|
|
10031
10078
|
searchable?: boolean | undefined;
|
|
10032
10079
|
boost?: number | undefined;
|
|
10033
10080
|
hidden?: boolean | undefined;
|
|
10034
|
-
graphql?: undefined;
|
|
10035
10081
|
sdk?: undefined;
|
|
10036
10082
|
root?: string | undefined;
|
|
10037
|
-
} & {
|
|
10083
|
+
}, "sdk"> & {
|
|
10038
10084
|
openapi?: string | string[] | {
|
|
10039
10085
|
source: string;
|
|
10040
10086
|
directory?: string | undefined;
|
|
@@ -10044,6 +10090,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10044
10090
|
directory?: string | undefined;
|
|
10045
10091
|
} | undefined;
|
|
10046
10092
|
} & {
|
|
10093
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
10047
10094
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
10048
10095
|
})[];
|
|
10049
10096
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -10051,7 +10098,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10051
10098
|
sdk?: undefined;
|
|
10052
10099
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10053
10100
|
} | {
|
|
10054
|
-
pages: (string | ({
|
|
10101
|
+
pages: (string | (Omit<{
|
|
10055
10102
|
group: string;
|
|
10056
10103
|
icon?: string | {
|
|
10057
10104
|
name: string;
|
|
@@ -10061,14 +10108,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10061
10108
|
expanded?: boolean | undefined;
|
|
10062
10109
|
public?: boolean | undefined;
|
|
10063
10110
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
10111
|
+
graphql?: undefined;
|
|
10064
10112
|
tag?: string | undefined;
|
|
10065
10113
|
searchable?: boolean | undefined;
|
|
10066
10114
|
boost?: number | undefined;
|
|
10067
10115
|
hidden?: boolean | undefined;
|
|
10068
|
-
graphql?: undefined;
|
|
10069
10116
|
sdk?: undefined;
|
|
10070
10117
|
root?: string | undefined;
|
|
10071
|
-
} & {
|
|
10118
|
+
}, "sdk"> & {
|
|
10072
10119
|
openapi?: string | string[] | {
|
|
10073
10120
|
source: string;
|
|
10074
10121
|
directory?: string | undefined;
|
|
@@ -10078,6 +10125,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10078
10125
|
directory?: string | undefined;
|
|
10079
10126
|
} | undefined;
|
|
10080
10127
|
} & {
|
|
10128
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
10081
10129
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
10082
10130
|
}))[];
|
|
10083
10131
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -10991,7 +11039,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10991
11039
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
10992
11040
|
sdk: z.ZodOptional<z.ZodNever>;
|
|
10993
11041
|
} & {
|
|
10994
|
-
groups: z.ZodArray<z.ZodType<{
|
|
11042
|
+
groups: z.ZodArray<z.ZodType<Omit<{
|
|
10995
11043
|
group: string;
|
|
10996
11044
|
icon?: string | {
|
|
10997
11045
|
name: string;
|
|
@@ -11001,14 +11049,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11001
11049
|
expanded?: boolean | undefined;
|
|
11002
11050
|
public?: boolean | undefined;
|
|
11003
11051
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
11052
|
+
graphql?: undefined;
|
|
11004
11053
|
tag?: string | undefined;
|
|
11005
11054
|
searchable?: boolean | undefined;
|
|
11006
11055
|
boost?: number | undefined;
|
|
11007
11056
|
hidden?: boolean | undefined;
|
|
11008
|
-
graphql?: undefined;
|
|
11009
11057
|
sdk?: undefined;
|
|
11010
11058
|
root?: string | undefined;
|
|
11011
|
-
} & {
|
|
11059
|
+
}, "sdk"> & {
|
|
11012
11060
|
openapi?: string | string[] | {
|
|
11013
11061
|
source: string;
|
|
11014
11062
|
directory?: string | undefined;
|
|
@@ -11018,8 +11066,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11018
11066
|
directory?: string | undefined;
|
|
11019
11067
|
} | undefined;
|
|
11020
11068
|
} & {
|
|
11069
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
11021
11070
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
11022
|
-
}, z.ZodTypeDef, {
|
|
11071
|
+
}, z.ZodTypeDef, Omit<{
|
|
11023
11072
|
group: string;
|
|
11024
11073
|
icon?: string | {
|
|
11025
11074
|
name: string;
|
|
@@ -11029,14 +11078,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11029
11078
|
expanded?: boolean | undefined;
|
|
11030
11079
|
public?: boolean | undefined;
|
|
11031
11080
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
11081
|
+
graphql?: undefined;
|
|
11032
11082
|
tag?: string | undefined;
|
|
11033
11083
|
searchable?: boolean | undefined;
|
|
11034
11084
|
boost?: number | undefined;
|
|
11035
11085
|
hidden?: boolean | undefined;
|
|
11036
|
-
graphql?: undefined;
|
|
11037
11086
|
sdk?: undefined;
|
|
11038
11087
|
root?: string | undefined;
|
|
11039
|
-
} & {
|
|
11088
|
+
}, "sdk"> & {
|
|
11040
11089
|
openapi?: string | string[] | {
|
|
11041
11090
|
source: string;
|
|
11042
11091
|
directory?: string | undefined;
|
|
@@ -11046,10 +11095,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11046
11095
|
directory?: string | undefined;
|
|
11047
11096
|
} | undefined;
|
|
11048
11097
|
} & {
|
|
11098
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
11049
11099
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
11050
11100
|
}>, "many">;
|
|
11051
11101
|
}, "strip", z.ZodTypeAny, {
|
|
11052
|
-
groups: ({
|
|
11102
|
+
groups: (Omit<{
|
|
11053
11103
|
group: string;
|
|
11054
11104
|
icon?: string | {
|
|
11055
11105
|
name: string;
|
|
@@ -11059,14 +11109,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11059
11109
|
expanded?: boolean | undefined;
|
|
11060
11110
|
public?: boolean | undefined;
|
|
11061
11111
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
11112
|
+
graphql?: undefined;
|
|
11062
11113
|
tag?: string | undefined;
|
|
11063
11114
|
searchable?: boolean | undefined;
|
|
11064
11115
|
boost?: number | undefined;
|
|
11065
11116
|
hidden?: boolean | undefined;
|
|
11066
|
-
graphql?: undefined;
|
|
11067
11117
|
sdk?: undefined;
|
|
11068
11118
|
root?: string | undefined;
|
|
11069
|
-
} & {
|
|
11119
|
+
}, "sdk"> & {
|
|
11070
11120
|
openapi?: string | string[] | {
|
|
11071
11121
|
source: string;
|
|
11072
11122
|
directory?: string | undefined;
|
|
@@ -11076,6 +11126,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11076
11126
|
directory?: string | undefined;
|
|
11077
11127
|
} | undefined;
|
|
11078
11128
|
} & {
|
|
11129
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
11079
11130
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
11080
11131
|
})[];
|
|
11081
11132
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -11083,7 +11134,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11083
11134
|
sdk?: undefined;
|
|
11084
11135
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
11085
11136
|
}, {
|
|
11086
|
-
groups: ({
|
|
11137
|
+
groups: (Omit<{
|
|
11087
11138
|
group: string;
|
|
11088
11139
|
icon?: string | {
|
|
11089
11140
|
name: string;
|
|
@@ -11093,14 +11144,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11093
11144
|
expanded?: boolean | undefined;
|
|
11094
11145
|
public?: boolean | undefined;
|
|
11095
11146
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
11147
|
+
graphql?: undefined;
|
|
11096
11148
|
tag?: string | undefined;
|
|
11097
11149
|
searchable?: boolean | undefined;
|
|
11098
11150
|
boost?: number | undefined;
|
|
11099
11151
|
hidden?: boolean | undefined;
|
|
11100
|
-
graphql?: undefined;
|
|
11101
11152
|
sdk?: undefined;
|
|
11102
11153
|
root?: string | undefined;
|
|
11103
|
-
} & {
|
|
11154
|
+
}, "sdk"> & {
|
|
11104
11155
|
openapi?: string | string[] | {
|
|
11105
11156
|
source: string;
|
|
11106
11157
|
directory?: string | undefined;
|
|
@@ -11110,6 +11161,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11110
11161
|
directory?: string | undefined;
|
|
11111
11162
|
} | undefined;
|
|
11112
11163
|
} & {
|
|
11164
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
11113
11165
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
11114
11166
|
})[];
|
|
11115
11167
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -11122,7 +11174,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11122
11174
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
11123
11175
|
sdk: z.ZodOptional<z.ZodNever>;
|
|
11124
11176
|
} & {
|
|
11125
|
-
pages: z.ZodArray<z.ZodType<string | ({
|
|
11177
|
+
pages: z.ZodArray<z.ZodType<string | (Omit<{
|
|
11126
11178
|
group: string;
|
|
11127
11179
|
icon?: string | {
|
|
11128
11180
|
name: string;
|
|
@@ -11132,14 +11184,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11132
11184
|
expanded?: boolean | undefined;
|
|
11133
11185
|
public?: boolean | undefined;
|
|
11134
11186
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
11187
|
+
graphql?: undefined;
|
|
11135
11188
|
tag?: string | undefined;
|
|
11136
11189
|
searchable?: boolean | undefined;
|
|
11137
11190
|
boost?: number | undefined;
|
|
11138
11191
|
hidden?: boolean | undefined;
|
|
11139
|
-
graphql?: undefined;
|
|
11140
11192
|
sdk?: undefined;
|
|
11141
11193
|
root?: string | undefined;
|
|
11142
|
-
} & {
|
|
11194
|
+
}, "sdk"> & {
|
|
11143
11195
|
openapi?: string | string[] | {
|
|
11144
11196
|
source: string;
|
|
11145
11197
|
directory?: string | undefined;
|
|
@@ -11149,8 +11201,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11149
11201
|
directory?: string | undefined;
|
|
11150
11202
|
} | undefined;
|
|
11151
11203
|
} & {
|
|
11204
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
11152
11205
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
11153
|
-
}), z.ZodTypeDef, string | ({
|
|
11206
|
+
}), z.ZodTypeDef, string | (Omit<{
|
|
11154
11207
|
group: string;
|
|
11155
11208
|
icon?: string | {
|
|
11156
11209
|
name: string;
|
|
@@ -11160,14 +11213,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11160
11213
|
expanded?: boolean | undefined;
|
|
11161
11214
|
public?: boolean | undefined;
|
|
11162
11215
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
11216
|
+
graphql?: undefined;
|
|
11163
11217
|
tag?: string | undefined;
|
|
11164
11218
|
searchable?: boolean | undefined;
|
|
11165
11219
|
boost?: number | undefined;
|
|
11166
11220
|
hidden?: boolean | undefined;
|
|
11167
|
-
graphql?: undefined;
|
|
11168
11221
|
sdk?: undefined;
|
|
11169
11222
|
root?: string | undefined;
|
|
11170
|
-
} & {
|
|
11223
|
+
}, "sdk"> & {
|
|
11171
11224
|
openapi?: string | string[] | {
|
|
11172
11225
|
source: string;
|
|
11173
11226
|
directory?: string | undefined;
|
|
@@ -11177,10 +11230,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11177
11230
|
directory?: string | undefined;
|
|
11178
11231
|
} | undefined;
|
|
11179
11232
|
} & {
|
|
11233
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
11180
11234
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
11181
11235
|
})>, "many">;
|
|
11182
11236
|
}, "strip", z.ZodTypeAny, {
|
|
11183
|
-
pages: (string | ({
|
|
11237
|
+
pages: (string | (Omit<{
|
|
11184
11238
|
group: string;
|
|
11185
11239
|
icon?: string | {
|
|
11186
11240
|
name: string;
|
|
@@ -11190,14 +11244,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11190
11244
|
expanded?: boolean | undefined;
|
|
11191
11245
|
public?: boolean | undefined;
|
|
11192
11246
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
11247
|
+
graphql?: undefined;
|
|
11193
11248
|
tag?: string | undefined;
|
|
11194
11249
|
searchable?: boolean | undefined;
|
|
11195
11250
|
boost?: number | undefined;
|
|
11196
11251
|
hidden?: boolean | undefined;
|
|
11197
|
-
graphql?: undefined;
|
|
11198
11252
|
sdk?: undefined;
|
|
11199
11253
|
root?: string | undefined;
|
|
11200
|
-
} & {
|
|
11254
|
+
}, "sdk"> & {
|
|
11201
11255
|
openapi?: string | string[] | {
|
|
11202
11256
|
source: string;
|
|
11203
11257
|
directory?: string | undefined;
|
|
@@ -11207,6 +11261,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11207
11261
|
directory?: string | undefined;
|
|
11208
11262
|
} | undefined;
|
|
11209
11263
|
} & {
|
|
11264
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
11210
11265
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
11211
11266
|
}))[];
|
|
11212
11267
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -11214,7 +11269,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11214
11269
|
sdk?: undefined;
|
|
11215
11270
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
11216
11271
|
}, {
|
|
11217
|
-
pages: (string | ({
|
|
11272
|
+
pages: (string | (Omit<{
|
|
11218
11273
|
group: string;
|
|
11219
11274
|
icon?: string | {
|
|
11220
11275
|
name: string;
|
|
@@ -11224,14 +11279,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11224
11279
|
expanded?: boolean | undefined;
|
|
11225
11280
|
public?: boolean | undefined;
|
|
11226
11281
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
11282
|
+
graphql?: undefined;
|
|
11227
11283
|
tag?: string | undefined;
|
|
11228
11284
|
searchable?: boolean | undefined;
|
|
11229
11285
|
boost?: number | undefined;
|
|
11230
11286
|
hidden?: boolean | undefined;
|
|
11231
|
-
graphql?: undefined;
|
|
11232
11287
|
sdk?: undefined;
|
|
11233
11288
|
root?: string | undefined;
|
|
11234
|
-
} & {
|
|
11289
|
+
}, "sdk"> & {
|
|
11235
11290
|
openapi?: string | string[] | {
|
|
11236
11291
|
source: string;
|
|
11237
11292
|
directory?: string | undefined;
|
|
@@ -11241,6 +11296,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11241
11296
|
directory?: string | undefined;
|
|
11242
11297
|
} | undefined;
|
|
11243
11298
|
} & {
|
|
11299
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
11244
11300
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
11245
11301
|
}))[];
|
|
11246
11302
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -12195,7 +12251,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12195
12251
|
sdk?: undefined;
|
|
12196
12252
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
12197
12253
|
} | {
|
|
12198
|
-
groups: ({
|
|
12254
|
+
groups: (Omit<{
|
|
12199
12255
|
group: string;
|
|
12200
12256
|
icon?: string | {
|
|
12201
12257
|
name: string;
|
|
@@ -12205,14 +12261,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12205
12261
|
expanded?: boolean | undefined;
|
|
12206
12262
|
public?: boolean | undefined;
|
|
12207
12263
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
12264
|
+
graphql?: undefined;
|
|
12208
12265
|
tag?: string | undefined;
|
|
12209
12266
|
searchable?: boolean | undefined;
|
|
12210
12267
|
boost?: number | undefined;
|
|
12211
12268
|
hidden?: boolean | undefined;
|
|
12212
|
-
graphql?: undefined;
|
|
12213
12269
|
sdk?: undefined;
|
|
12214
12270
|
root?: string | undefined;
|
|
12215
|
-
} & {
|
|
12271
|
+
}, "sdk"> & {
|
|
12216
12272
|
openapi?: string | string[] | {
|
|
12217
12273
|
source: string;
|
|
12218
12274
|
directory?: string | undefined;
|
|
@@ -12222,6 +12278,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12222
12278
|
directory?: string | undefined;
|
|
12223
12279
|
} | undefined;
|
|
12224
12280
|
} & {
|
|
12281
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
12225
12282
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
12226
12283
|
})[];
|
|
12227
12284
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -12229,7 +12286,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12229
12286
|
sdk?: undefined;
|
|
12230
12287
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
12231
12288
|
} | {
|
|
12232
|
-
pages: (string | ({
|
|
12289
|
+
pages: (string | (Omit<{
|
|
12233
12290
|
group: string;
|
|
12234
12291
|
icon?: string | {
|
|
12235
12292
|
name: string;
|
|
@@ -12239,14 +12296,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12239
12296
|
expanded?: boolean | undefined;
|
|
12240
12297
|
public?: boolean | undefined;
|
|
12241
12298
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
12299
|
+
graphql?: undefined;
|
|
12242
12300
|
tag?: string | undefined;
|
|
12243
12301
|
searchable?: boolean | undefined;
|
|
12244
12302
|
boost?: number | undefined;
|
|
12245
12303
|
hidden?: boolean | undefined;
|
|
12246
|
-
graphql?: undefined;
|
|
12247
12304
|
sdk?: undefined;
|
|
12248
12305
|
root?: string | undefined;
|
|
12249
|
-
} & {
|
|
12306
|
+
}, "sdk"> & {
|
|
12250
12307
|
openapi?: string | string[] | {
|
|
12251
12308
|
source: string;
|
|
12252
12309
|
directory?: string | undefined;
|
|
@@ -12256,6 +12313,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12256
12313
|
directory?: string | undefined;
|
|
12257
12314
|
} | undefined;
|
|
12258
12315
|
} & {
|
|
12316
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
12259
12317
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
12260
12318
|
}))[];
|
|
12261
12319
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -12610,7 +12668,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12610
12668
|
sdk?: undefined;
|
|
12611
12669
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
12612
12670
|
} | {
|
|
12613
|
-
groups: ({
|
|
12671
|
+
groups: (Omit<{
|
|
12614
12672
|
group: string;
|
|
12615
12673
|
icon?: string | {
|
|
12616
12674
|
name: string;
|
|
@@ -12620,14 +12678,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12620
12678
|
expanded?: boolean | undefined;
|
|
12621
12679
|
public?: boolean | undefined;
|
|
12622
12680
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
12681
|
+
graphql?: undefined;
|
|
12623
12682
|
tag?: string | undefined;
|
|
12624
12683
|
searchable?: boolean | undefined;
|
|
12625
12684
|
boost?: number | undefined;
|
|
12626
12685
|
hidden?: boolean | undefined;
|
|
12627
|
-
graphql?: undefined;
|
|
12628
12686
|
sdk?: undefined;
|
|
12629
12687
|
root?: string | undefined;
|
|
12630
|
-
} & {
|
|
12688
|
+
}, "sdk"> & {
|
|
12631
12689
|
openapi?: string | string[] | {
|
|
12632
12690
|
source: string;
|
|
12633
12691
|
directory?: string | undefined;
|
|
@@ -12637,6 +12695,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12637
12695
|
directory?: string | undefined;
|
|
12638
12696
|
} | undefined;
|
|
12639
12697
|
} & {
|
|
12698
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
12640
12699
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
12641
12700
|
})[];
|
|
12642
12701
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -12644,7 +12703,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12644
12703
|
sdk?: undefined;
|
|
12645
12704
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
12646
12705
|
} | {
|
|
12647
|
-
pages: (string | ({
|
|
12706
|
+
pages: (string | (Omit<{
|
|
12648
12707
|
group: string;
|
|
12649
12708
|
icon?: string | {
|
|
12650
12709
|
name: string;
|
|
@@ -12654,14 +12713,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12654
12713
|
expanded?: boolean | undefined;
|
|
12655
12714
|
public?: boolean | undefined;
|
|
12656
12715
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
12716
|
+
graphql?: undefined;
|
|
12657
12717
|
tag?: string | undefined;
|
|
12658
12718
|
searchable?: boolean | undefined;
|
|
12659
12719
|
boost?: number | undefined;
|
|
12660
12720
|
hidden?: boolean | undefined;
|
|
12661
|
-
graphql?: undefined;
|
|
12662
12721
|
sdk?: undefined;
|
|
12663
12722
|
root?: string | undefined;
|
|
12664
|
-
} & {
|
|
12723
|
+
}, "sdk"> & {
|
|
12665
12724
|
openapi?: string | string[] | {
|
|
12666
12725
|
source: string;
|
|
12667
12726
|
directory?: string | undefined;
|
|
@@ -12671,6 +12730,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12671
12730
|
directory?: string | undefined;
|
|
12672
12731
|
} | undefined;
|
|
12673
12732
|
} & {
|
|
12733
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
12674
12734
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
12675
12735
|
}))[];
|
|
12676
12736
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -13578,7 +13638,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13578
13638
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
13579
13639
|
sdk: z.ZodOptional<z.ZodNever>;
|
|
13580
13640
|
} & {
|
|
13581
|
-
groups: z.ZodArray<z.ZodType<{
|
|
13641
|
+
groups: z.ZodArray<z.ZodType<Omit<{
|
|
13582
13642
|
group: string;
|
|
13583
13643
|
icon?: string | {
|
|
13584
13644
|
name: string;
|
|
@@ -13588,14 +13648,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13588
13648
|
expanded?: boolean | undefined;
|
|
13589
13649
|
public?: boolean | undefined;
|
|
13590
13650
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
13651
|
+
graphql?: undefined;
|
|
13591
13652
|
tag?: string | undefined;
|
|
13592
13653
|
searchable?: boolean | undefined;
|
|
13593
13654
|
boost?: number | undefined;
|
|
13594
13655
|
hidden?: boolean | undefined;
|
|
13595
|
-
graphql?: undefined;
|
|
13596
13656
|
sdk?: undefined;
|
|
13597
13657
|
root?: string | undefined;
|
|
13598
|
-
} & {
|
|
13658
|
+
}, "sdk"> & {
|
|
13599
13659
|
openapi?: string | string[] | {
|
|
13600
13660
|
source: string;
|
|
13601
13661
|
directory?: string | undefined;
|
|
@@ -13605,8 +13665,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13605
13665
|
directory?: string | undefined;
|
|
13606
13666
|
} | undefined;
|
|
13607
13667
|
} & {
|
|
13668
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
13608
13669
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
13609
|
-
}, z.ZodTypeDef, {
|
|
13670
|
+
}, z.ZodTypeDef, Omit<{
|
|
13610
13671
|
group: string;
|
|
13611
13672
|
icon?: string | {
|
|
13612
13673
|
name: string;
|
|
@@ -13616,14 +13677,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13616
13677
|
expanded?: boolean | undefined;
|
|
13617
13678
|
public?: boolean | undefined;
|
|
13618
13679
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
13680
|
+
graphql?: undefined;
|
|
13619
13681
|
tag?: string | undefined;
|
|
13620
13682
|
searchable?: boolean | undefined;
|
|
13621
13683
|
boost?: number | undefined;
|
|
13622
13684
|
hidden?: boolean | undefined;
|
|
13623
|
-
graphql?: undefined;
|
|
13624
13685
|
sdk?: undefined;
|
|
13625
13686
|
root?: string | undefined;
|
|
13626
|
-
} & {
|
|
13687
|
+
}, "sdk"> & {
|
|
13627
13688
|
openapi?: string | string[] | {
|
|
13628
13689
|
source: string;
|
|
13629
13690
|
directory?: string | undefined;
|
|
@@ -13633,10 +13694,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13633
13694
|
directory?: string | undefined;
|
|
13634
13695
|
} | undefined;
|
|
13635
13696
|
} & {
|
|
13697
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
13636
13698
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
13637
13699
|
}>, "many">;
|
|
13638
13700
|
}, "strip", z.ZodTypeAny, {
|
|
13639
|
-
groups: ({
|
|
13701
|
+
groups: (Omit<{
|
|
13640
13702
|
group: string;
|
|
13641
13703
|
icon?: string | {
|
|
13642
13704
|
name: string;
|
|
@@ -13646,14 +13708,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13646
13708
|
expanded?: boolean | undefined;
|
|
13647
13709
|
public?: boolean | undefined;
|
|
13648
13710
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
13711
|
+
graphql?: undefined;
|
|
13649
13712
|
tag?: string | undefined;
|
|
13650
13713
|
searchable?: boolean | undefined;
|
|
13651
13714
|
boost?: number | undefined;
|
|
13652
13715
|
hidden?: boolean | undefined;
|
|
13653
|
-
graphql?: undefined;
|
|
13654
13716
|
sdk?: undefined;
|
|
13655
13717
|
root?: string | undefined;
|
|
13656
|
-
} & {
|
|
13718
|
+
}, "sdk"> & {
|
|
13657
13719
|
openapi?: string | string[] | {
|
|
13658
13720
|
source: string;
|
|
13659
13721
|
directory?: string | undefined;
|
|
@@ -13663,6 +13725,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13663
13725
|
directory?: string | undefined;
|
|
13664
13726
|
} | undefined;
|
|
13665
13727
|
} & {
|
|
13728
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
13666
13729
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
13667
13730
|
})[];
|
|
13668
13731
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -13670,7 +13733,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13670
13733
|
sdk?: undefined;
|
|
13671
13734
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
13672
13735
|
}, {
|
|
13673
|
-
groups: ({
|
|
13736
|
+
groups: (Omit<{
|
|
13674
13737
|
group: string;
|
|
13675
13738
|
icon?: string | {
|
|
13676
13739
|
name: string;
|
|
@@ -13680,14 +13743,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13680
13743
|
expanded?: boolean | undefined;
|
|
13681
13744
|
public?: boolean | undefined;
|
|
13682
13745
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
13746
|
+
graphql?: undefined;
|
|
13683
13747
|
tag?: string | undefined;
|
|
13684
13748
|
searchable?: boolean | undefined;
|
|
13685
13749
|
boost?: number | undefined;
|
|
13686
13750
|
hidden?: boolean | undefined;
|
|
13687
|
-
graphql?: undefined;
|
|
13688
13751
|
sdk?: undefined;
|
|
13689
13752
|
root?: string | undefined;
|
|
13690
|
-
} & {
|
|
13753
|
+
}, "sdk"> & {
|
|
13691
13754
|
openapi?: string | string[] | {
|
|
13692
13755
|
source: string;
|
|
13693
13756
|
directory?: string | undefined;
|
|
@@ -13697,6 +13760,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13697
13760
|
directory?: string | undefined;
|
|
13698
13761
|
} | undefined;
|
|
13699
13762
|
} & {
|
|
13763
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
13700
13764
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
13701
13765
|
})[];
|
|
13702
13766
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -13709,7 +13773,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13709
13773
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
13710
13774
|
sdk: z.ZodOptional<z.ZodNever>;
|
|
13711
13775
|
} & {
|
|
13712
|
-
pages: z.ZodArray<z.ZodType<string | ({
|
|
13776
|
+
pages: z.ZodArray<z.ZodType<string | (Omit<{
|
|
13713
13777
|
group: string;
|
|
13714
13778
|
icon?: string | {
|
|
13715
13779
|
name: string;
|
|
@@ -13719,14 +13783,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13719
13783
|
expanded?: boolean | undefined;
|
|
13720
13784
|
public?: boolean | undefined;
|
|
13721
13785
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
13786
|
+
graphql?: undefined;
|
|
13722
13787
|
tag?: string | undefined;
|
|
13723
13788
|
searchable?: boolean | undefined;
|
|
13724
13789
|
boost?: number | undefined;
|
|
13725
13790
|
hidden?: boolean | undefined;
|
|
13726
|
-
graphql?: undefined;
|
|
13727
13791
|
sdk?: undefined;
|
|
13728
13792
|
root?: string | undefined;
|
|
13729
|
-
} & {
|
|
13793
|
+
}, "sdk"> & {
|
|
13730
13794
|
openapi?: string | string[] | {
|
|
13731
13795
|
source: string;
|
|
13732
13796
|
directory?: string | undefined;
|
|
@@ -13736,8 +13800,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13736
13800
|
directory?: string | undefined;
|
|
13737
13801
|
} | undefined;
|
|
13738
13802
|
} & {
|
|
13803
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
13739
13804
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
13740
|
-
}), z.ZodTypeDef, string | ({
|
|
13805
|
+
}), z.ZodTypeDef, string | (Omit<{
|
|
13741
13806
|
group: string;
|
|
13742
13807
|
icon?: string | {
|
|
13743
13808
|
name: string;
|
|
@@ -13747,14 +13812,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13747
13812
|
expanded?: boolean | undefined;
|
|
13748
13813
|
public?: boolean | undefined;
|
|
13749
13814
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
13815
|
+
graphql?: undefined;
|
|
13750
13816
|
tag?: string | undefined;
|
|
13751
13817
|
searchable?: boolean | undefined;
|
|
13752
13818
|
boost?: number | undefined;
|
|
13753
13819
|
hidden?: boolean | undefined;
|
|
13754
|
-
graphql?: undefined;
|
|
13755
13820
|
sdk?: undefined;
|
|
13756
13821
|
root?: string | undefined;
|
|
13757
|
-
} & {
|
|
13822
|
+
}, "sdk"> & {
|
|
13758
13823
|
openapi?: string | string[] | {
|
|
13759
13824
|
source: string;
|
|
13760
13825
|
directory?: string | undefined;
|
|
@@ -13764,10 +13829,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13764
13829
|
directory?: string | undefined;
|
|
13765
13830
|
} | undefined;
|
|
13766
13831
|
} & {
|
|
13832
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
13767
13833
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
13768
13834
|
})>, "many">;
|
|
13769
13835
|
}, "strip", z.ZodTypeAny, {
|
|
13770
|
-
pages: (string | ({
|
|
13836
|
+
pages: (string | (Omit<{
|
|
13771
13837
|
group: string;
|
|
13772
13838
|
icon?: string | {
|
|
13773
13839
|
name: string;
|
|
@@ -13777,14 +13843,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13777
13843
|
expanded?: boolean | undefined;
|
|
13778
13844
|
public?: boolean | undefined;
|
|
13779
13845
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
13846
|
+
graphql?: undefined;
|
|
13780
13847
|
tag?: string | undefined;
|
|
13781
13848
|
searchable?: boolean | undefined;
|
|
13782
13849
|
boost?: number | undefined;
|
|
13783
13850
|
hidden?: boolean | undefined;
|
|
13784
|
-
graphql?: undefined;
|
|
13785
13851
|
sdk?: undefined;
|
|
13786
13852
|
root?: string | undefined;
|
|
13787
|
-
} & {
|
|
13853
|
+
}, "sdk"> & {
|
|
13788
13854
|
openapi?: string | string[] | {
|
|
13789
13855
|
source: string;
|
|
13790
13856
|
directory?: string | undefined;
|
|
@@ -13794,6 +13860,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13794
13860
|
directory?: string | undefined;
|
|
13795
13861
|
} | undefined;
|
|
13796
13862
|
} & {
|
|
13863
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
13797
13864
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
13798
13865
|
}))[];
|
|
13799
13866
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -13801,7 +13868,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13801
13868
|
sdk?: undefined;
|
|
13802
13869
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
13803
13870
|
}, {
|
|
13804
|
-
pages: (string | ({
|
|
13871
|
+
pages: (string | (Omit<{
|
|
13805
13872
|
group: string;
|
|
13806
13873
|
icon?: string | {
|
|
13807
13874
|
name: string;
|
|
@@ -13811,14 +13878,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13811
13878
|
expanded?: boolean | undefined;
|
|
13812
13879
|
public?: boolean | undefined;
|
|
13813
13880
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
13881
|
+
graphql?: undefined;
|
|
13814
13882
|
tag?: string | undefined;
|
|
13815
13883
|
searchable?: boolean | undefined;
|
|
13816
13884
|
boost?: number | undefined;
|
|
13817
13885
|
hidden?: boolean | undefined;
|
|
13818
|
-
graphql?: undefined;
|
|
13819
13886
|
sdk?: undefined;
|
|
13820
13887
|
root?: string | undefined;
|
|
13821
|
-
} & {
|
|
13888
|
+
}, "sdk"> & {
|
|
13822
13889
|
openapi?: string | string[] | {
|
|
13823
13890
|
source: string;
|
|
13824
13891
|
directory?: string | undefined;
|
|
@@ -13828,6 +13895,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13828
13895
|
directory?: string | undefined;
|
|
13829
13896
|
} | undefined;
|
|
13830
13897
|
} & {
|
|
13898
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
13831
13899
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
13832
13900
|
}))[];
|
|
13833
13901
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -14782,7 +14850,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14782
14850
|
sdk?: undefined;
|
|
14783
14851
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
14784
14852
|
} | {
|
|
14785
|
-
groups: ({
|
|
14853
|
+
groups: (Omit<{
|
|
14786
14854
|
group: string;
|
|
14787
14855
|
icon?: string | {
|
|
14788
14856
|
name: string;
|
|
@@ -14792,14 +14860,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14792
14860
|
expanded?: boolean | undefined;
|
|
14793
14861
|
public?: boolean | undefined;
|
|
14794
14862
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
14863
|
+
graphql?: undefined;
|
|
14795
14864
|
tag?: string | undefined;
|
|
14796
14865
|
searchable?: boolean | undefined;
|
|
14797
14866
|
boost?: number | undefined;
|
|
14798
14867
|
hidden?: boolean | undefined;
|
|
14799
|
-
graphql?: undefined;
|
|
14800
14868
|
sdk?: undefined;
|
|
14801
14869
|
root?: string | undefined;
|
|
14802
|
-
} & {
|
|
14870
|
+
}, "sdk"> & {
|
|
14803
14871
|
openapi?: string | string[] | {
|
|
14804
14872
|
source: string;
|
|
14805
14873
|
directory?: string | undefined;
|
|
@@ -14809,6 +14877,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14809
14877
|
directory?: string | undefined;
|
|
14810
14878
|
} | undefined;
|
|
14811
14879
|
} & {
|
|
14880
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
14812
14881
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
14813
14882
|
})[];
|
|
14814
14883
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -14816,7 +14885,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14816
14885
|
sdk?: undefined;
|
|
14817
14886
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
14818
14887
|
} | {
|
|
14819
|
-
pages: (string | ({
|
|
14888
|
+
pages: (string | (Omit<{
|
|
14820
14889
|
group: string;
|
|
14821
14890
|
icon?: string | {
|
|
14822
14891
|
name: string;
|
|
@@ -14826,14 +14895,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14826
14895
|
expanded?: boolean | undefined;
|
|
14827
14896
|
public?: boolean | undefined;
|
|
14828
14897
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
14898
|
+
graphql?: undefined;
|
|
14829
14899
|
tag?: string | undefined;
|
|
14830
14900
|
searchable?: boolean | undefined;
|
|
14831
14901
|
boost?: number | undefined;
|
|
14832
14902
|
hidden?: boolean | undefined;
|
|
14833
|
-
graphql?: undefined;
|
|
14834
14903
|
sdk?: undefined;
|
|
14835
14904
|
root?: string | undefined;
|
|
14836
|
-
} & {
|
|
14905
|
+
}, "sdk"> & {
|
|
14837
14906
|
openapi?: string | string[] | {
|
|
14838
14907
|
source: string;
|
|
14839
14908
|
directory?: string | undefined;
|
|
@@ -14843,6 +14912,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14843
14912
|
directory?: string | undefined;
|
|
14844
14913
|
} | undefined;
|
|
14845
14914
|
} & {
|
|
14915
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
14846
14916
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
14847
14917
|
}))[];
|
|
14848
14918
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -15197,7 +15267,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15197
15267
|
sdk?: undefined;
|
|
15198
15268
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15199
15269
|
} | {
|
|
15200
|
-
groups: ({
|
|
15270
|
+
groups: (Omit<{
|
|
15201
15271
|
group: string;
|
|
15202
15272
|
icon?: string | {
|
|
15203
15273
|
name: string;
|
|
@@ -15207,14 +15277,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15207
15277
|
expanded?: boolean | undefined;
|
|
15208
15278
|
public?: boolean | undefined;
|
|
15209
15279
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
15280
|
+
graphql?: undefined;
|
|
15210
15281
|
tag?: string | undefined;
|
|
15211
15282
|
searchable?: boolean | undefined;
|
|
15212
15283
|
boost?: number | undefined;
|
|
15213
15284
|
hidden?: boolean | undefined;
|
|
15214
|
-
graphql?: undefined;
|
|
15215
15285
|
sdk?: undefined;
|
|
15216
15286
|
root?: string | undefined;
|
|
15217
|
-
} & {
|
|
15287
|
+
}, "sdk"> & {
|
|
15218
15288
|
openapi?: string | string[] | {
|
|
15219
15289
|
source: string;
|
|
15220
15290
|
directory?: string | undefined;
|
|
@@ -15224,6 +15294,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15224
15294
|
directory?: string | undefined;
|
|
15225
15295
|
} | undefined;
|
|
15226
15296
|
} & {
|
|
15297
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
15227
15298
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
15228
15299
|
})[];
|
|
15229
15300
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -15231,7 +15302,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15231
15302
|
sdk?: undefined;
|
|
15232
15303
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15233
15304
|
} | {
|
|
15234
|
-
pages: (string | ({
|
|
15305
|
+
pages: (string | (Omit<{
|
|
15235
15306
|
group: string;
|
|
15236
15307
|
icon?: string | {
|
|
15237
15308
|
name: string;
|
|
@@ -15241,14 +15312,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15241
15312
|
expanded?: boolean | undefined;
|
|
15242
15313
|
public?: boolean | undefined;
|
|
15243
15314
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
15315
|
+
graphql?: undefined;
|
|
15244
15316
|
tag?: string | undefined;
|
|
15245
15317
|
searchable?: boolean | undefined;
|
|
15246
15318
|
boost?: number | undefined;
|
|
15247
15319
|
hidden?: boolean | undefined;
|
|
15248
|
-
graphql?: undefined;
|
|
15249
15320
|
sdk?: undefined;
|
|
15250
15321
|
root?: string | undefined;
|
|
15251
|
-
} & {
|
|
15322
|
+
}, "sdk"> & {
|
|
15252
15323
|
openapi?: string | string[] | {
|
|
15253
15324
|
source: string;
|
|
15254
15325
|
directory?: string | undefined;
|
|
@@ -15258,6 +15329,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15258
15329
|
directory?: string | undefined;
|
|
15259
15330
|
} | undefined;
|
|
15260
15331
|
} & {
|
|
15332
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
15261
15333
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
15262
15334
|
}))[];
|
|
15263
15335
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -16165,7 +16237,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16165
16237
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
16166
16238
|
sdk: z.ZodOptional<z.ZodNever>;
|
|
16167
16239
|
} & {
|
|
16168
|
-
groups: z.ZodArray<z.ZodType<{
|
|
16240
|
+
groups: z.ZodArray<z.ZodType<Omit<{
|
|
16169
16241
|
group: string;
|
|
16170
16242
|
icon?: string | {
|
|
16171
16243
|
name: string;
|
|
@@ -16175,14 +16247,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16175
16247
|
expanded?: boolean | undefined;
|
|
16176
16248
|
public?: boolean | undefined;
|
|
16177
16249
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
16250
|
+
graphql?: undefined;
|
|
16178
16251
|
tag?: string | undefined;
|
|
16179
16252
|
searchable?: boolean | undefined;
|
|
16180
16253
|
boost?: number | undefined;
|
|
16181
16254
|
hidden?: boolean | undefined;
|
|
16182
|
-
graphql?: undefined;
|
|
16183
16255
|
sdk?: undefined;
|
|
16184
16256
|
root?: string | undefined;
|
|
16185
|
-
} & {
|
|
16257
|
+
}, "sdk"> & {
|
|
16186
16258
|
openapi?: string | string[] | {
|
|
16187
16259
|
source: string;
|
|
16188
16260
|
directory?: string | undefined;
|
|
@@ -16192,8 +16264,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16192
16264
|
directory?: string | undefined;
|
|
16193
16265
|
} | undefined;
|
|
16194
16266
|
} & {
|
|
16267
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
16195
16268
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
16196
|
-
}, z.ZodTypeDef, {
|
|
16269
|
+
}, z.ZodTypeDef, Omit<{
|
|
16197
16270
|
group: string;
|
|
16198
16271
|
icon?: string | {
|
|
16199
16272
|
name: string;
|
|
@@ -16203,14 +16276,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16203
16276
|
expanded?: boolean | undefined;
|
|
16204
16277
|
public?: boolean | undefined;
|
|
16205
16278
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
16279
|
+
graphql?: undefined;
|
|
16206
16280
|
tag?: string | undefined;
|
|
16207
16281
|
searchable?: boolean | undefined;
|
|
16208
16282
|
boost?: number | undefined;
|
|
16209
16283
|
hidden?: boolean | undefined;
|
|
16210
|
-
graphql?: undefined;
|
|
16211
16284
|
sdk?: undefined;
|
|
16212
16285
|
root?: string | undefined;
|
|
16213
|
-
} & {
|
|
16286
|
+
}, "sdk"> & {
|
|
16214
16287
|
openapi?: string | string[] | {
|
|
16215
16288
|
source: string;
|
|
16216
16289
|
directory?: string | undefined;
|
|
@@ -16220,10 +16293,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16220
16293
|
directory?: string | undefined;
|
|
16221
16294
|
} | undefined;
|
|
16222
16295
|
} & {
|
|
16296
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
16223
16297
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
16224
16298
|
}>, "many">;
|
|
16225
16299
|
}, "strip", z.ZodTypeAny, {
|
|
16226
|
-
groups: ({
|
|
16300
|
+
groups: (Omit<{
|
|
16227
16301
|
group: string;
|
|
16228
16302
|
icon?: string | {
|
|
16229
16303
|
name: string;
|
|
@@ -16233,14 +16307,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16233
16307
|
expanded?: boolean | undefined;
|
|
16234
16308
|
public?: boolean | undefined;
|
|
16235
16309
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
16310
|
+
graphql?: undefined;
|
|
16236
16311
|
tag?: string | undefined;
|
|
16237
16312
|
searchable?: boolean | undefined;
|
|
16238
16313
|
boost?: number | undefined;
|
|
16239
16314
|
hidden?: boolean | undefined;
|
|
16240
|
-
graphql?: undefined;
|
|
16241
16315
|
sdk?: undefined;
|
|
16242
16316
|
root?: string | undefined;
|
|
16243
|
-
} & {
|
|
16317
|
+
}, "sdk"> & {
|
|
16244
16318
|
openapi?: string | string[] | {
|
|
16245
16319
|
source: string;
|
|
16246
16320
|
directory?: string | undefined;
|
|
@@ -16250,6 +16324,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16250
16324
|
directory?: string | undefined;
|
|
16251
16325
|
} | undefined;
|
|
16252
16326
|
} & {
|
|
16327
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
16253
16328
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
16254
16329
|
})[];
|
|
16255
16330
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -16257,7 +16332,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16257
16332
|
sdk?: undefined;
|
|
16258
16333
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
16259
16334
|
}, {
|
|
16260
|
-
groups: ({
|
|
16335
|
+
groups: (Omit<{
|
|
16261
16336
|
group: string;
|
|
16262
16337
|
icon?: string | {
|
|
16263
16338
|
name: string;
|
|
@@ -16267,14 +16342,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16267
16342
|
expanded?: boolean | undefined;
|
|
16268
16343
|
public?: boolean | undefined;
|
|
16269
16344
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
16345
|
+
graphql?: undefined;
|
|
16270
16346
|
tag?: string | undefined;
|
|
16271
16347
|
searchable?: boolean | undefined;
|
|
16272
16348
|
boost?: number | undefined;
|
|
16273
16349
|
hidden?: boolean | undefined;
|
|
16274
|
-
graphql?: undefined;
|
|
16275
16350
|
sdk?: undefined;
|
|
16276
16351
|
root?: string | undefined;
|
|
16277
|
-
} & {
|
|
16352
|
+
}, "sdk"> & {
|
|
16278
16353
|
openapi?: string | string[] | {
|
|
16279
16354
|
source: string;
|
|
16280
16355
|
directory?: string | undefined;
|
|
@@ -16284,6 +16359,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16284
16359
|
directory?: string | undefined;
|
|
16285
16360
|
} | undefined;
|
|
16286
16361
|
} & {
|
|
16362
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
16287
16363
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
16288
16364
|
})[];
|
|
16289
16365
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -16296,7 +16372,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16296
16372
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
16297
16373
|
sdk: z.ZodOptional<z.ZodNever>;
|
|
16298
16374
|
} & {
|
|
16299
|
-
pages: z.ZodArray<z.ZodType<string | ({
|
|
16375
|
+
pages: z.ZodArray<z.ZodType<string | (Omit<{
|
|
16300
16376
|
group: string;
|
|
16301
16377
|
icon?: string | {
|
|
16302
16378
|
name: string;
|
|
@@ -16306,14 +16382,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16306
16382
|
expanded?: boolean | undefined;
|
|
16307
16383
|
public?: boolean | undefined;
|
|
16308
16384
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
16385
|
+
graphql?: undefined;
|
|
16309
16386
|
tag?: string | undefined;
|
|
16310
16387
|
searchable?: boolean | undefined;
|
|
16311
16388
|
boost?: number | undefined;
|
|
16312
16389
|
hidden?: boolean | undefined;
|
|
16313
|
-
graphql?: undefined;
|
|
16314
16390
|
sdk?: undefined;
|
|
16315
16391
|
root?: string | undefined;
|
|
16316
|
-
} & {
|
|
16392
|
+
}, "sdk"> & {
|
|
16317
16393
|
openapi?: string | string[] | {
|
|
16318
16394
|
source: string;
|
|
16319
16395
|
directory?: string | undefined;
|
|
@@ -16323,8 +16399,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16323
16399
|
directory?: string | undefined;
|
|
16324
16400
|
} | undefined;
|
|
16325
16401
|
} & {
|
|
16402
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
16326
16403
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
16327
|
-
}), z.ZodTypeDef, string | ({
|
|
16404
|
+
}), z.ZodTypeDef, string | (Omit<{
|
|
16328
16405
|
group: string;
|
|
16329
16406
|
icon?: string | {
|
|
16330
16407
|
name: string;
|
|
@@ -16334,14 +16411,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16334
16411
|
expanded?: boolean | undefined;
|
|
16335
16412
|
public?: boolean | undefined;
|
|
16336
16413
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
16414
|
+
graphql?: undefined;
|
|
16337
16415
|
tag?: string | undefined;
|
|
16338
16416
|
searchable?: boolean | undefined;
|
|
16339
16417
|
boost?: number | undefined;
|
|
16340
16418
|
hidden?: boolean | undefined;
|
|
16341
|
-
graphql?: undefined;
|
|
16342
16419
|
sdk?: undefined;
|
|
16343
16420
|
root?: string | undefined;
|
|
16344
|
-
} & {
|
|
16421
|
+
}, "sdk"> & {
|
|
16345
16422
|
openapi?: string | string[] | {
|
|
16346
16423
|
source: string;
|
|
16347
16424
|
directory?: string | undefined;
|
|
@@ -16351,10 +16428,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16351
16428
|
directory?: string | undefined;
|
|
16352
16429
|
} | undefined;
|
|
16353
16430
|
} & {
|
|
16431
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
16354
16432
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
16355
16433
|
})>, "many">;
|
|
16356
16434
|
}, "strip", z.ZodTypeAny, {
|
|
16357
|
-
pages: (string | ({
|
|
16435
|
+
pages: (string | (Omit<{
|
|
16358
16436
|
group: string;
|
|
16359
16437
|
icon?: string | {
|
|
16360
16438
|
name: string;
|
|
@@ -16364,14 +16442,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16364
16442
|
expanded?: boolean | undefined;
|
|
16365
16443
|
public?: boolean | undefined;
|
|
16366
16444
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
16445
|
+
graphql?: undefined;
|
|
16367
16446
|
tag?: string | undefined;
|
|
16368
16447
|
searchable?: boolean | undefined;
|
|
16369
16448
|
boost?: number | undefined;
|
|
16370
16449
|
hidden?: boolean | undefined;
|
|
16371
|
-
graphql?: undefined;
|
|
16372
16450
|
sdk?: undefined;
|
|
16373
16451
|
root?: string | undefined;
|
|
16374
|
-
} & {
|
|
16452
|
+
}, "sdk"> & {
|
|
16375
16453
|
openapi?: string | string[] | {
|
|
16376
16454
|
source: string;
|
|
16377
16455
|
directory?: string | undefined;
|
|
@@ -16381,6 +16459,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16381
16459
|
directory?: string | undefined;
|
|
16382
16460
|
} | undefined;
|
|
16383
16461
|
} & {
|
|
16462
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
16384
16463
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
16385
16464
|
}))[];
|
|
16386
16465
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -16388,7 +16467,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16388
16467
|
sdk?: undefined;
|
|
16389
16468
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
16390
16469
|
}, {
|
|
16391
|
-
pages: (string | ({
|
|
16470
|
+
pages: (string | (Omit<{
|
|
16392
16471
|
group: string;
|
|
16393
16472
|
icon?: string | {
|
|
16394
16473
|
name: string;
|
|
@@ -16398,14 +16477,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16398
16477
|
expanded?: boolean | undefined;
|
|
16399
16478
|
public?: boolean | undefined;
|
|
16400
16479
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
16480
|
+
graphql?: undefined;
|
|
16401
16481
|
tag?: string | undefined;
|
|
16402
16482
|
searchable?: boolean | undefined;
|
|
16403
16483
|
boost?: number | undefined;
|
|
16404
16484
|
hidden?: boolean | undefined;
|
|
16405
|
-
graphql?: undefined;
|
|
16406
16485
|
sdk?: undefined;
|
|
16407
16486
|
root?: string | undefined;
|
|
16408
|
-
} & {
|
|
16487
|
+
}, "sdk"> & {
|
|
16409
16488
|
openapi?: string | string[] | {
|
|
16410
16489
|
source: string;
|
|
16411
16490
|
directory?: string | undefined;
|
|
@@ -16415,6 +16494,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16415
16494
|
directory?: string | undefined;
|
|
16416
16495
|
} | undefined;
|
|
16417
16496
|
} & {
|
|
16497
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
16418
16498
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
16419
16499
|
}))[];
|
|
16420
16500
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -17369,7 +17449,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17369
17449
|
sdk?: undefined;
|
|
17370
17450
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
17371
17451
|
} | {
|
|
17372
|
-
groups: ({
|
|
17452
|
+
groups: (Omit<{
|
|
17373
17453
|
group: string;
|
|
17374
17454
|
icon?: string | {
|
|
17375
17455
|
name: string;
|
|
@@ -17379,14 +17459,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17379
17459
|
expanded?: boolean | undefined;
|
|
17380
17460
|
public?: boolean | undefined;
|
|
17381
17461
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
17462
|
+
graphql?: undefined;
|
|
17382
17463
|
tag?: string | undefined;
|
|
17383
17464
|
searchable?: boolean | undefined;
|
|
17384
17465
|
boost?: number | undefined;
|
|
17385
17466
|
hidden?: boolean | undefined;
|
|
17386
|
-
graphql?: undefined;
|
|
17387
17467
|
sdk?: undefined;
|
|
17388
17468
|
root?: string | undefined;
|
|
17389
|
-
} & {
|
|
17469
|
+
}, "sdk"> & {
|
|
17390
17470
|
openapi?: string | string[] | {
|
|
17391
17471
|
source: string;
|
|
17392
17472
|
directory?: string | undefined;
|
|
@@ -17396,6 +17476,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17396
17476
|
directory?: string | undefined;
|
|
17397
17477
|
} | undefined;
|
|
17398
17478
|
} & {
|
|
17479
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
17399
17480
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
17400
17481
|
})[];
|
|
17401
17482
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -17403,7 +17484,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17403
17484
|
sdk?: undefined;
|
|
17404
17485
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
17405
17486
|
} | {
|
|
17406
|
-
pages: (string | ({
|
|
17487
|
+
pages: (string | (Omit<{
|
|
17407
17488
|
group: string;
|
|
17408
17489
|
icon?: string | {
|
|
17409
17490
|
name: string;
|
|
@@ -17413,14 +17494,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17413
17494
|
expanded?: boolean | undefined;
|
|
17414
17495
|
public?: boolean | undefined;
|
|
17415
17496
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
17497
|
+
graphql?: undefined;
|
|
17416
17498
|
tag?: string | undefined;
|
|
17417
17499
|
searchable?: boolean | undefined;
|
|
17418
17500
|
boost?: number | undefined;
|
|
17419
17501
|
hidden?: boolean | undefined;
|
|
17420
|
-
graphql?: undefined;
|
|
17421
17502
|
sdk?: undefined;
|
|
17422
17503
|
root?: string | undefined;
|
|
17423
|
-
} & {
|
|
17504
|
+
}, "sdk"> & {
|
|
17424
17505
|
openapi?: string | string[] | {
|
|
17425
17506
|
source: string;
|
|
17426
17507
|
directory?: string | undefined;
|
|
@@ -17430,6 +17511,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17430
17511
|
directory?: string | undefined;
|
|
17431
17512
|
} | undefined;
|
|
17432
17513
|
} & {
|
|
17514
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
17433
17515
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
17434
17516
|
}))[];
|
|
17435
17517
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -17784,7 +17866,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17784
17866
|
sdk?: undefined;
|
|
17785
17867
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
17786
17868
|
} | {
|
|
17787
|
-
groups: ({
|
|
17869
|
+
groups: (Omit<{
|
|
17788
17870
|
group: string;
|
|
17789
17871
|
icon?: string | {
|
|
17790
17872
|
name: string;
|
|
@@ -17794,14 +17876,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17794
17876
|
expanded?: boolean | undefined;
|
|
17795
17877
|
public?: boolean | undefined;
|
|
17796
17878
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
17879
|
+
graphql?: undefined;
|
|
17797
17880
|
tag?: string | undefined;
|
|
17798
17881
|
searchable?: boolean | undefined;
|
|
17799
17882
|
boost?: number | undefined;
|
|
17800
17883
|
hidden?: boolean | undefined;
|
|
17801
|
-
graphql?: undefined;
|
|
17802
17884
|
sdk?: undefined;
|
|
17803
17885
|
root?: string | undefined;
|
|
17804
|
-
} & {
|
|
17886
|
+
}, "sdk"> & {
|
|
17805
17887
|
openapi?: string | string[] | {
|
|
17806
17888
|
source: string;
|
|
17807
17889
|
directory?: string | undefined;
|
|
@@ -17811,6 +17893,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17811
17893
|
directory?: string | undefined;
|
|
17812
17894
|
} | undefined;
|
|
17813
17895
|
} & {
|
|
17896
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
17814
17897
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
17815
17898
|
})[];
|
|
17816
17899
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -17818,7 +17901,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17818
17901
|
sdk?: undefined;
|
|
17819
17902
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
17820
17903
|
} | {
|
|
17821
|
-
pages: (string | ({
|
|
17904
|
+
pages: (string | (Omit<{
|
|
17822
17905
|
group: string;
|
|
17823
17906
|
icon?: string | {
|
|
17824
17907
|
name: string;
|
|
@@ -17828,14 +17911,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17828
17911
|
expanded?: boolean | undefined;
|
|
17829
17912
|
public?: boolean | undefined;
|
|
17830
17913
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
17914
|
+
graphql?: undefined;
|
|
17831
17915
|
tag?: string | undefined;
|
|
17832
17916
|
searchable?: boolean | undefined;
|
|
17833
17917
|
boost?: number | undefined;
|
|
17834
17918
|
hidden?: boolean | undefined;
|
|
17835
|
-
graphql?: undefined;
|
|
17836
17919
|
sdk?: undefined;
|
|
17837
17920
|
root?: string | undefined;
|
|
17838
|
-
} & {
|
|
17921
|
+
}, "sdk"> & {
|
|
17839
17922
|
openapi?: string | string[] | {
|
|
17840
17923
|
source: string;
|
|
17841
17924
|
directory?: string | undefined;
|
|
@@ -17845,6 +17928,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17845
17928
|
directory?: string | undefined;
|
|
17846
17929
|
} | undefined;
|
|
17847
17930
|
} & {
|
|
17931
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
17848
17932
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
17849
17933
|
}))[];
|
|
17850
17934
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -18752,7 +18836,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18752
18836
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
18753
18837
|
sdk: z.ZodOptional<z.ZodNever>;
|
|
18754
18838
|
} & {
|
|
18755
|
-
groups: z.ZodArray<z.ZodType<{
|
|
18839
|
+
groups: z.ZodArray<z.ZodType<Omit<{
|
|
18756
18840
|
group: string;
|
|
18757
18841
|
icon?: string | {
|
|
18758
18842
|
name: string;
|
|
@@ -18762,14 +18846,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18762
18846
|
expanded?: boolean | undefined;
|
|
18763
18847
|
public?: boolean | undefined;
|
|
18764
18848
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
18849
|
+
graphql?: undefined;
|
|
18765
18850
|
tag?: string | undefined;
|
|
18766
18851
|
searchable?: boolean | undefined;
|
|
18767
18852
|
boost?: number | undefined;
|
|
18768
18853
|
hidden?: boolean | undefined;
|
|
18769
|
-
graphql?: undefined;
|
|
18770
18854
|
sdk?: undefined;
|
|
18771
18855
|
root?: string | undefined;
|
|
18772
|
-
} & {
|
|
18856
|
+
}, "sdk"> & {
|
|
18773
18857
|
openapi?: string | string[] | {
|
|
18774
18858
|
source: string;
|
|
18775
18859
|
directory?: string | undefined;
|
|
@@ -18779,8 +18863,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18779
18863
|
directory?: string | undefined;
|
|
18780
18864
|
} | undefined;
|
|
18781
18865
|
} & {
|
|
18866
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
18782
18867
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
18783
|
-
}, z.ZodTypeDef, {
|
|
18868
|
+
}, z.ZodTypeDef, Omit<{
|
|
18784
18869
|
group: string;
|
|
18785
18870
|
icon?: string | {
|
|
18786
18871
|
name: string;
|
|
@@ -18790,14 +18875,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18790
18875
|
expanded?: boolean | undefined;
|
|
18791
18876
|
public?: boolean | undefined;
|
|
18792
18877
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
18878
|
+
graphql?: undefined;
|
|
18793
18879
|
tag?: string | undefined;
|
|
18794
18880
|
searchable?: boolean | undefined;
|
|
18795
18881
|
boost?: number | undefined;
|
|
18796
18882
|
hidden?: boolean | undefined;
|
|
18797
|
-
graphql?: undefined;
|
|
18798
18883
|
sdk?: undefined;
|
|
18799
18884
|
root?: string | undefined;
|
|
18800
|
-
} & {
|
|
18885
|
+
}, "sdk"> & {
|
|
18801
18886
|
openapi?: string | string[] | {
|
|
18802
18887
|
source: string;
|
|
18803
18888
|
directory?: string | undefined;
|
|
@@ -18807,10 +18892,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18807
18892
|
directory?: string | undefined;
|
|
18808
18893
|
} | undefined;
|
|
18809
18894
|
} & {
|
|
18895
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
18810
18896
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
18811
18897
|
}>, "many">;
|
|
18812
18898
|
}, "strip", z.ZodTypeAny, {
|
|
18813
|
-
groups: ({
|
|
18899
|
+
groups: (Omit<{
|
|
18814
18900
|
group: string;
|
|
18815
18901
|
icon?: string | {
|
|
18816
18902
|
name: string;
|
|
@@ -18820,14 +18906,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18820
18906
|
expanded?: boolean | undefined;
|
|
18821
18907
|
public?: boolean | undefined;
|
|
18822
18908
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
18909
|
+
graphql?: undefined;
|
|
18823
18910
|
tag?: string | undefined;
|
|
18824
18911
|
searchable?: boolean | undefined;
|
|
18825
18912
|
boost?: number | undefined;
|
|
18826
18913
|
hidden?: boolean | undefined;
|
|
18827
|
-
graphql?: undefined;
|
|
18828
18914
|
sdk?: undefined;
|
|
18829
18915
|
root?: string | undefined;
|
|
18830
|
-
} & {
|
|
18916
|
+
}, "sdk"> & {
|
|
18831
18917
|
openapi?: string | string[] | {
|
|
18832
18918
|
source: string;
|
|
18833
18919
|
directory?: string | undefined;
|
|
@@ -18837,6 +18923,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18837
18923
|
directory?: string | undefined;
|
|
18838
18924
|
} | undefined;
|
|
18839
18925
|
} & {
|
|
18926
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
18840
18927
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
18841
18928
|
})[];
|
|
18842
18929
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -18844,7 +18931,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18844
18931
|
sdk?: undefined;
|
|
18845
18932
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18846
18933
|
}, {
|
|
18847
|
-
groups: ({
|
|
18934
|
+
groups: (Omit<{
|
|
18848
18935
|
group: string;
|
|
18849
18936
|
icon?: string | {
|
|
18850
18937
|
name: string;
|
|
@@ -18854,14 +18941,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18854
18941
|
expanded?: boolean | undefined;
|
|
18855
18942
|
public?: boolean | undefined;
|
|
18856
18943
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
18944
|
+
graphql?: undefined;
|
|
18857
18945
|
tag?: string | undefined;
|
|
18858
18946
|
searchable?: boolean | undefined;
|
|
18859
18947
|
boost?: number | undefined;
|
|
18860
18948
|
hidden?: boolean | undefined;
|
|
18861
|
-
graphql?: undefined;
|
|
18862
18949
|
sdk?: undefined;
|
|
18863
18950
|
root?: string | undefined;
|
|
18864
|
-
} & {
|
|
18951
|
+
}, "sdk"> & {
|
|
18865
18952
|
openapi?: string | string[] | {
|
|
18866
18953
|
source: string;
|
|
18867
18954
|
directory?: string | undefined;
|
|
@@ -18871,6 +18958,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18871
18958
|
directory?: string | undefined;
|
|
18872
18959
|
} | undefined;
|
|
18873
18960
|
} & {
|
|
18961
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
18874
18962
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
18875
18963
|
})[];
|
|
18876
18964
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -18883,7 +18971,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18883
18971
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
18884
18972
|
sdk: z.ZodOptional<z.ZodNever>;
|
|
18885
18973
|
} & {
|
|
18886
|
-
pages: z.ZodArray<z.ZodType<string | ({
|
|
18974
|
+
pages: z.ZodArray<z.ZodType<string | (Omit<{
|
|
18887
18975
|
group: string;
|
|
18888
18976
|
icon?: string | {
|
|
18889
18977
|
name: string;
|
|
@@ -18893,14 +18981,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18893
18981
|
expanded?: boolean | undefined;
|
|
18894
18982
|
public?: boolean | undefined;
|
|
18895
18983
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
18984
|
+
graphql?: undefined;
|
|
18896
18985
|
tag?: string | undefined;
|
|
18897
18986
|
searchable?: boolean | undefined;
|
|
18898
18987
|
boost?: number | undefined;
|
|
18899
18988
|
hidden?: boolean | undefined;
|
|
18900
|
-
graphql?: undefined;
|
|
18901
18989
|
sdk?: undefined;
|
|
18902
18990
|
root?: string | undefined;
|
|
18903
|
-
} & {
|
|
18991
|
+
}, "sdk"> & {
|
|
18904
18992
|
openapi?: string | string[] | {
|
|
18905
18993
|
source: string;
|
|
18906
18994
|
directory?: string | undefined;
|
|
@@ -18910,8 +18998,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18910
18998
|
directory?: string | undefined;
|
|
18911
18999
|
} | undefined;
|
|
18912
19000
|
} & {
|
|
19001
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
18913
19002
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
18914
|
-
}), z.ZodTypeDef, string | ({
|
|
19003
|
+
}), z.ZodTypeDef, string | (Omit<{
|
|
18915
19004
|
group: string;
|
|
18916
19005
|
icon?: string | {
|
|
18917
19006
|
name: string;
|
|
@@ -18921,14 +19010,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18921
19010
|
expanded?: boolean | undefined;
|
|
18922
19011
|
public?: boolean | undefined;
|
|
18923
19012
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
19013
|
+
graphql?: undefined;
|
|
18924
19014
|
tag?: string | undefined;
|
|
18925
19015
|
searchable?: boolean | undefined;
|
|
18926
19016
|
boost?: number | undefined;
|
|
18927
19017
|
hidden?: boolean | undefined;
|
|
18928
|
-
graphql?: undefined;
|
|
18929
19018
|
sdk?: undefined;
|
|
18930
19019
|
root?: string | undefined;
|
|
18931
|
-
} & {
|
|
19020
|
+
}, "sdk"> & {
|
|
18932
19021
|
openapi?: string | string[] | {
|
|
18933
19022
|
source: string;
|
|
18934
19023
|
directory?: string | undefined;
|
|
@@ -18938,10 +19027,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18938
19027
|
directory?: string | undefined;
|
|
18939
19028
|
} | undefined;
|
|
18940
19029
|
} & {
|
|
19030
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
18941
19031
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
18942
19032
|
})>, "many">;
|
|
18943
19033
|
}, "strip", z.ZodTypeAny, {
|
|
18944
|
-
pages: (string | ({
|
|
19034
|
+
pages: (string | (Omit<{
|
|
18945
19035
|
group: string;
|
|
18946
19036
|
icon?: string | {
|
|
18947
19037
|
name: string;
|
|
@@ -18951,14 +19041,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18951
19041
|
expanded?: boolean | undefined;
|
|
18952
19042
|
public?: boolean | undefined;
|
|
18953
19043
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
19044
|
+
graphql?: undefined;
|
|
18954
19045
|
tag?: string | undefined;
|
|
18955
19046
|
searchable?: boolean | undefined;
|
|
18956
19047
|
boost?: number | undefined;
|
|
18957
19048
|
hidden?: boolean | undefined;
|
|
18958
|
-
graphql?: undefined;
|
|
18959
19049
|
sdk?: undefined;
|
|
18960
19050
|
root?: string | undefined;
|
|
18961
|
-
} & {
|
|
19051
|
+
}, "sdk"> & {
|
|
18962
19052
|
openapi?: string | string[] | {
|
|
18963
19053
|
source: string;
|
|
18964
19054
|
directory?: string | undefined;
|
|
@@ -18968,6 +19058,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18968
19058
|
directory?: string | undefined;
|
|
18969
19059
|
} | undefined;
|
|
18970
19060
|
} & {
|
|
19061
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
18971
19062
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
18972
19063
|
}))[];
|
|
18973
19064
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -18975,7 +19066,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18975
19066
|
sdk?: undefined;
|
|
18976
19067
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18977
19068
|
}, {
|
|
18978
|
-
pages: (string | ({
|
|
19069
|
+
pages: (string | (Omit<{
|
|
18979
19070
|
group: string;
|
|
18980
19071
|
icon?: string | {
|
|
18981
19072
|
name: string;
|
|
@@ -18985,14 +19076,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18985
19076
|
expanded?: boolean | undefined;
|
|
18986
19077
|
public?: boolean | undefined;
|
|
18987
19078
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
19079
|
+
graphql?: undefined;
|
|
18988
19080
|
tag?: string | undefined;
|
|
18989
19081
|
searchable?: boolean | undefined;
|
|
18990
19082
|
boost?: number | undefined;
|
|
18991
19083
|
hidden?: boolean | undefined;
|
|
18992
|
-
graphql?: undefined;
|
|
18993
19084
|
sdk?: undefined;
|
|
18994
19085
|
root?: string | undefined;
|
|
18995
|
-
} & {
|
|
19086
|
+
}, "sdk"> & {
|
|
18996
19087
|
openapi?: string | string[] | {
|
|
18997
19088
|
source: string;
|
|
18998
19089
|
directory?: string | undefined;
|
|
@@ -19002,6 +19093,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
19002
19093
|
directory?: string | undefined;
|
|
19003
19094
|
} | undefined;
|
|
19004
19095
|
} & {
|
|
19096
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
19005
19097
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
19006
19098
|
}))[];
|
|
19007
19099
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -19956,7 +20048,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
19956
20048
|
sdk?: undefined;
|
|
19957
20049
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
19958
20050
|
} | {
|
|
19959
|
-
groups: ({
|
|
20051
|
+
groups: (Omit<{
|
|
19960
20052
|
group: string;
|
|
19961
20053
|
icon?: string | {
|
|
19962
20054
|
name: string;
|
|
@@ -19966,14 +20058,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
19966
20058
|
expanded?: boolean | undefined;
|
|
19967
20059
|
public?: boolean | undefined;
|
|
19968
20060
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
20061
|
+
graphql?: undefined;
|
|
19969
20062
|
tag?: string | undefined;
|
|
19970
20063
|
searchable?: boolean | undefined;
|
|
19971
20064
|
boost?: number | undefined;
|
|
19972
20065
|
hidden?: boolean | undefined;
|
|
19973
|
-
graphql?: undefined;
|
|
19974
20066
|
sdk?: undefined;
|
|
19975
20067
|
root?: string | undefined;
|
|
19976
|
-
} & {
|
|
20068
|
+
}, "sdk"> & {
|
|
19977
20069
|
openapi?: string | string[] | {
|
|
19978
20070
|
source: string;
|
|
19979
20071
|
directory?: string | undefined;
|
|
@@ -19983,6 +20075,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
19983
20075
|
directory?: string | undefined;
|
|
19984
20076
|
} | undefined;
|
|
19985
20077
|
} & {
|
|
20078
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
19986
20079
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
19987
20080
|
})[];
|
|
19988
20081
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -19990,7 +20083,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
19990
20083
|
sdk?: undefined;
|
|
19991
20084
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
19992
20085
|
} | {
|
|
19993
|
-
pages: (string | ({
|
|
20086
|
+
pages: (string | (Omit<{
|
|
19994
20087
|
group: string;
|
|
19995
20088
|
icon?: string | {
|
|
19996
20089
|
name: string;
|
|
@@ -20000,14 +20093,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20000
20093
|
expanded?: boolean | undefined;
|
|
20001
20094
|
public?: boolean | undefined;
|
|
20002
20095
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
20096
|
+
graphql?: undefined;
|
|
20003
20097
|
tag?: string | undefined;
|
|
20004
20098
|
searchable?: boolean | undefined;
|
|
20005
20099
|
boost?: number | undefined;
|
|
20006
20100
|
hidden?: boolean | undefined;
|
|
20007
|
-
graphql?: undefined;
|
|
20008
20101
|
sdk?: undefined;
|
|
20009
20102
|
root?: string | undefined;
|
|
20010
|
-
} & {
|
|
20103
|
+
}, "sdk"> & {
|
|
20011
20104
|
openapi?: string | string[] | {
|
|
20012
20105
|
source: string;
|
|
20013
20106
|
directory?: string | undefined;
|
|
@@ -20017,6 +20110,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20017
20110
|
directory?: string | undefined;
|
|
20018
20111
|
} | undefined;
|
|
20019
20112
|
} & {
|
|
20113
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
20020
20114
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
20021
20115
|
}))[];
|
|
20022
20116
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -20371,7 +20465,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20371
20465
|
sdk?: undefined;
|
|
20372
20466
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
20373
20467
|
} | {
|
|
20374
|
-
groups: ({
|
|
20468
|
+
groups: (Omit<{
|
|
20375
20469
|
group: string;
|
|
20376
20470
|
icon?: string | {
|
|
20377
20471
|
name: string;
|
|
@@ -20381,14 +20475,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20381
20475
|
expanded?: boolean | undefined;
|
|
20382
20476
|
public?: boolean | undefined;
|
|
20383
20477
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
20478
|
+
graphql?: undefined;
|
|
20384
20479
|
tag?: string | undefined;
|
|
20385
20480
|
searchable?: boolean | undefined;
|
|
20386
20481
|
boost?: number | undefined;
|
|
20387
20482
|
hidden?: boolean | undefined;
|
|
20388
|
-
graphql?: undefined;
|
|
20389
20483
|
sdk?: undefined;
|
|
20390
20484
|
root?: string | undefined;
|
|
20391
|
-
} & {
|
|
20485
|
+
}, "sdk"> & {
|
|
20392
20486
|
openapi?: string | string[] | {
|
|
20393
20487
|
source: string;
|
|
20394
20488
|
directory?: string | undefined;
|
|
@@ -20398,6 +20492,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20398
20492
|
directory?: string | undefined;
|
|
20399
20493
|
} | undefined;
|
|
20400
20494
|
} & {
|
|
20495
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
20401
20496
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
20402
20497
|
})[];
|
|
20403
20498
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -20405,7 +20500,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20405
20500
|
sdk?: undefined;
|
|
20406
20501
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
20407
20502
|
} | {
|
|
20408
|
-
pages: (string | ({
|
|
20503
|
+
pages: (string | (Omit<{
|
|
20409
20504
|
group: string;
|
|
20410
20505
|
icon?: string | {
|
|
20411
20506
|
name: string;
|
|
@@ -20415,14 +20510,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20415
20510
|
expanded?: boolean | undefined;
|
|
20416
20511
|
public?: boolean | undefined;
|
|
20417
20512
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
20513
|
+
graphql?: undefined;
|
|
20418
20514
|
tag?: string | undefined;
|
|
20419
20515
|
searchable?: boolean | undefined;
|
|
20420
20516
|
boost?: number | undefined;
|
|
20421
20517
|
hidden?: boolean | undefined;
|
|
20422
|
-
graphql?: undefined;
|
|
20423
20518
|
sdk?: undefined;
|
|
20424
20519
|
root?: string | undefined;
|
|
20425
|
-
} & {
|
|
20520
|
+
}, "sdk"> & {
|
|
20426
20521
|
openapi?: string | string[] | {
|
|
20427
20522
|
source: string;
|
|
20428
20523
|
directory?: string | undefined;
|
|
@@ -20432,6 +20527,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20432
20527
|
directory?: string | undefined;
|
|
20433
20528
|
} | undefined;
|
|
20434
20529
|
} & {
|
|
20530
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
20435
20531
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
20436
20532
|
}))[];
|
|
20437
20533
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -21339,7 +21435,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
21339
21435
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
21340
21436
|
sdk: z.ZodOptional<z.ZodNever>;
|
|
21341
21437
|
} & {
|
|
21342
|
-
groups: z.ZodArray<z.ZodType<{
|
|
21438
|
+
groups: z.ZodArray<z.ZodType<Omit<{
|
|
21343
21439
|
group: string;
|
|
21344
21440
|
icon?: string | {
|
|
21345
21441
|
name: string;
|
|
@@ -21349,14 +21445,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
21349
21445
|
expanded?: boolean | undefined;
|
|
21350
21446
|
public?: boolean | undefined;
|
|
21351
21447
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
21448
|
+
graphql?: undefined;
|
|
21352
21449
|
tag?: string | undefined;
|
|
21353
21450
|
searchable?: boolean | undefined;
|
|
21354
21451
|
boost?: number | undefined;
|
|
21355
21452
|
hidden?: boolean | undefined;
|
|
21356
|
-
graphql?: undefined;
|
|
21357
21453
|
sdk?: undefined;
|
|
21358
21454
|
root?: string | undefined;
|
|
21359
|
-
} & {
|
|
21455
|
+
}, "sdk"> & {
|
|
21360
21456
|
openapi?: string | string[] | {
|
|
21361
21457
|
source: string;
|
|
21362
21458
|
directory?: string | undefined;
|
|
@@ -21366,8 +21462,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
21366
21462
|
directory?: string | undefined;
|
|
21367
21463
|
} | undefined;
|
|
21368
21464
|
} & {
|
|
21465
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
21369
21466
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
21370
|
-
}, z.ZodTypeDef, {
|
|
21467
|
+
}, z.ZodTypeDef, Omit<{
|
|
21371
21468
|
group: string;
|
|
21372
21469
|
icon?: string | {
|
|
21373
21470
|
name: string;
|
|
@@ -21377,14 +21474,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
21377
21474
|
expanded?: boolean | undefined;
|
|
21378
21475
|
public?: boolean | undefined;
|
|
21379
21476
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
21477
|
+
graphql?: undefined;
|
|
21380
21478
|
tag?: string | undefined;
|
|
21381
21479
|
searchable?: boolean | undefined;
|
|
21382
21480
|
boost?: number | undefined;
|
|
21383
21481
|
hidden?: boolean | undefined;
|
|
21384
|
-
graphql?: undefined;
|
|
21385
21482
|
sdk?: undefined;
|
|
21386
21483
|
root?: string | undefined;
|
|
21387
|
-
} & {
|
|
21484
|
+
}, "sdk"> & {
|
|
21388
21485
|
openapi?: string | string[] | {
|
|
21389
21486
|
source: string;
|
|
21390
21487
|
directory?: string | undefined;
|
|
@@ -21394,10 +21491,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
21394
21491
|
directory?: string | undefined;
|
|
21395
21492
|
} | undefined;
|
|
21396
21493
|
} & {
|
|
21494
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
21397
21495
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
21398
21496
|
}>, "many">;
|
|
21399
21497
|
}, "strip", z.ZodTypeAny, {
|
|
21400
|
-
groups: ({
|
|
21498
|
+
groups: (Omit<{
|
|
21401
21499
|
group: string;
|
|
21402
21500
|
icon?: string | {
|
|
21403
21501
|
name: string;
|
|
@@ -21407,14 +21505,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
21407
21505
|
expanded?: boolean | undefined;
|
|
21408
21506
|
public?: boolean | undefined;
|
|
21409
21507
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
21508
|
+
graphql?: undefined;
|
|
21410
21509
|
tag?: string | undefined;
|
|
21411
21510
|
searchable?: boolean | undefined;
|
|
21412
21511
|
boost?: number | undefined;
|
|
21413
21512
|
hidden?: boolean | undefined;
|
|
21414
|
-
graphql?: undefined;
|
|
21415
21513
|
sdk?: undefined;
|
|
21416
21514
|
root?: string | undefined;
|
|
21417
|
-
} & {
|
|
21515
|
+
}, "sdk"> & {
|
|
21418
21516
|
openapi?: string | string[] | {
|
|
21419
21517
|
source: string;
|
|
21420
21518
|
directory?: string | undefined;
|
|
@@ -21424,6 +21522,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
21424
21522
|
directory?: string | undefined;
|
|
21425
21523
|
} | undefined;
|
|
21426
21524
|
} & {
|
|
21525
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
21427
21526
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
21428
21527
|
})[];
|
|
21429
21528
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -21431,7 +21530,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
21431
21530
|
sdk?: undefined;
|
|
21432
21531
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
21433
21532
|
}, {
|
|
21434
|
-
groups: ({
|
|
21533
|
+
groups: (Omit<{
|
|
21435
21534
|
group: string;
|
|
21436
21535
|
icon?: string | {
|
|
21437
21536
|
name: string;
|
|
@@ -21441,14 +21540,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
21441
21540
|
expanded?: boolean | undefined;
|
|
21442
21541
|
public?: boolean | undefined;
|
|
21443
21542
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
21543
|
+
graphql?: undefined;
|
|
21444
21544
|
tag?: string | undefined;
|
|
21445
21545
|
searchable?: boolean | undefined;
|
|
21446
21546
|
boost?: number | undefined;
|
|
21447
21547
|
hidden?: boolean | undefined;
|
|
21448
|
-
graphql?: undefined;
|
|
21449
21548
|
sdk?: undefined;
|
|
21450
21549
|
root?: string | undefined;
|
|
21451
|
-
} & {
|
|
21550
|
+
}, "sdk"> & {
|
|
21452
21551
|
openapi?: string | string[] | {
|
|
21453
21552
|
source: string;
|
|
21454
21553
|
directory?: string | undefined;
|
|
@@ -21458,6 +21557,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
21458
21557
|
directory?: string | undefined;
|
|
21459
21558
|
} | undefined;
|
|
21460
21559
|
} & {
|
|
21560
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
21461
21561
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
21462
21562
|
})[];
|
|
21463
21563
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -21470,7 +21570,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
21470
21570
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
21471
21571
|
sdk: z.ZodOptional<z.ZodNever>;
|
|
21472
21572
|
} & {
|
|
21473
|
-
pages: z.ZodArray<z.ZodType<string | ({
|
|
21573
|
+
pages: z.ZodArray<z.ZodType<string | (Omit<{
|
|
21474
21574
|
group: string;
|
|
21475
21575
|
icon?: string | {
|
|
21476
21576
|
name: string;
|
|
@@ -21480,14 +21580,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
21480
21580
|
expanded?: boolean | undefined;
|
|
21481
21581
|
public?: boolean | undefined;
|
|
21482
21582
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
21583
|
+
graphql?: undefined;
|
|
21483
21584
|
tag?: string | undefined;
|
|
21484
21585
|
searchable?: boolean | undefined;
|
|
21485
21586
|
boost?: number | undefined;
|
|
21486
21587
|
hidden?: boolean | undefined;
|
|
21487
|
-
graphql?: undefined;
|
|
21488
21588
|
sdk?: undefined;
|
|
21489
21589
|
root?: string | undefined;
|
|
21490
|
-
} & {
|
|
21590
|
+
}, "sdk"> & {
|
|
21491
21591
|
openapi?: string | string[] | {
|
|
21492
21592
|
source: string;
|
|
21493
21593
|
directory?: string | undefined;
|
|
@@ -21497,8 +21597,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
21497
21597
|
directory?: string | undefined;
|
|
21498
21598
|
} | undefined;
|
|
21499
21599
|
} & {
|
|
21600
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
21500
21601
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
21501
|
-
}), z.ZodTypeDef, string | ({
|
|
21602
|
+
}), z.ZodTypeDef, string | (Omit<{
|
|
21502
21603
|
group: string;
|
|
21503
21604
|
icon?: string | {
|
|
21504
21605
|
name: string;
|
|
@@ -21508,14 +21609,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
21508
21609
|
expanded?: boolean | undefined;
|
|
21509
21610
|
public?: boolean | undefined;
|
|
21510
21611
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
21612
|
+
graphql?: undefined;
|
|
21511
21613
|
tag?: string | undefined;
|
|
21512
21614
|
searchable?: boolean | undefined;
|
|
21513
21615
|
boost?: number | undefined;
|
|
21514
21616
|
hidden?: boolean | undefined;
|
|
21515
|
-
graphql?: undefined;
|
|
21516
21617
|
sdk?: undefined;
|
|
21517
21618
|
root?: string | undefined;
|
|
21518
|
-
} & {
|
|
21619
|
+
}, "sdk"> & {
|
|
21519
21620
|
openapi?: string | string[] | {
|
|
21520
21621
|
source: string;
|
|
21521
21622
|
directory?: string | undefined;
|
|
@@ -21525,10 +21626,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
21525
21626
|
directory?: string | undefined;
|
|
21526
21627
|
} | undefined;
|
|
21527
21628
|
} & {
|
|
21629
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
21528
21630
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
21529
21631
|
})>, "many">;
|
|
21530
21632
|
}, "strip", z.ZodTypeAny, {
|
|
21531
|
-
pages: (string | ({
|
|
21633
|
+
pages: (string | (Omit<{
|
|
21532
21634
|
group: string;
|
|
21533
21635
|
icon?: string | {
|
|
21534
21636
|
name: string;
|
|
@@ -21538,14 +21640,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
21538
21640
|
expanded?: boolean | undefined;
|
|
21539
21641
|
public?: boolean | undefined;
|
|
21540
21642
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
21643
|
+
graphql?: undefined;
|
|
21541
21644
|
tag?: string | undefined;
|
|
21542
21645
|
searchable?: boolean | undefined;
|
|
21543
21646
|
boost?: number | undefined;
|
|
21544
21647
|
hidden?: boolean | undefined;
|
|
21545
|
-
graphql?: undefined;
|
|
21546
21648
|
sdk?: undefined;
|
|
21547
21649
|
root?: string | undefined;
|
|
21548
|
-
} & {
|
|
21650
|
+
}, "sdk"> & {
|
|
21549
21651
|
openapi?: string | string[] | {
|
|
21550
21652
|
source: string;
|
|
21551
21653
|
directory?: string | undefined;
|
|
@@ -21555,6 +21657,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
21555
21657
|
directory?: string | undefined;
|
|
21556
21658
|
} | undefined;
|
|
21557
21659
|
} & {
|
|
21660
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
21558
21661
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
21559
21662
|
}))[];
|
|
21560
21663
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -21562,7 +21665,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
21562
21665
|
sdk?: undefined;
|
|
21563
21666
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
21564
21667
|
}, {
|
|
21565
|
-
pages: (string | ({
|
|
21668
|
+
pages: (string | (Omit<{
|
|
21566
21669
|
group: string;
|
|
21567
21670
|
icon?: string | {
|
|
21568
21671
|
name: string;
|
|
@@ -21572,14 +21675,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
21572
21675
|
expanded?: boolean | undefined;
|
|
21573
21676
|
public?: boolean | undefined;
|
|
21574
21677
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
21678
|
+
graphql?: undefined;
|
|
21575
21679
|
tag?: string | undefined;
|
|
21576
21680
|
searchable?: boolean | undefined;
|
|
21577
21681
|
boost?: number | undefined;
|
|
21578
21682
|
hidden?: boolean | undefined;
|
|
21579
|
-
graphql?: undefined;
|
|
21580
21683
|
sdk?: undefined;
|
|
21581
21684
|
root?: string | undefined;
|
|
21582
|
-
} & {
|
|
21685
|
+
}, "sdk"> & {
|
|
21583
21686
|
openapi?: string | string[] | {
|
|
21584
21687
|
source: string;
|
|
21585
21688
|
directory?: string | undefined;
|
|
@@ -21589,6 +21692,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
21589
21692
|
directory?: string | undefined;
|
|
21590
21693
|
} | undefined;
|
|
21591
21694
|
} & {
|
|
21695
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
21592
21696
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
21593
21697
|
}))[];
|
|
21594
21698
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -22543,7 +22647,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
22543
22647
|
sdk?: undefined;
|
|
22544
22648
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
22545
22649
|
} | {
|
|
22546
|
-
groups: ({
|
|
22650
|
+
groups: (Omit<{
|
|
22547
22651
|
group: string;
|
|
22548
22652
|
icon?: string | {
|
|
22549
22653
|
name: string;
|
|
@@ -22553,14 +22657,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
22553
22657
|
expanded?: boolean | undefined;
|
|
22554
22658
|
public?: boolean | undefined;
|
|
22555
22659
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
22660
|
+
graphql?: undefined;
|
|
22556
22661
|
tag?: string | undefined;
|
|
22557
22662
|
searchable?: boolean | undefined;
|
|
22558
22663
|
boost?: number | undefined;
|
|
22559
22664
|
hidden?: boolean | undefined;
|
|
22560
|
-
graphql?: undefined;
|
|
22561
22665
|
sdk?: undefined;
|
|
22562
22666
|
root?: string | undefined;
|
|
22563
|
-
} & {
|
|
22667
|
+
}, "sdk"> & {
|
|
22564
22668
|
openapi?: string | string[] | {
|
|
22565
22669
|
source: string;
|
|
22566
22670
|
directory?: string | undefined;
|
|
@@ -22570,6 +22674,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
22570
22674
|
directory?: string | undefined;
|
|
22571
22675
|
} | undefined;
|
|
22572
22676
|
} & {
|
|
22677
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
22573
22678
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
22574
22679
|
})[];
|
|
22575
22680
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -22577,7 +22682,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
22577
22682
|
sdk?: undefined;
|
|
22578
22683
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
22579
22684
|
} | {
|
|
22580
|
-
pages: (string | ({
|
|
22685
|
+
pages: (string | (Omit<{
|
|
22581
22686
|
group: string;
|
|
22582
22687
|
icon?: string | {
|
|
22583
22688
|
name: string;
|
|
@@ -22587,14 +22692,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
22587
22692
|
expanded?: boolean | undefined;
|
|
22588
22693
|
public?: boolean | undefined;
|
|
22589
22694
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
22695
|
+
graphql?: undefined;
|
|
22590
22696
|
tag?: string | undefined;
|
|
22591
22697
|
searchable?: boolean | undefined;
|
|
22592
22698
|
boost?: number | undefined;
|
|
22593
22699
|
hidden?: boolean | undefined;
|
|
22594
|
-
graphql?: undefined;
|
|
22595
22700
|
sdk?: undefined;
|
|
22596
22701
|
root?: string | undefined;
|
|
22597
|
-
} & {
|
|
22702
|
+
}, "sdk"> & {
|
|
22598
22703
|
openapi?: string | string[] | {
|
|
22599
22704
|
source: string;
|
|
22600
22705
|
directory?: string | undefined;
|
|
@@ -22604,6 +22709,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
22604
22709
|
directory?: string | undefined;
|
|
22605
22710
|
} | undefined;
|
|
22606
22711
|
} & {
|
|
22712
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
22607
22713
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
22608
22714
|
}))[];
|
|
22609
22715
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -22958,7 +23064,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
22958
23064
|
sdk?: undefined;
|
|
22959
23065
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
22960
23066
|
} | {
|
|
22961
|
-
groups: ({
|
|
23067
|
+
groups: (Omit<{
|
|
22962
23068
|
group: string;
|
|
22963
23069
|
icon?: string | {
|
|
22964
23070
|
name: string;
|
|
@@ -22968,14 +23074,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
22968
23074
|
expanded?: boolean | undefined;
|
|
22969
23075
|
public?: boolean | undefined;
|
|
22970
23076
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
23077
|
+
graphql?: undefined;
|
|
22971
23078
|
tag?: string | undefined;
|
|
22972
23079
|
searchable?: boolean | undefined;
|
|
22973
23080
|
boost?: number | undefined;
|
|
22974
23081
|
hidden?: boolean | undefined;
|
|
22975
|
-
graphql?: undefined;
|
|
22976
23082
|
sdk?: undefined;
|
|
22977
23083
|
root?: string | undefined;
|
|
22978
|
-
} & {
|
|
23084
|
+
}, "sdk"> & {
|
|
22979
23085
|
openapi?: string | string[] | {
|
|
22980
23086
|
source: string;
|
|
22981
23087
|
directory?: string | undefined;
|
|
@@ -22985,6 +23091,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
22985
23091
|
directory?: string | undefined;
|
|
22986
23092
|
} | undefined;
|
|
22987
23093
|
} & {
|
|
23094
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
22988
23095
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
22989
23096
|
})[];
|
|
22990
23097
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -22992,7 +23099,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
22992
23099
|
sdk?: undefined;
|
|
22993
23100
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
22994
23101
|
} | {
|
|
22995
|
-
pages: (string | ({
|
|
23102
|
+
pages: (string | (Omit<{
|
|
22996
23103
|
group: string;
|
|
22997
23104
|
icon?: string | {
|
|
22998
23105
|
name: string;
|
|
@@ -23002,14 +23109,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
23002
23109
|
expanded?: boolean | undefined;
|
|
23003
23110
|
public?: boolean | undefined;
|
|
23004
23111
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
23112
|
+
graphql?: undefined;
|
|
23005
23113
|
tag?: string | undefined;
|
|
23006
23114
|
searchable?: boolean | undefined;
|
|
23007
23115
|
boost?: number | undefined;
|
|
23008
23116
|
hidden?: boolean | undefined;
|
|
23009
|
-
graphql?: undefined;
|
|
23010
23117
|
sdk?: undefined;
|
|
23011
23118
|
root?: string | undefined;
|
|
23012
|
-
} & {
|
|
23119
|
+
}, "sdk"> & {
|
|
23013
23120
|
openapi?: string | string[] | {
|
|
23014
23121
|
source: string;
|
|
23015
23122
|
directory?: string | undefined;
|
|
@@ -23019,6 +23126,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
23019
23126
|
directory?: string | undefined;
|
|
23020
23127
|
} | undefined;
|
|
23021
23128
|
} & {
|
|
23129
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
23022
23130
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
23023
23131
|
}))[];
|
|
23024
23132
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -23927,7 +24035,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
23927
24035
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
23928
24036
|
sdk: z.ZodOptional<z.ZodNever>;
|
|
23929
24037
|
} & {
|
|
23930
|
-
groups: z.ZodArray<z.ZodType<{
|
|
24038
|
+
groups: z.ZodArray<z.ZodType<Omit<{
|
|
23931
24039
|
group: string;
|
|
23932
24040
|
icon?: string | {
|
|
23933
24041
|
name: string;
|
|
@@ -23937,14 +24045,14 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
23937
24045
|
expanded?: boolean | undefined;
|
|
23938
24046
|
public?: boolean | undefined;
|
|
23939
24047
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
24048
|
+
graphql?: undefined;
|
|
23940
24049
|
tag?: string | undefined;
|
|
23941
24050
|
searchable?: boolean | undefined;
|
|
23942
24051
|
boost?: number | undefined;
|
|
23943
24052
|
hidden?: boolean | undefined;
|
|
23944
|
-
graphql?: undefined;
|
|
23945
24053
|
sdk?: undefined;
|
|
23946
24054
|
root?: string | undefined;
|
|
23947
|
-
} & {
|
|
24055
|
+
}, "sdk"> & {
|
|
23948
24056
|
openapi?: string | string[] | {
|
|
23949
24057
|
source: string;
|
|
23950
24058
|
directory?: string | undefined;
|
|
@@ -23954,8 +24062,9 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
23954
24062
|
directory?: string | undefined;
|
|
23955
24063
|
} | undefined;
|
|
23956
24064
|
} & {
|
|
24065
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
23957
24066
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
23958
|
-
}, z.ZodTypeDef, {
|
|
24067
|
+
}, z.ZodTypeDef, Omit<{
|
|
23959
24068
|
group: string;
|
|
23960
24069
|
icon?: string | {
|
|
23961
24070
|
name: string;
|
|
@@ -23965,14 +24074,14 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
23965
24074
|
expanded?: boolean | undefined;
|
|
23966
24075
|
public?: boolean | undefined;
|
|
23967
24076
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
24077
|
+
graphql?: undefined;
|
|
23968
24078
|
tag?: string | undefined;
|
|
23969
24079
|
searchable?: boolean | undefined;
|
|
23970
24080
|
boost?: number | undefined;
|
|
23971
24081
|
hidden?: boolean | undefined;
|
|
23972
|
-
graphql?: undefined;
|
|
23973
24082
|
sdk?: undefined;
|
|
23974
24083
|
root?: string | undefined;
|
|
23975
|
-
} & {
|
|
24084
|
+
}, "sdk"> & {
|
|
23976
24085
|
openapi?: string | string[] | {
|
|
23977
24086
|
source: string;
|
|
23978
24087
|
directory?: string | undefined;
|
|
@@ -23982,10 +24091,11 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
23982
24091
|
directory?: string | undefined;
|
|
23983
24092
|
} | undefined;
|
|
23984
24093
|
} & {
|
|
24094
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
23985
24095
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
23986
24096
|
}>, "many">;
|
|
23987
24097
|
}, "strip", z.ZodTypeAny, {
|
|
23988
|
-
groups: ({
|
|
24098
|
+
groups: (Omit<{
|
|
23989
24099
|
group: string;
|
|
23990
24100
|
icon?: string | {
|
|
23991
24101
|
name: string;
|
|
@@ -23995,14 +24105,14 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
23995
24105
|
expanded?: boolean | undefined;
|
|
23996
24106
|
public?: boolean | undefined;
|
|
23997
24107
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
24108
|
+
graphql?: undefined;
|
|
23998
24109
|
tag?: string | undefined;
|
|
23999
24110
|
searchable?: boolean | undefined;
|
|
24000
24111
|
boost?: number | undefined;
|
|
24001
24112
|
hidden?: boolean | undefined;
|
|
24002
|
-
graphql?: undefined;
|
|
24003
24113
|
sdk?: undefined;
|
|
24004
24114
|
root?: string | undefined;
|
|
24005
|
-
} & {
|
|
24115
|
+
}, "sdk"> & {
|
|
24006
24116
|
openapi?: string | string[] | {
|
|
24007
24117
|
source: string;
|
|
24008
24118
|
directory?: string | undefined;
|
|
@@ -24012,6 +24122,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
24012
24122
|
directory?: string | undefined;
|
|
24013
24123
|
} | undefined;
|
|
24014
24124
|
} & {
|
|
24125
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
24015
24126
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
24016
24127
|
})[];
|
|
24017
24128
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -24019,7 +24130,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
24019
24130
|
sdk?: undefined;
|
|
24020
24131
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
24021
24132
|
}, {
|
|
24022
|
-
groups: ({
|
|
24133
|
+
groups: (Omit<{
|
|
24023
24134
|
group: string;
|
|
24024
24135
|
icon?: string | {
|
|
24025
24136
|
name: string;
|
|
@@ -24029,14 +24140,14 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
24029
24140
|
expanded?: boolean | undefined;
|
|
24030
24141
|
public?: boolean | undefined;
|
|
24031
24142
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
24143
|
+
graphql?: undefined;
|
|
24032
24144
|
tag?: string | undefined;
|
|
24033
24145
|
searchable?: boolean | undefined;
|
|
24034
24146
|
boost?: number | undefined;
|
|
24035
24147
|
hidden?: boolean | undefined;
|
|
24036
|
-
graphql?: undefined;
|
|
24037
24148
|
sdk?: undefined;
|
|
24038
24149
|
root?: string | undefined;
|
|
24039
|
-
} & {
|
|
24150
|
+
}, "sdk"> & {
|
|
24040
24151
|
openapi?: string | string[] | {
|
|
24041
24152
|
source: string;
|
|
24042
24153
|
directory?: string | undefined;
|
|
@@ -24046,6 +24157,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
24046
24157
|
directory?: string | undefined;
|
|
24047
24158
|
} | undefined;
|
|
24048
24159
|
} & {
|
|
24160
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
24049
24161
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
24050
24162
|
})[];
|
|
24051
24163
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -24058,7 +24170,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
24058
24170
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
24059
24171
|
sdk: z.ZodOptional<z.ZodNever>;
|
|
24060
24172
|
} & {
|
|
24061
|
-
pages: z.ZodArray<z.ZodType<string | ({
|
|
24173
|
+
pages: z.ZodArray<z.ZodType<string | (Omit<{
|
|
24062
24174
|
group: string;
|
|
24063
24175
|
icon?: string | {
|
|
24064
24176
|
name: string;
|
|
@@ -24068,14 +24180,14 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
24068
24180
|
expanded?: boolean | undefined;
|
|
24069
24181
|
public?: boolean | undefined;
|
|
24070
24182
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
24183
|
+
graphql?: undefined;
|
|
24071
24184
|
tag?: string | undefined;
|
|
24072
24185
|
searchable?: boolean | undefined;
|
|
24073
24186
|
boost?: number | undefined;
|
|
24074
24187
|
hidden?: boolean | undefined;
|
|
24075
|
-
graphql?: undefined;
|
|
24076
24188
|
sdk?: undefined;
|
|
24077
24189
|
root?: string | undefined;
|
|
24078
|
-
} & {
|
|
24190
|
+
}, "sdk"> & {
|
|
24079
24191
|
openapi?: string | string[] | {
|
|
24080
24192
|
source: string;
|
|
24081
24193
|
directory?: string | undefined;
|
|
@@ -24085,8 +24197,9 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
24085
24197
|
directory?: string | undefined;
|
|
24086
24198
|
} | undefined;
|
|
24087
24199
|
} & {
|
|
24200
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
24088
24201
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
24089
|
-
}), z.ZodTypeDef, string | ({
|
|
24202
|
+
}), z.ZodTypeDef, string | (Omit<{
|
|
24090
24203
|
group: string;
|
|
24091
24204
|
icon?: string | {
|
|
24092
24205
|
name: string;
|
|
@@ -24096,14 +24209,14 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
24096
24209
|
expanded?: boolean | undefined;
|
|
24097
24210
|
public?: boolean | undefined;
|
|
24098
24211
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
24212
|
+
graphql?: undefined;
|
|
24099
24213
|
tag?: string | undefined;
|
|
24100
24214
|
searchable?: boolean | undefined;
|
|
24101
24215
|
boost?: number | undefined;
|
|
24102
24216
|
hidden?: boolean | undefined;
|
|
24103
|
-
graphql?: undefined;
|
|
24104
24217
|
sdk?: undefined;
|
|
24105
24218
|
root?: string | undefined;
|
|
24106
|
-
} & {
|
|
24219
|
+
}, "sdk"> & {
|
|
24107
24220
|
openapi?: string | string[] | {
|
|
24108
24221
|
source: string;
|
|
24109
24222
|
directory?: string | undefined;
|
|
@@ -24113,10 +24226,11 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
24113
24226
|
directory?: string | undefined;
|
|
24114
24227
|
} | undefined;
|
|
24115
24228
|
} & {
|
|
24229
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
24116
24230
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
24117
24231
|
})>, "many">;
|
|
24118
24232
|
}, "strip", z.ZodTypeAny, {
|
|
24119
|
-
pages: (string | ({
|
|
24233
|
+
pages: (string | (Omit<{
|
|
24120
24234
|
group: string;
|
|
24121
24235
|
icon?: string | {
|
|
24122
24236
|
name: string;
|
|
@@ -24126,14 +24240,14 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
24126
24240
|
expanded?: boolean | undefined;
|
|
24127
24241
|
public?: boolean | undefined;
|
|
24128
24242
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
24243
|
+
graphql?: undefined;
|
|
24129
24244
|
tag?: string | undefined;
|
|
24130
24245
|
searchable?: boolean | undefined;
|
|
24131
24246
|
boost?: number | undefined;
|
|
24132
24247
|
hidden?: boolean | undefined;
|
|
24133
|
-
graphql?: undefined;
|
|
24134
24248
|
sdk?: undefined;
|
|
24135
24249
|
root?: string | undefined;
|
|
24136
|
-
} & {
|
|
24250
|
+
}, "sdk"> & {
|
|
24137
24251
|
openapi?: string | string[] | {
|
|
24138
24252
|
source: string;
|
|
24139
24253
|
directory?: string | undefined;
|
|
@@ -24143,6 +24257,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
24143
24257
|
directory?: string | undefined;
|
|
24144
24258
|
} | undefined;
|
|
24145
24259
|
} & {
|
|
24260
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
24146
24261
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
24147
24262
|
}))[];
|
|
24148
24263
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -24150,7 +24265,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
24150
24265
|
sdk?: undefined;
|
|
24151
24266
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
24152
24267
|
}, {
|
|
24153
|
-
pages: (string | ({
|
|
24268
|
+
pages: (string | (Omit<{
|
|
24154
24269
|
group: string;
|
|
24155
24270
|
icon?: string | {
|
|
24156
24271
|
name: string;
|
|
@@ -24160,14 +24275,14 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
24160
24275
|
expanded?: boolean | undefined;
|
|
24161
24276
|
public?: boolean | undefined;
|
|
24162
24277
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
24278
|
+
graphql?: undefined;
|
|
24163
24279
|
tag?: string | undefined;
|
|
24164
24280
|
searchable?: boolean | undefined;
|
|
24165
24281
|
boost?: number | undefined;
|
|
24166
24282
|
hidden?: boolean | undefined;
|
|
24167
|
-
graphql?: undefined;
|
|
24168
24283
|
sdk?: undefined;
|
|
24169
24284
|
root?: string | undefined;
|
|
24170
|
-
} & {
|
|
24285
|
+
}, "sdk"> & {
|
|
24171
24286
|
openapi?: string | string[] | {
|
|
24172
24287
|
source: string;
|
|
24173
24288
|
directory?: string | undefined;
|
|
@@ -24177,6 +24292,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
24177
24292
|
directory?: string | undefined;
|
|
24178
24293
|
} | undefined;
|
|
24179
24294
|
} & {
|
|
24295
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
24180
24296
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
24181
24297
|
}))[];
|
|
24182
24298
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -25131,7 +25247,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
25131
25247
|
sdk?: undefined;
|
|
25132
25248
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
25133
25249
|
} | {
|
|
25134
|
-
groups: ({
|
|
25250
|
+
groups: (Omit<{
|
|
25135
25251
|
group: string;
|
|
25136
25252
|
icon?: string | {
|
|
25137
25253
|
name: string;
|
|
@@ -25141,14 +25257,14 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
25141
25257
|
expanded?: boolean | undefined;
|
|
25142
25258
|
public?: boolean | undefined;
|
|
25143
25259
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
25260
|
+
graphql?: undefined;
|
|
25144
25261
|
tag?: string | undefined;
|
|
25145
25262
|
searchable?: boolean | undefined;
|
|
25146
25263
|
boost?: number | undefined;
|
|
25147
25264
|
hidden?: boolean | undefined;
|
|
25148
|
-
graphql?: undefined;
|
|
25149
25265
|
sdk?: undefined;
|
|
25150
25266
|
root?: string | undefined;
|
|
25151
|
-
} & {
|
|
25267
|
+
}, "sdk"> & {
|
|
25152
25268
|
openapi?: string | string[] | {
|
|
25153
25269
|
source: string;
|
|
25154
25270
|
directory?: string | undefined;
|
|
@@ -25158,6 +25274,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
25158
25274
|
directory?: string | undefined;
|
|
25159
25275
|
} | undefined;
|
|
25160
25276
|
} & {
|
|
25277
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
25161
25278
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
25162
25279
|
})[];
|
|
25163
25280
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -25165,7 +25282,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
25165
25282
|
sdk?: undefined;
|
|
25166
25283
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
25167
25284
|
} | {
|
|
25168
|
-
pages: (string | ({
|
|
25285
|
+
pages: (string | (Omit<{
|
|
25169
25286
|
group: string;
|
|
25170
25287
|
icon?: string | {
|
|
25171
25288
|
name: string;
|
|
@@ -25175,14 +25292,14 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
25175
25292
|
expanded?: boolean | undefined;
|
|
25176
25293
|
public?: boolean | undefined;
|
|
25177
25294
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
25295
|
+
graphql?: undefined;
|
|
25178
25296
|
tag?: string | undefined;
|
|
25179
25297
|
searchable?: boolean | undefined;
|
|
25180
25298
|
boost?: number | undefined;
|
|
25181
25299
|
hidden?: boolean | undefined;
|
|
25182
|
-
graphql?: undefined;
|
|
25183
25300
|
sdk?: undefined;
|
|
25184
25301
|
root?: string | undefined;
|
|
25185
|
-
} & {
|
|
25302
|
+
}, "sdk"> & {
|
|
25186
25303
|
openapi?: string | string[] | {
|
|
25187
25304
|
source: string;
|
|
25188
25305
|
directory?: string | undefined;
|
|
@@ -25192,6 +25309,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
25192
25309
|
directory?: string | undefined;
|
|
25193
25310
|
} | undefined;
|
|
25194
25311
|
} & {
|
|
25312
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
25195
25313
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
25196
25314
|
}))[];
|
|
25197
25315
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -25546,7 +25664,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
25546
25664
|
sdk?: undefined;
|
|
25547
25665
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
25548
25666
|
} | {
|
|
25549
|
-
groups: ({
|
|
25667
|
+
groups: (Omit<{
|
|
25550
25668
|
group: string;
|
|
25551
25669
|
icon?: string | {
|
|
25552
25670
|
name: string;
|
|
@@ -25556,14 +25674,14 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
25556
25674
|
expanded?: boolean | undefined;
|
|
25557
25675
|
public?: boolean | undefined;
|
|
25558
25676
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
25677
|
+
graphql?: undefined;
|
|
25559
25678
|
tag?: string | undefined;
|
|
25560
25679
|
searchable?: boolean | undefined;
|
|
25561
25680
|
boost?: number | undefined;
|
|
25562
25681
|
hidden?: boolean | undefined;
|
|
25563
|
-
graphql?: undefined;
|
|
25564
25682
|
sdk?: undefined;
|
|
25565
25683
|
root?: string | undefined;
|
|
25566
|
-
} & {
|
|
25684
|
+
}, "sdk"> & {
|
|
25567
25685
|
openapi?: string | string[] | {
|
|
25568
25686
|
source: string;
|
|
25569
25687
|
directory?: string | undefined;
|
|
@@ -25573,6 +25691,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
25573
25691
|
directory?: string | undefined;
|
|
25574
25692
|
} | undefined;
|
|
25575
25693
|
} & {
|
|
25694
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
25576
25695
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
25577
25696
|
})[];
|
|
25578
25697
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -25580,7 +25699,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
25580
25699
|
sdk?: undefined;
|
|
25581
25700
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
25582
25701
|
} | {
|
|
25583
|
-
pages: (string | ({
|
|
25702
|
+
pages: (string | (Omit<{
|
|
25584
25703
|
group: string;
|
|
25585
25704
|
icon?: string | {
|
|
25586
25705
|
name: string;
|
|
@@ -25590,14 +25709,14 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
25590
25709
|
expanded?: boolean | undefined;
|
|
25591
25710
|
public?: boolean | undefined;
|
|
25592
25711
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
25712
|
+
graphql?: undefined;
|
|
25593
25713
|
tag?: string | undefined;
|
|
25594
25714
|
searchable?: boolean | undefined;
|
|
25595
25715
|
boost?: number | undefined;
|
|
25596
25716
|
hidden?: boolean | undefined;
|
|
25597
|
-
graphql?: undefined;
|
|
25598
25717
|
sdk?: undefined;
|
|
25599
25718
|
root?: string | undefined;
|
|
25600
|
-
} & {
|
|
25719
|
+
}, "sdk"> & {
|
|
25601
25720
|
openapi?: string | string[] | {
|
|
25602
25721
|
source: string;
|
|
25603
25722
|
directory?: string | undefined;
|
|
@@ -25607,6 +25726,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
25607
25726
|
directory?: string | undefined;
|
|
25608
25727
|
} | undefined;
|
|
25609
25728
|
} & {
|
|
25729
|
+
sdk?: z.infer<typeof import("./properties/index.js").sdkSchema>;
|
|
25610
25730
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
25611
25731
|
}))[];
|
|
25612
25732
|
directory?: "none" | "card" | "accordion" | undefined;
|