@mintlify/validation 0.1.796 → 0.1.798
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/types.d.ts +8 -0
- package/dist/index.js +2 -0
- package/dist/mint-config/schemas/v2/index.d.ts +520 -0
- package/dist/mint-config/schemas/v2/properties/navigation/anchors.d.ts +6 -0
- package/dist/mint-config/schemas/v2/properties/navigation/anchors.js +2 -1
- package/dist/mint-config/schemas/v2/properties/navigation/dropdown.d.ts +6 -0
- package/dist/mint-config/schemas/v2/properties/navigation/dropdown.js +2 -1
- package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +7 -0
- package/dist/mint-config/schemas/v2/properties/navigation/groups.js +2 -1
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +40 -0
- package/dist/mint-config/schemas/v2/properties/navigation/index.js +2 -1
- package/dist/mint-config/schemas/v2/properties/navigation/languages.d.ts +6 -0
- package/dist/mint-config/schemas/v2/properties/navigation/languages.js +2 -1
- package/dist/mint-config/schemas/v2/properties/navigation/menu.d.ts +6 -0
- package/dist/mint-config/schemas/v2/properties/navigation/menu.js +2 -1
- package/dist/mint-config/schemas/v2/properties/navigation/pages.d.ts +4 -0
- package/dist/mint-config/schemas/v2/properties/navigation/products.d.ts +6 -0
- package/dist/mint-config/schemas/v2/properties/navigation/products.js +2 -1
- package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +3 -0
- package/dist/mint-config/schemas/v2/properties/navigation/tabs.js +25 -2
- package/dist/mint-config/schemas/v2/properties/navigation/version.d.ts +6 -0
- package/dist/mint-config/schemas/v2/properties/navigation/version.js +2 -1
- package/dist/mint-config/schemas/v2/properties/reusable/graphql.d.ts +24 -0
- package/dist/mint-config/schemas/v2/properties/reusable/graphql.js +35 -0
- package/dist/mint-config/schemas/v2/properties/reusable/index.d.ts +1 -0
- package/dist/mint-config/schemas/v2/properties/reusable/index.js +1 -0
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +52 -0
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +52 -0
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +52 -0
- package/dist/mint-config/schemas/v2/themes/luma.d.ts +52 -0
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +52 -0
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +52 -0
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +52 -0
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +32 -0
- package/dist/mint-config/schemas/v2/themes/sequoia.d.ts +52 -0
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +52 -0
- package/dist/mint-config/validateConfig.d.ts +180 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/serverStaticProps.d.ts +3 -1
- package/package.json +3 -3
|
@@ -482,84 +482,103 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
482
482
|
navigation: z.ZodUnion<[z.ZodObject<{
|
|
483
483
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
484
484
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
485
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
485
486
|
} & {
|
|
486
487
|
products: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").ProductNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").ProductNavigation<"default">>, "many">;
|
|
487
488
|
}, "strip", z.ZodTypeAny, {
|
|
488
489
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
489
490
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
491
|
+
graphql?: undefined;
|
|
490
492
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
491
493
|
}, {
|
|
492
494
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
493
495
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
496
|
+
graphql?: undefined;
|
|
494
497
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
495
498
|
}>, z.ZodObject<{
|
|
496
499
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
497
500
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
501
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
498
502
|
} & {
|
|
499
503
|
languages: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">>, "many">;
|
|
500
504
|
}, "strip", z.ZodTypeAny, {
|
|
501
505
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
502
506
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
507
|
+
graphql?: undefined;
|
|
503
508
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
504
509
|
}, {
|
|
505
510
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
506
511
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
512
|
+
graphql?: undefined;
|
|
507
513
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
508
514
|
}>, z.ZodObject<{
|
|
509
515
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
510
516
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
517
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
511
518
|
} & {
|
|
512
519
|
versions: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").VersionNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").VersionNavigation<"default">>, "many">;
|
|
513
520
|
}, "strip", z.ZodTypeAny, {
|
|
514
521
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
515
522
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
523
|
+
graphql?: undefined;
|
|
516
524
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
517
525
|
}, {
|
|
518
526
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
519
527
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
528
|
+
graphql?: undefined;
|
|
520
529
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
521
530
|
}>, z.ZodObject<{
|
|
522
531
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
523
532
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
533
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
524
534
|
} & {
|
|
525
535
|
tabs: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").TabNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").TabNavigation<"default">>, "many">;
|
|
526
536
|
}, "strip", z.ZodTypeAny, {
|
|
527
537
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
528
538
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
539
|
+
graphql?: undefined;
|
|
529
540
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
530
541
|
}, {
|
|
531
542
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
532
543
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
544
|
+
graphql?: undefined;
|
|
533
545
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
534
546
|
}>, z.ZodObject<{
|
|
535
547
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
536
548
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
549
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
537
550
|
} & {
|
|
538
551
|
dropdowns: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">>, "many">;
|
|
539
552
|
}, "strip", z.ZodTypeAny, {
|
|
540
553
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
541
554
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
555
|
+
graphql?: undefined;
|
|
542
556
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
543
557
|
}, {
|
|
544
558
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
545
559
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
560
|
+
graphql?: undefined;
|
|
546
561
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
547
562
|
}>, z.ZodObject<{
|
|
548
563
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
549
564
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
565
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
550
566
|
} & {
|
|
551
567
|
anchors: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">>, "many">;
|
|
552
568
|
}, "strip", z.ZodTypeAny, {
|
|
553
569
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
554
570
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
571
|
+
graphql?: undefined;
|
|
555
572
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
556
573
|
}, {
|
|
557
574
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
558
575
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
576
|
+
graphql?: undefined;
|
|
559
577
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
560
578
|
}>, z.ZodObject<{
|
|
561
579
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
562
580
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
581
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
563
582
|
} & {
|
|
564
583
|
groups: z.ZodArray<z.ZodType<{
|
|
565
584
|
group: string;
|
|
@@ -575,6 +594,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
575
594
|
searchable?: boolean | undefined;
|
|
576
595
|
boost?: number | undefined;
|
|
577
596
|
hidden?: boolean | undefined;
|
|
597
|
+
graphql?: undefined;
|
|
578
598
|
root?: string | undefined;
|
|
579
599
|
} & {
|
|
580
600
|
openapi?: string | string[] | {
|
|
@@ -601,6 +621,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
601
621
|
searchable?: boolean | undefined;
|
|
602
622
|
boost?: number | undefined;
|
|
603
623
|
hidden?: boolean | undefined;
|
|
624
|
+
graphql?: undefined;
|
|
604
625
|
root?: string | undefined;
|
|
605
626
|
} & {
|
|
606
627
|
openapi?: string | string[] | {
|
|
@@ -629,6 +650,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
629
650
|
searchable?: boolean | undefined;
|
|
630
651
|
boost?: number | undefined;
|
|
631
652
|
hidden?: boolean | undefined;
|
|
653
|
+
graphql?: undefined;
|
|
632
654
|
root?: string | undefined;
|
|
633
655
|
} & {
|
|
634
656
|
openapi?: string | string[] | {
|
|
@@ -643,6 +665,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
643
665
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
644
666
|
})[];
|
|
645
667
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
668
|
+
graphql?: undefined;
|
|
646
669
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
647
670
|
}, {
|
|
648
671
|
groups: ({
|
|
@@ -659,6 +682,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
659
682
|
searchable?: boolean | undefined;
|
|
660
683
|
boost?: number | undefined;
|
|
661
684
|
hidden?: boolean | undefined;
|
|
685
|
+
graphql?: undefined;
|
|
662
686
|
root?: string | undefined;
|
|
663
687
|
} & {
|
|
664
688
|
openapi?: string | string[] | {
|
|
@@ -673,10 +697,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
673
697
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
674
698
|
})[];
|
|
675
699
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
700
|
+
graphql?: undefined;
|
|
676
701
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
677
702
|
}>, z.ZodObject<{
|
|
678
703
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
679
704
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
705
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
680
706
|
} & {
|
|
681
707
|
pages: z.ZodArray<z.ZodType<string | ({
|
|
682
708
|
group: string;
|
|
@@ -692,6 +718,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
692
718
|
searchable?: boolean | undefined;
|
|
693
719
|
boost?: number | undefined;
|
|
694
720
|
hidden?: boolean | undefined;
|
|
721
|
+
graphql?: undefined;
|
|
695
722
|
root?: string | undefined;
|
|
696
723
|
} & {
|
|
697
724
|
openapi?: string | string[] | {
|
|
@@ -718,6 +745,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
718
745
|
searchable?: boolean | undefined;
|
|
719
746
|
boost?: number | undefined;
|
|
720
747
|
hidden?: boolean | undefined;
|
|
748
|
+
graphql?: undefined;
|
|
721
749
|
root?: string | undefined;
|
|
722
750
|
} & {
|
|
723
751
|
openapi?: string | string[] | {
|
|
@@ -746,6 +774,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
746
774
|
searchable?: boolean | undefined;
|
|
747
775
|
boost?: number | undefined;
|
|
748
776
|
hidden?: boolean | undefined;
|
|
777
|
+
graphql?: undefined;
|
|
749
778
|
root?: string | undefined;
|
|
750
779
|
} & {
|
|
751
780
|
openapi?: string | string[] | {
|
|
@@ -760,6 +789,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
760
789
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
761
790
|
}))[];
|
|
762
791
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
792
|
+
graphql?: undefined;
|
|
763
793
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
764
794
|
}, {
|
|
765
795
|
pages: (string | ({
|
|
@@ -776,6 +806,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
776
806
|
searchable?: boolean | undefined;
|
|
777
807
|
boost?: number | undefined;
|
|
778
808
|
hidden?: boolean | undefined;
|
|
809
|
+
graphql?: undefined;
|
|
779
810
|
root?: string | undefined;
|
|
780
811
|
} & {
|
|
781
812
|
openapi?: string | string[] | {
|
|
@@ -790,6 +821,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
790
821
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
791
822
|
}))[];
|
|
792
823
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
824
|
+
graphql?: undefined;
|
|
793
825
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
794
826
|
}>]>;
|
|
795
827
|
footer: z.ZodOptional<z.ZodObject<{
|
|
@@ -1687,26 +1719,32 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1687
1719
|
navigation: {
|
|
1688
1720
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
1689
1721
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1722
|
+
graphql?: undefined;
|
|
1690
1723
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1691
1724
|
} | {
|
|
1692
1725
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
1693
1726
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1727
|
+
graphql?: undefined;
|
|
1694
1728
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1695
1729
|
} | {
|
|
1696
1730
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
1697
1731
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1732
|
+
graphql?: undefined;
|
|
1698
1733
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1699
1734
|
} | {
|
|
1700
1735
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
1701
1736
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1737
|
+
graphql?: undefined;
|
|
1702
1738
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1703
1739
|
} | {
|
|
1704
1740
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
1705
1741
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1742
|
+
graphql?: undefined;
|
|
1706
1743
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1707
1744
|
} | {
|
|
1708
1745
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
1709
1746
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1747
|
+
graphql?: undefined;
|
|
1710
1748
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1711
1749
|
} | {
|
|
1712
1750
|
groups: ({
|
|
@@ -1723,6 +1761,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1723
1761
|
searchable?: boolean | undefined;
|
|
1724
1762
|
boost?: number | undefined;
|
|
1725
1763
|
hidden?: boolean | undefined;
|
|
1764
|
+
graphql?: undefined;
|
|
1726
1765
|
root?: string | undefined;
|
|
1727
1766
|
} & {
|
|
1728
1767
|
openapi?: string | string[] | {
|
|
@@ -1737,6 +1776,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1737
1776
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1738
1777
|
})[];
|
|
1739
1778
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1779
|
+
graphql?: undefined;
|
|
1740
1780
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1741
1781
|
} | {
|
|
1742
1782
|
pages: (string | ({
|
|
@@ -1753,6 +1793,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1753
1793
|
searchable?: boolean | undefined;
|
|
1754
1794
|
boost?: number | undefined;
|
|
1755
1795
|
hidden?: boolean | undefined;
|
|
1796
|
+
graphql?: undefined;
|
|
1756
1797
|
root?: string | undefined;
|
|
1757
1798
|
} & {
|
|
1758
1799
|
openapi?: string | string[] | {
|
|
@@ -1767,6 +1808,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1767
1808
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1768
1809
|
}))[];
|
|
1769
1810
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1811
|
+
graphql?: undefined;
|
|
1770
1812
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1771
1813
|
};
|
|
1772
1814
|
background?: {
|
|
@@ -2078,26 +2120,32 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2078
2120
|
navigation: {
|
|
2079
2121
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
2080
2122
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
2123
|
+
graphql?: undefined;
|
|
2081
2124
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2082
2125
|
} | {
|
|
2083
2126
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
2084
2127
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
2128
|
+
graphql?: undefined;
|
|
2085
2129
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2086
2130
|
} | {
|
|
2087
2131
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
2088
2132
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
2133
|
+
graphql?: undefined;
|
|
2089
2134
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2090
2135
|
} | {
|
|
2091
2136
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
2092
2137
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
2138
|
+
graphql?: undefined;
|
|
2093
2139
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2094
2140
|
} | {
|
|
2095
2141
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
2096
2142
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
2143
|
+
graphql?: undefined;
|
|
2097
2144
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2098
2145
|
} | {
|
|
2099
2146
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
2100
2147
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
2148
|
+
graphql?: undefined;
|
|
2101
2149
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2102
2150
|
} | {
|
|
2103
2151
|
groups: ({
|
|
@@ -2114,6 +2162,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2114
2162
|
searchable?: boolean | undefined;
|
|
2115
2163
|
boost?: number | undefined;
|
|
2116
2164
|
hidden?: boolean | undefined;
|
|
2165
|
+
graphql?: undefined;
|
|
2117
2166
|
root?: string | undefined;
|
|
2118
2167
|
} & {
|
|
2119
2168
|
openapi?: string | string[] | {
|
|
@@ -2128,6 +2177,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2128
2177
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
2129
2178
|
})[];
|
|
2130
2179
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
2180
|
+
graphql?: undefined;
|
|
2131
2181
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2132
2182
|
} | {
|
|
2133
2183
|
pages: (string | ({
|
|
@@ -2144,6 +2194,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2144
2194
|
searchable?: boolean | undefined;
|
|
2145
2195
|
boost?: number | undefined;
|
|
2146
2196
|
hidden?: boolean | undefined;
|
|
2197
|
+
graphql?: undefined;
|
|
2147
2198
|
root?: string | undefined;
|
|
2148
2199
|
} & {
|
|
2149
2200
|
openapi?: string | string[] | {
|
|
@@ -2158,6 +2209,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2158
2209
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
2159
2210
|
}))[];
|
|
2160
2211
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
2212
|
+
graphql?: undefined;
|
|
2161
2213
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2162
2214
|
};
|
|
2163
2215
|
background?: {
|
|
@@ -2939,84 +2991,103 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2939
2991
|
navigation: z.ZodUnion<[z.ZodObject<{
|
|
2940
2992
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
2941
2993
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
2994
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
2942
2995
|
} & {
|
|
2943
2996
|
products: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").ProductNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").ProductNavigation<"default">>, "many">;
|
|
2944
2997
|
}, "strip", z.ZodTypeAny, {
|
|
2945
2998
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
2946
2999
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3000
|
+
graphql?: undefined;
|
|
2947
3001
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2948
3002
|
}, {
|
|
2949
3003
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
2950
3004
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3005
|
+
graphql?: undefined;
|
|
2951
3006
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2952
3007
|
}>, z.ZodObject<{
|
|
2953
3008
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
2954
3009
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
3010
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
2955
3011
|
} & {
|
|
2956
3012
|
languages: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">>, "many">;
|
|
2957
3013
|
}, "strip", z.ZodTypeAny, {
|
|
2958
3014
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
2959
3015
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3016
|
+
graphql?: undefined;
|
|
2960
3017
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2961
3018
|
}, {
|
|
2962
3019
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
2963
3020
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3021
|
+
graphql?: undefined;
|
|
2964
3022
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2965
3023
|
}>, z.ZodObject<{
|
|
2966
3024
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
2967
3025
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
3026
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
2968
3027
|
} & {
|
|
2969
3028
|
versions: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").VersionNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").VersionNavigation<"default">>, "many">;
|
|
2970
3029
|
}, "strip", z.ZodTypeAny, {
|
|
2971
3030
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
2972
3031
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3032
|
+
graphql?: undefined;
|
|
2973
3033
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2974
3034
|
}, {
|
|
2975
3035
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
2976
3036
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3037
|
+
graphql?: undefined;
|
|
2977
3038
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2978
3039
|
}>, z.ZodObject<{
|
|
2979
3040
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
2980
3041
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
3042
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
2981
3043
|
} & {
|
|
2982
3044
|
tabs: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").TabNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").TabNavigation<"default">>, "many">;
|
|
2983
3045
|
}, "strip", z.ZodTypeAny, {
|
|
2984
3046
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
2985
3047
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3048
|
+
graphql?: undefined;
|
|
2986
3049
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2987
3050
|
}, {
|
|
2988
3051
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
2989
3052
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3053
|
+
graphql?: undefined;
|
|
2990
3054
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2991
3055
|
}>, z.ZodObject<{
|
|
2992
3056
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
2993
3057
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
3058
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
2994
3059
|
} & {
|
|
2995
3060
|
dropdowns: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">>, "many">;
|
|
2996
3061
|
}, "strip", z.ZodTypeAny, {
|
|
2997
3062
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
2998
3063
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3064
|
+
graphql?: undefined;
|
|
2999
3065
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3000
3066
|
}, {
|
|
3001
3067
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
3002
3068
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3069
|
+
graphql?: undefined;
|
|
3003
3070
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3004
3071
|
}>, z.ZodObject<{
|
|
3005
3072
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
3006
3073
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
3074
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
3007
3075
|
} & {
|
|
3008
3076
|
anchors: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">>, "many">;
|
|
3009
3077
|
}, "strip", z.ZodTypeAny, {
|
|
3010
3078
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
3011
3079
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3080
|
+
graphql?: undefined;
|
|
3012
3081
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3013
3082
|
}, {
|
|
3014
3083
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
3015
3084
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3085
|
+
graphql?: undefined;
|
|
3016
3086
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3017
3087
|
}>, z.ZodObject<{
|
|
3018
3088
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
3019
3089
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
3090
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
3020
3091
|
} & {
|
|
3021
3092
|
groups: z.ZodArray<z.ZodType<{
|
|
3022
3093
|
group: string;
|
|
@@ -3032,6 +3103,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3032
3103
|
searchable?: boolean | undefined;
|
|
3033
3104
|
boost?: number | undefined;
|
|
3034
3105
|
hidden?: boolean | undefined;
|
|
3106
|
+
graphql?: undefined;
|
|
3035
3107
|
root?: string | undefined;
|
|
3036
3108
|
} & {
|
|
3037
3109
|
openapi?: string | string[] | {
|
|
@@ -3058,6 +3130,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3058
3130
|
searchable?: boolean | undefined;
|
|
3059
3131
|
boost?: number | undefined;
|
|
3060
3132
|
hidden?: boolean | undefined;
|
|
3133
|
+
graphql?: undefined;
|
|
3061
3134
|
root?: string | undefined;
|
|
3062
3135
|
} & {
|
|
3063
3136
|
openapi?: string | string[] | {
|
|
@@ -3086,6 +3159,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3086
3159
|
searchable?: boolean | undefined;
|
|
3087
3160
|
boost?: number | undefined;
|
|
3088
3161
|
hidden?: boolean | undefined;
|
|
3162
|
+
graphql?: undefined;
|
|
3089
3163
|
root?: string | undefined;
|
|
3090
3164
|
} & {
|
|
3091
3165
|
openapi?: string | string[] | {
|
|
@@ -3100,6 +3174,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3100
3174
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
3101
3175
|
})[];
|
|
3102
3176
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3177
|
+
graphql?: undefined;
|
|
3103
3178
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3104
3179
|
}, {
|
|
3105
3180
|
groups: ({
|
|
@@ -3116,6 +3191,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3116
3191
|
searchable?: boolean | undefined;
|
|
3117
3192
|
boost?: number | undefined;
|
|
3118
3193
|
hidden?: boolean | undefined;
|
|
3194
|
+
graphql?: undefined;
|
|
3119
3195
|
root?: string | undefined;
|
|
3120
3196
|
} & {
|
|
3121
3197
|
openapi?: string | string[] | {
|
|
@@ -3130,10 +3206,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3130
3206
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
3131
3207
|
})[];
|
|
3132
3208
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3209
|
+
graphql?: undefined;
|
|
3133
3210
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3134
3211
|
}>, z.ZodObject<{
|
|
3135
3212
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
3136
3213
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
3214
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
3137
3215
|
} & {
|
|
3138
3216
|
pages: z.ZodArray<z.ZodType<string | ({
|
|
3139
3217
|
group: string;
|
|
@@ -3149,6 +3227,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3149
3227
|
searchable?: boolean | undefined;
|
|
3150
3228
|
boost?: number | undefined;
|
|
3151
3229
|
hidden?: boolean | undefined;
|
|
3230
|
+
graphql?: undefined;
|
|
3152
3231
|
root?: string | undefined;
|
|
3153
3232
|
} & {
|
|
3154
3233
|
openapi?: string | string[] | {
|
|
@@ -3175,6 +3254,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3175
3254
|
searchable?: boolean | undefined;
|
|
3176
3255
|
boost?: number | undefined;
|
|
3177
3256
|
hidden?: boolean | undefined;
|
|
3257
|
+
graphql?: undefined;
|
|
3178
3258
|
root?: string | undefined;
|
|
3179
3259
|
} & {
|
|
3180
3260
|
openapi?: string | string[] | {
|
|
@@ -3203,6 +3283,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3203
3283
|
searchable?: boolean | undefined;
|
|
3204
3284
|
boost?: number | undefined;
|
|
3205
3285
|
hidden?: boolean | undefined;
|
|
3286
|
+
graphql?: undefined;
|
|
3206
3287
|
root?: string | undefined;
|
|
3207
3288
|
} & {
|
|
3208
3289
|
openapi?: string | string[] | {
|
|
@@ -3217,6 +3298,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3217
3298
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
3218
3299
|
}))[];
|
|
3219
3300
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3301
|
+
graphql?: undefined;
|
|
3220
3302
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3221
3303
|
}, {
|
|
3222
3304
|
pages: (string | ({
|
|
@@ -3233,6 +3315,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3233
3315
|
searchable?: boolean | undefined;
|
|
3234
3316
|
boost?: number | undefined;
|
|
3235
3317
|
hidden?: boolean | undefined;
|
|
3318
|
+
graphql?: undefined;
|
|
3236
3319
|
root?: string | undefined;
|
|
3237
3320
|
} & {
|
|
3238
3321
|
openapi?: string | string[] | {
|
|
@@ -3247,6 +3330,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3247
3330
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
3248
3331
|
}))[];
|
|
3249
3332
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3333
|
+
graphql?: undefined;
|
|
3250
3334
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3251
3335
|
}>]>;
|
|
3252
3336
|
footer: z.ZodOptional<z.ZodObject<{
|
|
@@ -4144,26 +4228,32 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4144
4228
|
navigation: {
|
|
4145
4229
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
4146
4230
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
4231
|
+
graphql?: undefined;
|
|
4147
4232
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4148
4233
|
} | {
|
|
4149
4234
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
4150
4235
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
4236
|
+
graphql?: undefined;
|
|
4151
4237
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4152
4238
|
} | {
|
|
4153
4239
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
4154
4240
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
4241
|
+
graphql?: undefined;
|
|
4155
4242
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4156
4243
|
} | {
|
|
4157
4244
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
4158
4245
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
4246
|
+
graphql?: undefined;
|
|
4159
4247
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4160
4248
|
} | {
|
|
4161
4249
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
4162
4250
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
4251
|
+
graphql?: undefined;
|
|
4163
4252
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4164
4253
|
} | {
|
|
4165
4254
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
4166
4255
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
4256
|
+
graphql?: undefined;
|
|
4167
4257
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4168
4258
|
} | {
|
|
4169
4259
|
groups: ({
|
|
@@ -4180,6 +4270,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4180
4270
|
searchable?: boolean | undefined;
|
|
4181
4271
|
boost?: number | undefined;
|
|
4182
4272
|
hidden?: boolean | undefined;
|
|
4273
|
+
graphql?: undefined;
|
|
4183
4274
|
root?: string | undefined;
|
|
4184
4275
|
} & {
|
|
4185
4276
|
openapi?: string | string[] | {
|
|
@@ -4194,6 +4285,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4194
4285
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
4195
4286
|
})[];
|
|
4196
4287
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
4288
|
+
graphql?: undefined;
|
|
4197
4289
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4198
4290
|
} | {
|
|
4199
4291
|
pages: (string | ({
|
|
@@ -4210,6 +4302,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4210
4302
|
searchable?: boolean | undefined;
|
|
4211
4303
|
boost?: number | undefined;
|
|
4212
4304
|
hidden?: boolean | undefined;
|
|
4305
|
+
graphql?: undefined;
|
|
4213
4306
|
root?: string | undefined;
|
|
4214
4307
|
} & {
|
|
4215
4308
|
openapi?: string | string[] | {
|
|
@@ -4224,6 +4317,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4224
4317
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
4225
4318
|
}))[];
|
|
4226
4319
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
4320
|
+
graphql?: undefined;
|
|
4227
4321
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4228
4322
|
};
|
|
4229
4323
|
background?: {
|
|
@@ -4535,26 +4629,32 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4535
4629
|
navigation: {
|
|
4536
4630
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
4537
4631
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
4632
|
+
graphql?: undefined;
|
|
4538
4633
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4539
4634
|
} | {
|
|
4540
4635
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
4541
4636
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
4637
|
+
graphql?: undefined;
|
|
4542
4638
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4543
4639
|
} | {
|
|
4544
4640
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
4545
4641
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
4642
|
+
graphql?: undefined;
|
|
4546
4643
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4547
4644
|
} | {
|
|
4548
4645
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
4549
4646
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
4647
|
+
graphql?: undefined;
|
|
4550
4648
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4551
4649
|
} | {
|
|
4552
4650
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
4553
4651
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
4652
|
+
graphql?: undefined;
|
|
4554
4653
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4555
4654
|
} | {
|
|
4556
4655
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
4557
4656
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
4657
|
+
graphql?: undefined;
|
|
4558
4658
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4559
4659
|
} | {
|
|
4560
4660
|
groups: ({
|
|
@@ -4571,6 +4671,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4571
4671
|
searchable?: boolean | undefined;
|
|
4572
4672
|
boost?: number | undefined;
|
|
4573
4673
|
hidden?: boolean | undefined;
|
|
4674
|
+
graphql?: undefined;
|
|
4574
4675
|
root?: string | undefined;
|
|
4575
4676
|
} & {
|
|
4576
4677
|
openapi?: string | string[] | {
|
|
@@ -4585,6 +4686,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4585
4686
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
4586
4687
|
})[];
|
|
4587
4688
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
4689
|
+
graphql?: undefined;
|
|
4588
4690
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4589
4691
|
} | {
|
|
4590
4692
|
pages: (string | ({
|
|
@@ -4601,6 +4703,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4601
4703
|
searchable?: boolean | undefined;
|
|
4602
4704
|
boost?: number | undefined;
|
|
4603
4705
|
hidden?: boolean | undefined;
|
|
4706
|
+
graphql?: undefined;
|
|
4604
4707
|
root?: string | undefined;
|
|
4605
4708
|
} & {
|
|
4606
4709
|
openapi?: string | string[] | {
|
|
@@ -4615,6 +4718,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4615
4718
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
4616
4719
|
}))[];
|
|
4617
4720
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
4721
|
+
graphql?: undefined;
|
|
4618
4722
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4619
4723
|
};
|
|
4620
4724
|
background?: {
|
|
@@ -5396,84 +5500,103 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5396
5500
|
navigation: z.ZodUnion<[z.ZodObject<{
|
|
5397
5501
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
5398
5502
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
5503
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
5399
5504
|
} & {
|
|
5400
5505
|
products: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").ProductNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").ProductNavigation<"default">>, "many">;
|
|
5401
5506
|
}, "strip", z.ZodTypeAny, {
|
|
5402
5507
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
5403
5508
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5509
|
+
graphql?: undefined;
|
|
5404
5510
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5405
5511
|
}, {
|
|
5406
5512
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
5407
5513
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5514
|
+
graphql?: undefined;
|
|
5408
5515
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5409
5516
|
}>, z.ZodObject<{
|
|
5410
5517
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
5411
5518
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
5519
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
5412
5520
|
} & {
|
|
5413
5521
|
languages: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">>, "many">;
|
|
5414
5522
|
}, "strip", z.ZodTypeAny, {
|
|
5415
5523
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
5416
5524
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5525
|
+
graphql?: undefined;
|
|
5417
5526
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5418
5527
|
}, {
|
|
5419
5528
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
5420
5529
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5530
|
+
graphql?: undefined;
|
|
5421
5531
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5422
5532
|
}>, z.ZodObject<{
|
|
5423
5533
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
5424
5534
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
5535
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
5425
5536
|
} & {
|
|
5426
5537
|
versions: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").VersionNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").VersionNavigation<"default">>, "many">;
|
|
5427
5538
|
}, "strip", z.ZodTypeAny, {
|
|
5428
5539
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
5429
5540
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5541
|
+
graphql?: undefined;
|
|
5430
5542
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5431
5543
|
}, {
|
|
5432
5544
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
5433
5545
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5546
|
+
graphql?: undefined;
|
|
5434
5547
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5435
5548
|
}>, z.ZodObject<{
|
|
5436
5549
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
5437
5550
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
5551
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
5438
5552
|
} & {
|
|
5439
5553
|
tabs: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").TabNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").TabNavigation<"default">>, "many">;
|
|
5440
5554
|
}, "strip", z.ZodTypeAny, {
|
|
5441
5555
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
5442
5556
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5557
|
+
graphql?: undefined;
|
|
5443
5558
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5444
5559
|
}, {
|
|
5445
5560
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
5446
5561
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5562
|
+
graphql?: undefined;
|
|
5447
5563
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5448
5564
|
}>, z.ZodObject<{
|
|
5449
5565
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
5450
5566
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
5567
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
5451
5568
|
} & {
|
|
5452
5569
|
dropdowns: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">>, "many">;
|
|
5453
5570
|
}, "strip", z.ZodTypeAny, {
|
|
5454
5571
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
5455
5572
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5573
|
+
graphql?: undefined;
|
|
5456
5574
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5457
5575
|
}, {
|
|
5458
5576
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
5459
5577
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5578
|
+
graphql?: undefined;
|
|
5460
5579
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5461
5580
|
}>, z.ZodObject<{
|
|
5462
5581
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
5463
5582
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
5583
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
5464
5584
|
} & {
|
|
5465
5585
|
anchors: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">>, "many">;
|
|
5466
5586
|
}, "strip", z.ZodTypeAny, {
|
|
5467
5587
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
5468
5588
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5589
|
+
graphql?: undefined;
|
|
5469
5590
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5470
5591
|
}, {
|
|
5471
5592
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
5472
5593
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5594
|
+
graphql?: undefined;
|
|
5473
5595
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5474
5596
|
}>, z.ZodObject<{
|
|
5475
5597
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
5476
5598
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
5599
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
5477
5600
|
} & {
|
|
5478
5601
|
groups: z.ZodArray<z.ZodType<{
|
|
5479
5602
|
group: string;
|
|
@@ -5489,6 +5612,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5489
5612
|
searchable?: boolean | undefined;
|
|
5490
5613
|
boost?: number | undefined;
|
|
5491
5614
|
hidden?: boolean | undefined;
|
|
5615
|
+
graphql?: undefined;
|
|
5492
5616
|
root?: string | undefined;
|
|
5493
5617
|
} & {
|
|
5494
5618
|
openapi?: string | string[] | {
|
|
@@ -5515,6 +5639,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5515
5639
|
searchable?: boolean | undefined;
|
|
5516
5640
|
boost?: number | undefined;
|
|
5517
5641
|
hidden?: boolean | undefined;
|
|
5642
|
+
graphql?: undefined;
|
|
5518
5643
|
root?: string | undefined;
|
|
5519
5644
|
} & {
|
|
5520
5645
|
openapi?: string | string[] | {
|
|
@@ -5543,6 +5668,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5543
5668
|
searchable?: boolean | undefined;
|
|
5544
5669
|
boost?: number | undefined;
|
|
5545
5670
|
hidden?: boolean | undefined;
|
|
5671
|
+
graphql?: undefined;
|
|
5546
5672
|
root?: string | undefined;
|
|
5547
5673
|
} & {
|
|
5548
5674
|
openapi?: string | string[] | {
|
|
@@ -5557,6 +5683,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5557
5683
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
5558
5684
|
})[];
|
|
5559
5685
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5686
|
+
graphql?: undefined;
|
|
5560
5687
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5561
5688
|
}, {
|
|
5562
5689
|
groups: ({
|
|
@@ -5573,6 +5700,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5573
5700
|
searchable?: boolean | undefined;
|
|
5574
5701
|
boost?: number | undefined;
|
|
5575
5702
|
hidden?: boolean | undefined;
|
|
5703
|
+
graphql?: undefined;
|
|
5576
5704
|
root?: string | undefined;
|
|
5577
5705
|
} & {
|
|
5578
5706
|
openapi?: string | string[] | {
|
|
@@ -5587,10 +5715,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5587
5715
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
5588
5716
|
})[];
|
|
5589
5717
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5718
|
+
graphql?: undefined;
|
|
5590
5719
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5591
5720
|
}>, z.ZodObject<{
|
|
5592
5721
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
5593
5722
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
5723
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
5594
5724
|
} & {
|
|
5595
5725
|
pages: z.ZodArray<z.ZodType<string | ({
|
|
5596
5726
|
group: string;
|
|
@@ -5606,6 +5736,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5606
5736
|
searchable?: boolean | undefined;
|
|
5607
5737
|
boost?: number | undefined;
|
|
5608
5738
|
hidden?: boolean | undefined;
|
|
5739
|
+
graphql?: undefined;
|
|
5609
5740
|
root?: string | undefined;
|
|
5610
5741
|
} & {
|
|
5611
5742
|
openapi?: string | string[] | {
|
|
@@ -5632,6 +5763,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5632
5763
|
searchable?: boolean | undefined;
|
|
5633
5764
|
boost?: number | undefined;
|
|
5634
5765
|
hidden?: boolean | undefined;
|
|
5766
|
+
graphql?: undefined;
|
|
5635
5767
|
root?: string | undefined;
|
|
5636
5768
|
} & {
|
|
5637
5769
|
openapi?: string | string[] | {
|
|
@@ -5660,6 +5792,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5660
5792
|
searchable?: boolean | undefined;
|
|
5661
5793
|
boost?: number | undefined;
|
|
5662
5794
|
hidden?: boolean | undefined;
|
|
5795
|
+
graphql?: undefined;
|
|
5663
5796
|
root?: string | undefined;
|
|
5664
5797
|
} & {
|
|
5665
5798
|
openapi?: string | string[] | {
|
|
@@ -5674,6 +5807,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5674
5807
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
5675
5808
|
}))[];
|
|
5676
5809
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5810
|
+
graphql?: undefined;
|
|
5677
5811
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5678
5812
|
}, {
|
|
5679
5813
|
pages: (string | ({
|
|
@@ -5690,6 +5824,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5690
5824
|
searchable?: boolean | undefined;
|
|
5691
5825
|
boost?: number | undefined;
|
|
5692
5826
|
hidden?: boolean | undefined;
|
|
5827
|
+
graphql?: undefined;
|
|
5693
5828
|
root?: string | undefined;
|
|
5694
5829
|
} & {
|
|
5695
5830
|
openapi?: string | string[] | {
|
|
@@ -5704,6 +5839,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5704
5839
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
5705
5840
|
}))[];
|
|
5706
5841
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5842
|
+
graphql?: undefined;
|
|
5707
5843
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5708
5844
|
}>]>;
|
|
5709
5845
|
footer: z.ZodOptional<z.ZodObject<{
|
|
@@ -6601,26 +6737,32 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6601
6737
|
navigation: {
|
|
6602
6738
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
6603
6739
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
6740
|
+
graphql?: undefined;
|
|
6604
6741
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
6605
6742
|
} | {
|
|
6606
6743
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
6607
6744
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
6745
|
+
graphql?: undefined;
|
|
6608
6746
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
6609
6747
|
} | {
|
|
6610
6748
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
6611
6749
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
6750
|
+
graphql?: undefined;
|
|
6612
6751
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
6613
6752
|
} | {
|
|
6614
6753
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
6615
6754
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
6755
|
+
graphql?: undefined;
|
|
6616
6756
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
6617
6757
|
} | {
|
|
6618
6758
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
6619
6759
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
6760
|
+
graphql?: undefined;
|
|
6620
6761
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
6621
6762
|
} | {
|
|
6622
6763
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
6623
6764
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
6765
|
+
graphql?: undefined;
|
|
6624
6766
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
6625
6767
|
} | {
|
|
6626
6768
|
groups: ({
|
|
@@ -6637,6 +6779,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6637
6779
|
searchable?: boolean | undefined;
|
|
6638
6780
|
boost?: number | undefined;
|
|
6639
6781
|
hidden?: boolean | undefined;
|
|
6782
|
+
graphql?: undefined;
|
|
6640
6783
|
root?: string | undefined;
|
|
6641
6784
|
} & {
|
|
6642
6785
|
openapi?: string | string[] | {
|
|
@@ -6651,6 +6794,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6651
6794
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
6652
6795
|
})[];
|
|
6653
6796
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
6797
|
+
graphql?: undefined;
|
|
6654
6798
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
6655
6799
|
} | {
|
|
6656
6800
|
pages: (string | ({
|
|
@@ -6667,6 +6811,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6667
6811
|
searchable?: boolean | undefined;
|
|
6668
6812
|
boost?: number | undefined;
|
|
6669
6813
|
hidden?: boolean | undefined;
|
|
6814
|
+
graphql?: undefined;
|
|
6670
6815
|
root?: string | undefined;
|
|
6671
6816
|
} & {
|
|
6672
6817
|
openapi?: string | string[] | {
|
|
@@ -6681,6 +6826,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6681
6826
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
6682
6827
|
}))[];
|
|
6683
6828
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
6829
|
+
graphql?: undefined;
|
|
6684
6830
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
6685
6831
|
};
|
|
6686
6832
|
background?: {
|
|
@@ -6992,26 +7138,32 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6992
7138
|
navigation: {
|
|
6993
7139
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
6994
7140
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
7141
|
+
graphql?: undefined;
|
|
6995
7142
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
6996
7143
|
} | {
|
|
6997
7144
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
6998
7145
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
7146
|
+
graphql?: undefined;
|
|
6999
7147
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
7000
7148
|
} | {
|
|
7001
7149
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
7002
7150
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
7151
|
+
graphql?: undefined;
|
|
7003
7152
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
7004
7153
|
} | {
|
|
7005
7154
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
7006
7155
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
7156
|
+
graphql?: undefined;
|
|
7007
7157
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
7008
7158
|
} | {
|
|
7009
7159
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
7010
7160
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
7161
|
+
graphql?: undefined;
|
|
7011
7162
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
7012
7163
|
} | {
|
|
7013
7164
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
7014
7165
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
7166
|
+
graphql?: undefined;
|
|
7015
7167
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
7016
7168
|
} | {
|
|
7017
7169
|
groups: ({
|
|
@@ -7028,6 +7180,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7028
7180
|
searchable?: boolean | undefined;
|
|
7029
7181
|
boost?: number | undefined;
|
|
7030
7182
|
hidden?: boolean | undefined;
|
|
7183
|
+
graphql?: undefined;
|
|
7031
7184
|
root?: string | undefined;
|
|
7032
7185
|
} & {
|
|
7033
7186
|
openapi?: string | string[] | {
|
|
@@ -7042,6 +7195,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7042
7195
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
7043
7196
|
})[];
|
|
7044
7197
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
7198
|
+
graphql?: undefined;
|
|
7045
7199
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
7046
7200
|
} | {
|
|
7047
7201
|
pages: (string | ({
|
|
@@ -7058,6 +7212,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7058
7212
|
searchable?: boolean | undefined;
|
|
7059
7213
|
boost?: number | undefined;
|
|
7060
7214
|
hidden?: boolean | undefined;
|
|
7215
|
+
graphql?: undefined;
|
|
7061
7216
|
root?: string | undefined;
|
|
7062
7217
|
} & {
|
|
7063
7218
|
openapi?: string | string[] | {
|
|
@@ -7072,6 +7227,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7072
7227
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
7073
7228
|
}))[];
|
|
7074
7229
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
7230
|
+
graphql?: undefined;
|
|
7075
7231
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
7076
7232
|
};
|
|
7077
7233
|
background?: {
|
|
@@ -7853,84 +8009,103 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7853
8009
|
navigation: z.ZodUnion<[z.ZodObject<{
|
|
7854
8010
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
7855
8011
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
8012
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
7856
8013
|
} & {
|
|
7857
8014
|
products: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").ProductNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").ProductNavigation<"default">>, "many">;
|
|
7858
8015
|
}, "strip", z.ZodTypeAny, {
|
|
7859
8016
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
7860
8017
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
8018
|
+
graphql?: undefined;
|
|
7861
8019
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
7862
8020
|
}, {
|
|
7863
8021
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
7864
8022
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
8023
|
+
graphql?: undefined;
|
|
7865
8024
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
7866
8025
|
}>, z.ZodObject<{
|
|
7867
8026
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
7868
8027
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
8028
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
7869
8029
|
} & {
|
|
7870
8030
|
languages: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">>, "many">;
|
|
7871
8031
|
}, "strip", z.ZodTypeAny, {
|
|
7872
8032
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
7873
8033
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
8034
|
+
graphql?: undefined;
|
|
7874
8035
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
7875
8036
|
}, {
|
|
7876
8037
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
7877
8038
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
8039
|
+
graphql?: undefined;
|
|
7878
8040
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
7879
8041
|
}>, z.ZodObject<{
|
|
7880
8042
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
7881
8043
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
8044
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
7882
8045
|
} & {
|
|
7883
8046
|
versions: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").VersionNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").VersionNavigation<"default">>, "many">;
|
|
7884
8047
|
}, "strip", z.ZodTypeAny, {
|
|
7885
8048
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
7886
8049
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
8050
|
+
graphql?: undefined;
|
|
7887
8051
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
7888
8052
|
}, {
|
|
7889
8053
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
7890
8054
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
8055
|
+
graphql?: undefined;
|
|
7891
8056
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
7892
8057
|
}>, z.ZodObject<{
|
|
7893
8058
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
7894
8059
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
8060
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
7895
8061
|
} & {
|
|
7896
8062
|
tabs: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").TabNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").TabNavigation<"default">>, "many">;
|
|
7897
8063
|
}, "strip", z.ZodTypeAny, {
|
|
7898
8064
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
7899
8065
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
8066
|
+
graphql?: undefined;
|
|
7900
8067
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
7901
8068
|
}, {
|
|
7902
8069
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
7903
8070
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
8071
|
+
graphql?: undefined;
|
|
7904
8072
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
7905
8073
|
}>, z.ZodObject<{
|
|
7906
8074
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
7907
8075
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
8076
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
7908
8077
|
} & {
|
|
7909
8078
|
dropdowns: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">>, "many">;
|
|
7910
8079
|
}, "strip", z.ZodTypeAny, {
|
|
7911
8080
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
7912
8081
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
8082
|
+
graphql?: undefined;
|
|
7913
8083
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
7914
8084
|
}, {
|
|
7915
8085
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
7916
8086
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
8087
|
+
graphql?: undefined;
|
|
7917
8088
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
7918
8089
|
}>, z.ZodObject<{
|
|
7919
8090
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
7920
8091
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
8092
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
7921
8093
|
} & {
|
|
7922
8094
|
anchors: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">>, "many">;
|
|
7923
8095
|
}, "strip", z.ZodTypeAny, {
|
|
7924
8096
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
7925
8097
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
8098
|
+
graphql?: undefined;
|
|
7926
8099
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
7927
8100
|
}, {
|
|
7928
8101
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
7929
8102
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
8103
|
+
graphql?: undefined;
|
|
7930
8104
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
7931
8105
|
}>, z.ZodObject<{
|
|
7932
8106
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
7933
8107
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
8108
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
7934
8109
|
} & {
|
|
7935
8110
|
groups: z.ZodArray<z.ZodType<{
|
|
7936
8111
|
group: string;
|
|
@@ -7946,6 +8121,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7946
8121
|
searchable?: boolean | undefined;
|
|
7947
8122
|
boost?: number | undefined;
|
|
7948
8123
|
hidden?: boolean | undefined;
|
|
8124
|
+
graphql?: undefined;
|
|
7949
8125
|
root?: string | undefined;
|
|
7950
8126
|
} & {
|
|
7951
8127
|
openapi?: string | string[] | {
|
|
@@ -7972,6 +8148,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7972
8148
|
searchable?: boolean | undefined;
|
|
7973
8149
|
boost?: number | undefined;
|
|
7974
8150
|
hidden?: boolean | undefined;
|
|
8151
|
+
graphql?: undefined;
|
|
7975
8152
|
root?: string | undefined;
|
|
7976
8153
|
} & {
|
|
7977
8154
|
openapi?: string | string[] | {
|
|
@@ -8000,6 +8177,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8000
8177
|
searchable?: boolean | undefined;
|
|
8001
8178
|
boost?: number | undefined;
|
|
8002
8179
|
hidden?: boolean | undefined;
|
|
8180
|
+
graphql?: undefined;
|
|
8003
8181
|
root?: string | undefined;
|
|
8004
8182
|
} & {
|
|
8005
8183
|
openapi?: string | string[] | {
|
|
@@ -8014,6 +8192,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8014
8192
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
8015
8193
|
})[];
|
|
8016
8194
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
8195
|
+
graphql?: undefined;
|
|
8017
8196
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
8018
8197
|
}, {
|
|
8019
8198
|
groups: ({
|
|
@@ -8030,6 +8209,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8030
8209
|
searchable?: boolean | undefined;
|
|
8031
8210
|
boost?: number | undefined;
|
|
8032
8211
|
hidden?: boolean | undefined;
|
|
8212
|
+
graphql?: undefined;
|
|
8033
8213
|
root?: string | undefined;
|
|
8034
8214
|
} & {
|
|
8035
8215
|
openapi?: string | string[] | {
|
|
@@ -8044,10 +8224,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8044
8224
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
8045
8225
|
})[];
|
|
8046
8226
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
8227
|
+
graphql?: undefined;
|
|
8047
8228
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
8048
8229
|
}>, z.ZodObject<{
|
|
8049
8230
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
8050
8231
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
8232
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
8051
8233
|
} & {
|
|
8052
8234
|
pages: z.ZodArray<z.ZodType<string | ({
|
|
8053
8235
|
group: string;
|
|
@@ -8063,6 +8245,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8063
8245
|
searchable?: boolean | undefined;
|
|
8064
8246
|
boost?: number | undefined;
|
|
8065
8247
|
hidden?: boolean | undefined;
|
|
8248
|
+
graphql?: undefined;
|
|
8066
8249
|
root?: string | undefined;
|
|
8067
8250
|
} & {
|
|
8068
8251
|
openapi?: string | string[] | {
|
|
@@ -8089,6 +8272,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8089
8272
|
searchable?: boolean | undefined;
|
|
8090
8273
|
boost?: number | undefined;
|
|
8091
8274
|
hidden?: boolean | undefined;
|
|
8275
|
+
graphql?: undefined;
|
|
8092
8276
|
root?: string | undefined;
|
|
8093
8277
|
} & {
|
|
8094
8278
|
openapi?: string | string[] | {
|
|
@@ -8117,6 +8301,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8117
8301
|
searchable?: boolean | undefined;
|
|
8118
8302
|
boost?: number | undefined;
|
|
8119
8303
|
hidden?: boolean | undefined;
|
|
8304
|
+
graphql?: undefined;
|
|
8120
8305
|
root?: string | undefined;
|
|
8121
8306
|
} & {
|
|
8122
8307
|
openapi?: string | string[] | {
|
|
@@ -8131,6 +8316,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8131
8316
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
8132
8317
|
}))[];
|
|
8133
8318
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
8319
|
+
graphql?: undefined;
|
|
8134
8320
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
8135
8321
|
}, {
|
|
8136
8322
|
pages: (string | ({
|
|
@@ -8147,6 +8333,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8147
8333
|
searchable?: boolean | undefined;
|
|
8148
8334
|
boost?: number | undefined;
|
|
8149
8335
|
hidden?: boolean | undefined;
|
|
8336
|
+
graphql?: undefined;
|
|
8150
8337
|
root?: string | undefined;
|
|
8151
8338
|
} & {
|
|
8152
8339
|
openapi?: string | string[] | {
|
|
@@ -8161,6 +8348,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8161
8348
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
8162
8349
|
}))[];
|
|
8163
8350
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
8351
|
+
graphql?: undefined;
|
|
8164
8352
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
8165
8353
|
}>]>;
|
|
8166
8354
|
footer: z.ZodOptional<z.ZodObject<{
|
|
@@ -9058,26 +9246,32 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9058
9246
|
navigation: {
|
|
9059
9247
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
9060
9248
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
9249
|
+
graphql?: undefined;
|
|
9061
9250
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9062
9251
|
} | {
|
|
9063
9252
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
9064
9253
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
9254
|
+
graphql?: undefined;
|
|
9065
9255
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9066
9256
|
} | {
|
|
9067
9257
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
9068
9258
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
9259
|
+
graphql?: undefined;
|
|
9069
9260
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9070
9261
|
} | {
|
|
9071
9262
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
9072
9263
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
9264
|
+
graphql?: undefined;
|
|
9073
9265
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9074
9266
|
} | {
|
|
9075
9267
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
9076
9268
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
9269
|
+
graphql?: undefined;
|
|
9077
9270
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9078
9271
|
} | {
|
|
9079
9272
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
9080
9273
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
9274
|
+
graphql?: undefined;
|
|
9081
9275
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9082
9276
|
} | {
|
|
9083
9277
|
groups: ({
|
|
@@ -9094,6 +9288,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9094
9288
|
searchable?: boolean | undefined;
|
|
9095
9289
|
boost?: number | undefined;
|
|
9096
9290
|
hidden?: boolean | undefined;
|
|
9291
|
+
graphql?: undefined;
|
|
9097
9292
|
root?: string | undefined;
|
|
9098
9293
|
} & {
|
|
9099
9294
|
openapi?: string | string[] | {
|
|
@@ -9108,6 +9303,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9108
9303
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
9109
9304
|
})[];
|
|
9110
9305
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
9306
|
+
graphql?: undefined;
|
|
9111
9307
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9112
9308
|
} | {
|
|
9113
9309
|
pages: (string | ({
|
|
@@ -9124,6 +9320,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9124
9320
|
searchable?: boolean | undefined;
|
|
9125
9321
|
boost?: number | undefined;
|
|
9126
9322
|
hidden?: boolean | undefined;
|
|
9323
|
+
graphql?: undefined;
|
|
9127
9324
|
root?: string | undefined;
|
|
9128
9325
|
} & {
|
|
9129
9326
|
openapi?: string | string[] | {
|
|
@@ -9138,6 +9335,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9138
9335
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
9139
9336
|
}))[];
|
|
9140
9337
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
9338
|
+
graphql?: undefined;
|
|
9141
9339
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9142
9340
|
};
|
|
9143
9341
|
background?: {
|
|
@@ -9449,26 +9647,32 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9449
9647
|
navigation: {
|
|
9450
9648
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
9451
9649
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
9650
|
+
graphql?: undefined;
|
|
9452
9651
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9453
9652
|
} | {
|
|
9454
9653
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
9455
9654
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
9655
|
+
graphql?: undefined;
|
|
9456
9656
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9457
9657
|
} | {
|
|
9458
9658
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
9459
9659
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
9660
|
+
graphql?: undefined;
|
|
9460
9661
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9461
9662
|
} | {
|
|
9462
9663
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
9463
9664
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
9665
|
+
graphql?: undefined;
|
|
9464
9666
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9465
9667
|
} | {
|
|
9466
9668
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
9467
9669
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
9670
|
+
graphql?: undefined;
|
|
9468
9671
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9469
9672
|
} | {
|
|
9470
9673
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
9471
9674
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
9675
|
+
graphql?: undefined;
|
|
9472
9676
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9473
9677
|
} | {
|
|
9474
9678
|
groups: ({
|
|
@@ -9485,6 +9689,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9485
9689
|
searchable?: boolean | undefined;
|
|
9486
9690
|
boost?: number | undefined;
|
|
9487
9691
|
hidden?: boolean | undefined;
|
|
9692
|
+
graphql?: undefined;
|
|
9488
9693
|
root?: string | undefined;
|
|
9489
9694
|
} & {
|
|
9490
9695
|
openapi?: string | string[] | {
|
|
@@ -9499,6 +9704,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9499
9704
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
9500
9705
|
})[];
|
|
9501
9706
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
9707
|
+
graphql?: undefined;
|
|
9502
9708
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9503
9709
|
} | {
|
|
9504
9710
|
pages: (string | ({
|
|
@@ -9515,6 +9721,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9515
9721
|
searchable?: boolean | undefined;
|
|
9516
9722
|
boost?: number | undefined;
|
|
9517
9723
|
hidden?: boolean | undefined;
|
|
9724
|
+
graphql?: undefined;
|
|
9518
9725
|
root?: string | undefined;
|
|
9519
9726
|
} & {
|
|
9520
9727
|
openapi?: string | string[] | {
|
|
@@ -9529,6 +9736,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9529
9736
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
9530
9737
|
}))[];
|
|
9531
9738
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
9739
|
+
graphql?: undefined;
|
|
9532
9740
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9533
9741
|
};
|
|
9534
9742
|
background?: {
|
|
@@ -10310,84 +10518,103 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10310
10518
|
navigation: z.ZodUnion<[z.ZodObject<{
|
|
10311
10519
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
10312
10520
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
10521
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
10313
10522
|
} & {
|
|
10314
10523
|
products: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").ProductNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").ProductNavigation<"default">>, "many">;
|
|
10315
10524
|
}, "strip", z.ZodTypeAny, {
|
|
10316
10525
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
10317
10526
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
10527
|
+
graphql?: undefined;
|
|
10318
10528
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10319
10529
|
}, {
|
|
10320
10530
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
10321
10531
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
10532
|
+
graphql?: undefined;
|
|
10322
10533
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10323
10534
|
}>, z.ZodObject<{
|
|
10324
10535
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
10325
10536
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
10537
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
10326
10538
|
} & {
|
|
10327
10539
|
languages: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">>, "many">;
|
|
10328
10540
|
}, "strip", z.ZodTypeAny, {
|
|
10329
10541
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
10330
10542
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
10543
|
+
graphql?: undefined;
|
|
10331
10544
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10332
10545
|
}, {
|
|
10333
10546
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
10334
10547
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
10548
|
+
graphql?: undefined;
|
|
10335
10549
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10336
10550
|
}>, z.ZodObject<{
|
|
10337
10551
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
10338
10552
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
10553
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
10339
10554
|
} & {
|
|
10340
10555
|
versions: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").VersionNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").VersionNavigation<"default">>, "many">;
|
|
10341
10556
|
}, "strip", z.ZodTypeAny, {
|
|
10342
10557
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
10343
10558
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
10559
|
+
graphql?: undefined;
|
|
10344
10560
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10345
10561
|
}, {
|
|
10346
10562
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
10347
10563
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
10564
|
+
graphql?: undefined;
|
|
10348
10565
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10349
10566
|
}>, z.ZodObject<{
|
|
10350
10567
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
10351
10568
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
10569
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
10352
10570
|
} & {
|
|
10353
10571
|
tabs: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").TabNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").TabNavigation<"default">>, "many">;
|
|
10354
10572
|
}, "strip", z.ZodTypeAny, {
|
|
10355
10573
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
10356
10574
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
10575
|
+
graphql?: undefined;
|
|
10357
10576
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10358
10577
|
}, {
|
|
10359
10578
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
10360
10579
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
10580
|
+
graphql?: undefined;
|
|
10361
10581
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10362
10582
|
}>, z.ZodObject<{
|
|
10363
10583
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
10364
10584
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
10585
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
10365
10586
|
} & {
|
|
10366
10587
|
dropdowns: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">>, "many">;
|
|
10367
10588
|
}, "strip", z.ZodTypeAny, {
|
|
10368
10589
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
10369
10590
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
10591
|
+
graphql?: undefined;
|
|
10370
10592
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10371
10593
|
}, {
|
|
10372
10594
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
10373
10595
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
10596
|
+
graphql?: undefined;
|
|
10374
10597
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10375
10598
|
}>, z.ZodObject<{
|
|
10376
10599
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
10377
10600
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
10601
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
10378
10602
|
} & {
|
|
10379
10603
|
anchors: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">>, "many">;
|
|
10380
10604
|
}, "strip", z.ZodTypeAny, {
|
|
10381
10605
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
10382
10606
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
10607
|
+
graphql?: undefined;
|
|
10383
10608
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10384
10609
|
}, {
|
|
10385
10610
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
10386
10611
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
10612
|
+
graphql?: undefined;
|
|
10387
10613
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10388
10614
|
}>, z.ZodObject<{
|
|
10389
10615
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
10390
10616
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
10617
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
10391
10618
|
} & {
|
|
10392
10619
|
groups: z.ZodArray<z.ZodType<{
|
|
10393
10620
|
group: string;
|
|
@@ -10403,6 +10630,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10403
10630
|
searchable?: boolean | undefined;
|
|
10404
10631
|
boost?: number | undefined;
|
|
10405
10632
|
hidden?: boolean | undefined;
|
|
10633
|
+
graphql?: undefined;
|
|
10406
10634
|
root?: string | undefined;
|
|
10407
10635
|
} & {
|
|
10408
10636
|
openapi?: string | string[] | {
|
|
@@ -10429,6 +10657,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10429
10657
|
searchable?: boolean | undefined;
|
|
10430
10658
|
boost?: number | undefined;
|
|
10431
10659
|
hidden?: boolean | undefined;
|
|
10660
|
+
graphql?: undefined;
|
|
10432
10661
|
root?: string | undefined;
|
|
10433
10662
|
} & {
|
|
10434
10663
|
openapi?: string | string[] | {
|
|
@@ -10457,6 +10686,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10457
10686
|
searchable?: boolean | undefined;
|
|
10458
10687
|
boost?: number | undefined;
|
|
10459
10688
|
hidden?: boolean | undefined;
|
|
10689
|
+
graphql?: undefined;
|
|
10460
10690
|
root?: string | undefined;
|
|
10461
10691
|
} & {
|
|
10462
10692
|
openapi?: string | string[] | {
|
|
@@ -10471,6 +10701,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10471
10701
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
10472
10702
|
})[];
|
|
10473
10703
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
10704
|
+
graphql?: undefined;
|
|
10474
10705
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10475
10706
|
}, {
|
|
10476
10707
|
groups: ({
|
|
@@ -10487,6 +10718,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10487
10718
|
searchable?: boolean | undefined;
|
|
10488
10719
|
boost?: number | undefined;
|
|
10489
10720
|
hidden?: boolean | undefined;
|
|
10721
|
+
graphql?: undefined;
|
|
10490
10722
|
root?: string | undefined;
|
|
10491
10723
|
} & {
|
|
10492
10724
|
openapi?: string | string[] | {
|
|
@@ -10501,10 +10733,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10501
10733
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
10502
10734
|
})[];
|
|
10503
10735
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
10736
|
+
graphql?: undefined;
|
|
10504
10737
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10505
10738
|
}>, z.ZodObject<{
|
|
10506
10739
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
10507
10740
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
10741
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
10508
10742
|
} & {
|
|
10509
10743
|
pages: z.ZodArray<z.ZodType<string | ({
|
|
10510
10744
|
group: string;
|
|
@@ -10520,6 +10754,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10520
10754
|
searchable?: boolean | undefined;
|
|
10521
10755
|
boost?: number | undefined;
|
|
10522
10756
|
hidden?: boolean | undefined;
|
|
10757
|
+
graphql?: undefined;
|
|
10523
10758
|
root?: string | undefined;
|
|
10524
10759
|
} & {
|
|
10525
10760
|
openapi?: string | string[] | {
|
|
@@ -10546,6 +10781,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10546
10781
|
searchable?: boolean | undefined;
|
|
10547
10782
|
boost?: number | undefined;
|
|
10548
10783
|
hidden?: boolean | undefined;
|
|
10784
|
+
graphql?: undefined;
|
|
10549
10785
|
root?: string | undefined;
|
|
10550
10786
|
} & {
|
|
10551
10787
|
openapi?: string | string[] | {
|
|
@@ -10574,6 +10810,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10574
10810
|
searchable?: boolean | undefined;
|
|
10575
10811
|
boost?: number | undefined;
|
|
10576
10812
|
hidden?: boolean | undefined;
|
|
10813
|
+
graphql?: undefined;
|
|
10577
10814
|
root?: string | undefined;
|
|
10578
10815
|
} & {
|
|
10579
10816
|
openapi?: string | string[] | {
|
|
@@ -10588,6 +10825,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10588
10825
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
10589
10826
|
}))[];
|
|
10590
10827
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
10828
|
+
graphql?: undefined;
|
|
10591
10829
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10592
10830
|
}, {
|
|
10593
10831
|
pages: (string | ({
|
|
@@ -10604,6 +10842,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10604
10842
|
searchable?: boolean | undefined;
|
|
10605
10843
|
boost?: number | undefined;
|
|
10606
10844
|
hidden?: boolean | undefined;
|
|
10845
|
+
graphql?: undefined;
|
|
10607
10846
|
root?: string | undefined;
|
|
10608
10847
|
} & {
|
|
10609
10848
|
openapi?: string | string[] | {
|
|
@@ -10618,6 +10857,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10618
10857
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
10619
10858
|
}))[];
|
|
10620
10859
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
10860
|
+
graphql?: undefined;
|
|
10621
10861
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10622
10862
|
}>]>;
|
|
10623
10863
|
footer: z.ZodOptional<z.ZodObject<{
|
|
@@ -11515,26 +11755,32 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11515
11755
|
navigation: {
|
|
11516
11756
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
11517
11757
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
11758
|
+
graphql?: undefined;
|
|
11518
11759
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
11519
11760
|
} | {
|
|
11520
11761
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
11521
11762
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
11763
|
+
graphql?: undefined;
|
|
11522
11764
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
11523
11765
|
} | {
|
|
11524
11766
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
11525
11767
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
11768
|
+
graphql?: undefined;
|
|
11526
11769
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
11527
11770
|
} | {
|
|
11528
11771
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
11529
11772
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
11773
|
+
graphql?: undefined;
|
|
11530
11774
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
11531
11775
|
} | {
|
|
11532
11776
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
11533
11777
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
11778
|
+
graphql?: undefined;
|
|
11534
11779
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
11535
11780
|
} | {
|
|
11536
11781
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
11537
11782
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
11783
|
+
graphql?: undefined;
|
|
11538
11784
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
11539
11785
|
} | {
|
|
11540
11786
|
groups: ({
|
|
@@ -11551,6 +11797,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11551
11797
|
searchable?: boolean | undefined;
|
|
11552
11798
|
boost?: number | undefined;
|
|
11553
11799
|
hidden?: boolean | undefined;
|
|
11800
|
+
graphql?: undefined;
|
|
11554
11801
|
root?: string | undefined;
|
|
11555
11802
|
} & {
|
|
11556
11803
|
openapi?: string | string[] | {
|
|
@@ -11565,6 +11812,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11565
11812
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
11566
11813
|
})[];
|
|
11567
11814
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
11815
|
+
graphql?: undefined;
|
|
11568
11816
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
11569
11817
|
} | {
|
|
11570
11818
|
pages: (string | ({
|
|
@@ -11581,6 +11829,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11581
11829
|
searchable?: boolean | undefined;
|
|
11582
11830
|
boost?: number | undefined;
|
|
11583
11831
|
hidden?: boolean | undefined;
|
|
11832
|
+
graphql?: undefined;
|
|
11584
11833
|
root?: string | undefined;
|
|
11585
11834
|
} & {
|
|
11586
11835
|
openapi?: string | string[] | {
|
|
@@ -11595,6 +11844,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11595
11844
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
11596
11845
|
}))[];
|
|
11597
11846
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
11847
|
+
graphql?: undefined;
|
|
11598
11848
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
11599
11849
|
};
|
|
11600
11850
|
background?: {
|
|
@@ -11906,26 +12156,32 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11906
12156
|
navigation: {
|
|
11907
12157
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
11908
12158
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
12159
|
+
graphql?: undefined;
|
|
11909
12160
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
11910
12161
|
} | {
|
|
11911
12162
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
11912
12163
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
12164
|
+
graphql?: undefined;
|
|
11913
12165
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
11914
12166
|
} | {
|
|
11915
12167
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
11916
12168
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
12169
|
+
graphql?: undefined;
|
|
11917
12170
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
11918
12171
|
} | {
|
|
11919
12172
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
11920
12173
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
12174
|
+
graphql?: undefined;
|
|
11921
12175
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
11922
12176
|
} | {
|
|
11923
12177
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
11924
12178
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
12179
|
+
graphql?: undefined;
|
|
11925
12180
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
11926
12181
|
} | {
|
|
11927
12182
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
11928
12183
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
12184
|
+
graphql?: undefined;
|
|
11929
12185
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
11930
12186
|
} | {
|
|
11931
12187
|
groups: ({
|
|
@@ -11942,6 +12198,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11942
12198
|
searchable?: boolean | undefined;
|
|
11943
12199
|
boost?: number | undefined;
|
|
11944
12200
|
hidden?: boolean | undefined;
|
|
12201
|
+
graphql?: undefined;
|
|
11945
12202
|
root?: string | undefined;
|
|
11946
12203
|
} & {
|
|
11947
12204
|
openapi?: string | string[] | {
|
|
@@ -11956,6 +12213,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11956
12213
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
11957
12214
|
})[];
|
|
11958
12215
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
12216
|
+
graphql?: undefined;
|
|
11959
12217
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
11960
12218
|
} | {
|
|
11961
12219
|
pages: (string | ({
|
|
@@ -11972,6 +12230,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11972
12230
|
searchable?: boolean | undefined;
|
|
11973
12231
|
boost?: number | undefined;
|
|
11974
12232
|
hidden?: boolean | undefined;
|
|
12233
|
+
graphql?: undefined;
|
|
11975
12234
|
root?: string | undefined;
|
|
11976
12235
|
} & {
|
|
11977
12236
|
openapi?: string | string[] | {
|
|
@@ -11986,6 +12245,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11986
12245
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
11987
12246
|
}))[];
|
|
11988
12247
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
12248
|
+
graphql?: undefined;
|
|
11989
12249
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
11990
12250
|
};
|
|
11991
12251
|
background?: {
|
|
@@ -12767,84 +13027,103 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12767
13027
|
navigation: z.ZodUnion<[z.ZodObject<{
|
|
12768
13028
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
12769
13029
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
13030
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
12770
13031
|
} & {
|
|
12771
13032
|
products: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").ProductNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").ProductNavigation<"default">>, "many">;
|
|
12772
13033
|
}, "strip", z.ZodTypeAny, {
|
|
12773
13034
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
12774
13035
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
13036
|
+
graphql?: undefined;
|
|
12775
13037
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
12776
13038
|
}, {
|
|
12777
13039
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
12778
13040
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
13041
|
+
graphql?: undefined;
|
|
12779
13042
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
12780
13043
|
}>, z.ZodObject<{
|
|
12781
13044
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
12782
13045
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
13046
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
12783
13047
|
} & {
|
|
12784
13048
|
languages: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">>, "many">;
|
|
12785
13049
|
}, "strip", z.ZodTypeAny, {
|
|
12786
13050
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
12787
13051
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
13052
|
+
graphql?: undefined;
|
|
12788
13053
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
12789
13054
|
}, {
|
|
12790
13055
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
12791
13056
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
13057
|
+
graphql?: undefined;
|
|
12792
13058
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
12793
13059
|
}>, z.ZodObject<{
|
|
12794
13060
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
12795
13061
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
13062
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
12796
13063
|
} & {
|
|
12797
13064
|
versions: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").VersionNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").VersionNavigation<"default">>, "many">;
|
|
12798
13065
|
}, "strip", z.ZodTypeAny, {
|
|
12799
13066
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
12800
13067
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
13068
|
+
graphql?: undefined;
|
|
12801
13069
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
12802
13070
|
}, {
|
|
12803
13071
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
12804
13072
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
13073
|
+
graphql?: undefined;
|
|
12805
13074
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
12806
13075
|
}>, z.ZodObject<{
|
|
12807
13076
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
12808
13077
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
13078
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
12809
13079
|
} & {
|
|
12810
13080
|
tabs: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").TabNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").TabNavigation<"default">>, "many">;
|
|
12811
13081
|
}, "strip", z.ZodTypeAny, {
|
|
12812
13082
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
12813
13083
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
13084
|
+
graphql?: undefined;
|
|
12814
13085
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
12815
13086
|
}, {
|
|
12816
13087
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
12817
13088
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
13089
|
+
graphql?: undefined;
|
|
12818
13090
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
12819
13091
|
}>, z.ZodObject<{
|
|
12820
13092
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
12821
13093
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
13094
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
12822
13095
|
} & {
|
|
12823
13096
|
dropdowns: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">>, "many">;
|
|
12824
13097
|
}, "strip", z.ZodTypeAny, {
|
|
12825
13098
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
12826
13099
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
13100
|
+
graphql?: undefined;
|
|
12827
13101
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
12828
13102
|
}, {
|
|
12829
13103
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
12830
13104
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
13105
|
+
graphql?: undefined;
|
|
12831
13106
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
12832
13107
|
}>, z.ZodObject<{
|
|
12833
13108
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
12834
13109
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
13110
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
12835
13111
|
} & {
|
|
12836
13112
|
anchors: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">>, "many">;
|
|
12837
13113
|
}, "strip", z.ZodTypeAny, {
|
|
12838
13114
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
12839
13115
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
13116
|
+
graphql?: undefined;
|
|
12840
13117
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
12841
13118
|
}, {
|
|
12842
13119
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
12843
13120
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
13121
|
+
graphql?: undefined;
|
|
12844
13122
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
12845
13123
|
}>, z.ZodObject<{
|
|
12846
13124
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
12847
13125
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
13126
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
12848
13127
|
} & {
|
|
12849
13128
|
groups: z.ZodArray<z.ZodType<{
|
|
12850
13129
|
group: string;
|
|
@@ -12860,6 +13139,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12860
13139
|
searchable?: boolean | undefined;
|
|
12861
13140
|
boost?: number | undefined;
|
|
12862
13141
|
hidden?: boolean | undefined;
|
|
13142
|
+
graphql?: undefined;
|
|
12863
13143
|
root?: string | undefined;
|
|
12864
13144
|
} & {
|
|
12865
13145
|
openapi?: string | string[] | {
|
|
@@ -12886,6 +13166,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12886
13166
|
searchable?: boolean | undefined;
|
|
12887
13167
|
boost?: number | undefined;
|
|
12888
13168
|
hidden?: boolean | undefined;
|
|
13169
|
+
graphql?: undefined;
|
|
12889
13170
|
root?: string | undefined;
|
|
12890
13171
|
} & {
|
|
12891
13172
|
openapi?: string | string[] | {
|
|
@@ -12914,6 +13195,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12914
13195
|
searchable?: boolean | undefined;
|
|
12915
13196
|
boost?: number | undefined;
|
|
12916
13197
|
hidden?: boolean | undefined;
|
|
13198
|
+
graphql?: undefined;
|
|
12917
13199
|
root?: string | undefined;
|
|
12918
13200
|
} & {
|
|
12919
13201
|
openapi?: string | string[] | {
|
|
@@ -12928,6 +13210,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12928
13210
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
12929
13211
|
})[];
|
|
12930
13212
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
13213
|
+
graphql?: undefined;
|
|
12931
13214
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
12932
13215
|
}, {
|
|
12933
13216
|
groups: ({
|
|
@@ -12944,6 +13227,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12944
13227
|
searchable?: boolean | undefined;
|
|
12945
13228
|
boost?: number | undefined;
|
|
12946
13229
|
hidden?: boolean | undefined;
|
|
13230
|
+
graphql?: undefined;
|
|
12947
13231
|
root?: string | undefined;
|
|
12948
13232
|
} & {
|
|
12949
13233
|
openapi?: string | string[] | {
|
|
@@ -12958,10 +13242,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12958
13242
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
12959
13243
|
})[];
|
|
12960
13244
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
13245
|
+
graphql?: undefined;
|
|
12961
13246
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
12962
13247
|
}>, z.ZodObject<{
|
|
12963
13248
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
12964
13249
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
13250
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
12965
13251
|
} & {
|
|
12966
13252
|
pages: z.ZodArray<z.ZodType<string | ({
|
|
12967
13253
|
group: string;
|
|
@@ -12977,6 +13263,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12977
13263
|
searchable?: boolean | undefined;
|
|
12978
13264
|
boost?: number | undefined;
|
|
12979
13265
|
hidden?: boolean | undefined;
|
|
13266
|
+
graphql?: undefined;
|
|
12980
13267
|
root?: string | undefined;
|
|
12981
13268
|
} & {
|
|
12982
13269
|
openapi?: string | string[] | {
|
|
@@ -13003,6 +13290,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13003
13290
|
searchable?: boolean | undefined;
|
|
13004
13291
|
boost?: number | undefined;
|
|
13005
13292
|
hidden?: boolean | undefined;
|
|
13293
|
+
graphql?: undefined;
|
|
13006
13294
|
root?: string | undefined;
|
|
13007
13295
|
} & {
|
|
13008
13296
|
openapi?: string | string[] | {
|
|
@@ -13031,6 +13319,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13031
13319
|
searchable?: boolean | undefined;
|
|
13032
13320
|
boost?: number | undefined;
|
|
13033
13321
|
hidden?: boolean | undefined;
|
|
13322
|
+
graphql?: undefined;
|
|
13034
13323
|
root?: string | undefined;
|
|
13035
13324
|
} & {
|
|
13036
13325
|
openapi?: string | string[] | {
|
|
@@ -13045,6 +13334,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13045
13334
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
13046
13335
|
}))[];
|
|
13047
13336
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
13337
|
+
graphql?: undefined;
|
|
13048
13338
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
13049
13339
|
}, {
|
|
13050
13340
|
pages: (string | ({
|
|
@@ -13061,6 +13351,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13061
13351
|
searchable?: boolean | undefined;
|
|
13062
13352
|
boost?: number | undefined;
|
|
13063
13353
|
hidden?: boolean | undefined;
|
|
13354
|
+
graphql?: undefined;
|
|
13064
13355
|
root?: string | undefined;
|
|
13065
13356
|
} & {
|
|
13066
13357
|
openapi?: string | string[] | {
|
|
@@ -13075,6 +13366,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13075
13366
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
13076
13367
|
}))[];
|
|
13077
13368
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
13369
|
+
graphql?: undefined;
|
|
13078
13370
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
13079
13371
|
}>]>;
|
|
13080
13372
|
footer: z.ZodOptional<z.ZodObject<{
|
|
@@ -13972,26 +14264,32 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13972
14264
|
navigation: {
|
|
13973
14265
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
13974
14266
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
14267
|
+
graphql?: undefined;
|
|
13975
14268
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
13976
14269
|
} | {
|
|
13977
14270
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
13978
14271
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
14272
|
+
graphql?: undefined;
|
|
13979
14273
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
13980
14274
|
} | {
|
|
13981
14275
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
13982
14276
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
14277
|
+
graphql?: undefined;
|
|
13983
14278
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
13984
14279
|
} | {
|
|
13985
14280
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
13986
14281
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
14282
|
+
graphql?: undefined;
|
|
13987
14283
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
13988
14284
|
} | {
|
|
13989
14285
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
13990
14286
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
14287
|
+
graphql?: undefined;
|
|
13991
14288
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
13992
14289
|
} | {
|
|
13993
14290
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
13994
14291
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
14292
|
+
graphql?: undefined;
|
|
13995
14293
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
13996
14294
|
} | {
|
|
13997
14295
|
groups: ({
|
|
@@ -14008,6 +14306,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14008
14306
|
searchable?: boolean | undefined;
|
|
14009
14307
|
boost?: number | undefined;
|
|
14010
14308
|
hidden?: boolean | undefined;
|
|
14309
|
+
graphql?: undefined;
|
|
14011
14310
|
root?: string | undefined;
|
|
14012
14311
|
} & {
|
|
14013
14312
|
openapi?: string | string[] | {
|
|
@@ -14022,6 +14321,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14022
14321
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
14023
14322
|
})[];
|
|
14024
14323
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
14324
|
+
graphql?: undefined;
|
|
14025
14325
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
14026
14326
|
} | {
|
|
14027
14327
|
pages: (string | ({
|
|
@@ -14038,6 +14338,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14038
14338
|
searchable?: boolean | undefined;
|
|
14039
14339
|
boost?: number | undefined;
|
|
14040
14340
|
hidden?: boolean | undefined;
|
|
14341
|
+
graphql?: undefined;
|
|
14041
14342
|
root?: string | undefined;
|
|
14042
14343
|
} & {
|
|
14043
14344
|
openapi?: string | string[] | {
|
|
@@ -14052,6 +14353,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14052
14353
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
14053
14354
|
}))[];
|
|
14054
14355
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
14356
|
+
graphql?: undefined;
|
|
14055
14357
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
14056
14358
|
};
|
|
14057
14359
|
background?: {
|
|
@@ -14363,26 +14665,32 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14363
14665
|
navigation: {
|
|
14364
14666
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
14365
14667
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
14668
|
+
graphql?: undefined;
|
|
14366
14669
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
14367
14670
|
} | {
|
|
14368
14671
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
14369
14672
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
14673
|
+
graphql?: undefined;
|
|
14370
14674
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
14371
14675
|
} | {
|
|
14372
14676
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
14373
14677
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
14678
|
+
graphql?: undefined;
|
|
14374
14679
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
14375
14680
|
} | {
|
|
14376
14681
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
14377
14682
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
14683
|
+
graphql?: undefined;
|
|
14378
14684
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
14379
14685
|
} | {
|
|
14380
14686
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
14381
14687
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
14688
|
+
graphql?: undefined;
|
|
14382
14689
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
14383
14690
|
} | {
|
|
14384
14691
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
14385
14692
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
14693
|
+
graphql?: undefined;
|
|
14386
14694
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
14387
14695
|
} | {
|
|
14388
14696
|
groups: ({
|
|
@@ -14399,6 +14707,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14399
14707
|
searchable?: boolean | undefined;
|
|
14400
14708
|
boost?: number | undefined;
|
|
14401
14709
|
hidden?: boolean | undefined;
|
|
14710
|
+
graphql?: undefined;
|
|
14402
14711
|
root?: string | undefined;
|
|
14403
14712
|
} & {
|
|
14404
14713
|
openapi?: string | string[] | {
|
|
@@ -14413,6 +14722,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14413
14722
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
14414
14723
|
})[];
|
|
14415
14724
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
14725
|
+
graphql?: undefined;
|
|
14416
14726
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
14417
14727
|
} | {
|
|
14418
14728
|
pages: (string | ({
|
|
@@ -14429,6 +14739,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14429
14739
|
searchable?: boolean | undefined;
|
|
14430
14740
|
boost?: number | undefined;
|
|
14431
14741
|
hidden?: boolean | undefined;
|
|
14742
|
+
graphql?: undefined;
|
|
14432
14743
|
root?: string | undefined;
|
|
14433
14744
|
} & {
|
|
14434
14745
|
openapi?: string | string[] | {
|
|
@@ -14443,6 +14754,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14443
14754
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
14444
14755
|
}))[];
|
|
14445
14756
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
14757
|
+
graphql?: undefined;
|
|
14446
14758
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
14447
14759
|
};
|
|
14448
14760
|
background?: {
|
|
@@ -15224,84 +15536,103 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15224
15536
|
navigation: z.ZodUnion<[z.ZodObject<{
|
|
15225
15537
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
15226
15538
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
15539
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
15227
15540
|
} & {
|
|
15228
15541
|
products: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").ProductNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").ProductNavigation<"default">>, "many">;
|
|
15229
15542
|
}, "strip", z.ZodTypeAny, {
|
|
15230
15543
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
15231
15544
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
15545
|
+
graphql?: undefined;
|
|
15232
15546
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15233
15547
|
}, {
|
|
15234
15548
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
15235
15549
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
15550
|
+
graphql?: undefined;
|
|
15236
15551
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15237
15552
|
}>, z.ZodObject<{
|
|
15238
15553
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
15239
15554
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
15555
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
15240
15556
|
} & {
|
|
15241
15557
|
languages: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">>, "many">;
|
|
15242
15558
|
}, "strip", z.ZodTypeAny, {
|
|
15243
15559
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
15244
15560
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
15561
|
+
graphql?: undefined;
|
|
15245
15562
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15246
15563
|
}, {
|
|
15247
15564
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
15248
15565
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
15566
|
+
graphql?: undefined;
|
|
15249
15567
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15250
15568
|
}>, z.ZodObject<{
|
|
15251
15569
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
15252
15570
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
15571
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
15253
15572
|
} & {
|
|
15254
15573
|
versions: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").VersionNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").VersionNavigation<"default">>, "many">;
|
|
15255
15574
|
}, "strip", z.ZodTypeAny, {
|
|
15256
15575
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
15257
15576
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
15577
|
+
graphql?: undefined;
|
|
15258
15578
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15259
15579
|
}, {
|
|
15260
15580
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
15261
15581
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
15582
|
+
graphql?: undefined;
|
|
15262
15583
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15263
15584
|
}>, z.ZodObject<{
|
|
15264
15585
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
15265
15586
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
15587
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
15266
15588
|
} & {
|
|
15267
15589
|
tabs: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").TabNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").TabNavigation<"default">>, "many">;
|
|
15268
15590
|
}, "strip", z.ZodTypeAny, {
|
|
15269
15591
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
15270
15592
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
15593
|
+
graphql?: undefined;
|
|
15271
15594
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15272
15595
|
}, {
|
|
15273
15596
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
15274
15597
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
15598
|
+
graphql?: undefined;
|
|
15275
15599
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15276
15600
|
}>, z.ZodObject<{
|
|
15277
15601
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
15278
15602
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
15603
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
15279
15604
|
} & {
|
|
15280
15605
|
dropdowns: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">>, "many">;
|
|
15281
15606
|
}, "strip", z.ZodTypeAny, {
|
|
15282
15607
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
15283
15608
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
15609
|
+
graphql?: undefined;
|
|
15284
15610
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15285
15611
|
}, {
|
|
15286
15612
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
15287
15613
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
15614
|
+
graphql?: undefined;
|
|
15288
15615
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15289
15616
|
}>, z.ZodObject<{
|
|
15290
15617
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
15291
15618
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
15619
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
15292
15620
|
} & {
|
|
15293
15621
|
anchors: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">>, "many">;
|
|
15294
15622
|
}, "strip", z.ZodTypeAny, {
|
|
15295
15623
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
15296
15624
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
15625
|
+
graphql?: undefined;
|
|
15297
15626
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15298
15627
|
}, {
|
|
15299
15628
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
15300
15629
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
15630
|
+
graphql?: undefined;
|
|
15301
15631
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15302
15632
|
}>, z.ZodObject<{
|
|
15303
15633
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
15304
15634
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
15635
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
15305
15636
|
} & {
|
|
15306
15637
|
groups: z.ZodArray<z.ZodType<{
|
|
15307
15638
|
group: string;
|
|
@@ -15317,6 +15648,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15317
15648
|
searchable?: boolean | undefined;
|
|
15318
15649
|
boost?: number | undefined;
|
|
15319
15650
|
hidden?: boolean | undefined;
|
|
15651
|
+
graphql?: undefined;
|
|
15320
15652
|
root?: string | undefined;
|
|
15321
15653
|
} & {
|
|
15322
15654
|
openapi?: string | string[] | {
|
|
@@ -15343,6 +15675,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15343
15675
|
searchable?: boolean | undefined;
|
|
15344
15676
|
boost?: number | undefined;
|
|
15345
15677
|
hidden?: boolean | undefined;
|
|
15678
|
+
graphql?: undefined;
|
|
15346
15679
|
root?: string | undefined;
|
|
15347
15680
|
} & {
|
|
15348
15681
|
openapi?: string | string[] | {
|
|
@@ -15371,6 +15704,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15371
15704
|
searchable?: boolean | undefined;
|
|
15372
15705
|
boost?: number | undefined;
|
|
15373
15706
|
hidden?: boolean | undefined;
|
|
15707
|
+
graphql?: undefined;
|
|
15374
15708
|
root?: string | undefined;
|
|
15375
15709
|
} & {
|
|
15376
15710
|
openapi?: string | string[] | {
|
|
@@ -15385,6 +15719,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15385
15719
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
15386
15720
|
})[];
|
|
15387
15721
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
15722
|
+
graphql?: undefined;
|
|
15388
15723
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15389
15724
|
}, {
|
|
15390
15725
|
groups: ({
|
|
@@ -15401,6 +15736,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15401
15736
|
searchable?: boolean | undefined;
|
|
15402
15737
|
boost?: number | undefined;
|
|
15403
15738
|
hidden?: boolean | undefined;
|
|
15739
|
+
graphql?: undefined;
|
|
15404
15740
|
root?: string | undefined;
|
|
15405
15741
|
} & {
|
|
15406
15742
|
openapi?: string | string[] | {
|
|
@@ -15415,10 +15751,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15415
15751
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
15416
15752
|
})[];
|
|
15417
15753
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
15754
|
+
graphql?: undefined;
|
|
15418
15755
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15419
15756
|
}>, z.ZodObject<{
|
|
15420
15757
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
15421
15758
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
15759
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
15422
15760
|
} & {
|
|
15423
15761
|
pages: z.ZodArray<z.ZodType<string | ({
|
|
15424
15762
|
group: string;
|
|
@@ -15434,6 +15772,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15434
15772
|
searchable?: boolean | undefined;
|
|
15435
15773
|
boost?: number | undefined;
|
|
15436
15774
|
hidden?: boolean | undefined;
|
|
15775
|
+
graphql?: undefined;
|
|
15437
15776
|
root?: string | undefined;
|
|
15438
15777
|
} & {
|
|
15439
15778
|
openapi?: string | string[] | {
|
|
@@ -15460,6 +15799,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15460
15799
|
searchable?: boolean | undefined;
|
|
15461
15800
|
boost?: number | undefined;
|
|
15462
15801
|
hidden?: boolean | undefined;
|
|
15802
|
+
graphql?: undefined;
|
|
15463
15803
|
root?: string | undefined;
|
|
15464
15804
|
} & {
|
|
15465
15805
|
openapi?: string | string[] | {
|
|
@@ -15488,6 +15828,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15488
15828
|
searchable?: boolean | undefined;
|
|
15489
15829
|
boost?: number | undefined;
|
|
15490
15830
|
hidden?: boolean | undefined;
|
|
15831
|
+
graphql?: undefined;
|
|
15491
15832
|
root?: string | undefined;
|
|
15492
15833
|
} & {
|
|
15493
15834
|
openapi?: string | string[] | {
|
|
@@ -15502,6 +15843,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15502
15843
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
15503
15844
|
}))[];
|
|
15504
15845
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
15846
|
+
graphql?: undefined;
|
|
15505
15847
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15506
15848
|
}, {
|
|
15507
15849
|
pages: (string | ({
|
|
@@ -15518,6 +15860,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15518
15860
|
searchable?: boolean | undefined;
|
|
15519
15861
|
boost?: number | undefined;
|
|
15520
15862
|
hidden?: boolean | undefined;
|
|
15863
|
+
graphql?: undefined;
|
|
15521
15864
|
root?: string | undefined;
|
|
15522
15865
|
} & {
|
|
15523
15866
|
openapi?: string | string[] | {
|
|
@@ -15532,6 +15875,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15532
15875
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
15533
15876
|
}))[];
|
|
15534
15877
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
15878
|
+
graphql?: undefined;
|
|
15535
15879
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15536
15880
|
}>]>;
|
|
15537
15881
|
footer: z.ZodOptional<z.ZodObject<{
|
|
@@ -16429,26 +16773,32 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16429
16773
|
navigation: {
|
|
16430
16774
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
16431
16775
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
16776
|
+
graphql?: undefined;
|
|
16432
16777
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
16433
16778
|
} | {
|
|
16434
16779
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
16435
16780
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
16781
|
+
graphql?: undefined;
|
|
16436
16782
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
16437
16783
|
} | {
|
|
16438
16784
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
16439
16785
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
16786
|
+
graphql?: undefined;
|
|
16440
16787
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
16441
16788
|
} | {
|
|
16442
16789
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
16443
16790
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
16791
|
+
graphql?: undefined;
|
|
16444
16792
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
16445
16793
|
} | {
|
|
16446
16794
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
16447
16795
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
16796
|
+
graphql?: undefined;
|
|
16448
16797
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
16449
16798
|
} | {
|
|
16450
16799
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
16451
16800
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
16801
|
+
graphql?: undefined;
|
|
16452
16802
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
16453
16803
|
} | {
|
|
16454
16804
|
groups: ({
|
|
@@ -16465,6 +16815,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16465
16815
|
searchable?: boolean | undefined;
|
|
16466
16816
|
boost?: number | undefined;
|
|
16467
16817
|
hidden?: boolean | undefined;
|
|
16818
|
+
graphql?: undefined;
|
|
16468
16819
|
root?: string | undefined;
|
|
16469
16820
|
} & {
|
|
16470
16821
|
openapi?: string | string[] | {
|
|
@@ -16479,6 +16830,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16479
16830
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
16480
16831
|
})[];
|
|
16481
16832
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
16833
|
+
graphql?: undefined;
|
|
16482
16834
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
16483
16835
|
} | {
|
|
16484
16836
|
pages: (string | ({
|
|
@@ -16495,6 +16847,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16495
16847
|
searchable?: boolean | undefined;
|
|
16496
16848
|
boost?: number | undefined;
|
|
16497
16849
|
hidden?: boolean | undefined;
|
|
16850
|
+
graphql?: undefined;
|
|
16498
16851
|
root?: string | undefined;
|
|
16499
16852
|
} & {
|
|
16500
16853
|
openapi?: string | string[] | {
|
|
@@ -16509,6 +16862,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16509
16862
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
16510
16863
|
}))[];
|
|
16511
16864
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
16865
|
+
graphql?: undefined;
|
|
16512
16866
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
16513
16867
|
};
|
|
16514
16868
|
background?: {
|
|
@@ -16820,26 +17174,32 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16820
17174
|
navigation: {
|
|
16821
17175
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
16822
17176
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
17177
|
+
graphql?: undefined;
|
|
16823
17178
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
16824
17179
|
} | {
|
|
16825
17180
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
16826
17181
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
17182
|
+
graphql?: undefined;
|
|
16827
17183
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
16828
17184
|
} | {
|
|
16829
17185
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
16830
17186
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
17187
|
+
graphql?: undefined;
|
|
16831
17188
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
16832
17189
|
} | {
|
|
16833
17190
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
16834
17191
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
17192
|
+
graphql?: undefined;
|
|
16835
17193
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
16836
17194
|
} | {
|
|
16837
17195
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
16838
17196
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
17197
|
+
graphql?: undefined;
|
|
16839
17198
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
16840
17199
|
} | {
|
|
16841
17200
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
16842
17201
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
17202
|
+
graphql?: undefined;
|
|
16843
17203
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
16844
17204
|
} | {
|
|
16845
17205
|
groups: ({
|
|
@@ -16856,6 +17216,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16856
17216
|
searchable?: boolean | undefined;
|
|
16857
17217
|
boost?: number | undefined;
|
|
16858
17218
|
hidden?: boolean | undefined;
|
|
17219
|
+
graphql?: undefined;
|
|
16859
17220
|
root?: string | undefined;
|
|
16860
17221
|
} & {
|
|
16861
17222
|
openapi?: string | string[] | {
|
|
@@ -16870,6 +17231,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16870
17231
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
16871
17232
|
})[];
|
|
16872
17233
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
17234
|
+
graphql?: undefined;
|
|
16873
17235
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
16874
17236
|
} | {
|
|
16875
17237
|
pages: (string | ({
|
|
@@ -16886,6 +17248,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16886
17248
|
searchable?: boolean | undefined;
|
|
16887
17249
|
boost?: number | undefined;
|
|
16888
17250
|
hidden?: boolean | undefined;
|
|
17251
|
+
graphql?: undefined;
|
|
16889
17252
|
root?: string | undefined;
|
|
16890
17253
|
} & {
|
|
16891
17254
|
openapi?: string | string[] | {
|
|
@@ -16900,6 +17263,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16900
17263
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
16901
17264
|
}))[];
|
|
16902
17265
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
17266
|
+
graphql?: undefined;
|
|
16903
17267
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
16904
17268
|
};
|
|
16905
17269
|
background?: {
|
|
@@ -17681,84 +18045,103 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17681
18045
|
navigation: z.ZodUnion<[z.ZodObject<{
|
|
17682
18046
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
17683
18047
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
18048
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
17684
18049
|
} & {
|
|
17685
18050
|
products: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").ProductNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").ProductNavigation<"default">>, "many">;
|
|
17686
18051
|
}, "strip", z.ZodTypeAny, {
|
|
17687
18052
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
17688
18053
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
18054
|
+
graphql?: undefined;
|
|
17689
18055
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
17690
18056
|
}, {
|
|
17691
18057
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
17692
18058
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
18059
|
+
graphql?: undefined;
|
|
17693
18060
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
17694
18061
|
}>, z.ZodObject<{
|
|
17695
18062
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
17696
18063
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
18064
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
17697
18065
|
} & {
|
|
17698
18066
|
languages: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">>, "many">;
|
|
17699
18067
|
}, "strip", z.ZodTypeAny, {
|
|
17700
18068
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
17701
18069
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
18070
|
+
graphql?: undefined;
|
|
17702
18071
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
17703
18072
|
}, {
|
|
17704
18073
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
17705
18074
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
18075
|
+
graphql?: undefined;
|
|
17706
18076
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
17707
18077
|
}>, z.ZodObject<{
|
|
17708
18078
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
17709
18079
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
18080
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
17710
18081
|
} & {
|
|
17711
18082
|
versions: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").VersionNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").VersionNavigation<"default">>, "many">;
|
|
17712
18083
|
}, "strip", z.ZodTypeAny, {
|
|
17713
18084
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
17714
18085
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
18086
|
+
graphql?: undefined;
|
|
17715
18087
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
17716
18088
|
}, {
|
|
17717
18089
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
17718
18090
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
18091
|
+
graphql?: undefined;
|
|
17719
18092
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
17720
18093
|
}>, z.ZodObject<{
|
|
17721
18094
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
17722
18095
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
18096
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
17723
18097
|
} & {
|
|
17724
18098
|
tabs: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").TabNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").TabNavigation<"default">>, "many">;
|
|
17725
18099
|
}, "strip", z.ZodTypeAny, {
|
|
17726
18100
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
17727
18101
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
18102
|
+
graphql?: undefined;
|
|
17728
18103
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
17729
18104
|
}, {
|
|
17730
18105
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
17731
18106
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
18107
|
+
graphql?: undefined;
|
|
17732
18108
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
17733
18109
|
}>, z.ZodObject<{
|
|
17734
18110
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
17735
18111
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
18112
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
17736
18113
|
} & {
|
|
17737
18114
|
dropdowns: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">>, "many">;
|
|
17738
18115
|
}, "strip", z.ZodTypeAny, {
|
|
17739
18116
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
17740
18117
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
18118
|
+
graphql?: undefined;
|
|
17741
18119
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
17742
18120
|
}, {
|
|
17743
18121
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
17744
18122
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
18123
|
+
graphql?: undefined;
|
|
17745
18124
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
17746
18125
|
}>, z.ZodObject<{
|
|
17747
18126
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
17748
18127
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
18128
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
17749
18129
|
} & {
|
|
17750
18130
|
anchors: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">>, "many">;
|
|
17751
18131
|
}, "strip", z.ZodTypeAny, {
|
|
17752
18132
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
17753
18133
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
18134
|
+
graphql?: undefined;
|
|
17754
18135
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
17755
18136
|
}, {
|
|
17756
18137
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
17757
18138
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
18139
|
+
graphql?: undefined;
|
|
17758
18140
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
17759
18141
|
}>, z.ZodObject<{
|
|
17760
18142
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
17761
18143
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
18144
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
17762
18145
|
} & {
|
|
17763
18146
|
groups: z.ZodArray<z.ZodType<{
|
|
17764
18147
|
group: string;
|
|
@@ -17774,6 +18157,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17774
18157
|
searchable?: boolean | undefined;
|
|
17775
18158
|
boost?: number | undefined;
|
|
17776
18159
|
hidden?: boolean | undefined;
|
|
18160
|
+
graphql?: undefined;
|
|
17777
18161
|
root?: string | undefined;
|
|
17778
18162
|
} & {
|
|
17779
18163
|
openapi?: string | string[] | {
|
|
@@ -17800,6 +18184,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17800
18184
|
searchable?: boolean | undefined;
|
|
17801
18185
|
boost?: number | undefined;
|
|
17802
18186
|
hidden?: boolean | undefined;
|
|
18187
|
+
graphql?: undefined;
|
|
17803
18188
|
root?: string | undefined;
|
|
17804
18189
|
} & {
|
|
17805
18190
|
openapi?: string | string[] | {
|
|
@@ -17828,6 +18213,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17828
18213
|
searchable?: boolean | undefined;
|
|
17829
18214
|
boost?: number | undefined;
|
|
17830
18215
|
hidden?: boolean | undefined;
|
|
18216
|
+
graphql?: undefined;
|
|
17831
18217
|
root?: string | undefined;
|
|
17832
18218
|
} & {
|
|
17833
18219
|
openapi?: string | string[] | {
|
|
@@ -17842,6 +18228,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17842
18228
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
17843
18229
|
})[];
|
|
17844
18230
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
18231
|
+
graphql?: undefined;
|
|
17845
18232
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
17846
18233
|
}, {
|
|
17847
18234
|
groups: ({
|
|
@@ -17858,6 +18245,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17858
18245
|
searchable?: boolean | undefined;
|
|
17859
18246
|
boost?: number | undefined;
|
|
17860
18247
|
hidden?: boolean | undefined;
|
|
18248
|
+
graphql?: undefined;
|
|
17861
18249
|
root?: string | undefined;
|
|
17862
18250
|
} & {
|
|
17863
18251
|
openapi?: string | string[] | {
|
|
@@ -17872,10 +18260,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17872
18260
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
17873
18261
|
})[];
|
|
17874
18262
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
18263
|
+
graphql?: undefined;
|
|
17875
18264
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
17876
18265
|
}>, z.ZodObject<{
|
|
17877
18266
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
17878
18267
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
18268
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
17879
18269
|
} & {
|
|
17880
18270
|
pages: z.ZodArray<z.ZodType<string | ({
|
|
17881
18271
|
group: string;
|
|
@@ -17891,6 +18281,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17891
18281
|
searchable?: boolean | undefined;
|
|
17892
18282
|
boost?: number | undefined;
|
|
17893
18283
|
hidden?: boolean | undefined;
|
|
18284
|
+
graphql?: undefined;
|
|
17894
18285
|
root?: string | undefined;
|
|
17895
18286
|
} & {
|
|
17896
18287
|
openapi?: string | string[] | {
|
|
@@ -17917,6 +18308,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17917
18308
|
searchable?: boolean | undefined;
|
|
17918
18309
|
boost?: number | undefined;
|
|
17919
18310
|
hidden?: boolean | undefined;
|
|
18311
|
+
graphql?: undefined;
|
|
17920
18312
|
root?: string | undefined;
|
|
17921
18313
|
} & {
|
|
17922
18314
|
openapi?: string | string[] | {
|
|
@@ -17945,6 +18337,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17945
18337
|
searchable?: boolean | undefined;
|
|
17946
18338
|
boost?: number | undefined;
|
|
17947
18339
|
hidden?: boolean | undefined;
|
|
18340
|
+
graphql?: undefined;
|
|
17948
18341
|
root?: string | undefined;
|
|
17949
18342
|
} & {
|
|
17950
18343
|
openapi?: string | string[] | {
|
|
@@ -17959,6 +18352,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17959
18352
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
17960
18353
|
}))[];
|
|
17961
18354
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
18355
|
+
graphql?: undefined;
|
|
17962
18356
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
17963
18357
|
}, {
|
|
17964
18358
|
pages: (string | ({
|
|
@@ -17975,6 +18369,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17975
18369
|
searchable?: boolean | undefined;
|
|
17976
18370
|
boost?: number | undefined;
|
|
17977
18371
|
hidden?: boolean | undefined;
|
|
18372
|
+
graphql?: undefined;
|
|
17978
18373
|
root?: string | undefined;
|
|
17979
18374
|
} & {
|
|
17980
18375
|
openapi?: string | string[] | {
|
|
@@ -17989,6 +18384,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17989
18384
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
17990
18385
|
}))[];
|
|
17991
18386
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
18387
|
+
graphql?: undefined;
|
|
17992
18388
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
17993
18389
|
}>]>;
|
|
17994
18390
|
footer: z.ZodOptional<z.ZodObject<{
|
|
@@ -18886,26 +19282,32 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18886
19282
|
navigation: {
|
|
18887
19283
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
18888
19284
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
19285
|
+
graphql?: undefined;
|
|
18889
19286
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18890
19287
|
} | {
|
|
18891
19288
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
18892
19289
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
19290
|
+
graphql?: undefined;
|
|
18893
19291
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18894
19292
|
} | {
|
|
18895
19293
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
18896
19294
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
19295
|
+
graphql?: undefined;
|
|
18897
19296
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18898
19297
|
} | {
|
|
18899
19298
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
18900
19299
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
19300
|
+
graphql?: undefined;
|
|
18901
19301
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18902
19302
|
} | {
|
|
18903
19303
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
18904
19304
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
19305
|
+
graphql?: undefined;
|
|
18905
19306
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18906
19307
|
} | {
|
|
18907
19308
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
18908
19309
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
19310
|
+
graphql?: undefined;
|
|
18909
19311
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18910
19312
|
} | {
|
|
18911
19313
|
groups: ({
|
|
@@ -18922,6 +19324,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18922
19324
|
searchable?: boolean | undefined;
|
|
18923
19325
|
boost?: number | undefined;
|
|
18924
19326
|
hidden?: boolean | undefined;
|
|
19327
|
+
graphql?: undefined;
|
|
18925
19328
|
root?: string | undefined;
|
|
18926
19329
|
} & {
|
|
18927
19330
|
openapi?: string | string[] | {
|
|
@@ -18936,6 +19339,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18936
19339
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
18937
19340
|
})[];
|
|
18938
19341
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
19342
|
+
graphql?: undefined;
|
|
18939
19343
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18940
19344
|
} | {
|
|
18941
19345
|
pages: (string | ({
|
|
@@ -18952,6 +19356,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18952
19356
|
searchable?: boolean | undefined;
|
|
18953
19357
|
boost?: number | undefined;
|
|
18954
19358
|
hidden?: boolean | undefined;
|
|
19359
|
+
graphql?: undefined;
|
|
18955
19360
|
root?: string | undefined;
|
|
18956
19361
|
} & {
|
|
18957
19362
|
openapi?: string | string[] | {
|
|
@@ -18966,6 +19371,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18966
19371
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
18967
19372
|
}))[];
|
|
18968
19373
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
19374
|
+
graphql?: undefined;
|
|
18969
19375
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18970
19376
|
};
|
|
18971
19377
|
background?: {
|
|
@@ -19277,26 +19683,32 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
19277
19683
|
navigation: {
|
|
19278
19684
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
19279
19685
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
19686
|
+
graphql?: undefined;
|
|
19280
19687
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
19281
19688
|
} | {
|
|
19282
19689
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
19283
19690
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
19691
|
+
graphql?: undefined;
|
|
19284
19692
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
19285
19693
|
} | {
|
|
19286
19694
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
19287
19695
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
19696
|
+
graphql?: undefined;
|
|
19288
19697
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
19289
19698
|
} | {
|
|
19290
19699
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
19291
19700
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
19701
|
+
graphql?: undefined;
|
|
19292
19702
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
19293
19703
|
} | {
|
|
19294
19704
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
19295
19705
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
19706
|
+
graphql?: undefined;
|
|
19296
19707
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
19297
19708
|
} | {
|
|
19298
19709
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
19299
19710
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
19711
|
+
graphql?: undefined;
|
|
19300
19712
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
19301
19713
|
} | {
|
|
19302
19714
|
groups: ({
|
|
@@ -19313,6 +19725,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
19313
19725
|
searchable?: boolean | undefined;
|
|
19314
19726
|
boost?: number | undefined;
|
|
19315
19727
|
hidden?: boolean | undefined;
|
|
19728
|
+
graphql?: undefined;
|
|
19316
19729
|
root?: string | undefined;
|
|
19317
19730
|
} & {
|
|
19318
19731
|
openapi?: string | string[] | {
|
|
@@ -19327,6 +19740,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
19327
19740
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
19328
19741
|
})[];
|
|
19329
19742
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
19743
|
+
graphql?: undefined;
|
|
19330
19744
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
19331
19745
|
} | {
|
|
19332
19746
|
pages: (string | ({
|
|
@@ -19343,6 +19757,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
19343
19757
|
searchable?: boolean | undefined;
|
|
19344
19758
|
boost?: number | undefined;
|
|
19345
19759
|
hidden?: boolean | undefined;
|
|
19760
|
+
graphql?: undefined;
|
|
19346
19761
|
root?: string | undefined;
|
|
19347
19762
|
} & {
|
|
19348
19763
|
openapi?: string | string[] | {
|
|
@@ -19357,6 +19772,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
19357
19772
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
19358
19773
|
}))[];
|
|
19359
19774
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
19775
|
+
graphql?: undefined;
|
|
19360
19776
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
19361
19777
|
};
|
|
19362
19778
|
background?: {
|
|
@@ -20138,84 +20554,103 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20138
20554
|
navigation: z.ZodUnion<[z.ZodObject<{
|
|
20139
20555
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
20140
20556
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
20557
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
20141
20558
|
} & {
|
|
20142
20559
|
products: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").ProductNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").ProductNavigation<"default">>, "many">;
|
|
20143
20560
|
}, "strip", z.ZodTypeAny, {
|
|
20144
20561
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
20145
20562
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
20563
|
+
graphql?: undefined;
|
|
20146
20564
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
20147
20565
|
}, {
|
|
20148
20566
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
20149
20567
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
20568
|
+
graphql?: undefined;
|
|
20150
20569
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
20151
20570
|
}>, z.ZodObject<{
|
|
20152
20571
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
20153
20572
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
20573
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
20154
20574
|
} & {
|
|
20155
20575
|
languages: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">>, "many">;
|
|
20156
20576
|
}, "strip", z.ZodTypeAny, {
|
|
20157
20577
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
20158
20578
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
20579
|
+
graphql?: undefined;
|
|
20159
20580
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
20160
20581
|
}, {
|
|
20161
20582
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
20162
20583
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
20584
|
+
graphql?: undefined;
|
|
20163
20585
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
20164
20586
|
}>, z.ZodObject<{
|
|
20165
20587
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
20166
20588
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
20589
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
20167
20590
|
} & {
|
|
20168
20591
|
versions: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").VersionNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").VersionNavigation<"default">>, "many">;
|
|
20169
20592
|
}, "strip", z.ZodTypeAny, {
|
|
20170
20593
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
20171
20594
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
20595
|
+
graphql?: undefined;
|
|
20172
20596
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
20173
20597
|
}, {
|
|
20174
20598
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
20175
20599
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
20600
|
+
graphql?: undefined;
|
|
20176
20601
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
20177
20602
|
}>, z.ZodObject<{
|
|
20178
20603
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
20179
20604
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
20605
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
20180
20606
|
} & {
|
|
20181
20607
|
tabs: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").TabNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").TabNavigation<"default">>, "many">;
|
|
20182
20608
|
}, "strip", z.ZodTypeAny, {
|
|
20183
20609
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
20184
20610
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
20611
|
+
graphql?: undefined;
|
|
20185
20612
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
20186
20613
|
}, {
|
|
20187
20614
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
20188
20615
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
20616
|
+
graphql?: undefined;
|
|
20189
20617
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
20190
20618
|
}>, z.ZodObject<{
|
|
20191
20619
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
20192
20620
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
20621
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
20193
20622
|
} & {
|
|
20194
20623
|
dropdowns: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">>, "many">;
|
|
20195
20624
|
}, "strip", z.ZodTypeAny, {
|
|
20196
20625
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
20197
20626
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
20627
|
+
graphql?: undefined;
|
|
20198
20628
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
20199
20629
|
}, {
|
|
20200
20630
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
20201
20631
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
20632
|
+
graphql?: undefined;
|
|
20202
20633
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
20203
20634
|
}>, z.ZodObject<{
|
|
20204
20635
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
20205
20636
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
20637
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
20206
20638
|
} & {
|
|
20207
20639
|
anchors: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">>, "many">;
|
|
20208
20640
|
}, "strip", z.ZodTypeAny, {
|
|
20209
20641
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
20210
20642
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
20643
|
+
graphql?: undefined;
|
|
20211
20644
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
20212
20645
|
}, {
|
|
20213
20646
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
20214
20647
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
20648
|
+
graphql?: undefined;
|
|
20215
20649
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
20216
20650
|
}>, z.ZodObject<{
|
|
20217
20651
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
20218
20652
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
20653
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
20219
20654
|
} & {
|
|
20220
20655
|
groups: z.ZodArray<z.ZodType<{
|
|
20221
20656
|
group: string;
|
|
@@ -20231,6 +20666,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20231
20666
|
searchable?: boolean | undefined;
|
|
20232
20667
|
boost?: number | undefined;
|
|
20233
20668
|
hidden?: boolean | undefined;
|
|
20669
|
+
graphql?: undefined;
|
|
20234
20670
|
root?: string | undefined;
|
|
20235
20671
|
} & {
|
|
20236
20672
|
openapi?: string | string[] | {
|
|
@@ -20257,6 +20693,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20257
20693
|
searchable?: boolean | undefined;
|
|
20258
20694
|
boost?: number | undefined;
|
|
20259
20695
|
hidden?: boolean | undefined;
|
|
20696
|
+
graphql?: undefined;
|
|
20260
20697
|
root?: string | undefined;
|
|
20261
20698
|
} & {
|
|
20262
20699
|
openapi?: string | string[] | {
|
|
@@ -20285,6 +20722,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20285
20722
|
searchable?: boolean | undefined;
|
|
20286
20723
|
boost?: number | undefined;
|
|
20287
20724
|
hidden?: boolean | undefined;
|
|
20725
|
+
graphql?: undefined;
|
|
20288
20726
|
root?: string | undefined;
|
|
20289
20727
|
} & {
|
|
20290
20728
|
openapi?: string | string[] | {
|
|
@@ -20299,6 +20737,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20299
20737
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
20300
20738
|
})[];
|
|
20301
20739
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
20740
|
+
graphql?: undefined;
|
|
20302
20741
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
20303
20742
|
}, {
|
|
20304
20743
|
groups: ({
|
|
@@ -20315,6 +20754,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20315
20754
|
searchable?: boolean | undefined;
|
|
20316
20755
|
boost?: number | undefined;
|
|
20317
20756
|
hidden?: boolean | undefined;
|
|
20757
|
+
graphql?: undefined;
|
|
20318
20758
|
root?: string | undefined;
|
|
20319
20759
|
} & {
|
|
20320
20760
|
openapi?: string | string[] | {
|
|
@@ -20329,10 +20769,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20329
20769
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
20330
20770
|
})[];
|
|
20331
20771
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
20772
|
+
graphql?: undefined;
|
|
20332
20773
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
20333
20774
|
}>, z.ZodObject<{
|
|
20334
20775
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
20335
20776
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
20777
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
20336
20778
|
} & {
|
|
20337
20779
|
pages: z.ZodArray<z.ZodType<string | ({
|
|
20338
20780
|
group: string;
|
|
@@ -20348,6 +20790,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20348
20790
|
searchable?: boolean | undefined;
|
|
20349
20791
|
boost?: number | undefined;
|
|
20350
20792
|
hidden?: boolean | undefined;
|
|
20793
|
+
graphql?: undefined;
|
|
20351
20794
|
root?: string | undefined;
|
|
20352
20795
|
} & {
|
|
20353
20796
|
openapi?: string | string[] | {
|
|
@@ -20374,6 +20817,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20374
20817
|
searchable?: boolean | undefined;
|
|
20375
20818
|
boost?: number | undefined;
|
|
20376
20819
|
hidden?: boolean | undefined;
|
|
20820
|
+
graphql?: undefined;
|
|
20377
20821
|
root?: string | undefined;
|
|
20378
20822
|
} & {
|
|
20379
20823
|
openapi?: string | string[] | {
|
|
@@ -20402,6 +20846,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20402
20846
|
searchable?: boolean | undefined;
|
|
20403
20847
|
boost?: number | undefined;
|
|
20404
20848
|
hidden?: boolean | undefined;
|
|
20849
|
+
graphql?: undefined;
|
|
20405
20850
|
root?: string | undefined;
|
|
20406
20851
|
} & {
|
|
20407
20852
|
openapi?: string | string[] | {
|
|
@@ -20416,6 +20861,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20416
20861
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
20417
20862
|
}))[];
|
|
20418
20863
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
20864
|
+
graphql?: undefined;
|
|
20419
20865
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
20420
20866
|
}, {
|
|
20421
20867
|
pages: (string | ({
|
|
@@ -20432,6 +20878,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20432
20878
|
searchable?: boolean | undefined;
|
|
20433
20879
|
boost?: number | undefined;
|
|
20434
20880
|
hidden?: boolean | undefined;
|
|
20881
|
+
graphql?: undefined;
|
|
20435
20882
|
root?: string | undefined;
|
|
20436
20883
|
} & {
|
|
20437
20884
|
openapi?: string | string[] | {
|
|
@@ -20446,6 +20893,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20446
20893
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
20447
20894
|
}))[];
|
|
20448
20895
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
20896
|
+
graphql?: undefined;
|
|
20449
20897
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
20450
20898
|
}>]>;
|
|
20451
20899
|
footer: z.ZodOptional<z.ZodObject<{
|
|
@@ -21343,26 +21791,32 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
21343
21791
|
navigation: {
|
|
21344
21792
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
21345
21793
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
21794
|
+
graphql?: undefined;
|
|
21346
21795
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
21347
21796
|
} | {
|
|
21348
21797
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
21349
21798
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
21799
|
+
graphql?: undefined;
|
|
21350
21800
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
21351
21801
|
} | {
|
|
21352
21802
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
21353
21803
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
21804
|
+
graphql?: undefined;
|
|
21354
21805
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
21355
21806
|
} | {
|
|
21356
21807
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
21357
21808
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
21809
|
+
graphql?: undefined;
|
|
21358
21810
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
21359
21811
|
} | {
|
|
21360
21812
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
21361
21813
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
21814
|
+
graphql?: undefined;
|
|
21362
21815
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
21363
21816
|
} | {
|
|
21364
21817
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
21365
21818
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
21819
|
+
graphql?: undefined;
|
|
21366
21820
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
21367
21821
|
} | {
|
|
21368
21822
|
groups: ({
|
|
@@ -21379,6 +21833,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
21379
21833
|
searchable?: boolean | undefined;
|
|
21380
21834
|
boost?: number | undefined;
|
|
21381
21835
|
hidden?: boolean | undefined;
|
|
21836
|
+
graphql?: undefined;
|
|
21382
21837
|
root?: string | undefined;
|
|
21383
21838
|
} & {
|
|
21384
21839
|
openapi?: string | string[] | {
|
|
@@ -21393,6 +21848,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
21393
21848
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
21394
21849
|
})[];
|
|
21395
21850
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
21851
|
+
graphql?: undefined;
|
|
21396
21852
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
21397
21853
|
} | {
|
|
21398
21854
|
pages: (string | ({
|
|
@@ -21409,6 +21865,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
21409
21865
|
searchable?: boolean | undefined;
|
|
21410
21866
|
boost?: number | undefined;
|
|
21411
21867
|
hidden?: boolean | undefined;
|
|
21868
|
+
graphql?: undefined;
|
|
21412
21869
|
root?: string | undefined;
|
|
21413
21870
|
} & {
|
|
21414
21871
|
openapi?: string | string[] | {
|
|
@@ -21423,6 +21880,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
21423
21880
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
21424
21881
|
}))[];
|
|
21425
21882
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
21883
|
+
graphql?: undefined;
|
|
21426
21884
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
21427
21885
|
};
|
|
21428
21886
|
background?: {
|
|
@@ -21734,26 +22192,32 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
21734
22192
|
navigation: {
|
|
21735
22193
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
21736
22194
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
22195
|
+
graphql?: undefined;
|
|
21737
22196
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
21738
22197
|
} | {
|
|
21739
22198
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
21740
22199
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
22200
|
+
graphql?: undefined;
|
|
21741
22201
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
21742
22202
|
} | {
|
|
21743
22203
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
21744
22204
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
22205
|
+
graphql?: undefined;
|
|
21745
22206
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
21746
22207
|
} | {
|
|
21747
22208
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
21748
22209
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
22210
|
+
graphql?: undefined;
|
|
21749
22211
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
21750
22212
|
} | {
|
|
21751
22213
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
21752
22214
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
22215
|
+
graphql?: undefined;
|
|
21753
22216
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
21754
22217
|
} | {
|
|
21755
22218
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
21756
22219
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
22220
|
+
graphql?: undefined;
|
|
21757
22221
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
21758
22222
|
} | {
|
|
21759
22223
|
groups: ({
|
|
@@ -21770,6 +22234,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
21770
22234
|
searchable?: boolean | undefined;
|
|
21771
22235
|
boost?: number | undefined;
|
|
21772
22236
|
hidden?: boolean | undefined;
|
|
22237
|
+
graphql?: undefined;
|
|
21773
22238
|
root?: string | undefined;
|
|
21774
22239
|
} & {
|
|
21775
22240
|
openapi?: string | string[] | {
|
|
@@ -21784,6 +22249,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
21784
22249
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
21785
22250
|
})[];
|
|
21786
22251
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
22252
|
+
graphql?: undefined;
|
|
21787
22253
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
21788
22254
|
} | {
|
|
21789
22255
|
pages: (string | ({
|
|
@@ -21800,6 +22266,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
21800
22266
|
searchable?: boolean | undefined;
|
|
21801
22267
|
boost?: number | undefined;
|
|
21802
22268
|
hidden?: boolean | undefined;
|
|
22269
|
+
graphql?: undefined;
|
|
21803
22270
|
root?: string | undefined;
|
|
21804
22271
|
} & {
|
|
21805
22272
|
openapi?: string | string[] | {
|
|
@@ -21814,6 +22281,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
21814
22281
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
21815
22282
|
}))[];
|
|
21816
22283
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
22284
|
+
graphql?: undefined;
|
|
21817
22285
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
21818
22286
|
};
|
|
21819
22287
|
background?: {
|
|
@@ -22596,84 +23064,103 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
22596
23064
|
navigation: z.ZodUnion<[z.ZodObject<{
|
|
22597
23065
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
22598
23066
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
23067
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
22599
23068
|
} & {
|
|
22600
23069
|
products: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").ProductNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").ProductNavigation<"default">>, "many">;
|
|
22601
23070
|
}, "strip", z.ZodTypeAny, {
|
|
22602
23071
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
22603
23072
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
23073
|
+
graphql?: undefined;
|
|
22604
23074
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
22605
23075
|
}, {
|
|
22606
23076
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
22607
23077
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
23078
|
+
graphql?: undefined;
|
|
22608
23079
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
22609
23080
|
}>, z.ZodObject<{
|
|
22610
23081
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
22611
23082
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
23083
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
22612
23084
|
} & {
|
|
22613
23085
|
languages: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">>, "many">;
|
|
22614
23086
|
}, "strip", z.ZodTypeAny, {
|
|
22615
23087
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
22616
23088
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
23089
|
+
graphql?: undefined;
|
|
22617
23090
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
22618
23091
|
}, {
|
|
22619
23092
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
22620
23093
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
23094
|
+
graphql?: undefined;
|
|
22621
23095
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
22622
23096
|
}>, z.ZodObject<{
|
|
22623
23097
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
22624
23098
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
23099
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
22625
23100
|
} & {
|
|
22626
23101
|
versions: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").VersionNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").VersionNavigation<"default">>, "many">;
|
|
22627
23102
|
}, "strip", z.ZodTypeAny, {
|
|
22628
23103
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
22629
23104
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
23105
|
+
graphql?: undefined;
|
|
22630
23106
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
22631
23107
|
}, {
|
|
22632
23108
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
22633
23109
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
23110
|
+
graphql?: undefined;
|
|
22634
23111
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
22635
23112
|
}>, z.ZodObject<{
|
|
22636
23113
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
22637
23114
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
23115
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
22638
23116
|
} & {
|
|
22639
23117
|
tabs: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").TabNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").TabNavigation<"default">>, "many">;
|
|
22640
23118
|
}, "strip", z.ZodTypeAny, {
|
|
22641
23119
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
22642
23120
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
23121
|
+
graphql?: undefined;
|
|
22643
23122
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
22644
23123
|
}, {
|
|
22645
23124
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
22646
23125
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
23126
|
+
graphql?: undefined;
|
|
22647
23127
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
22648
23128
|
}>, z.ZodObject<{
|
|
22649
23129
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
22650
23130
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
23131
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
22651
23132
|
} & {
|
|
22652
23133
|
dropdowns: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">>, "many">;
|
|
22653
23134
|
}, "strip", z.ZodTypeAny, {
|
|
22654
23135
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
22655
23136
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
23137
|
+
graphql?: undefined;
|
|
22656
23138
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
22657
23139
|
}, {
|
|
22658
23140
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
22659
23141
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
23142
|
+
graphql?: undefined;
|
|
22660
23143
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
22661
23144
|
}>, z.ZodObject<{
|
|
22662
23145
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
22663
23146
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
23147
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
22664
23148
|
} & {
|
|
22665
23149
|
anchors: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">>, "many">;
|
|
22666
23150
|
}, "strip", z.ZodTypeAny, {
|
|
22667
23151
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
22668
23152
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
23153
|
+
graphql?: undefined;
|
|
22669
23154
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
22670
23155
|
}, {
|
|
22671
23156
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
22672
23157
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
23158
|
+
graphql?: undefined;
|
|
22673
23159
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
22674
23160
|
}>, z.ZodObject<{
|
|
22675
23161
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
22676
23162
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
23163
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
22677
23164
|
} & {
|
|
22678
23165
|
groups: z.ZodArray<z.ZodType<{
|
|
22679
23166
|
group: string;
|
|
@@ -22689,6 +23176,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
22689
23176
|
searchable?: boolean | undefined;
|
|
22690
23177
|
boost?: number | undefined;
|
|
22691
23178
|
hidden?: boolean | undefined;
|
|
23179
|
+
graphql?: undefined;
|
|
22692
23180
|
root?: string | undefined;
|
|
22693
23181
|
} & {
|
|
22694
23182
|
openapi?: string | string[] | {
|
|
@@ -22715,6 +23203,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
22715
23203
|
searchable?: boolean | undefined;
|
|
22716
23204
|
boost?: number | undefined;
|
|
22717
23205
|
hidden?: boolean | undefined;
|
|
23206
|
+
graphql?: undefined;
|
|
22718
23207
|
root?: string | undefined;
|
|
22719
23208
|
} & {
|
|
22720
23209
|
openapi?: string | string[] | {
|
|
@@ -22743,6 +23232,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
22743
23232
|
searchable?: boolean | undefined;
|
|
22744
23233
|
boost?: number | undefined;
|
|
22745
23234
|
hidden?: boolean | undefined;
|
|
23235
|
+
graphql?: undefined;
|
|
22746
23236
|
root?: string | undefined;
|
|
22747
23237
|
} & {
|
|
22748
23238
|
openapi?: string | string[] | {
|
|
@@ -22757,6 +23247,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
22757
23247
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
22758
23248
|
})[];
|
|
22759
23249
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
23250
|
+
graphql?: undefined;
|
|
22760
23251
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
22761
23252
|
}, {
|
|
22762
23253
|
groups: ({
|
|
@@ -22773,6 +23264,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
22773
23264
|
searchable?: boolean | undefined;
|
|
22774
23265
|
boost?: number | undefined;
|
|
22775
23266
|
hidden?: boolean | undefined;
|
|
23267
|
+
graphql?: undefined;
|
|
22776
23268
|
root?: string | undefined;
|
|
22777
23269
|
} & {
|
|
22778
23270
|
openapi?: string | string[] | {
|
|
@@ -22787,10 +23279,12 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
22787
23279
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
22788
23280
|
})[];
|
|
22789
23281
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
23282
|
+
graphql?: undefined;
|
|
22790
23283
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
22791
23284
|
}>, z.ZodObject<{
|
|
22792
23285
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
22793
23286
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
23287
|
+
graphql: z.ZodOptional<z.ZodNever>;
|
|
22794
23288
|
} & {
|
|
22795
23289
|
pages: z.ZodArray<z.ZodType<string | ({
|
|
22796
23290
|
group: string;
|
|
@@ -22806,6 +23300,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
22806
23300
|
searchable?: boolean | undefined;
|
|
22807
23301
|
boost?: number | undefined;
|
|
22808
23302
|
hidden?: boolean | undefined;
|
|
23303
|
+
graphql?: undefined;
|
|
22809
23304
|
root?: string | undefined;
|
|
22810
23305
|
} & {
|
|
22811
23306
|
openapi?: string | string[] | {
|
|
@@ -22832,6 +23327,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
22832
23327
|
searchable?: boolean | undefined;
|
|
22833
23328
|
boost?: number | undefined;
|
|
22834
23329
|
hidden?: boolean | undefined;
|
|
23330
|
+
graphql?: undefined;
|
|
22835
23331
|
root?: string | undefined;
|
|
22836
23332
|
} & {
|
|
22837
23333
|
openapi?: string | string[] | {
|
|
@@ -22860,6 +23356,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
22860
23356
|
searchable?: boolean | undefined;
|
|
22861
23357
|
boost?: number | undefined;
|
|
22862
23358
|
hidden?: boolean | undefined;
|
|
23359
|
+
graphql?: undefined;
|
|
22863
23360
|
root?: string | undefined;
|
|
22864
23361
|
} & {
|
|
22865
23362
|
openapi?: string | string[] | {
|
|
@@ -22874,6 +23371,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
22874
23371
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
22875
23372
|
}))[];
|
|
22876
23373
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
23374
|
+
graphql?: undefined;
|
|
22877
23375
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
22878
23376
|
}, {
|
|
22879
23377
|
pages: (string | ({
|
|
@@ -22890,6 +23388,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
22890
23388
|
searchable?: boolean | undefined;
|
|
22891
23389
|
boost?: number | undefined;
|
|
22892
23390
|
hidden?: boolean | undefined;
|
|
23391
|
+
graphql?: undefined;
|
|
22893
23392
|
root?: string | undefined;
|
|
22894
23393
|
} & {
|
|
22895
23394
|
openapi?: string | string[] | {
|
|
@@ -22904,6 +23403,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
22904
23403
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
22905
23404
|
}))[];
|
|
22906
23405
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
23406
|
+
graphql?: undefined;
|
|
22907
23407
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
22908
23408
|
}>]>;
|
|
22909
23409
|
footer: z.ZodOptional<z.ZodObject<{
|
|
@@ -23801,26 +24301,32 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
23801
24301
|
navigation: {
|
|
23802
24302
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
23803
24303
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
24304
|
+
graphql?: undefined;
|
|
23804
24305
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
23805
24306
|
} | {
|
|
23806
24307
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
23807
24308
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
24309
|
+
graphql?: undefined;
|
|
23808
24310
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
23809
24311
|
} | {
|
|
23810
24312
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
23811
24313
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
24314
|
+
graphql?: undefined;
|
|
23812
24315
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
23813
24316
|
} | {
|
|
23814
24317
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
23815
24318
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
24319
|
+
graphql?: undefined;
|
|
23816
24320
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
23817
24321
|
} | {
|
|
23818
24322
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
23819
24323
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
24324
|
+
graphql?: undefined;
|
|
23820
24325
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
23821
24326
|
} | {
|
|
23822
24327
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
23823
24328
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
24329
|
+
graphql?: undefined;
|
|
23824
24330
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
23825
24331
|
} | {
|
|
23826
24332
|
groups: ({
|
|
@@ -23837,6 +24343,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
23837
24343
|
searchable?: boolean | undefined;
|
|
23838
24344
|
boost?: number | undefined;
|
|
23839
24345
|
hidden?: boolean | undefined;
|
|
24346
|
+
graphql?: undefined;
|
|
23840
24347
|
root?: string | undefined;
|
|
23841
24348
|
} & {
|
|
23842
24349
|
openapi?: string | string[] | {
|
|
@@ -23851,6 +24358,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
23851
24358
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
23852
24359
|
})[];
|
|
23853
24360
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
24361
|
+
graphql?: undefined;
|
|
23854
24362
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
23855
24363
|
} | {
|
|
23856
24364
|
pages: (string | ({
|
|
@@ -23867,6 +24375,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
23867
24375
|
searchable?: boolean | undefined;
|
|
23868
24376
|
boost?: number | undefined;
|
|
23869
24377
|
hidden?: boolean | undefined;
|
|
24378
|
+
graphql?: undefined;
|
|
23870
24379
|
root?: string | undefined;
|
|
23871
24380
|
} & {
|
|
23872
24381
|
openapi?: string | string[] | {
|
|
@@ -23881,6 +24390,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
23881
24390
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
23882
24391
|
}))[];
|
|
23883
24392
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
24393
|
+
graphql?: undefined;
|
|
23884
24394
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
23885
24395
|
};
|
|
23886
24396
|
background?: {
|
|
@@ -24192,26 +24702,32 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
24192
24702
|
navigation: {
|
|
24193
24703
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
24194
24704
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
24705
|
+
graphql?: undefined;
|
|
24195
24706
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
24196
24707
|
} | {
|
|
24197
24708
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
24198
24709
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
24710
|
+
graphql?: undefined;
|
|
24199
24711
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
24200
24712
|
} | {
|
|
24201
24713
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
24202
24714
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
24715
|
+
graphql?: undefined;
|
|
24203
24716
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
24204
24717
|
} | {
|
|
24205
24718
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
24206
24719
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
24720
|
+
graphql?: undefined;
|
|
24207
24721
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
24208
24722
|
} | {
|
|
24209
24723
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
24210
24724
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
24725
|
+
graphql?: undefined;
|
|
24211
24726
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
24212
24727
|
} | {
|
|
24213
24728
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
24214
24729
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
24730
|
+
graphql?: undefined;
|
|
24215
24731
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
24216
24732
|
} | {
|
|
24217
24733
|
groups: ({
|
|
@@ -24228,6 +24744,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
24228
24744
|
searchable?: boolean | undefined;
|
|
24229
24745
|
boost?: number | undefined;
|
|
24230
24746
|
hidden?: boolean | undefined;
|
|
24747
|
+
graphql?: undefined;
|
|
24231
24748
|
root?: string | undefined;
|
|
24232
24749
|
} & {
|
|
24233
24750
|
openapi?: string | string[] | {
|
|
@@ -24242,6 +24759,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
24242
24759
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
24243
24760
|
})[];
|
|
24244
24761
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
24762
|
+
graphql?: undefined;
|
|
24245
24763
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
24246
24764
|
} | {
|
|
24247
24765
|
pages: (string | ({
|
|
@@ -24258,6 +24776,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
24258
24776
|
searchable?: boolean | undefined;
|
|
24259
24777
|
boost?: number | undefined;
|
|
24260
24778
|
hidden?: boolean | undefined;
|
|
24779
|
+
graphql?: undefined;
|
|
24261
24780
|
root?: string | undefined;
|
|
24262
24781
|
} & {
|
|
24263
24782
|
openapi?: string | string[] | {
|
|
@@ -24272,6 +24791,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
24272
24791
|
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
24273
24792
|
}))[];
|
|
24274
24793
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
24794
|
+
graphql?: undefined;
|
|
24275
24795
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
24276
24796
|
};
|
|
24277
24797
|
background?: {
|