@mintlify/validation 0.1.798 → 0.1.800
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 +3 -0
- package/dist/editor-navigation/types.js +2 -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 +20 -1
- 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/index.d.ts +1 -0
- package/dist/mint-config/schemas/v2/properties/reusable/index.js +1 -0
- package/dist/mint-config/schemas/v2/properties/reusable/sdk.d.ts +19 -0
- package/dist/mint-config/schemas/v2/properties/reusable/sdk.js +39 -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/package.json +2 -2
|
@@ -483,102 +483,121 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
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
485
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
486
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
486
487
|
} & {
|
|
487
488
|
products: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").ProductNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").ProductNavigation<"default">>, "many">;
|
|
488
489
|
}, "strip", z.ZodTypeAny, {
|
|
489
490
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
490
491
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
491
492
|
graphql?: undefined;
|
|
493
|
+
sdk?: undefined;
|
|
492
494
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
493
495
|
}, {
|
|
494
496
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
495
497
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
496
498
|
graphql?: undefined;
|
|
499
|
+
sdk?: undefined;
|
|
497
500
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
498
501
|
}>, z.ZodObject<{
|
|
499
502
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
500
503
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
501
504
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
505
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
502
506
|
} & {
|
|
503
507
|
languages: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">>, "many">;
|
|
504
508
|
}, "strip", z.ZodTypeAny, {
|
|
505
509
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
506
510
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
507
511
|
graphql?: undefined;
|
|
512
|
+
sdk?: undefined;
|
|
508
513
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
509
514
|
}, {
|
|
510
515
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
511
516
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
512
517
|
graphql?: undefined;
|
|
518
|
+
sdk?: undefined;
|
|
513
519
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
514
520
|
}>, z.ZodObject<{
|
|
515
521
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
516
522
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
517
523
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
524
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
518
525
|
} & {
|
|
519
526
|
versions: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").VersionNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").VersionNavigation<"default">>, "many">;
|
|
520
527
|
}, "strip", z.ZodTypeAny, {
|
|
521
528
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
522
529
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
523
530
|
graphql?: undefined;
|
|
531
|
+
sdk?: undefined;
|
|
524
532
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
525
533
|
}, {
|
|
526
534
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
527
535
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
528
536
|
graphql?: undefined;
|
|
537
|
+
sdk?: undefined;
|
|
529
538
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
530
539
|
}>, z.ZodObject<{
|
|
531
540
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
532
541
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
533
542
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
543
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
534
544
|
} & {
|
|
535
545
|
tabs: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").TabNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").TabNavigation<"default">>, "many">;
|
|
536
546
|
}, "strip", z.ZodTypeAny, {
|
|
537
547
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
538
548
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
539
549
|
graphql?: undefined;
|
|
550
|
+
sdk?: undefined;
|
|
540
551
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
541
552
|
}, {
|
|
542
553
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
543
554
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
544
555
|
graphql?: undefined;
|
|
556
|
+
sdk?: undefined;
|
|
545
557
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
546
558
|
}>, z.ZodObject<{
|
|
547
559
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
548
560
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
549
561
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
562
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
550
563
|
} & {
|
|
551
564
|
dropdowns: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">>, "many">;
|
|
552
565
|
}, "strip", z.ZodTypeAny, {
|
|
553
566
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
554
567
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
555
568
|
graphql?: undefined;
|
|
569
|
+
sdk?: undefined;
|
|
556
570
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
557
571
|
}, {
|
|
558
572
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
559
573
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
560
574
|
graphql?: undefined;
|
|
575
|
+
sdk?: undefined;
|
|
561
576
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
562
577
|
}>, z.ZodObject<{
|
|
563
578
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
564
579
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
565
580
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
581
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
566
582
|
} & {
|
|
567
583
|
anchors: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">>, "many">;
|
|
568
584
|
}, "strip", z.ZodTypeAny, {
|
|
569
585
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
570
586
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
571
587
|
graphql?: undefined;
|
|
588
|
+
sdk?: undefined;
|
|
572
589
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
573
590
|
}, {
|
|
574
591
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
575
592
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
576
593
|
graphql?: undefined;
|
|
594
|
+
sdk?: undefined;
|
|
577
595
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
578
596
|
}>, z.ZodObject<{
|
|
579
597
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
580
598
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
581
599
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
600
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
582
601
|
} & {
|
|
583
602
|
groups: z.ZodArray<z.ZodType<{
|
|
584
603
|
group: string;
|
|
@@ -595,6 +614,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
595
614
|
boost?: number | undefined;
|
|
596
615
|
hidden?: boolean | undefined;
|
|
597
616
|
graphql?: undefined;
|
|
617
|
+
sdk?: undefined;
|
|
598
618
|
root?: string | undefined;
|
|
599
619
|
} & {
|
|
600
620
|
openapi?: string | string[] | {
|
|
@@ -622,6 +642,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
622
642
|
boost?: number | undefined;
|
|
623
643
|
hidden?: boolean | undefined;
|
|
624
644
|
graphql?: undefined;
|
|
645
|
+
sdk?: undefined;
|
|
625
646
|
root?: string | undefined;
|
|
626
647
|
} & {
|
|
627
648
|
openapi?: string | string[] | {
|
|
@@ -651,6 +672,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
651
672
|
boost?: number | undefined;
|
|
652
673
|
hidden?: boolean | undefined;
|
|
653
674
|
graphql?: undefined;
|
|
675
|
+
sdk?: undefined;
|
|
654
676
|
root?: string | undefined;
|
|
655
677
|
} & {
|
|
656
678
|
openapi?: string | string[] | {
|
|
@@ -666,6 +688,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
666
688
|
})[];
|
|
667
689
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
668
690
|
graphql?: undefined;
|
|
691
|
+
sdk?: undefined;
|
|
669
692
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
670
693
|
}, {
|
|
671
694
|
groups: ({
|
|
@@ -683,6 +706,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
683
706
|
boost?: number | undefined;
|
|
684
707
|
hidden?: boolean | undefined;
|
|
685
708
|
graphql?: undefined;
|
|
709
|
+
sdk?: undefined;
|
|
686
710
|
root?: string | undefined;
|
|
687
711
|
} & {
|
|
688
712
|
openapi?: string | string[] | {
|
|
@@ -698,11 +722,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
698
722
|
})[];
|
|
699
723
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
700
724
|
graphql?: undefined;
|
|
725
|
+
sdk?: undefined;
|
|
701
726
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
702
727
|
}>, z.ZodObject<{
|
|
703
728
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
704
729
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
705
730
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
731
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
706
732
|
} & {
|
|
707
733
|
pages: z.ZodArray<z.ZodType<string | ({
|
|
708
734
|
group: string;
|
|
@@ -719,6 +745,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
719
745
|
boost?: number | undefined;
|
|
720
746
|
hidden?: boolean | undefined;
|
|
721
747
|
graphql?: undefined;
|
|
748
|
+
sdk?: undefined;
|
|
722
749
|
root?: string | undefined;
|
|
723
750
|
} & {
|
|
724
751
|
openapi?: string | string[] | {
|
|
@@ -746,6 +773,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
746
773
|
boost?: number | undefined;
|
|
747
774
|
hidden?: boolean | undefined;
|
|
748
775
|
graphql?: undefined;
|
|
776
|
+
sdk?: undefined;
|
|
749
777
|
root?: string | undefined;
|
|
750
778
|
} & {
|
|
751
779
|
openapi?: string | string[] | {
|
|
@@ -775,6 +803,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
775
803
|
boost?: number | undefined;
|
|
776
804
|
hidden?: boolean | undefined;
|
|
777
805
|
graphql?: undefined;
|
|
806
|
+
sdk?: undefined;
|
|
778
807
|
root?: string | undefined;
|
|
779
808
|
} & {
|
|
780
809
|
openapi?: string | string[] | {
|
|
@@ -790,6 +819,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
790
819
|
}))[];
|
|
791
820
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
792
821
|
graphql?: undefined;
|
|
822
|
+
sdk?: undefined;
|
|
793
823
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
794
824
|
}, {
|
|
795
825
|
pages: (string | ({
|
|
@@ -807,6 +837,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
807
837
|
boost?: number | undefined;
|
|
808
838
|
hidden?: boolean | undefined;
|
|
809
839
|
graphql?: undefined;
|
|
840
|
+
sdk?: undefined;
|
|
810
841
|
root?: string | undefined;
|
|
811
842
|
} & {
|
|
812
843
|
openapi?: string | string[] | {
|
|
@@ -822,6 +853,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
822
853
|
}))[];
|
|
823
854
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
824
855
|
graphql?: undefined;
|
|
856
|
+
sdk?: undefined;
|
|
825
857
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
826
858
|
}>]>;
|
|
827
859
|
footer: z.ZodOptional<z.ZodObject<{
|
|
@@ -1720,31 +1752,37 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1720
1752
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
1721
1753
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1722
1754
|
graphql?: undefined;
|
|
1755
|
+
sdk?: undefined;
|
|
1723
1756
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1724
1757
|
} | {
|
|
1725
1758
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
1726
1759
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1727
1760
|
graphql?: undefined;
|
|
1761
|
+
sdk?: undefined;
|
|
1728
1762
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1729
1763
|
} | {
|
|
1730
1764
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
1731
1765
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1732
1766
|
graphql?: undefined;
|
|
1767
|
+
sdk?: undefined;
|
|
1733
1768
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1734
1769
|
} | {
|
|
1735
1770
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
1736
1771
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1737
1772
|
graphql?: undefined;
|
|
1773
|
+
sdk?: undefined;
|
|
1738
1774
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1739
1775
|
} | {
|
|
1740
1776
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
1741
1777
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1742
1778
|
graphql?: undefined;
|
|
1779
|
+
sdk?: undefined;
|
|
1743
1780
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1744
1781
|
} | {
|
|
1745
1782
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
1746
1783
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1747
1784
|
graphql?: undefined;
|
|
1785
|
+
sdk?: undefined;
|
|
1748
1786
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1749
1787
|
} | {
|
|
1750
1788
|
groups: ({
|
|
@@ -1762,6 +1800,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1762
1800
|
boost?: number | undefined;
|
|
1763
1801
|
hidden?: boolean | undefined;
|
|
1764
1802
|
graphql?: undefined;
|
|
1803
|
+
sdk?: undefined;
|
|
1765
1804
|
root?: string | undefined;
|
|
1766
1805
|
} & {
|
|
1767
1806
|
openapi?: string | string[] | {
|
|
@@ -1777,6 +1816,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1777
1816
|
})[];
|
|
1778
1817
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1779
1818
|
graphql?: undefined;
|
|
1819
|
+
sdk?: undefined;
|
|
1780
1820
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1781
1821
|
} | {
|
|
1782
1822
|
pages: (string | ({
|
|
@@ -1794,6 +1834,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1794
1834
|
boost?: number | undefined;
|
|
1795
1835
|
hidden?: boolean | undefined;
|
|
1796
1836
|
graphql?: undefined;
|
|
1837
|
+
sdk?: undefined;
|
|
1797
1838
|
root?: string | undefined;
|
|
1798
1839
|
} & {
|
|
1799
1840
|
openapi?: string | string[] | {
|
|
@@ -1809,6 +1850,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1809
1850
|
}))[];
|
|
1810
1851
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1811
1852
|
graphql?: undefined;
|
|
1853
|
+
sdk?: undefined;
|
|
1812
1854
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1813
1855
|
};
|
|
1814
1856
|
background?: {
|
|
@@ -2121,31 +2163,37 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2121
2163
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
2122
2164
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
2123
2165
|
graphql?: undefined;
|
|
2166
|
+
sdk?: undefined;
|
|
2124
2167
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2125
2168
|
} | {
|
|
2126
2169
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
2127
2170
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
2128
2171
|
graphql?: undefined;
|
|
2172
|
+
sdk?: undefined;
|
|
2129
2173
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2130
2174
|
} | {
|
|
2131
2175
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
2132
2176
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
2133
2177
|
graphql?: undefined;
|
|
2178
|
+
sdk?: undefined;
|
|
2134
2179
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2135
2180
|
} | {
|
|
2136
2181
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
2137
2182
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
2138
2183
|
graphql?: undefined;
|
|
2184
|
+
sdk?: undefined;
|
|
2139
2185
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2140
2186
|
} | {
|
|
2141
2187
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
2142
2188
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
2143
2189
|
graphql?: undefined;
|
|
2190
|
+
sdk?: undefined;
|
|
2144
2191
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2145
2192
|
} | {
|
|
2146
2193
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
2147
2194
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
2148
2195
|
graphql?: undefined;
|
|
2196
|
+
sdk?: undefined;
|
|
2149
2197
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2150
2198
|
} | {
|
|
2151
2199
|
groups: ({
|
|
@@ -2163,6 +2211,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2163
2211
|
boost?: number | undefined;
|
|
2164
2212
|
hidden?: boolean | undefined;
|
|
2165
2213
|
graphql?: undefined;
|
|
2214
|
+
sdk?: undefined;
|
|
2166
2215
|
root?: string | undefined;
|
|
2167
2216
|
} & {
|
|
2168
2217
|
openapi?: string | string[] | {
|
|
@@ -2178,6 +2227,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2178
2227
|
})[];
|
|
2179
2228
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
2180
2229
|
graphql?: undefined;
|
|
2230
|
+
sdk?: undefined;
|
|
2181
2231
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2182
2232
|
} | {
|
|
2183
2233
|
pages: (string | ({
|
|
@@ -2195,6 +2245,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2195
2245
|
boost?: number | undefined;
|
|
2196
2246
|
hidden?: boolean | undefined;
|
|
2197
2247
|
graphql?: undefined;
|
|
2248
|
+
sdk?: undefined;
|
|
2198
2249
|
root?: string | undefined;
|
|
2199
2250
|
} & {
|
|
2200
2251
|
openapi?: string | string[] | {
|
|
@@ -2210,6 +2261,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2210
2261
|
}))[];
|
|
2211
2262
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
2212
2263
|
graphql?: undefined;
|
|
2264
|
+
sdk?: undefined;
|
|
2213
2265
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2214
2266
|
};
|
|
2215
2267
|
background?: {
|
|
@@ -2992,102 +3044,121 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2992
3044
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
2993
3045
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
2994
3046
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
3047
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
2995
3048
|
} & {
|
|
2996
3049
|
products: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").ProductNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").ProductNavigation<"default">>, "many">;
|
|
2997
3050
|
}, "strip", z.ZodTypeAny, {
|
|
2998
3051
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
2999
3052
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3000
3053
|
graphql?: undefined;
|
|
3054
|
+
sdk?: undefined;
|
|
3001
3055
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3002
3056
|
}, {
|
|
3003
3057
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
3004
3058
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3005
3059
|
graphql?: undefined;
|
|
3060
|
+
sdk?: undefined;
|
|
3006
3061
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3007
3062
|
}>, z.ZodObject<{
|
|
3008
3063
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
3009
3064
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
3010
3065
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
3066
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
3011
3067
|
} & {
|
|
3012
3068
|
languages: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">>, "many">;
|
|
3013
3069
|
}, "strip", z.ZodTypeAny, {
|
|
3014
3070
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
3015
3071
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3016
3072
|
graphql?: undefined;
|
|
3073
|
+
sdk?: undefined;
|
|
3017
3074
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3018
3075
|
}, {
|
|
3019
3076
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
3020
3077
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3021
3078
|
graphql?: undefined;
|
|
3079
|
+
sdk?: undefined;
|
|
3022
3080
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3023
3081
|
}>, z.ZodObject<{
|
|
3024
3082
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
3025
3083
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
3026
3084
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
3085
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
3027
3086
|
} & {
|
|
3028
3087
|
versions: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").VersionNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").VersionNavigation<"default">>, "many">;
|
|
3029
3088
|
}, "strip", z.ZodTypeAny, {
|
|
3030
3089
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
3031
3090
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3032
3091
|
graphql?: undefined;
|
|
3092
|
+
sdk?: undefined;
|
|
3033
3093
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3034
3094
|
}, {
|
|
3035
3095
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
3036
3096
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3037
3097
|
graphql?: undefined;
|
|
3098
|
+
sdk?: undefined;
|
|
3038
3099
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3039
3100
|
}>, z.ZodObject<{
|
|
3040
3101
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
3041
3102
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
3042
3103
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
3104
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
3043
3105
|
} & {
|
|
3044
3106
|
tabs: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").TabNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").TabNavigation<"default">>, "many">;
|
|
3045
3107
|
}, "strip", z.ZodTypeAny, {
|
|
3046
3108
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
3047
3109
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3048
3110
|
graphql?: undefined;
|
|
3111
|
+
sdk?: undefined;
|
|
3049
3112
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3050
3113
|
}, {
|
|
3051
3114
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
3052
3115
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3053
3116
|
graphql?: undefined;
|
|
3117
|
+
sdk?: undefined;
|
|
3054
3118
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3055
3119
|
}>, z.ZodObject<{
|
|
3056
3120
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
3057
3121
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
3058
3122
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
3123
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
3059
3124
|
} & {
|
|
3060
3125
|
dropdowns: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">>, "many">;
|
|
3061
3126
|
}, "strip", z.ZodTypeAny, {
|
|
3062
3127
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
3063
3128
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3064
3129
|
graphql?: undefined;
|
|
3130
|
+
sdk?: undefined;
|
|
3065
3131
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3066
3132
|
}, {
|
|
3067
3133
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
3068
3134
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3069
3135
|
graphql?: undefined;
|
|
3136
|
+
sdk?: undefined;
|
|
3070
3137
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3071
3138
|
}>, z.ZodObject<{
|
|
3072
3139
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
3073
3140
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
3074
3141
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
3142
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
3075
3143
|
} & {
|
|
3076
3144
|
anchors: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">>, "many">;
|
|
3077
3145
|
}, "strip", z.ZodTypeAny, {
|
|
3078
3146
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
3079
3147
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3080
3148
|
graphql?: undefined;
|
|
3149
|
+
sdk?: undefined;
|
|
3081
3150
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3082
3151
|
}, {
|
|
3083
3152
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
3084
3153
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3085
3154
|
graphql?: undefined;
|
|
3155
|
+
sdk?: undefined;
|
|
3086
3156
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3087
3157
|
}>, z.ZodObject<{
|
|
3088
3158
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
3089
3159
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
3090
3160
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
3161
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
3091
3162
|
} & {
|
|
3092
3163
|
groups: z.ZodArray<z.ZodType<{
|
|
3093
3164
|
group: string;
|
|
@@ -3104,6 +3175,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3104
3175
|
boost?: number | undefined;
|
|
3105
3176
|
hidden?: boolean | undefined;
|
|
3106
3177
|
graphql?: undefined;
|
|
3178
|
+
sdk?: undefined;
|
|
3107
3179
|
root?: string | undefined;
|
|
3108
3180
|
} & {
|
|
3109
3181
|
openapi?: string | string[] | {
|
|
@@ -3131,6 +3203,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3131
3203
|
boost?: number | undefined;
|
|
3132
3204
|
hidden?: boolean | undefined;
|
|
3133
3205
|
graphql?: undefined;
|
|
3206
|
+
sdk?: undefined;
|
|
3134
3207
|
root?: string | undefined;
|
|
3135
3208
|
} & {
|
|
3136
3209
|
openapi?: string | string[] | {
|
|
@@ -3160,6 +3233,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3160
3233
|
boost?: number | undefined;
|
|
3161
3234
|
hidden?: boolean | undefined;
|
|
3162
3235
|
graphql?: undefined;
|
|
3236
|
+
sdk?: undefined;
|
|
3163
3237
|
root?: string | undefined;
|
|
3164
3238
|
} & {
|
|
3165
3239
|
openapi?: string | string[] | {
|
|
@@ -3175,6 +3249,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3175
3249
|
})[];
|
|
3176
3250
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3177
3251
|
graphql?: undefined;
|
|
3252
|
+
sdk?: undefined;
|
|
3178
3253
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3179
3254
|
}, {
|
|
3180
3255
|
groups: ({
|
|
@@ -3192,6 +3267,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3192
3267
|
boost?: number | undefined;
|
|
3193
3268
|
hidden?: boolean | undefined;
|
|
3194
3269
|
graphql?: undefined;
|
|
3270
|
+
sdk?: undefined;
|
|
3195
3271
|
root?: string | undefined;
|
|
3196
3272
|
} & {
|
|
3197
3273
|
openapi?: string | string[] | {
|
|
@@ -3207,11 +3283,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3207
3283
|
})[];
|
|
3208
3284
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3209
3285
|
graphql?: undefined;
|
|
3286
|
+
sdk?: undefined;
|
|
3210
3287
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3211
3288
|
}>, z.ZodObject<{
|
|
3212
3289
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
3213
3290
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
3214
3291
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
3292
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
3215
3293
|
} & {
|
|
3216
3294
|
pages: z.ZodArray<z.ZodType<string | ({
|
|
3217
3295
|
group: string;
|
|
@@ -3228,6 +3306,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3228
3306
|
boost?: number | undefined;
|
|
3229
3307
|
hidden?: boolean | undefined;
|
|
3230
3308
|
graphql?: undefined;
|
|
3309
|
+
sdk?: undefined;
|
|
3231
3310
|
root?: string | undefined;
|
|
3232
3311
|
} & {
|
|
3233
3312
|
openapi?: string | string[] | {
|
|
@@ -3255,6 +3334,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3255
3334
|
boost?: number | undefined;
|
|
3256
3335
|
hidden?: boolean | undefined;
|
|
3257
3336
|
graphql?: undefined;
|
|
3337
|
+
sdk?: undefined;
|
|
3258
3338
|
root?: string | undefined;
|
|
3259
3339
|
} & {
|
|
3260
3340
|
openapi?: string | string[] | {
|
|
@@ -3284,6 +3364,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3284
3364
|
boost?: number | undefined;
|
|
3285
3365
|
hidden?: boolean | undefined;
|
|
3286
3366
|
graphql?: undefined;
|
|
3367
|
+
sdk?: undefined;
|
|
3287
3368
|
root?: string | undefined;
|
|
3288
3369
|
} & {
|
|
3289
3370
|
openapi?: string | string[] | {
|
|
@@ -3299,6 +3380,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3299
3380
|
}))[];
|
|
3300
3381
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3301
3382
|
graphql?: undefined;
|
|
3383
|
+
sdk?: undefined;
|
|
3302
3384
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3303
3385
|
}, {
|
|
3304
3386
|
pages: (string | ({
|
|
@@ -3316,6 +3398,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3316
3398
|
boost?: number | undefined;
|
|
3317
3399
|
hidden?: boolean | undefined;
|
|
3318
3400
|
graphql?: undefined;
|
|
3401
|
+
sdk?: undefined;
|
|
3319
3402
|
root?: string | undefined;
|
|
3320
3403
|
} & {
|
|
3321
3404
|
openapi?: string | string[] | {
|
|
@@ -3331,6 +3414,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3331
3414
|
}))[];
|
|
3332
3415
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3333
3416
|
graphql?: undefined;
|
|
3417
|
+
sdk?: undefined;
|
|
3334
3418
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3335
3419
|
}>]>;
|
|
3336
3420
|
footer: z.ZodOptional<z.ZodObject<{
|
|
@@ -4229,31 +4313,37 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4229
4313
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
4230
4314
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
4231
4315
|
graphql?: undefined;
|
|
4316
|
+
sdk?: undefined;
|
|
4232
4317
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4233
4318
|
} | {
|
|
4234
4319
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
4235
4320
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
4236
4321
|
graphql?: undefined;
|
|
4322
|
+
sdk?: undefined;
|
|
4237
4323
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4238
4324
|
} | {
|
|
4239
4325
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
4240
4326
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
4241
4327
|
graphql?: undefined;
|
|
4328
|
+
sdk?: undefined;
|
|
4242
4329
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4243
4330
|
} | {
|
|
4244
4331
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
4245
4332
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
4246
4333
|
graphql?: undefined;
|
|
4334
|
+
sdk?: undefined;
|
|
4247
4335
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4248
4336
|
} | {
|
|
4249
4337
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
4250
4338
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
4251
4339
|
graphql?: undefined;
|
|
4340
|
+
sdk?: undefined;
|
|
4252
4341
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4253
4342
|
} | {
|
|
4254
4343
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
4255
4344
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
4256
4345
|
graphql?: undefined;
|
|
4346
|
+
sdk?: undefined;
|
|
4257
4347
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4258
4348
|
} | {
|
|
4259
4349
|
groups: ({
|
|
@@ -4271,6 +4361,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4271
4361
|
boost?: number | undefined;
|
|
4272
4362
|
hidden?: boolean | undefined;
|
|
4273
4363
|
graphql?: undefined;
|
|
4364
|
+
sdk?: undefined;
|
|
4274
4365
|
root?: string | undefined;
|
|
4275
4366
|
} & {
|
|
4276
4367
|
openapi?: string | string[] | {
|
|
@@ -4286,6 +4377,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4286
4377
|
})[];
|
|
4287
4378
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
4288
4379
|
graphql?: undefined;
|
|
4380
|
+
sdk?: undefined;
|
|
4289
4381
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4290
4382
|
} | {
|
|
4291
4383
|
pages: (string | ({
|
|
@@ -4303,6 +4395,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4303
4395
|
boost?: number | undefined;
|
|
4304
4396
|
hidden?: boolean | undefined;
|
|
4305
4397
|
graphql?: undefined;
|
|
4398
|
+
sdk?: undefined;
|
|
4306
4399
|
root?: string | undefined;
|
|
4307
4400
|
} & {
|
|
4308
4401
|
openapi?: string | string[] | {
|
|
@@ -4318,6 +4411,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4318
4411
|
}))[];
|
|
4319
4412
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
4320
4413
|
graphql?: undefined;
|
|
4414
|
+
sdk?: undefined;
|
|
4321
4415
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4322
4416
|
};
|
|
4323
4417
|
background?: {
|
|
@@ -4630,31 +4724,37 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4630
4724
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
4631
4725
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
4632
4726
|
graphql?: undefined;
|
|
4727
|
+
sdk?: undefined;
|
|
4633
4728
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4634
4729
|
} | {
|
|
4635
4730
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
4636
4731
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
4637
4732
|
graphql?: undefined;
|
|
4733
|
+
sdk?: undefined;
|
|
4638
4734
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4639
4735
|
} | {
|
|
4640
4736
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
4641
4737
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
4642
4738
|
graphql?: undefined;
|
|
4739
|
+
sdk?: undefined;
|
|
4643
4740
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4644
4741
|
} | {
|
|
4645
4742
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
4646
4743
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
4647
4744
|
graphql?: undefined;
|
|
4745
|
+
sdk?: undefined;
|
|
4648
4746
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4649
4747
|
} | {
|
|
4650
4748
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
4651
4749
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
4652
4750
|
graphql?: undefined;
|
|
4751
|
+
sdk?: undefined;
|
|
4653
4752
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4654
4753
|
} | {
|
|
4655
4754
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
4656
4755
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
4657
4756
|
graphql?: undefined;
|
|
4757
|
+
sdk?: undefined;
|
|
4658
4758
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4659
4759
|
} | {
|
|
4660
4760
|
groups: ({
|
|
@@ -4672,6 +4772,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4672
4772
|
boost?: number | undefined;
|
|
4673
4773
|
hidden?: boolean | undefined;
|
|
4674
4774
|
graphql?: undefined;
|
|
4775
|
+
sdk?: undefined;
|
|
4675
4776
|
root?: string | undefined;
|
|
4676
4777
|
} & {
|
|
4677
4778
|
openapi?: string | string[] | {
|
|
@@ -4687,6 +4788,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4687
4788
|
})[];
|
|
4688
4789
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
4689
4790
|
graphql?: undefined;
|
|
4791
|
+
sdk?: undefined;
|
|
4690
4792
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4691
4793
|
} | {
|
|
4692
4794
|
pages: (string | ({
|
|
@@ -4704,6 +4806,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4704
4806
|
boost?: number | undefined;
|
|
4705
4807
|
hidden?: boolean | undefined;
|
|
4706
4808
|
graphql?: undefined;
|
|
4809
|
+
sdk?: undefined;
|
|
4707
4810
|
root?: string | undefined;
|
|
4708
4811
|
} & {
|
|
4709
4812
|
openapi?: string | string[] | {
|
|
@@ -4719,6 +4822,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4719
4822
|
}))[];
|
|
4720
4823
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
4721
4824
|
graphql?: undefined;
|
|
4825
|
+
sdk?: undefined;
|
|
4722
4826
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4723
4827
|
};
|
|
4724
4828
|
background?: {
|
|
@@ -5501,102 +5605,121 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5501
5605
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
5502
5606
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
5503
5607
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
5608
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
5504
5609
|
} & {
|
|
5505
5610
|
products: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").ProductNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").ProductNavigation<"default">>, "many">;
|
|
5506
5611
|
}, "strip", z.ZodTypeAny, {
|
|
5507
5612
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
5508
5613
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5509
5614
|
graphql?: undefined;
|
|
5615
|
+
sdk?: undefined;
|
|
5510
5616
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5511
5617
|
}, {
|
|
5512
5618
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
5513
5619
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5514
5620
|
graphql?: undefined;
|
|
5621
|
+
sdk?: undefined;
|
|
5515
5622
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5516
5623
|
}>, z.ZodObject<{
|
|
5517
5624
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
5518
5625
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
5519
5626
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
5627
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
5520
5628
|
} & {
|
|
5521
5629
|
languages: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">>, "many">;
|
|
5522
5630
|
}, "strip", z.ZodTypeAny, {
|
|
5523
5631
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
5524
5632
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5525
5633
|
graphql?: undefined;
|
|
5634
|
+
sdk?: undefined;
|
|
5526
5635
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5527
5636
|
}, {
|
|
5528
5637
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
5529
5638
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5530
5639
|
graphql?: undefined;
|
|
5640
|
+
sdk?: undefined;
|
|
5531
5641
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5532
5642
|
}>, z.ZodObject<{
|
|
5533
5643
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
5534
5644
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
5535
5645
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
5646
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
5536
5647
|
} & {
|
|
5537
5648
|
versions: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").VersionNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").VersionNavigation<"default">>, "many">;
|
|
5538
5649
|
}, "strip", z.ZodTypeAny, {
|
|
5539
5650
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
5540
5651
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5541
5652
|
graphql?: undefined;
|
|
5653
|
+
sdk?: undefined;
|
|
5542
5654
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5543
5655
|
}, {
|
|
5544
5656
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
5545
5657
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5546
5658
|
graphql?: undefined;
|
|
5659
|
+
sdk?: undefined;
|
|
5547
5660
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5548
5661
|
}>, z.ZodObject<{
|
|
5549
5662
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
5550
5663
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
5551
5664
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
5665
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
5552
5666
|
} & {
|
|
5553
5667
|
tabs: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").TabNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").TabNavigation<"default">>, "many">;
|
|
5554
5668
|
}, "strip", z.ZodTypeAny, {
|
|
5555
5669
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
5556
5670
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5557
5671
|
graphql?: undefined;
|
|
5672
|
+
sdk?: undefined;
|
|
5558
5673
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5559
5674
|
}, {
|
|
5560
5675
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
5561
5676
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5562
5677
|
graphql?: undefined;
|
|
5678
|
+
sdk?: undefined;
|
|
5563
5679
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5564
5680
|
}>, z.ZodObject<{
|
|
5565
5681
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
5566
5682
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
5567
5683
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
5684
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
5568
5685
|
} & {
|
|
5569
5686
|
dropdowns: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">>, "many">;
|
|
5570
5687
|
}, "strip", z.ZodTypeAny, {
|
|
5571
5688
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
5572
5689
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5573
5690
|
graphql?: undefined;
|
|
5691
|
+
sdk?: undefined;
|
|
5574
5692
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5575
5693
|
}, {
|
|
5576
5694
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
5577
5695
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5578
5696
|
graphql?: undefined;
|
|
5697
|
+
sdk?: undefined;
|
|
5579
5698
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5580
5699
|
}>, z.ZodObject<{
|
|
5581
5700
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
5582
5701
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
5583
5702
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
5703
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
5584
5704
|
} & {
|
|
5585
5705
|
anchors: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">>, "many">;
|
|
5586
5706
|
}, "strip", z.ZodTypeAny, {
|
|
5587
5707
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
5588
5708
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5589
5709
|
graphql?: undefined;
|
|
5710
|
+
sdk?: undefined;
|
|
5590
5711
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5591
5712
|
}, {
|
|
5592
5713
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
5593
5714
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5594
5715
|
graphql?: undefined;
|
|
5716
|
+
sdk?: undefined;
|
|
5595
5717
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5596
5718
|
}>, z.ZodObject<{
|
|
5597
5719
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
5598
5720
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
5599
5721
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
5722
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
5600
5723
|
} & {
|
|
5601
5724
|
groups: z.ZodArray<z.ZodType<{
|
|
5602
5725
|
group: string;
|
|
@@ -5613,6 +5736,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5613
5736
|
boost?: number | undefined;
|
|
5614
5737
|
hidden?: boolean | undefined;
|
|
5615
5738
|
graphql?: undefined;
|
|
5739
|
+
sdk?: undefined;
|
|
5616
5740
|
root?: string | undefined;
|
|
5617
5741
|
} & {
|
|
5618
5742
|
openapi?: string | string[] | {
|
|
@@ -5640,6 +5764,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5640
5764
|
boost?: number | undefined;
|
|
5641
5765
|
hidden?: boolean | undefined;
|
|
5642
5766
|
graphql?: undefined;
|
|
5767
|
+
sdk?: undefined;
|
|
5643
5768
|
root?: string | undefined;
|
|
5644
5769
|
} & {
|
|
5645
5770
|
openapi?: string | string[] | {
|
|
@@ -5669,6 +5794,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5669
5794
|
boost?: number | undefined;
|
|
5670
5795
|
hidden?: boolean | undefined;
|
|
5671
5796
|
graphql?: undefined;
|
|
5797
|
+
sdk?: undefined;
|
|
5672
5798
|
root?: string | undefined;
|
|
5673
5799
|
} & {
|
|
5674
5800
|
openapi?: string | string[] | {
|
|
@@ -5684,6 +5810,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5684
5810
|
})[];
|
|
5685
5811
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5686
5812
|
graphql?: undefined;
|
|
5813
|
+
sdk?: undefined;
|
|
5687
5814
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5688
5815
|
}, {
|
|
5689
5816
|
groups: ({
|
|
@@ -5701,6 +5828,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5701
5828
|
boost?: number | undefined;
|
|
5702
5829
|
hidden?: boolean | undefined;
|
|
5703
5830
|
graphql?: undefined;
|
|
5831
|
+
sdk?: undefined;
|
|
5704
5832
|
root?: string | undefined;
|
|
5705
5833
|
} & {
|
|
5706
5834
|
openapi?: string | string[] | {
|
|
@@ -5716,11 +5844,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5716
5844
|
})[];
|
|
5717
5845
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5718
5846
|
graphql?: undefined;
|
|
5847
|
+
sdk?: undefined;
|
|
5719
5848
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5720
5849
|
}>, z.ZodObject<{
|
|
5721
5850
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
5722
5851
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
5723
5852
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
5853
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
5724
5854
|
} & {
|
|
5725
5855
|
pages: z.ZodArray<z.ZodType<string | ({
|
|
5726
5856
|
group: string;
|
|
@@ -5737,6 +5867,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5737
5867
|
boost?: number | undefined;
|
|
5738
5868
|
hidden?: boolean | undefined;
|
|
5739
5869
|
graphql?: undefined;
|
|
5870
|
+
sdk?: undefined;
|
|
5740
5871
|
root?: string | undefined;
|
|
5741
5872
|
} & {
|
|
5742
5873
|
openapi?: string | string[] | {
|
|
@@ -5764,6 +5895,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5764
5895
|
boost?: number | undefined;
|
|
5765
5896
|
hidden?: boolean | undefined;
|
|
5766
5897
|
graphql?: undefined;
|
|
5898
|
+
sdk?: undefined;
|
|
5767
5899
|
root?: string | undefined;
|
|
5768
5900
|
} & {
|
|
5769
5901
|
openapi?: string | string[] | {
|
|
@@ -5793,6 +5925,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5793
5925
|
boost?: number | undefined;
|
|
5794
5926
|
hidden?: boolean | undefined;
|
|
5795
5927
|
graphql?: undefined;
|
|
5928
|
+
sdk?: undefined;
|
|
5796
5929
|
root?: string | undefined;
|
|
5797
5930
|
} & {
|
|
5798
5931
|
openapi?: string | string[] | {
|
|
@@ -5808,6 +5941,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5808
5941
|
}))[];
|
|
5809
5942
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5810
5943
|
graphql?: undefined;
|
|
5944
|
+
sdk?: undefined;
|
|
5811
5945
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5812
5946
|
}, {
|
|
5813
5947
|
pages: (string | ({
|
|
@@ -5825,6 +5959,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5825
5959
|
boost?: number | undefined;
|
|
5826
5960
|
hidden?: boolean | undefined;
|
|
5827
5961
|
graphql?: undefined;
|
|
5962
|
+
sdk?: undefined;
|
|
5828
5963
|
root?: string | undefined;
|
|
5829
5964
|
} & {
|
|
5830
5965
|
openapi?: string | string[] | {
|
|
@@ -5840,6 +5975,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5840
5975
|
}))[];
|
|
5841
5976
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5842
5977
|
graphql?: undefined;
|
|
5978
|
+
sdk?: undefined;
|
|
5843
5979
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5844
5980
|
}>]>;
|
|
5845
5981
|
footer: z.ZodOptional<z.ZodObject<{
|
|
@@ -6738,31 +6874,37 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6738
6874
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
6739
6875
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
6740
6876
|
graphql?: undefined;
|
|
6877
|
+
sdk?: undefined;
|
|
6741
6878
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
6742
6879
|
} | {
|
|
6743
6880
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
6744
6881
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
6745
6882
|
graphql?: undefined;
|
|
6883
|
+
sdk?: undefined;
|
|
6746
6884
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
6747
6885
|
} | {
|
|
6748
6886
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
6749
6887
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
6750
6888
|
graphql?: undefined;
|
|
6889
|
+
sdk?: undefined;
|
|
6751
6890
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
6752
6891
|
} | {
|
|
6753
6892
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
6754
6893
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
6755
6894
|
graphql?: undefined;
|
|
6895
|
+
sdk?: undefined;
|
|
6756
6896
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
6757
6897
|
} | {
|
|
6758
6898
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
6759
6899
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
6760
6900
|
graphql?: undefined;
|
|
6901
|
+
sdk?: undefined;
|
|
6761
6902
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
6762
6903
|
} | {
|
|
6763
6904
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
6764
6905
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
6765
6906
|
graphql?: undefined;
|
|
6907
|
+
sdk?: undefined;
|
|
6766
6908
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
6767
6909
|
} | {
|
|
6768
6910
|
groups: ({
|
|
@@ -6780,6 +6922,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6780
6922
|
boost?: number | undefined;
|
|
6781
6923
|
hidden?: boolean | undefined;
|
|
6782
6924
|
graphql?: undefined;
|
|
6925
|
+
sdk?: undefined;
|
|
6783
6926
|
root?: string | undefined;
|
|
6784
6927
|
} & {
|
|
6785
6928
|
openapi?: string | string[] | {
|
|
@@ -6795,6 +6938,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6795
6938
|
})[];
|
|
6796
6939
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
6797
6940
|
graphql?: undefined;
|
|
6941
|
+
sdk?: undefined;
|
|
6798
6942
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
6799
6943
|
} | {
|
|
6800
6944
|
pages: (string | ({
|
|
@@ -6812,6 +6956,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6812
6956
|
boost?: number | undefined;
|
|
6813
6957
|
hidden?: boolean | undefined;
|
|
6814
6958
|
graphql?: undefined;
|
|
6959
|
+
sdk?: undefined;
|
|
6815
6960
|
root?: string | undefined;
|
|
6816
6961
|
} & {
|
|
6817
6962
|
openapi?: string | string[] | {
|
|
@@ -6827,6 +6972,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6827
6972
|
}))[];
|
|
6828
6973
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
6829
6974
|
graphql?: undefined;
|
|
6975
|
+
sdk?: undefined;
|
|
6830
6976
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
6831
6977
|
};
|
|
6832
6978
|
background?: {
|
|
@@ -7139,31 +7285,37 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7139
7285
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
7140
7286
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
7141
7287
|
graphql?: undefined;
|
|
7288
|
+
sdk?: undefined;
|
|
7142
7289
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
7143
7290
|
} | {
|
|
7144
7291
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
7145
7292
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
7146
7293
|
graphql?: undefined;
|
|
7294
|
+
sdk?: undefined;
|
|
7147
7295
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
7148
7296
|
} | {
|
|
7149
7297
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
7150
7298
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
7151
7299
|
graphql?: undefined;
|
|
7300
|
+
sdk?: undefined;
|
|
7152
7301
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
7153
7302
|
} | {
|
|
7154
7303
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
7155
7304
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
7156
7305
|
graphql?: undefined;
|
|
7306
|
+
sdk?: undefined;
|
|
7157
7307
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
7158
7308
|
} | {
|
|
7159
7309
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
7160
7310
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
7161
7311
|
graphql?: undefined;
|
|
7312
|
+
sdk?: undefined;
|
|
7162
7313
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
7163
7314
|
} | {
|
|
7164
7315
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
7165
7316
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
7166
7317
|
graphql?: undefined;
|
|
7318
|
+
sdk?: undefined;
|
|
7167
7319
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
7168
7320
|
} | {
|
|
7169
7321
|
groups: ({
|
|
@@ -7181,6 +7333,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7181
7333
|
boost?: number | undefined;
|
|
7182
7334
|
hidden?: boolean | undefined;
|
|
7183
7335
|
graphql?: undefined;
|
|
7336
|
+
sdk?: undefined;
|
|
7184
7337
|
root?: string | undefined;
|
|
7185
7338
|
} & {
|
|
7186
7339
|
openapi?: string | string[] | {
|
|
@@ -7196,6 +7349,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7196
7349
|
})[];
|
|
7197
7350
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
7198
7351
|
graphql?: undefined;
|
|
7352
|
+
sdk?: undefined;
|
|
7199
7353
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
7200
7354
|
} | {
|
|
7201
7355
|
pages: (string | ({
|
|
@@ -7213,6 +7367,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7213
7367
|
boost?: number | undefined;
|
|
7214
7368
|
hidden?: boolean | undefined;
|
|
7215
7369
|
graphql?: undefined;
|
|
7370
|
+
sdk?: undefined;
|
|
7216
7371
|
root?: string | undefined;
|
|
7217
7372
|
} & {
|
|
7218
7373
|
openapi?: string | string[] | {
|
|
@@ -7228,6 +7383,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7228
7383
|
}))[];
|
|
7229
7384
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
7230
7385
|
graphql?: undefined;
|
|
7386
|
+
sdk?: undefined;
|
|
7231
7387
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
7232
7388
|
};
|
|
7233
7389
|
background?: {
|
|
@@ -8010,102 +8166,121 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8010
8166
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
8011
8167
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
8012
8168
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
8169
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
8013
8170
|
} & {
|
|
8014
8171
|
products: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").ProductNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").ProductNavigation<"default">>, "many">;
|
|
8015
8172
|
}, "strip", z.ZodTypeAny, {
|
|
8016
8173
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
8017
8174
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
8018
8175
|
graphql?: undefined;
|
|
8176
|
+
sdk?: undefined;
|
|
8019
8177
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
8020
8178
|
}, {
|
|
8021
8179
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
8022
8180
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
8023
8181
|
graphql?: undefined;
|
|
8182
|
+
sdk?: undefined;
|
|
8024
8183
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
8025
8184
|
}>, z.ZodObject<{
|
|
8026
8185
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
8027
8186
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
8028
8187
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
8188
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
8029
8189
|
} & {
|
|
8030
8190
|
languages: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">>, "many">;
|
|
8031
8191
|
}, "strip", z.ZodTypeAny, {
|
|
8032
8192
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
8033
8193
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
8034
8194
|
graphql?: undefined;
|
|
8195
|
+
sdk?: undefined;
|
|
8035
8196
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
8036
8197
|
}, {
|
|
8037
8198
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
8038
8199
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
8039
8200
|
graphql?: undefined;
|
|
8201
|
+
sdk?: undefined;
|
|
8040
8202
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
8041
8203
|
}>, z.ZodObject<{
|
|
8042
8204
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
8043
8205
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
8044
8206
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
8207
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
8045
8208
|
} & {
|
|
8046
8209
|
versions: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").VersionNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").VersionNavigation<"default">>, "many">;
|
|
8047
8210
|
}, "strip", z.ZodTypeAny, {
|
|
8048
8211
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
8049
8212
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
8050
8213
|
graphql?: undefined;
|
|
8214
|
+
sdk?: undefined;
|
|
8051
8215
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
8052
8216
|
}, {
|
|
8053
8217
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
8054
8218
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
8055
8219
|
graphql?: undefined;
|
|
8220
|
+
sdk?: undefined;
|
|
8056
8221
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
8057
8222
|
}>, z.ZodObject<{
|
|
8058
8223
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
8059
8224
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
8060
8225
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
8226
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
8061
8227
|
} & {
|
|
8062
8228
|
tabs: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").TabNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").TabNavigation<"default">>, "many">;
|
|
8063
8229
|
}, "strip", z.ZodTypeAny, {
|
|
8064
8230
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
8065
8231
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
8066
8232
|
graphql?: undefined;
|
|
8233
|
+
sdk?: undefined;
|
|
8067
8234
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
8068
8235
|
}, {
|
|
8069
8236
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
8070
8237
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
8071
8238
|
graphql?: undefined;
|
|
8239
|
+
sdk?: undefined;
|
|
8072
8240
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
8073
8241
|
}>, z.ZodObject<{
|
|
8074
8242
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
8075
8243
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
8076
8244
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
8245
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
8077
8246
|
} & {
|
|
8078
8247
|
dropdowns: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">>, "many">;
|
|
8079
8248
|
}, "strip", z.ZodTypeAny, {
|
|
8080
8249
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
8081
8250
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
8082
8251
|
graphql?: undefined;
|
|
8252
|
+
sdk?: undefined;
|
|
8083
8253
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
8084
8254
|
}, {
|
|
8085
8255
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
8086
8256
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
8087
8257
|
graphql?: undefined;
|
|
8258
|
+
sdk?: undefined;
|
|
8088
8259
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
8089
8260
|
}>, z.ZodObject<{
|
|
8090
8261
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
8091
8262
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
8092
8263
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
8264
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
8093
8265
|
} & {
|
|
8094
8266
|
anchors: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">>, "many">;
|
|
8095
8267
|
}, "strip", z.ZodTypeAny, {
|
|
8096
8268
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
8097
8269
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
8098
8270
|
graphql?: undefined;
|
|
8271
|
+
sdk?: undefined;
|
|
8099
8272
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
8100
8273
|
}, {
|
|
8101
8274
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
8102
8275
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
8103
8276
|
graphql?: undefined;
|
|
8277
|
+
sdk?: undefined;
|
|
8104
8278
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
8105
8279
|
}>, z.ZodObject<{
|
|
8106
8280
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
8107
8281
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
8108
8282
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
8283
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
8109
8284
|
} & {
|
|
8110
8285
|
groups: z.ZodArray<z.ZodType<{
|
|
8111
8286
|
group: string;
|
|
@@ -8122,6 +8297,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8122
8297
|
boost?: number | undefined;
|
|
8123
8298
|
hidden?: boolean | undefined;
|
|
8124
8299
|
graphql?: undefined;
|
|
8300
|
+
sdk?: undefined;
|
|
8125
8301
|
root?: string | undefined;
|
|
8126
8302
|
} & {
|
|
8127
8303
|
openapi?: string | string[] | {
|
|
@@ -8149,6 +8325,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8149
8325
|
boost?: number | undefined;
|
|
8150
8326
|
hidden?: boolean | undefined;
|
|
8151
8327
|
graphql?: undefined;
|
|
8328
|
+
sdk?: undefined;
|
|
8152
8329
|
root?: string | undefined;
|
|
8153
8330
|
} & {
|
|
8154
8331
|
openapi?: string | string[] | {
|
|
@@ -8178,6 +8355,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8178
8355
|
boost?: number | undefined;
|
|
8179
8356
|
hidden?: boolean | undefined;
|
|
8180
8357
|
graphql?: undefined;
|
|
8358
|
+
sdk?: undefined;
|
|
8181
8359
|
root?: string | undefined;
|
|
8182
8360
|
} & {
|
|
8183
8361
|
openapi?: string | string[] | {
|
|
@@ -8193,6 +8371,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8193
8371
|
})[];
|
|
8194
8372
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
8195
8373
|
graphql?: undefined;
|
|
8374
|
+
sdk?: undefined;
|
|
8196
8375
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
8197
8376
|
}, {
|
|
8198
8377
|
groups: ({
|
|
@@ -8210,6 +8389,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8210
8389
|
boost?: number | undefined;
|
|
8211
8390
|
hidden?: boolean | undefined;
|
|
8212
8391
|
graphql?: undefined;
|
|
8392
|
+
sdk?: undefined;
|
|
8213
8393
|
root?: string | undefined;
|
|
8214
8394
|
} & {
|
|
8215
8395
|
openapi?: string | string[] | {
|
|
@@ -8225,11 +8405,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8225
8405
|
})[];
|
|
8226
8406
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
8227
8407
|
graphql?: undefined;
|
|
8408
|
+
sdk?: undefined;
|
|
8228
8409
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
8229
8410
|
}>, z.ZodObject<{
|
|
8230
8411
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
8231
8412
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
8232
8413
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
8414
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
8233
8415
|
} & {
|
|
8234
8416
|
pages: z.ZodArray<z.ZodType<string | ({
|
|
8235
8417
|
group: string;
|
|
@@ -8246,6 +8428,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8246
8428
|
boost?: number | undefined;
|
|
8247
8429
|
hidden?: boolean | undefined;
|
|
8248
8430
|
graphql?: undefined;
|
|
8431
|
+
sdk?: undefined;
|
|
8249
8432
|
root?: string | undefined;
|
|
8250
8433
|
} & {
|
|
8251
8434
|
openapi?: string | string[] | {
|
|
@@ -8273,6 +8456,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8273
8456
|
boost?: number | undefined;
|
|
8274
8457
|
hidden?: boolean | undefined;
|
|
8275
8458
|
graphql?: undefined;
|
|
8459
|
+
sdk?: undefined;
|
|
8276
8460
|
root?: string | undefined;
|
|
8277
8461
|
} & {
|
|
8278
8462
|
openapi?: string | string[] | {
|
|
@@ -8302,6 +8486,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8302
8486
|
boost?: number | undefined;
|
|
8303
8487
|
hidden?: boolean | undefined;
|
|
8304
8488
|
graphql?: undefined;
|
|
8489
|
+
sdk?: undefined;
|
|
8305
8490
|
root?: string | undefined;
|
|
8306
8491
|
} & {
|
|
8307
8492
|
openapi?: string | string[] | {
|
|
@@ -8317,6 +8502,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8317
8502
|
}))[];
|
|
8318
8503
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
8319
8504
|
graphql?: undefined;
|
|
8505
|
+
sdk?: undefined;
|
|
8320
8506
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
8321
8507
|
}, {
|
|
8322
8508
|
pages: (string | ({
|
|
@@ -8334,6 +8520,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8334
8520
|
boost?: number | undefined;
|
|
8335
8521
|
hidden?: boolean | undefined;
|
|
8336
8522
|
graphql?: undefined;
|
|
8523
|
+
sdk?: undefined;
|
|
8337
8524
|
root?: string | undefined;
|
|
8338
8525
|
} & {
|
|
8339
8526
|
openapi?: string | string[] | {
|
|
@@ -8349,6 +8536,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8349
8536
|
}))[];
|
|
8350
8537
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
8351
8538
|
graphql?: undefined;
|
|
8539
|
+
sdk?: undefined;
|
|
8352
8540
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
8353
8541
|
}>]>;
|
|
8354
8542
|
footer: z.ZodOptional<z.ZodObject<{
|
|
@@ -9247,31 +9435,37 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9247
9435
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
9248
9436
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
9249
9437
|
graphql?: undefined;
|
|
9438
|
+
sdk?: undefined;
|
|
9250
9439
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9251
9440
|
} | {
|
|
9252
9441
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
9253
9442
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
9254
9443
|
graphql?: undefined;
|
|
9444
|
+
sdk?: undefined;
|
|
9255
9445
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9256
9446
|
} | {
|
|
9257
9447
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
9258
9448
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
9259
9449
|
graphql?: undefined;
|
|
9450
|
+
sdk?: undefined;
|
|
9260
9451
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9261
9452
|
} | {
|
|
9262
9453
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
9263
9454
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
9264
9455
|
graphql?: undefined;
|
|
9456
|
+
sdk?: undefined;
|
|
9265
9457
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9266
9458
|
} | {
|
|
9267
9459
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
9268
9460
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
9269
9461
|
graphql?: undefined;
|
|
9462
|
+
sdk?: undefined;
|
|
9270
9463
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9271
9464
|
} | {
|
|
9272
9465
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
9273
9466
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
9274
9467
|
graphql?: undefined;
|
|
9468
|
+
sdk?: undefined;
|
|
9275
9469
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9276
9470
|
} | {
|
|
9277
9471
|
groups: ({
|
|
@@ -9289,6 +9483,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9289
9483
|
boost?: number | undefined;
|
|
9290
9484
|
hidden?: boolean | undefined;
|
|
9291
9485
|
graphql?: undefined;
|
|
9486
|
+
sdk?: undefined;
|
|
9292
9487
|
root?: string | undefined;
|
|
9293
9488
|
} & {
|
|
9294
9489
|
openapi?: string | string[] | {
|
|
@@ -9304,6 +9499,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9304
9499
|
})[];
|
|
9305
9500
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
9306
9501
|
graphql?: undefined;
|
|
9502
|
+
sdk?: undefined;
|
|
9307
9503
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9308
9504
|
} | {
|
|
9309
9505
|
pages: (string | ({
|
|
@@ -9321,6 +9517,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9321
9517
|
boost?: number | undefined;
|
|
9322
9518
|
hidden?: boolean | undefined;
|
|
9323
9519
|
graphql?: undefined;
|
|
9520
|
+
sdk?: undefined;
|
|
9324
9521
|
root?: string | undefined;
|
|
9325
9522
|
} & {
|
|
9326
9523
|
openapi?: string | string[] | {
|
|
@@ -9336,6 +9533,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9336
9533
|
}))[];
|
|
9337
9534
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
9338
9535
|
graphql?: undefined;
|
|
9536
|
+
sdk?: undefined;
|
|
9339
9537
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9340
9538
|
};
|
|
9341
9539
|
background?: {
|
|
@@ -9648,31 +9846,37 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9648
9846
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
9649
9847
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
9650
9848
|
graphql?: undefined;
|
|
9849
|
+
sdk?: undefined;
|
|
9651
9850
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9652
9851
|
} | {
|
|
9653
9852
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
9654
9853
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
9655
9854
|
graphql?: undefined;
|
|
9855
|
+
sdk?: undefined;
|
|
9656
9856
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9657
9857
|
} | {
|
|
9658
9858
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
9659
9859
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
9660
9860
|
graphql?: undefined;
|
|
9861
|
+
sdk?: undefined;
|
|
9661
9862
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9662
9863
|
} | {
|
|
9663
9864
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
9664
9865
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
9665
9866
|
graphql?: undefined;
|
|
9867
|
+
sdk?: undefined;
|
|
9666
9868
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9667
9869
|
} | {
|
|
9668
9870
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
9669
9871
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
9670
9872
|
graphql?: undefined;
|
|
9873
|
+
sdk?: undefined;
|
|
9671
9874
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9672
9875
|
} | {
|
|
9673
9876
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
9674
9877
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
9675
9878
|
graphql?: undefined;
|
|
9879
|
+
sdk?: undefined;
|
|
9676
9880
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9677
9881
|
} | {
|
|
9678
9882
|
groups: ({
|
|
@@ -9690,6 +9894,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9690
9894
|
boost?: number | undefined;
|
|
9691
9895
|
hidden?: boolean | undefined;
|
|
9692
9896
|
graphql?: undefined;
|
|
9897
|
+
sdk?: undefined;
|
|
9693
9898
|
root?: string | undefined;
|
|
9694
9899
|
} & {
|
|
9695
9900
|
openapi?: string | string[] | {
|
|
@@ -9705,6 +9910,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9705
9910
|
})[];
|
|
9706
9911
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
9707
9912
|
graphql?: undefined;
|
|
9913
|
+
sdk?: undefined;
|
|
9708
9914
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9709
9915
|
} | {
|
|
9710
9916
|
pages: (string | ({
|
|
@@ -9722,6 +9928,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9722
9928
|
boost?: number | undefined;
|
|
9723
9929
|
hidden?: boolean | undefined;
|
|
9724
9930
|
graphql?: undefined;
|
|
9931
|
+
sdk?: undefined;
|
|
9725
9932
|
root?: string | undefined;
|
|
9726
9933
|
} & {
|
|
9727
9934
|
openapi?: string | string[] | {
|
|
@@ -9737,6 +9944,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9737
9944
|
}))[];
|
|
9738
9945
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
9739
9946
|
graphql?: undefined;
|
|
9947
|
+
sdk?: undefined;
|
|
9740
9948
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9741
9949
|
};
|
|
9742
9950
|
background?: {
|
|
@@ -10519,102 +10727,121 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10519
10727
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
10520
10728
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
10521
10729
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
10730
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
10522
10731
|
} & {
|
|
10523
10732
|
products: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").ProductNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").ProductNavigation<"default">>, "many">;
|
|
10524
10733
|
}, "strip", z.ZodTypeAny, {
|
|
10525
10734
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
10526
10735
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
10527
10736
|
graphql?: undefined;
|
|
10737
|
+
sdk?: undefined;
|
|
10528
10738
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10529
10739
|
}, {
|
|
10530
10740
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
10531
10741
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
10532
10742
|
graphql?: undefined;
|
|
10743
|
+
sdk?: undefined;
|
|
10533
10744
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10534
10745
|
}>, z.ZodObject<{
|
|
10535
10746
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
10536
10747
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
10537
10748
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
10749
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
10538
10750
|
} & {
|
|
10539
10751
|
languages: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">>, "many">;
|
|
10540
10752
|
}, "strip", z.ZodTypeAny, {
|
|
10541
10753
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
10542
10754
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
10543
10755
|
graphql?: undefined;
|
|
10756
|
+
sdk?: undefined;
|
|
10544
10757
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10545
10758
|
}, {
|
|
10546
10759
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
10547
10760
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
10548
10761
|
graphql?: undefined;
|
|
10762
|
+
sdk?: undefined;
|
|
10549
10763
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10550
10764
|
}>, z.ZodObject<{
|
|
10551
10765
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
10552
10766
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
10553
10767
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
10768
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
10554
10769
|
} & {
|
|
10555
10770
|
versions: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").VersionNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").VersionNavigation<"default">>, "many">;
|
|
10556
10771
|
}, "strip", z.ZodTypeAny, {
|
|
10557
10772
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
10558
10773
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
10559
10774
|
graphql?: undefined;
|
|
10775
|
+
sdk?: undefined;
|
|
10560
10776
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10561
10777
|
}, {
|
|
10562
10778
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
10563
10779
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
10564
10780
|
graphql?: undefined;
|
|
10781
|
+
sdk?: undefined;
|
|
10565
10782
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10566
10783
|
}>, z.ZodObject<{
|
|
10567
10784
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
10568
10785
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
10569
10786
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
10787
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
10570
10788
|
} & {
|
|
10571
10789
|
tabs: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").TabNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").TabNavigation<"default">>, "many">;
|
|
10572
10790
|
}, "strip", z.ZodTypeAny, {
|
|
10573
10791
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
10574
10792
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
10575
10793
|
graphql?: undefined;
|
|
10794
|
+
sdk?: undefined;
|
|
10576
10795
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10577
10796
|
}, {
|
|
10578
10797
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
10579
10798
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
10580
10799
|
graphql?: undefined;
|
|
10800
|
+
sdk?: undefined;
|
|
10581
10801
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10582
10802
|
}>, z.ZodObject<{
|
|
10583
10803
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
10584
10804
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
10585
10805
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
10806
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
10586
10807
|
} & {
|
|
10587
10808
|
dropdowns: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">>, "many">;
|
|
10588
10809
|
}, "strip", z.ZodTypeAny, {
|
|
10589
10810
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
10590
10811
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
10591
10812
|
graphql?: undefined;
|
|
10813
|
+
sdk?: undefined;
|
|
10592
10814
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10593
10815
|
}, {
|
|
10594
10816
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
10595
10817
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
10596
10818
|
graphql?: undefined;
|
|
10819
|
+
sdk?: undefined;
|
|
10597
10820
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10598
10821
|
}>, z.ZodObject<{
|
|
10599
10822
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
10600
10823
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
10601
10824
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
10825
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
10602
10826
|
} & {
|
|
10603
10827
|
anchors: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">>, "many">;
|
|
10604
10828
|
}, "strip", z.ZodTypeAny, {
|
|
10605
10829
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
10606
10830
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
10607
10831
|
graphql?: undefined;
|
|
10832
|
+
sdk?: undefined;
|
|
10608
10833
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10609
10834
|
}, {
|
|
10610
10835
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
10611
10836
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
10612
10837
|
graphql?: undefined;
|
|
10838
|
+
sdk?: undefined;
|
|
10613
10839
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10614
10840
|
}>, z.ZodObject<{
|
|
10615
10841
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
10616
10842
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
10617
10843
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
10844
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
10618
10845
|
} & {
|
|
10619
10846
|
groups: z.ZodArray<z.ZodType<{
|
|
10620
10847
|
group: string;
|
|
@@ -10631,6 +10858,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10631
10858
|
boost?: number | undefined;
|
|
10632
10859
|
hidden?: boolean | undefined;
|
|
10633
10860
|
graphql?: undefined;
|
|
10861
|
+
sdk?: undefined;
|
|
10634
10862
|
root?: string | undefined;
|
|
10635
10863
|
} & {
|
|
10636
10864
|
openapi?: string | string[] | {
|
|
@@ -10658,6 +10886,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10658
10886
|
boost?: number | undefined;
|
|
10659
10887
|
hidden?: boolean | undefined;
|
|
10660
10888
|
graphql?: undefined;
|
|
10889
|
+
sdk?: undefined;
|
|
10661
10890
|
root?: string | undefined;
|
|
10662
10891
|
} & {
|
|
10663
10892
|
openapi?: string | string[] | {
|
|
@@ -10687,6 +10916,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10687
10916
|
boost?: number | undefined;
|
|
10688
10917
|
hidden?: boolean | undefined;
|
|
10689
10918
|
graphql?: undefined;
|
|
10919
|
+
sdk?: undefined;
|
|
10690
10920
|
root?: string | undefined;
|
|
10691
10921
|
} & {
|
|
10692
10922
|
openapi?: string | string[] | {
|
|
@@ -10702,6 +10932,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10702
10932
|
})[];
|
|
10703
10933
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
10704
10934
|
graphql?: undefined;
|
|
10935
|
+
sdk?: undefined;
|
|
10705
10936
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10706
10937
|
}, {
|
|
10707
10938
|
groups: ({
|
|
@@ -10719,6 +10950,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10719
10950
|
boost?: number | undefined;
|
|
10720
10951
|
hidden?: boolean | undefined;
|
|
10721
10952
|
graphql?: undefined;
|
|
10953
|
+
sdk?: undefined;
|
|
10722
10954
|
root?: string | undefined;
|
|
10723
10955
|
} & {
|
|
10724
10956
|
openapi?: string | string[] | {
|
|
@@ -10734,11 +10966,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10734
10966
|
})[];
|
|
10735
10967
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
10736
10968
|
graphql?: undefined;
|
|
10969
|
+
sdk?: undefined;
|
|
10737
10970
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10738
10971
|
}>, z.ZodObject<{
|
|
10739
10972
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
10740
10973
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
10741
10974
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
10975
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
10742
10976
|
} & {
|
|
10743
10977
|
pages: z.ZodArray<z.ZodType<string | ({
|
|
10744
10978
|
group: string;
|
|
@@ -10755,6 +10989,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10755
10989
|
boost?: number | undefined;
|
|
10756
10990
|
hidden?: boolean | undefined;
|
|
10757
10991
|
graphql?: undefined;
|
|
10992
|
+
sdk?: undefined;
|
|
10758
10993
|
root?: string | undefined;
|
|
10759
10994
|
} & {
|
|
10760
10995
|
openapi?: string | string[] | {
|
|
@@ -10782,6 +11017,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10782
11017
|
boost?: number | undefined;
|
|
10783
11018
|
hidden?: boolean | undefined;
|
|
10784
11019
|
graphql?: undefined;
|
|
11020
|
+
sdk?: undefined;
|
|
10785
11021
|
root?: string | undefined;
|
|
10786
11022
|
} & {
|
|
10787
11023
|
openapi?: string | string[] | {
|
|
@@ -10811,6 +11047,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10811
11047
|
boost?: number | undefined;
|
|
10812
11048
|
hidden?: boolean | undefined;
|
|
10813
11049
|
graphql?: undefined;
|
|
11050
|
+
sdk?: undefined;
|
|
10814
11051
|
root?: string | undefined;
|
|
10815
11052
|
} & {
|
|
10816
11053
|
openapi?: string | string[] | {
|
|
@@ -10826,6 +11063,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10826
11063
|
}))[];
|
|
10827
11064
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
10828
11065
|
graphql?: undefined;
|
|
11066
|
+
sdk?: undefined;
|
|
10829
11067
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10830
11068
|
}, {
|
|
10831
11069
|
pages: (string | ({
|
|
@@ -10843,6 +11081,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10843
11081
|
boost?: number | undefined;
|
|
10844
11082
|
hidden?: boolean | undefined;
|
|
10845
11083
|
graphql?: undefined;
|
|
11084
|
+
sdk?: undefined;
|
|
10846
11085
|
root?: string | undefined;
|
|
10847
11086
|
} & {
|
|
10848
11087
|
openapi?: string | string[] | {
|
|
@@ -10858,6 +11097,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10858
11097
|
}))[];
|
|
10859
11098
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
10860
11099
|
graphql?: undefined;
|
|
11100
|
+
sdk?: undefined;
|
|
10861
11101
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10862
11102
|
}>]>;
|
|
10863
11103
|
footer: z.ZodOptional<z.ZodObject<{
|
|
@@ -11756,31 +11996,37 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11756
11996
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
11757
11997
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
11758
11998
|
graphql?: undefined;
|
|
11999
|
+
sdk?: undefined;
|
|
11759
12000
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
11760
12001
|
} | {
|
|
11761
12002
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
11762
12003
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
11763
12004
|
graphql?: undefined;
|
|
12005
|
+
sdk?: undefined;
|
|
11764
12006
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
11765
12007
|
} | {
|
|
11766
12008
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
11767
12009
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
11768
12010
|
graphql?: undefined;
|
|
12011
|
+
sdk?: undefined;
|
|
11769
12012
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
11770
12013
|
} | {
|
|
11771
12014
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
11772
12015
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
11773
12016
|
graphql?: undefined;
|
|
12017
|
+
sdk?: undefined;
|
|
11774
12018
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
11775
12019
|
} | {
|
|
11776
12020
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
11777
12021
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
11778
12022
|
graphql?: undefined;
|
|
12023
|
+
sdk?: undefined;
|
|
11779
12024
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
11780
12025
|
} | {
|
|
11781
12026
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
11782
12027
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
11783
12028
|
graphql?: undefined;
|
|
12029
|
+
sdk?: undefined;
|
|
11784
12030
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
11785
12031
|
} | {
|
|
11786
12032
|
groups: ({
|
|
@@ -11798,6 +12044,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11798
12044
|
boost?: number | undefined;
|
|
11799
12045
|
hidden?: boolean | undefined;
|
|
11800
12046
|
graphql?: undefined;
|
|
12047
|
+
sdk?: undefined;
|
|
11801
12048
|
root?: string | undefined;
|
|
11802
12049
|
} & {
|
|
11803
12050
|
openapi?: string | string[] | {
|
|
@@ -11813,6 +12060,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11813
12060
|
})[];
|
|
11814
12061
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
11815
12062
|
graphql?: undefined;
|
|
12063
|
+
sdk?: undefined;
|
|
11816
12064
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
11817
12065
|
} | {
|
|
11818
12066
|
pages: (string | ({
|
|
@@ -11830,6 +12078,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11830
12078
|
boost?: number | undefined;
|
|
11831
12079
|
hidden?: boolean | undefined;
|
|
11832
12080
|
graphql?: undefined;
|
|
12081
|
+
sdk?: undefined;
|
|
11833
12082
|
root?: string | undefined;
|
|
11834
12083
|
} & {
|
|
11835
12084
|
openapi?: string | string[] | {
|
|
@@ -11845,6 +12094,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11845
12094
|
}))[];
|
|
11846
12095
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
11847
12096
|
graphql?: undefined;
|
|
12097
|
+
sdk?: undefined;
|
|
11848
12098
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
11849
12099
|
};
|
|
11850
12100
|
background?: {
|
|
@@ -12157,31 +12407,37 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12157
12407
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
12158
12408
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
12159
12409
|
graphql?: undefined;
|
|
12410
|
+
sdk?: undefined;
|
|
12160
12411
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
12161
12412
|
} | {
|
|
12162
12413
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
12163
12414
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
12164
12415
|
graphql?: undefined;
|
|
12416
|
+
sdk?: undefined;
|
|
12165
12417
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
12166
12418
|
} | {
|
|
12167
12419
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
12168
12420
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
12169
12421
|
graphql?: undefined;
|
|
12422
|
+
sdk?: undefined;
|
|
12170
12423
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
12171
12424
|
} | {
|
|
12172
12425
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
12173
12426
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
12174
12427
|
graphql?: undefined;
|
|
12428
|
+
sdk?: undefined;
|
|
12175
12429
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
12176
12430
|
} | {
|
|
12177
12431
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
12178
12432
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
12179
12433
|
graphql?: undefined;
|
|
12434
|
+
sdk?: undefined;
|
|
12180
12435
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
12181
12436
|
} | {
|
|
12182
12437
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
12183
12438
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
12184
12439
|
graphql?: undefined;
|
|
12440
|
+
sdk?: undefined;
|
|
12185
12441
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
12186
12442
|
} | {
|
|
12187
12443
|
groups: ({
|
|
@@ -12199,6 +12455,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12199
12455
|
boost?: number | undefined;
|
|
12200
12456
|
hidden?: boolean | undefined;
|
|
12201
12457
|
graphql?: undefined;
|
|
12458
|
+
sdk?: undefined;
|
|
12202
12459
|
root?: string | undefined;
|
|
12203
12460
|
} & {
|
|
12204
12461
|
openapi?: string | string[] | {
|
|
@@ -12214,6 +12471,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12214
12471
|
})[];
|
|
12215
12472
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
12216
12473
|
graphql?: undefined;
|
|
12474
|
+
sdk?: undefined;
|
|
12217
12475
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
12218
12476
|
} | {
|
|
12219
12477
|
pages: (string | ({
|
|
@@ -12231,6 +12489,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12231
12489
|
boost?: number | undefined;
|
|
12232
12490
|
hidden?: boolean | undefined;
|
|
12233
12491
|
graphql?: undefined;
|
|
12492
|
+
sdk?: undefined;
|
|
12234
12493
|
root?: string | undefined;
|
|
12235
12494
|
} & {
|
|
12236
12495
|
openapi?: string | string[] | {
|
|
@@ -12246,6 +12505,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12246
12505
|
}))[];
|
|
12247
12506
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
12248
12507
|
graphql?: undefined;
|
|
12508
|
+
sdk?: undefined;
|
|
12249
12509
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
12250
12510
|
};
|
|
12251
12511
|
background?: {
|
|
@@ -13028,102 +13288,121 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13028
13288
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
13029
13289
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
13030
13290
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
13291
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
13031
13292
|
} & {
|
|
13032
13293
|
products: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").ProductNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").ProductNavigation<"default">>, "many">;
|
|
13033
13294
|
}, "strip", z.ZodTypeAny, {
|
|
13034
13295
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
13035
13296
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
13036
13297
|
graphql?: undefined;
|
|
13298
|
+
sdk?: undefined;
|
|
13037
13299
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
13038
13300
|
}, {
|
|
13039
13301
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
13040
13302
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
13041
13303
|
graphql?: undefined;
|
|
13304
|
+
sdk?: undefined;
|
|
13042
13305
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
13043
13306
|
}>, z.ZodObject<{
|
|
13044
13307
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
13045
13308
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
13046
13309
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
13310
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
13047
13311
|
} & {
|
|
13048
13312
|
languages: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">>, "many">;
|
|
13049
13313
|
}, "strip", z.ZodTypeAny, {
|
|
13050
13314
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
13051
13315
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
13052
13316
|
graphql?: undefined;
|
|
13317
|
+
sdk?: undefined;
|
|
13053
13318
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
13054
13319
|
}, {
|
|
13055
13320
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
13056
13321
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
13057
13322
|
graphql?: undefined;
|
|
13323
|
+
sdk?: undefined;
|
|
13058
13324
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
13059
13325
|
}>, z.ZodObject<{
|
|
13060
13326
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
13061
13327
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
13062
13328
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
13329
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
13063
13330
|
} & {
|
|
13064
13331
|
versions: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").VersionNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").VersionNavigation<"default">>, "many">;
|
|
13065
13332
|
}, "strip", z.ZodTypeAny, {
|
|
13066
13333
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
13067
13334
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
13068
13335
|
graphql?: undefined;
|
|
13336
|
+
sdk?: undefined;
|
|
13069
13337
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
13070
13338
|
}, {
|
|
13071
13339
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
13072
13340
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
13073
13341
|
graphql?: undefined;
|
|
13342
|
+
sdk?: undefined;
|
|
13074
13343
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
13075
13344
|
}>, z.ZodObject<{
|
|
13076
13345
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
13077
13346
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
13078
13347
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
13348
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
13079
13349
|
} & {
|
|
13080
13350
|
tabs: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").TabNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").TabNavigation<"default">>, "many">;
|
|
13081
13351
|
}, "strip", z.ZodTypeAny, {
|
|
13082
13352
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
13083
13353
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
13084
13354
|
graphql?: undefined;
|
|
13355
|
+
sdk?: undefined;
|
|
13085
13356
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
13086
13357
|
}, {
|
|
13087
13358
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
13088
13359
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
13089
13360
|
graphql?: undefined;
|
|
13361
|
+
sdk?: undefined;
|
|
13090
13362
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
13091
13363
|
}>, z.ZodObject<{
|
|
13092
13364
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
13093
13365
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
13094
13366
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
13367
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
13095
13368
|
} & {
|
|
13096
13369
|
dropdowns: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">>, "many">;
|
|
13097
13370
|
}, "strip", z.ZodTypeAny, {
|
|
13098
13371
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
13099
13372
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
13100
13373
|
graphql?: undefined;
|
|
13374
|
+
sdk?: undefined;
|
|
13101
13375
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
13102
13376
|
}, {
|
|
13103
13377
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
13104
13378
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
13105
13379
|
graphql?: undefined;
|
|
13380
|
+
sdk?: undefined;
|
|
13106
13381
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
13107
13382
|
}>, z.ZodObject<{
|
|
13108
13383
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
13109
13384
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
13110
13385
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
13386
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
13111
13387
|
} & {
|
|
13112
13388
|
anchors: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">>, "many">;
|
|
13113
13389
|
}, "strip", z.ZodTypeAny, {
|
|
13114
13390
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
13115
13391
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
13116
13392
|
graphql?: undefined;
|
|
13393
|
+
sdk?: undefined;
|
|
13117
13394
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
13118
13395
|
}, {
|
|
13119
13396
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
13120
13397
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
13121
13398
|
graphql?: undefined;
|
|
13399
|
+
sdk?: undefined;
|
|
13122
13400
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
13123
13401
|
}>, z.ZodObject<{
|
|
13124
13402
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
13125
13403
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
13126
13404
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
13405
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
13127
13406
|
} & {
|
|
13128
13407
|
groups: z.ZodArray<z.ZodType<{
|
|
13129
13408
|
group: string;
|
|
@@ -13140,6 +13419,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13140
13419
|
boost?: number | undefined;
|
|
13141
13420
|
hidden?: boolean | undefined;
|
|
13142
13421
|
graphql?: undefined;
|
|
13422
|
+
sdk?: undefined;
|
|
13143
13423
|
root?: string | undefined;
|
|
13144
13424
|
} & {
|
|
13145
13425
|
openapi?: string | string[] | {
|
|
@@ -13167,6 +13447,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13167
13447
|
boost?: number | undefined;
|
|
13168
13448
|
hidden?: boolean | undefined;
|
|
13169
13449
|
graphql?: undefined;
|
|
13450
|
+
sdk?: undefined;
|
|
13170
13451
|
root?: string | undefined;
|
|
13171
13452
|
} & {
|
|
13172
13453
|
openapi?: string | string[] | {
|
|
@@ -13196,6 +13477,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13196
13477
|
boost?: number | undefined;
|
|
13197
13478
|
hidden?: boolean | undefined;
|
|
13198
13479
|
graphql?: undefined;
|
|
13480
|
+
sdk?: undefined;
|
|
13199
13481
|
root?: string | undefined;
|
|
13200
13482
|
} & {
|
|
13201
13483
|
openapi?: string | string[] | {
|
|
@@ -13211,6 +13493,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13211
13493
|
})[];
|
|
13212
13494
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
13213
13495
|
graphql?: undefined;
|
|
13496
|
+
sdk?: undefined;
|
|
13214
13497
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
13215
13498
|
}, {
|
|
13216
13499
|
groups: ({
|
|
@@ -13228,6 +13511,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13228
13511
|
boost?: number | undefined;
|
|
13229
13512
|
hidden?: boolean | undefined;
|
|
13230
13513
|
graphql?: undefined;
|
|
13514
|
+
sdk?: undefined;
|
|
13231
13515
|
root?: string | undefined;
|
|
13232
13516
|
} & {
|
|
13233
13517
|
openapi?: string | string[] | {
|
|
@@ -13243,11 +13527,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13243
13527
|
})[];
|
|
13244
13528
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
13245
13529
|
graphql?: undefined;
|
|
13530
|
+
sdk?: undefined;
|
|
13246
13531
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
13247
13532
|
}>, z.ZodObject<{
|
|
13248
13533
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
13249
13534
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
13250
13535
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
13536
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
13251
13537
|
} & {
|
|
13252
13538
|
pages: z.ZodArray<z.ZodType<string | ({
|
|
13253
13539
|
group: string;
|
|
@@ -13264,6 +13550,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13264
13550
|
boost?: number | undefined;
|
|
13265
13551
|
hidden?: boolean | undefined;
|
|
13266
13552
|
graphql?: undefined;
|
|
13553
|
+
sdk?: undefined;
|
|
13267
13554
|
root?: string | undefined;
|
|
13268
13555
|
} & {
|
|
13269
13556
|
openapi?: string | string[] | {
|
|
@@ -13291,6 +13578,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13291
13578
|
boost?: number | undefined;
|
|
13292
13579
|
hidden?: boolean | undefined;
|
|
13293
13580
|
graphql?: undefined;
|
|
13581
|
+
sdk?: undefined;
|
|
13294
13582
|
root?: string | undefined;
|
|
13295
13583
|
} & {
|
|
13296
13584
|
openapi?: string | string[] | {
|
|
@@ -13320,6 +13608,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13320
13608
|
boost?: number | undefined;
|
|
13321
13609
|
hidden?: boolean | undefined;
|
|
13322
13610
|
graphql?: undefined;
|
|
13611
|
+
sdk?: undefined;
|
|
13323
13612
|
root?: string | undefined;
|
|
13324
13613
|
} & {
|
|
13325
13614
|
openapi?: string | string[] | {
|
|
@@ -13335,6 +13624,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13335
13624
|
}))[];
|
|
13336
13625
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
13337
13626
|
graphql?: undefined;
|
|
13627
|
+
sdk?: undefined;
|
|
13338
13628
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
13339
13629
|
}, {
|
|
13340
13630
|
pages: (string | ({
|
|
@@ -13352,6 +13642,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13352
13642
|
boost?: number | undefined;
|
|
13353
13643
|
hidden?: boolean | undefined;
|
|
13354
13644
|
graphql?: undefined;
|
|
13645
|
+
sdk?: undefined;
|
|
13355
13646
|
root?: string | undefined;
|
|
13356
13647
|
} & {
|
|
13357
13648
|
openapi?: string | string[] | {
|
|
@@ -13367,6 +13658,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13367
13658
|
}))[];
|
|
13368
13659
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
13369
13660
|
graphql?: undefined;
|
|
13661
|
+
sdk?: undefined;
|
|
13370
13662
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
13371
13663
|
}>]>;
|
|
13372
13664
|
footer: z.ZodOptional<z.ZodObject<{
|
|
@@ -14265,31 +14557,37 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14265
14557
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
14266
14558
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
14267
14559
|
graphql?: undefined;
|
|
14560
|
+
sdk?: undefined;
|
|
14268
14561
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
14269
14562
|
} | {
|
|
14270
14563
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
14271
14564
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
14272
14565
|
graphql?: undefined;
|
|
14566
|
+
sdk?: undefined;
|
|
14273
14567
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
14274
14568
|
} | {
|
|
14275
14569
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
14276
14570
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
14277
14571
|
graphql?: undefined;
|
|
14572
|
+
sdk?: undefined;
|
|
14278
14573
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
14279
14574
|
} | {
|
|
14280
14575
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
14281
14576
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
14282
14577
|
graphql?: undefined;
|
|
14578
|
+
sdk?: undefined;
|
|
14283
14579
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
14284
14580
|
} | {
|
|
14285
14581
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
14286
14582
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
14287
14583
|
graphql?: undefined;
|
|
14584
|
+
sdk?: undefined;
|
|
14288
14585
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
14289
14586
|
} | {
|
|
14290
14587
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
14291
14588
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
14292
14589
|
graphql?: undefined;
|
|
14590
|
+
sdk?: undefined;
|
|
14293
14591
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
14294
14592
|
} | {
|
|
14295
14593
|
groups: ({
|
|
@@ -14307,6 +14605,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14307
14605
|
boost?: number | undefined;
|
|
14308
14606
|
hidden?: boolean | undefined;
|
|
14309
14607
|
graphql?: undefined;
|
|
14608
|
+
sdk?: undefined;
|
|
14310
14609
|
root?: string | undefined;
|
|
14311
14610
|
} & {
|
|
14312
14611
|
openapi?: string | string[] | {
|
|
@@ -14322,6 +14621,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14322
14621
|
})[];
|
|
14323
14622
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
14324
14623
|
graphql?: undefined;
|
|
14624
|
+
sdk?: undefined;
|
|
14325
14625
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
14326
14626
|
} | {
|
|
14327
14627
|
pages: (string | ({
|
|
@@ -14339,6 +14639,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14339
14639
|
boost?: number | undefined;
|
|
14340
14640
|
hidden?: boolean | undefined;
|
|
14341
14641
|
graphql?: undefined;
|
|
14642
|
+
sdk?: undefined;
|
|
14342
14643
|
root?: string | undefined;
|
|
14343
14644
|
} & {
|
|
14344
14645
|
openapi?: string | string[] | {
|
|
@@ -14354,6 +14655,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14354
14655
|
}))[];
|
|
14355
14656
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
14356
14657
|
graphql?: undefined;
|
|
14658
|
+
sdk?: undefined;
|
|
14357
14659
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
14358
14660
|
};
|
|
14359
14661
|
background?: {
|
|
@@ -14666,31 +14968,37 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14666
14968
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
14667
14969
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
14668
14970
|
graphql?: undefined;
|
|
14971
|
+
sdk?: undefined;
|
|
14669
14972
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
14670
14973
|
} | {
|
|
14671
14974
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
14672
14975
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
14673
14976
|
graphql?: undefined;
|
|
14977
|
+
sdk?: undefined;
|
|
14674
14978
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
14675
14979
|
} | {
|
|
14676
14980
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
14677
14981
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
14678
14982
|
graphql?: undefined;
|
|
14983
|
+
sdk?: undefined;
|
|
14679
14984
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
14680
14985
|
} | {
|
|
14681
14986
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
14682
14987
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
14683
14988
|
graphql?: undefined;
|
|
14989
|
+
sdk?: undefined;
|
|
14684
14990
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
14685
14991
|
} | {
|
|
14686
14992
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
14687
14993
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
14688
14994
|
graphql?: undefined;
|
|
14995
|
+
sdk?: undefined;
|
|
14689
14996
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
14690
14997
|
} | {
|
|
14691
14998
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
14692
14999
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
14693
15000
|
graphql?: undefined;
|
|
15001
|
+
sdk?: undefined;
|
|
14694
15002
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
14695
15003
|
} | {
|
|
14696
15004
|
groups: ({
|
|
@@ -14708,6 +15016,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14708
15016
|
boost?: number | undefined;
|
|
14709
15017
|
hidden?: boolean | undefined;
|
|
14710
15018
|
graphql?: undefined;
|
|
15019
|
+
sdk?: undefined;
|
|
14711
15020
|
root?: string | undefined;
|
|
14712
15021
|
} & {
|
|
14713
15022
|
openapi?: string | string[] | {
|
|
@@ -14723,6 +15032,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14723
15032
|
})[];
|
|
14724
15033
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
14725
15034
|
graphql?: undefined;
|
|
15035
|
+
sdk?: undefined;
|
|
14726
15036
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
14727
15037
|
} | {
|
|
14728
15038
|
pages: (string | ({
|
|
@@ -14740,6 +15050,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14740
15050
|
boost?: number | undefined;
|
|
14741
15051
|
hidden?: boolean | undefined;
|
|
14742
15052
|
graphql?: undefined;
|
|
15053
|
+
sdk?: undefined;
|
|
14743
15054
|
root?: string | undefined;
|
|
14744
15055
|
} & {
|
|
14745
15056
|
openapi?: string | string[] | {
|
|
@@ -14755,6 +15066,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14755
15066
|
}))[];
|
|
14756
15067
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
14757
15068
|
graphql?: undefined;
|
|
15069
|
+
sdk?: undefined;
|
|
14758
15070
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
14759
15071
|
};
|
|
14760
15072
|
background?: {
|
|
@@ -15537,102 +15849,121 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15537
15849
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
15538
15850
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
15539
15851
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
15852
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
15540
15853
|
} & {
|
|
15541
15854
|
products: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").ProductNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").ProductNavigation<"default">>, "many">;
|
|
15542
15855
|
}, "strip", z.ZodTypeAny, {
|
|
15543
15856
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
15544
15857
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
15545
15858
|
graphql?: undefined;
|
|
15859
|
+
sdk?: undefined;
|
|
15546
15860
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15547
15861
|
}, {
|
|
15548
15862
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
15549
15863
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
15550
15864
|
graphql?: undefined;
|
|
15865
|
+
sdk?: undefined;
|
|
15551
15866
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15552
15867
|
}>, z.ZodObject<{
|
|
15553
15868
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
15554
15869
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
15555
15870
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
15871
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
15556
15872
|
} & {
|
|
15557
15873
|
languages: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">>, "many">;
|
|
15558
15874
|
}, "strip", z.ZodTypeAny, {
|
|
15559
15875
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
15560
15876
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
15561
15877
|
graphql?: undefined;
|
|
15878
|
+
sdk?: undefined;
|
|
15562
15879
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15563
15880
|
}, {
|
|
15564
15881
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
15565
15882
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
15566
15883
|
graphql?: undefined;
|
|
15884
|
+
sdk?: undefined;
|
|
15567
15885
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15568
15886
|
}>, z.ZodObject<{
|
|
15569
15887
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
15570
15888
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
15571
15889
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
15890
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
15572
15891
|
} & {
|
|
15573
15892
|
versions: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").VersionNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").VersionNavigation<"default">>, "many">;
|
|
15574
15893
|
}, "strip", z.ZodTypeAny, {
|
|
15575
15894
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
15576
15895
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
15577
15896
|
graphql?: undefined;
|
|
15897
|
+
sdk?: undefined;
|
|
15578
15898
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15579
15899
|
}, {
|
|
15580
15900
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
15581
15901
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
15582
15902
|
graphql?: undefined;
|
|
15903
|
+
sdk?: undefined;
|
|
15583
15904
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15584
15905
|
}>, z.ZodObject<{
|
|
15585
15906
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
15586
15907
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
15587
15908
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
15909
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
15588
15910
|
} & {
|
|
15589
15911
|
tabs: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").TabNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").TabNavigation<"default">>, "many">;
|
|
15590
15912
|
}, "strip", z.ZodTypeAny, {
|
|
15591
15913
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
15592
15914
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
15593
15915
|
graphql?: undefined;
|
|
15916
|
+
sdk?: undefined;
|
|
15594
15917
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15595
15918
|
}, {
|
|
15596
15919
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
15597
15920
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
15598
15921
|
graphql?: undefined;
|
|
15922
|
+
sdk?: undefined;
|
|
15599
15923
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15600
15924
|
}>, z.ZodObject<{
|
|
15601
15925
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
15602
15926
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
15603
15927
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
15928
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
15604
15929
|
} & {
|
|
15605
15930
|
dropdowns: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">>, "many">;
|
|
15606
15931
|
}, "strip", z.ZodTypeAny, {
|
|
15607
15932
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
15608
15933
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
15609
15934
|
graphql?: undefined;
|
|
15935
|
+
sdk?: undefined;
|
|
15610
15936
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15611
15937
|
}, {
|
|
15612
15938
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
15613
15939
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
15614
15940
|
graphql?: undefined;
|
|
15941
|
+
sdk?: undefined;
|
|
15615
15942
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15616
15943
|
}>, z.ZodObject<{
|
|
15617
15944
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
15618
15945
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
15619
15946
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
15947
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
15620
15948
|
} & {
|
|
15621
15949
|
anchors: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">>, "many">;
|
|
15622
15950
|
}, "strip", z.ZodTypeAny, {
|
|
15623
15951
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
15624
15952
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
15625
15953
|
graphql?: undefined;
|
|
15954
|
+
sdk?: undefined;
|
|
15626
15955
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15627
15956
|
}, {
|
|
15628
15957
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
15629
15958
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
15630
15959
|
graphql?: undefined;
|
|
15960
|
+
sdk?: undefined;
|
|
15631
15961
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15632
15962
|
}>, z.ZodObject<{
|
|
15633
15963
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
15634
15964
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
15635
15965
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
15966
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
15636
15967
|
} & {
|
|
15637
15968
|
groups: z.ZodArray<z.ZodType<{
|
|
15638
15969
|
group: string;
|
|
@@ -15649,6 +15980,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15649
15980
|
boost?: number | undefined;
|
|
15650
15981
|
hidden?: boolean | undefined;
|
|
15651
15982
|
graphql?: undefined;
|
|
15983
|
+
sdk?: undefined;
|
|
15652
15984
|
root?: string | undefined;
|
|
15653
15985
|
} & {
|
|
15654
15986
|
openapi?: string | string[] | {
|
|
@@ -15676,6 +16008,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15676
16008
|
boost?: number | undefined;
|
|
15677
16009
|
hidden?: boolean | undefined;
|
|
15678
16010
|
graphql?: undefined;
|
|
16011
|
+
sdk?: undefined;
|
|
15679
16012
|
root?: string | undefined;
|
|
15680
16013
|
} & {
|
|
15681
16014
|
openapi?: string | string[] | {
|
|
@@ -15705,6 +16038,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15705
16038
|
boost?: number | undefined;
|
|
15706
16039
|
hidden?: boolean | undefined;
|
|
15707
16040
|
graphql?: undefined;
|
|
16041
|
+
sdk?: undefined;
|
|
15708
16042
|
root?: string | undefined;
|
|
15709
16043
|
} & {
|
|
15710
16044
|
openapi?: string | string[] | {
|
|
@@ -15720,6 +16054,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15720
16054
|
})[];
|
|
15721
16055
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
15722
16056
|
graphql?: undefined;
|
|
16057
|
+
sdk?: undefined;
|
|
15723
16058
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15724
16059
|
}, {
|
|
15725
16060
|
groups: ({
|
|
@@ -15737,6 +16072,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15737
16072
|
boost?: number | undefined;
|
|
15738
16073
|
hidden?: boolean | undefined;
|
|
15739
16074
|
graphql?: undefined;
|
|
16075
|
+
sdk?: undefined;
|
|
15740
16076
|
root?: string | undefined;
|
|
15741
16077
|
} & {
|
|
15742
16078
|
openapi?: string | string[] | {
|
|
@@ -15752,11 +16088,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15752
16088
|
})[];
|
|
15753
16089
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
15754
16090
|
graphql?: undefined;
|
|
16091
|
+
sdk?: undefined;
|
|
15755
16092
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15756
16093
|
}>, z.ZodObject<{
|
|
15757
16094
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
15758
16095
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
15759
16096
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
16097
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
15760
16098
|
} & {
|
|
15761
16099
|
pages: z.ZodArray<z.ZodType<string | ({
|
|
15762
16100
|
group: string;
|
|
@@ -15773,6 +16111,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15773
16111
|
boost?: number | undefined;
|
|
15774
16112
|
hidden?: boolean | undefined;
|
|
15775
16113
|
graphql?: undefined;
|
|
16114
|
+
sdk?: undefined;
|
|
15776
16115
|
root?: string | undefined;
|
|
15777
16116
|
} & {
|
|
15778
16117
|
openapi?: string | string[] | {
|
|
@@ -15800,6 +16139,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15800
16139
|
boost?: number | undefined;
|
|
15801
16140
|
hidden?: boolean | undefined;
|
|
15802
16141
|
graphql?: undefined;
|
|
16142
|
+
sdk?: undefined;
|
|
15803
16143
|
root?: string | undefined;
|
|
15804
16144
|
} & {
|
|
15805
16145
|
openapi?: string | string[] | {
|
|
@@ -15829,6 +16169,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15829
16169
|
boost?: number | undefined;
|
|
15830
16170
|
hidden?: boolean | undefined;
|
|
15831
16171
|
graphql?: undefined;
|
|
16172
|
+
sdk?: undefined;
|
|
15832
16173
|
root?: string | undefined;
|
|
15833
16174
|
} & {
|
|
15834
16175
|
openapi?: string | string[] | {
|
|
@@ -15844,6 +16185,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15844
16185
|
}))[];
|
|
15845
16186
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
15846
16187
|
graphql?: undefined;
|
|
16188
|
+
sdk?: undefined;
|
|
15847
16189
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15848
16190
|
}, {
|
|
15849
16191
|
pages: (string | ({
|
|
@@ -15861,6 +16203,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15861
16203
|
boost?: number | undefined;
|
|
15862
16204
|
hidden?: boolean | undefined;
|
|
15863
16205
|
graphql?: undefined;
|
|
16206
|
+
sdk?: undefined;
|
|
15864
16207
|
root?: string | undefined;
|
|
15865
16208
|
} & {
|
|
15866
16209
|
openapi?: string | string[] | {
|
|
@@ -15876,6 +16219,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15876
16219
|
}))[];
|
|
15877
16220
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
15878
16221
|
graphql?: undefined;
|
|
16222
|
+
sdk?: undefined;
|
|
15879
16223
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
15880
16224
|
}>]>;
|
|
15881
16225
|
footer: z.ZodOptional<z.ZodObject<{
|
|
@@ -16774,31 +17118,37 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16774
17118
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
16775
17119
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
16776
17120
|
graphql?: undefined;
|
|
17121
|
+
sdk?: undefined;
|
|
16777
17122
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
16778
17123
|
} | {
|
|
16779
17124
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
16780
17125
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
16781
17126
|
graphql?: undefined;
|
|
17127
|
+
sdk?: undefined;
|
|
16782
17128
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
16783
17129
|
} | {
|
|
16784
17130
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
16785
17131
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
16786
17132
|
graphql?: undefined;
|
|
17133
|
+
sdk?: undefined;
|
|
16787
17134
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
16788
17135
|
} | {
|
|
16789
17136
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
16790
17137
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
16791
17138
|
graphql?: undefined;
|
|
17139
|
+
sdk?: undefined;
|
|
16792
17140
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
16793
17141
|
} | {
|
|
16794
17142
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
16795
17143
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
16796
17144
|
graphql?: undefined;
|
|
17145
|
+
sdk?: undefined;
|
|
16797
17146
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
16798
17147
|
} | {
|
|
16799
17148
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
16800
17149
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
16801
17150
|
graphql?: undefined;
|
|
17151
|
+
sdk?: undefined;
|
|
16802
17152
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
16803
17153
|
} | {
|
|
16804
17154
|
groups: ({
|
|
@@ -16816,6 +17166,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16816
17166
|
boost?: number | undefined;
|
|
16817
17167
|
hidden?: boolean | undefined;
|
|
16818
17168
|
graphql?: undefined;
|
|
17169
|
+
sdk?: undefined;
|
|
16819
17170
|
root?: string | undefined;
|
|
16820
17171
|
} & {
|
|
16821
17172
|
openapi?: string | string[] | {
|
|
@@ -16831,6 +17182,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16831
17182
|
})[];
|
|
16832
17183
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
16833
17184
|
graphql?: undefined;
|
|
17185
|
+
sdk?: undefined;
|
|
16834
17186
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
16835
17187
|
} | {
|
|
16836
17188
|
pages: (string | ({
|
|
@@ -16848,6 +17200,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16848
17200
|
boost?: number | undefined;
|
|
16849
17201
|
hidden?: boolean | undefined;
|
|
16850
17202
|
graphql?: undefined;
|
|
17203
|
+
sdk?: undefined;
|
|
16851
17204
|
root?: string | undefined;
|
|
16852
17205
|
} & {
|
|
16853
17206
|
openapi?: string | string[] | {
|
|
@@ -16863,6 +17216,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16863
17216
|
}))[];
|
|
16864
17217
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
16865
17218
|
graphql?: undefined;
|
|
17219
|
+
sdk?: undefined;
|
|
16866
17220
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
16867
17221
|
};
|
|
16868
17222
|
background?: {
|
|
@@ -17175,31 +17529,37 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17175
17529
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
17176
17530
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
17177
17531
|
graphql?: undefined;
|
|
17532
|
+
sdk?: undefined;
|
|
17178
17533
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
17179
17534
|
} | {
|
|
17180
17535
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
17181
17536
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
17182
17537
|
graphql?: undefined;
|
|
17538
|
+
sdk?: undefined;
|
|
17183
17539
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
17184
17540
|
} | {
|
|
17185
17541
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
17186
17542
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
17187
17543
|
graphql?: undefined;
|
|
17544
|
+
sdk?: undefined;
|
|
17188
17545
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
17189
17546
|
} | {
|
|
17190
17547
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
17191
17548
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
17192
17549
|
graphql?: undefined;
|
|
17550
|
+
sdk?: undefined;
|
|
17193
17551
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
17194
17552
|
} | {
|
|
17195
17553
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
17196
17554
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
17197
17555
|
graphql?: undefined;
|
|
17556
|
+
sdk?: undefined;
|
|
17198
17557
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
17199
17558
|
} | {
|
|
17200
17559
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
17201
17560
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
17202
17561
|
graphql?: undefined;
|
|
17562
|
+
sdk?: undefined;
|
|
17203
17563
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
17204
17564
|
} | {
|
|
17205
17565
|
groups: ({
|
|
@@ -17217,6 +17577,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17217
17577
|
boost?: number | undefined;
|
|
17218
17578
|
hidden?: boolean | undefined;
|
|
17219
17579
|
graphql?: undefined;
|
|
17580
|
+
sdk?: undefined;
|
|
17220
17581
|
root?: string | undefined;
|
|
17221
17582
|
} & {
|
|
17222
17583
|
openapi?: string | string[] | {
|
|
@@ -17232,6 +17593,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17232
17593
|
})[];
|
|
17233
17594
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
17234
17595
|
graphql?: undefined;
|
|
17596
|
+
sdk?: undefined;
|
|
17235
17597
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
17236
17598
|
} | {
|
|
17237
17599
|
pages: (string | ({
|
|
@@ -17249,6 +17611,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17249
17611
|
boost?: number | undefined;
|
|
17250
17612
|
hidden?: boolean | undefined;
|
|
17251
17613
|
graphql?: undefined;
|
|
17614
|
+
sdk?: undefined;
|
|
17252
17615
|
root?: string | undefined;
|
|
17253
17616
|
} & {
|
|
17254
17617
|
openapi?: string | string[] | {
|
|
@@ -17264,6 +17627,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17264
17627
|
}))[];
|
|
17265
17628
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
17266
17629
|
graphql?: undefined;
|
|
17630
|
+
sdk?: undefined;
|
|
17267
17631
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
17268
17632
|
};
|
|
17269
17633
|
background?: {
|
|
@@ -18046,102 +18410,121 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18046
18410
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
18047
18411
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
18048
18412
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
18413
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
18049
18414
|
} & {
|
|
18050
18415
|
products: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").ProductNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").ProductNavigation<"default">>, "many">;
|
|
18051
18416
|
}, "strip", z.ZodTypeAny, {
|
|
18052
18417
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
18053
18418
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
18054
18419
|
graphql?: undefined;
|
|
18420
|
+
sdk?: undefined;
|
|
18055
18421
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18056
18422
|
}, {
|
|
18057
18423
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
18058
18424
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
18059
18425
|
graphql?: undefined;
|
|
18426
|
+
sdk?: undefined;
|
|
18060
18427
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18061
18428
|
}>, z.ZodObject<{
|
|
18062
18429
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
18063
18430
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
18064
18431
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
18432
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
18065
18433
|
} & {
|
|
18066
18434
|
languages: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">>, "many">;
|
|
18067
18435
|
}, "strip", z.ZodTypeAny, {
|
|
18068
18436
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
18069
18437
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
18070
18438
|
graphql?: undefined;
|
|
18439
|
+
sdk?: undefined;
|
|
18071
18440
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18072
18441
|
}, {
|
|
18073
18442
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
18074
18443
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
18075
18444
|
graphql?: undefined;
|
|
18445
|
+
sdk?: undefined;
|
|
18076
18446
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18077
18447
|
}>, z.ZodObject<{
|
|
18078
18448
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
18079
18449
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
18080
18450
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
18451
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
18081
18452
|
} & {
|
|
18082
18453
|
versions: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").VersionNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").VersionNavigation<"default">>, "many">;
|
|
18083
18454
|
}, "strip", z.ZodTypeAny, {
|
|
18084
18455
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
18085
18456
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
18086
18457
|
graphql?: undefined;
|
|
18458
|
+
sdk?: undefined;
|
|
18087
18459
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18088
18460
|
}, {
|
|
18089
18461
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
18090
18462
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
18091
18463
|
graphql?: undefined;
|
|
18464
|
+
sdk?: undefined;
|
|
18092
18465
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18093
18466
|
}>, z.ZodObject<{
|
|
18094
18467
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
18095
18468
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
18096
18469
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
18470
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
18097
18471
|
} & {
|
|
18098
18472
|
tabs: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").TabNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").TabNavigation<"default">>, "many">;
|
|
18099
18473
|
}, "strip", z.ZodTypeAny, {
|
|
18100
18474
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
18101
18475
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
18102
18476
|
graphql?: undefined;
|
|
18477
|
+
sdk?: undefined;
|
|
18103
18478
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18104
18479
|
}, {
|
|
18105
18480
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
18106
18481
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
18107
18482
|
graphql?: undefined;
|
|
18483
|
+
sdk?: undefined;
|
|
18108
18484
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18109
18485
|
}>, z.ZodObject<{
|
|
18110
18486
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
18111
18487
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
18112
18488
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
18489
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
18113
18490
|
} & {
|
|
18114
18491
|
dropdowns: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">>, "many">;
|
|
18115
18492
|
}, "strip", z.ZodTypeAny, {
|
|
18116
18493
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
18117
18494
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
18118
18495
|
graphql?: undefined;
|
|
18496
|
+
sdk?: undefined;
|
|
18119
18497
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18120
18498
|
}, {
|
|
18121
18499
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
18122
18500
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
18123
18501
|
graphql?: undefined;
|
|
18502
|
+
sdk?: undefined;
|
|
18124
18503
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18125
18504
|
}>, z.ZodObject<{
|
|
18126
18505
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
18127
18506
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
18128
18507
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
18508
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
18129
18509
|
} & {
|
|
18130
18510
|
anchors: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">>, "many">;
|
|
18131
18511
|
}, "strip", z.ZodTypeAny, {
|
|
18132
18512
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
18133
18513
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
18134
18514
|
graphql?: undefined;
|
|
18515
|
+
sdk?: undefined;
|
|
18135
18516
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18136
18517
|
}, {
|
|
18137
18518
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
18138
18519
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
18139
18520
|
graphql?: undefined;
|
|
18521
|
+
sdk?: undefined;
|
|
18140
18522
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18141
18523
|
}>, z.ZodObject<{
|
|
18142
18524
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
18143
18525
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
18144
18526
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
18527
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
18145
18528
|
} & {
|
|
18146
18529
|
groups: z.ZodArray<z.ZodType<{
|
|
18147
18530
|
group: string;
|
|
@@ -18158,6 +18541,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18158
18541
|
boost?: number | undefined;
|
|
18159
18542
|
hidden?: boolean | undefined;
|
|
18160
18543
|
graphql?: undefined;
|
|
18544
|
+
sdk?: undefined;
|
|
18161
18545
|
root?: string | undefined;
|
|
18162
18546
|
} & {
|
|
18163
18547
|
openapi?: string | string[] | {
|
|
@@ -18185,6 +18569,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18185
18569
|
boost?: number | undefined;
|
|
18186
18570
|
hidden?: boolean | undefined;
|
|
18187
18571
|
graphql?: undefined;
|
|
18572
|
+
sdk?: undefined;
|
|
18188
18573
|
root?: string | undefined;
|
|
18189
18574
|
} & {
|
|
18190
18575
|
openapi?: string | string[] | {
|
|
@@ -18214,6 +18599,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18214
18599
|
boost?: number | undefined;
|
|
18215
18600
|
hidden?: boolean | undefined;
|
|
18216
18601
|
graphql?: undefined;
|
|
18602
|
+
sdk?: undefined;
|
|
18217
18603
|
root?: string | undefined;
|
|
18218
18604
|
} & {
|
|
18219
18605
|
openapi?: string | string[] | {
|
|
@@ -18229,6 +18615,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18229
18615
|
})[];
|
|
18230
18616
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
18231
18617
|
graphql?: undefined;
|
|
18618
|
+
sdk?: undefined;
|
|
18232
18619
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18233
18620
|
}, {
|
|
18234
18621
|
groups: ({
|
|
@@ -18246,6 +18633,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18246
18633
|
boost?: number | undefined;
|
|
18247
18634
|
hidden?: boolean | undefined;
|
|
18248
18635
|
graphql?: undefined;
|
|
18636
|
+
sdk?: undefined;
|
|
18249
18637
|
root?: string | undefined;
|
|
18250
18638
|
} & {
|
|
18251
18639
|
openapi?: string | string[] | {
|
|
@@ -18261,11 +18649,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18261
18649
|
})[];
|
|
18262
18650
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
18263
18651
|
graphql?: undefined;
|
|
18652
|
+
sdk?: undefined;
|
|
18264
18653
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18265
18654
|
}>, z.ZodObject<{
|
|
18266
18655
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
18267
18656
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
18268
18657
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
18658
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
18269
18659
|
} & {
|
|
18270
18660
|
pages: z.ZodArray<z.ZodType<string | ({
|
|
18271
18661
|
group: string;
|
|
@@ -18282,6 +18672,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18282
18672
|
boost?: number | undefined;
|
|
18283
18673
|
hidden?: boolean | undefined;
|
|
18284
18674
|
graphql?: undefined;
|
|
18675
|
+
sdk?: undefined;
|
|
18285
18676
|
root?: string | undefined;
|
|
18286
18677
|
} & {
|
|
18287
18678
|
openapi?: string | string[] | {
|
|
@@ -18309,6 +18700,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18309
18700
|
boost?: number | undefined;
|
|
18310
18701
|
hidden?: boolean | undefined;
|
|
18311
18702
|
graphql?: undefined;
|
|
18703
|
+
sdk?: undefined;
|
|
18312
18704
|
root?: string | undefined;
|
|
18313
18705
|
} & {
|
|
18314
18706
|
openapi?: string | string[] | {
|
|
@@ -18338,6 +18730,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18338
18730
|
boost?: number | undefined;
|
|
18339
18731
|
hidden?: boolean | undefined;
|
|
18340
18732
|
graphql?: undefined;
|
|
18733
|
+
sdk?: undefined;
|
|
18341
18734
|
root?: string | undefined;
|
|
18342
18735
|
} & {
|
|
18343
18736
|
openapi?: string | string[] | {
|
|
@@ -18353,6 +18746,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18353
18746
|
}))[];
|
|
18354
18747
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
18355
18748
|
graphql?: undefined;
|
|
18749
|
+
sdk?: undefined;
|
|
18356
18750
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18357
18751
|
}, {
|
|
18358
18752
|
pages: (string | ({
|
|
@@ -18370,6 +18764,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18370
18764
|
boost?: number | undefined;
|
|
18371
18765
|
hidden?: boolean | undefined;
|
|
18372
18766
|
graphql?: undefined;
|
|
18767
|
+
sdk?: undefined;
|
|
18373
18768
|
root?: string | undefined;
|
|
18374
18769
|
} & {
|
|
18375
18770
|
openapi?: string | string[] | {
|
|
@@ -18385,6 +18780,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18385
18780
|
}))[];
|
|
18386
18781
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
18387
18782
|
graphql?: undefined;
|
|
18783
|
+
sdk?: undefined;
|
|
18388
18784
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18389
18785
|
}>]>;
|
|
18390
18786
|
footer: z.ZodOptional<z.ZodObject<{
|
|
@@ -19283,31 +19679,37 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
19283
19679
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
19284
19680
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
19285
19681
|
graphql?: undefined;
|
|
19682
|
+
sdk?: undefined;
|
|
19286
19683
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
19287
19684
|
} | {
|
|
19288
19685
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
19289
19686
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
19290
19687
|
graphql?: undefined;
|
|
19688
|
+
sdk?: undefined;
|
|
19291
19689
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
19292
19690
|
} | {
|
|
19293
19691
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
19294
19692
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
19295
19693
|
graphql?: undefined;
|
|
19694
|
+
sdk?: undefined;
|
|
19296
19695
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
19297
19696
|
} | {
|
|
19298
19697
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
19299
19698
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
19300
19699
|
graphql?: undefined;
|
|
19700
|
+
sdk?: undefined;
|
|
19301
19701
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
19302
19702
|
} | {
|
|
19303
19703
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
19304
19704
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
19305
19705
|
graphql?: undefined;
|
|
19706
|
+
sdk?: undefined;
|
|
19306
19707
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
19307
19708
|
} | {
|
|
19308
19709
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
19309
19710
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
19310
19711
|
graphql?: undefined;
|
|
19712
|
+
sdk?: undefined;
|
|
19311
19713
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
19312
19714
|
} | {
|
|
19313
19715
|
groups: ({
|
|
@@ -19325,6 +19727,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
19325
19727
|
boost?: number | undefined;
|
|
19326
19728
|
hidden?: boolean | undefined;
|
|
19327
19729
|
graphql?: undefined;
|
|
19730
|
+
sdk?: undefined;
|
|
19328
19731
|
root?: string | undefined;
|
|
19329
19732
|
} & {
|
|
19330
19733
|
openapi?: string | string[] | {
|
|
@@ -19340,6 +19743,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
19340
19743
|
})[];
|
|
19341
19744
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
19342
19745
|
graphql?: undefined;
|
|
19746
|
+
sdk?: undefined;
|
|
19343
19747
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
19344
19748
|
} | {
|
|
19345
19749
|
pages: (string | ({
|
|
@@ -19357,6 +19761,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
19357
19761
|
boost?: number | undefined;
|
|
19358
19762
|
hidden?: boolean | undefined;
|
|
19359
19763
|
graphql?: undefined;
|
|
19764
|
+
sdk?: undefined;
|
|
19360
19765
|
root?: string | undefined;
|
|
19361
19766
|
} & {
|
|
19362
19767
|
openapi?: string | string[] | {
|
|
@@ -19372,6 +19777,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
19372
19777
|
}))[];
|
|
19373
19778
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
19374
19779
|
graphql?: undefined;
|
|
19780
|
+
sdk?: undefined;
|
|
19375
19781
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
19376
19782
|
};
|
|
19377
19783
|
background?: {
|
|
@@ -19684,31 +20090,37 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
19684
20090
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
19685
20091
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
19686
20092
|
graphql?: undefined;
|
|
20093
|
+
sdk?: undefined;
|
|
19687
20094
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
19688
20095
|
} | {
|
|
19689
20096
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
19690
20097
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
19691
20098
|
graphql?: undefined;
|
|
20099
|
+
sdk?: undefined;
|
|
19692
20100
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
19693
20101
|
} | {
|
|
19694
20102
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
19695
20103
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
19696
20104
|
graphql?: undefined;
|
|
20105
|
+
sdk?: undefined;
|
|
19697
20106
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
19698
20107
|
} | {
|
|
19699
20108
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
19700
20109
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
19701
20110
|
graphql?: undefined;
|
|
20111
|
+
sdk?: undefined;
|
|
19702
20112
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
19703
20113
|
} | {
|
|
19704
20114
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
19705
20115
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
19706
20116
|
graphql?: undefined;
|
|
20117
|
+
sdk?: undefined;
|
|
19707
20118
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
19708
20119
|
} | {
|
|
19709
20120
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
19710
20121
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
19711
20122
|
graphql?: undefined;
|
|
20123
|
+
sdk?: undefined;
|
|
19712
20124
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
19713
20125
|
} | {
|
|
19714
20126
|
groups: ({
|
|
@@ -19726,6 +20138,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
19726
20138
|
boost?: number | undefined;
|
|
19727
20139
|
hidden?: boolean | undefined;
|
|
19728
20140
|
graphql?: undefined;
|
|
20141
|
+
sdk?: undefined;
|
|
19729
20142
|
root?: string | undefined;
|
|
19730
20143
|
} & {
|
|
19731
20144
|
openapi?: string | string[] | {
|
|
@@ -19741,6 +20154,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
19741
20154
|
})[];
|
|
19742
20155
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
19743
20156
|
graphql?: undefined;
|
|
20157
|
+
sdk?: undefined;
|
|
19744
20158
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
19745
20159
|
} | {
|
|
19746
20160
|
pages: (string | ({
|
|
@@ -19758,6 +20172,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
19758
20172
|
boost?: number | undefined;
|
|
19759
20173
|
hidden?: boolean | undefined;
|
|
19760
20174
|
graphql?: undefined;
|
|
20175
|
+
sdk?: undefined;
|
|
19761
20176
|
root?: string | undefined;
|
|
19762
20177
|
} & {
|
|
19763
20178
|
openapi?: string | string[] | {
|
|
@@ -19773,6 +20188,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
19773
20188
|
}))[];
|
|
19774
20189
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
19775
20190
|
graphql?: undefined;
|
|
20191
|
+
sdk?: undefined;
|
|
19776
20192
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
19777
20193
|
};
|
|
19778
20194
|
background?: {
|
|
@@ -20555,102 +20971,121 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20555
20971
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
20556
20972
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
20557
20973
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
20974
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
20558
20975
|
} & {
|
|
20559
20976
|
products: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").ProductNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").ProductNavigation<"default">>, "many">;
|
|
20560
20977
|
}, "strip", z.ZodTypeAny, {
|
|
20561
20978
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
20562
20979
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
20563
20980
|
graphql?: undefined;
|
|
20981
|
+
sdk?: undefined;
|
|
20564
20982
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
20565
20983
|
}, {
|
|
20566
20984
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
20567
20985
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
20568
20986
|
graphql?: undefined;
|
|
20987
|
+
sdk?: undefined;
|
|
20569
20988
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
20570
20989
|
}>, z.ZodObject<{
|
|
20571
20990
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
20572
20991
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
20573
20992
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
20993
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
20574
20994
|
} & {
|
|
20575
20995
|
languages: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">>, "many">;
|
|
20576
20996
|
}, "strip", z.ZodTypeAny, {
|
|
20577
20997
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
20578
20998
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
20579
20999
|
graphql?: undefined;
|
|
21000
|
+
sdk?: undefined;
|
|
20580
21001
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
20581
21002
|
}, {
|
|
20582
21003
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
20583
21004
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
20584
21005
|
graphql?: undefined;
|
|
21006
|
+
sdk?: undefined;
|
|
20585
21007
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
20586
21008
|
}>, z.ZodObject<{
|
|
20587
21009
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
20588
21010
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
20589
21011
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
21012
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
20590
21013
|
} & {
|
|
20591
21014
|
versions: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").VersionNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").VersionNavigation<"default">>, "many">;
|
|
20592
21015
|
}, "strip", z.ZodTypeAny, {
|
|
20593
21016
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
20594
21017
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
20595
21018
|
graphql?: undefined;
|
|
21019
|
+
sdk?: undefined;
|
|
20596
21020
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
20597
21021
|
}, {
|
|
20598
21022
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
20599
21023
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
20600
21024
|
graphql?: undefined;
|
|
21025
|
+
sdk?: undefined;
|
|
20601
21026
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
20602
21027
|
}>, z.ZodObject<{
|
|
20603
21028
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
20604
21029
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
20605
21030
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
21031
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
20606
21032
|
} & {
|
|
20607
21033
|
tabs: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").TabNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").TabNavigation<"default">>, "many">;
|
|
20608
21034
|
}, "strip", z.ZodTypeAny, {
|
|
20609
21035
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
20610
21036
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
20611
21037
|
graphql?: undefined;
|
|
21038
|
+
sdk?: undefined;
|
|
20612
21039
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
20613
21040
|
}, {
|
|
20614
21041
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
20615
21042
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
20616
21043
|
graphql?: undefined;
|
|
21044
|
+
sdk?: undefined;
|
|
20617
21045
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
20618
21046
|
}>, z.ZodObject<{
|
|
20619
21047
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
20620
21048
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
20621
21049
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
21050
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
20622
21051
|
} & {
|
|
20623
21052
|
dropdowns: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">>, "many">;
|
|
20624
21053
|
}, "strip", z.ZodTypeAny, {
|
|
20625
21054
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
20626
21055
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
20627
21056
|
graphql?: undefined;
|
|
21057
|
+
sdk?: undefined;
|
|
20628
21058
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
20629
21059
|
}, {
|
|
20630
21060
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
20631
21061
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
20632
21062
|
graphql?: undefined;
|
|
21063
|
+
sdk?: undefined;
|
|
20633
21064
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
20634
21065
|
}>, z.ZodObject<{
|
|
20635
21066
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
20636
21067
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
20637
21068
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
21069
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
20638
21070
|
} & {
|
|
20639
21071
|
anchors: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">>, "many">;
|
|
20640
21072
|
}, "strip", z.ZodTypeAny, {
|
|
20641
21073
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
20642
21074
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
20643
21075
|
graphql?: undefined;
|
|
21076
|
+
sdk?: undefined;
|
|
20644
21077
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
20645
21078
|
}, {
|
|
20646
21079
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
20647
21080
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
20648
21081
|
graphql?: undefined;
|
|
21082
|
+
sdk?: undefined;
|
|
20649
21083
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
20650
21084
|
}>, z.ZodObject<{
|
|
20651
21085
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
20652
21086
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
20653
21087
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
21088
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
20654
21089
|
} & {
|
|
20655
21090
|
groups: z.ZodArray<z.ZodType<{
|
|
20656
21091
|
group: string;
|
|
@@ -20667,6 +21102,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20667
21102
|
boost?: number | undefined;
|
|
20668
21103
|
hidden?: boolean | undefined;
|
|
20669
21104
|
graphql?: undefined;
|
|
21105
|
+
sdk?: undefined;
|
|
20670
21106
|
root?: string | undefined;
|
|
20671
21107
|
} & {
|
|
20672
21108
|
openapi?: string | string[] | {
|
|
@@ -20694,6 +21130,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20694
21130
|
boost?: number | undefined;
|
|
20695
21131
|
hidden?: boolean | undefined;
|
|
20696
21132
|
graphql?: undefined;
|
|
21133
|
+
sdk?: undefined;
|
|
20697
21134
|
root?: string | undefined;
|
|
20698
21135
|
} & {
|
|
20699
21136
|
openapi?: string | string[] | {
|
|
@@ -20723,6 +21160,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20723
21160
|
boost?: number | undefined;
|
|
20724
21161
|
hidden?: boolean | undefined;
|
|
20725
21162
|
graphql?: undefined;
|
|
21163
|
+
sdk?: undefined;
|
|
20726
21164
|
root?: string | undefined;
|
|
20727
21165
|
} & {
|
|
20728
21166
|
openapi?: string | string[] | {
|
|
@@ -20738,6 +21176,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20738
21176
|
})[];
|
|
20739
21177
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
20740
21178
|
graphql?: undefined;
|
|
21179
|
+
sdk?: undefined;
|
|
20741
21180
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
20742
21181
|
}, {
|
|
20743
21182
|
groups: ({
|
|
@@ -20755,6 +21194,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20755
21194
|
boost?: number | undefined;
|
|
20756
21195
|
hidden?: boolean | undefined;
|
|
20757
21196
|
graphql?: undefined;
|
|
21197
|
+
sdk?: undefined;
|
|
20758
21198
|
root?: string | undefined;
|
|
20759
21199
|
} & {
|
|
20760
21200
|
openapi?: string | string[] | {
|
|
@@ -20770,11 +21210,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20770
21210
|
})[];
|
|
20771
21211
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
20772
21212
|
graphql?: undefined;
|
|
21213
|
+
sdk?: undefined;
|
|
20773
21214
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
20774
21215
|
}>, z.ZodObject<{
|
|
20775
21216
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
20776
21217
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
20777
21218
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
21219
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
20778
21220
|
} & {
|
|
20779
21221
|
pages: z.ZodArray<z.ZodType<string | ({
|
|
20780
21222
|
group: string;
|
|
@@ -20791,6 +21233,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20791
21233
|
boost?: number | undefined;
|
|
20792
21234
|
hidden?: boolean | undefined;
|
|
20793
21235
|
graphql?: undefined;
|
|
21236
|
+
sdk?: undefined;
|
|
20794
21237
|
root?: string | undefined;
|
|
20795
21238
|
} & {
|
|
20796
21239
|
openapi?: string | string[] | {
|
|
@@ -20818,6 +21261,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20818
21261
|
boost?: number | undefined;
|
|
20819
21262
|
hidden?: boolean | undefined;
|
|
20820
21263
|
graphql?: undefined;
|
|
21264
|
+
sdk?: undefined;
|
|
20821
21265
|
root?: string | undefined;
|
|
20822
21266
|
} & {
|
|
20823
21267
|
openapi?: string | string[] | {
|
|
@@ -20847,6 +21291,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20847
21291
|
boost?: number | undefined;
|
|
20848
21292
|
hidden?: boolean | undefined;
|
|
20849
21293
|
graphql?: undefined;
|
|
21294
|
+
sdk?: undefined;
|
|
20850
21295
|
root?: string | undefined;
|
|
20851
21296
|
} & {
|
|
20852
21297
|
openapi?: string | string[] | {
|
|
@@ -20862,6 +21307,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20862
21307
|
}))[];
|
|
20863
21308
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
20864
21309
|
graphql?: undefined;
|
|
21310
|
+
sdk?: undefined;
|
|
20865
21311
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
20866
21312
|
}, {
|
|
20867
21313
|
pages: (string | ({
|
|
@@ -20879,6 +21325,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20879
21325
|
boost?: number | undefined;
|
|
20880
21326
|
hidden?: boolean | undefined;
|
|
20881
21327
|
graphql?: undefined;
|
|
21328
|
+
sdk?: undefined;
|
|
20882
21329
|
root?: string | undefined;
|
|
20883
21330
|
} & {
|
|
20884
21331
|
openapi?: string | string[] | {
|
|
@@ -20894,6 +21341,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20894
21341
|
}))[];
|
|
20895
21342
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
20896
21343
|
graphql?: undefined;
|
|
21344
|
+
sdk?: undefined;
|
|
20897
21345
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
20898
21346
|
}>]>;
|
|
20899
21347
|
footer: z.ZodOptional<z.ZodObject<{
|
|
@@ -21792,31 +22240,37 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
21792
22240
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
21793
22241
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
21794
22242
|
graphql?: undefined;
|
|
22243
|
+
sdk?: undefined;
|
|
21795
22244
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
21796
22245
|
} | {
|
|
21797
22246
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
21798
22247
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
21799
22248
|
graphql?: undefined;
|
|
22249
|
+
sdk?: undefined;
|
|
21800
22250
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
21801
22251
|
} | {
|
|
21802
22252
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
21803
22253
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
21804
22254
|
graphql?: undefined;
|
|
22255
|
+
sdk?: undefined;
|
|
21805
22256
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
21806
22257
|
} | {
|
|
21807
22258
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
21808
22259
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
21809
22260
|
graphql?: undefined;
|
|
22261
|
+
sdk?: undefined;
|
|
21810
22262
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
21811
22263
|
} | {
|
|
21812
22264
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
21813
22265
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
21814
22266
|
graphql?: undefined;
|
|
22267
|
+
sdk?: undefined;
|
|
21815
22268
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
21816
22269
|
} | {
|
|
21817
22270
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
21818
22271
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
21819
22272
|
graphql?: undefined;
|
|
22273
|
+
sdk?: undefined;
|
|
21820
22274
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
21821
22275
|
} | {
|
|
21822
22276
|
groups: ({
|
|
@@ -21834,6 +22288,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
21834
22288
|
boost?: number | undefined;
|
|
21835
22289
|
hidden?: boolean | undefined;
|
|
21836
22290
|
graphql?: undefined;
|
|
22291
|
+
sdk?: undefined;
|
|
21837
22292
|
root?: string | undefined;
|
|
21838
22293
|
} & {
|
|
21839
22294
|
openapi?: string | string[] | {
|
|
@@ -21849,6 +22304,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
21849
22304
|
})[];
|
|
21850
22305
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
21851
22306
|
graphql?: undefined;
|
|
22307
|
+
sdk?: undefined;
|
|
21852
22308
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
21853
22309
|
} | {
|
|
21854
22310
|
pages: (string | ({
|
|
@@ -21866,6 +22322,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
21866
22322
|
boost?: number | undefined;
|
|
21867
22323
|
hidden?: boolean | undefined;
|
|
21868
22324
|
graphql?: undefined;
|
|
22325
|
+
sdk?: undefined;
|
|
21869
22326
|
root?: string | undefined;
|
|
21870
22327
|
} & {
|
|
21871
22328
|
openapi?: string | string[] | {
|
|
@@ -21881,6 +22338,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
21881
22338
|
}))[];
|
|
21882
22339
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
21883
22340
|
graphql?: undefined;
|
|
22341
|
+
sdk?: undefined;
|
|
21884
22342
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
21885
22343
|
};
|
|
21886
22344
|
background?: {
|
|
@@ -22193,31 +22651,37 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
22193
22651
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
22194
22652
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
22195
22653
|
graphql?: undefined;
|
|
22654
|
+
sdk?: undefined;
|
|
22196
22655
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
22197
22656
|
} | {
|
|
22198
22657
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
22199
22658
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
22200
22659
|
graphql?: undefined;
|
|
22660
|
+
sdk?: undefined;
|
|
22201
22661
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
22202
22662
|
} | {
|
|
22203
22663
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
22204
22664
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
22205
22665
|
graphql?: undefined;
|
|
22666
|
+
sdk?: undefined;
|
|
22206
22667
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
22207
22668
|
} | {
|
|
22208
22669
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
22209
22670
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
22210
22671
|
graphql?: undefined;
|
|
22672
|
+
sdk?: undefined;
|
|
22211
22673
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
22212
22674
|
} | {
|
|
22213
22675
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
22214
22676
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
22215
22677
|
graphql?: undefined;
|
|
22678
|
+
sdk?: undefined;
|
|
22216
22679
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
22217
22680
|
} | {
|
|
22218
22681
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
22219
22682
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
22220
22683
|
graphql?: undefined;
|
|
22684
|
+
sdk?: undefined;
|
|
22221
22685
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
22222
22686
|
} | {
|
|
22223
22687
|
groups: ({
|
|
@@ -22235,6 +22699,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
22235
22699
|
boost?: number | undefined;
|
|
22236
22700
|
hidden?: boolean | undefined;
|
|
22237
22701
|
graphql?: undefined;
|
|
22702
|
+
sdk?: undefined;
|
|
22238
22703
|
root?: string | undefined;
|
|
22239
22704
|
} & {
|
|
22240
22705
|
openapi?: string | string[] | {
|
|
@@ -22250,6 +22715,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
22250
22715
|
})[];
|
|
22251
22716
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
22252
22717
|
graphql?: undefined;
|
|
22718
|
+
sdk?: undefined;
|
|
22253
22719
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
22254
22720
|
} | {
|
|
22255
22721
|
pages: (string | ({
|
|
@@ -22267,6 +22733,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
22267
22733
|
boost?: number | undefined;
|
|
22268
22734
|
hidden?: boolean | undefined;
|
|
22269
22735
|
graphql?: undefined;
|
|
22736
|
+
sdk?: undefined;
|
|
22270
22737
|
root?: string | undefined;
|
|
22271
22738
|
} & {
|
|
22272
22739
|
openapi?: string | string[] | {
|
|
@@ -22282,6 +22749,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
22282
22749
|
}))[];
|
|
22283
22750
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
22284
22751
|
graphql?: undefined;
|
|
22752
|
+
sdk?: undefined;
|
|
22285
22753
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
22286
22754
|
};
|
|
22287
22755
|
background?: {
|
|
@@ -23065,102 +23533,121 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
23065
23533
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
23066
23534
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
23067
23535
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
23536
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
23068
23537
|
} & {
|
|
23069
23538
|
products: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").ProductNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").ProductNavigation<"default">>, "many">;
|
|
23070
23539
|
}, "strip", z.ZodTypeAny, {
|
|
23071
23540
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
23072
23541
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
23073
23542
|
graphql?: undefined;
|
|
23543
|
+
sdk?: undefined;
|
|
23074
23544
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
23075
23545
|
}, {
|
|
23076
23546
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
23077
23547
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
23078
23548
|
graphql?: undefined;
|
|
23549
|
+
sdk?: undefined;
|
|
23079
23550
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
23080
23551
|
}>, z.ZodObject<{
|
|
23081
23552
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
23082
23553
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
23083
23554
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
23555
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
23084
23556
|
} & {
|
|
23085
23557
|
languages: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">>, "many">;
|
|
23086
23558
|
}, "strip", z.ZodTypeAny, {
|
|
23087
23559
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
23088
23560
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
23089
23561
|
graphql?: undefined;
|
|
23562
|
+
sdk?: undefined;
|
|
23090
23563
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
23091
23564
|
}, {
|
|
23092
23565
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
23093
23566
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
23094
23567
|
graphql?: undefined;
|
|
23568
|
+
sdk?: undefined;
|
|
23095
23569
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
23096
23570
|
}>, z.ZodObject<{
|
|
23097
23571
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
23098
23572
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
23099
23573
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
23574
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
23100
23575
|
} & {
|
|
23101
23576
|
versions: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").VersionNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").VersionNavigation<"default">>, "many">;
|
|
23102
23577
|
}, "strip", z.ZodTypeAny, {
|
|
23103
23578
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
23104
23579
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
23105
23580
|
graphql?: undefined;
|
|
23581
|
+
sdk?: undefined;
|
|
23106
23582
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
23107
23583
|
}, {
|
|
23108
23584
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
23109
23585
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
23110
23586
|
graphql?: undefined;
|
|
23587
|
+
sdk?: undefined;
|
|
23111
23588
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
23112
23589
|
}>, z.ZodObject<{
|
|
23113
23590
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
23114
23591
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
23115
23592
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
23593
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
23116
23594
|
} & {
|
|
23117
23595
|
tabs: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").TabNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").TabNavigation<"default">>, "many">;
|
|
23118
23596
|
}, "strip", z.ZodTypeAny, {
|
|
23119
23597
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
23120
23598
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
23121
23599
|
graphql?: undefined;
|
|
23600
|
+
sdk?: undefined;
|
|
23122
23601
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
23123
23602
|
}, {
|
|
23124
23603
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
23125
23604
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
23126
23605
|
graphql?: undefined;
|
|
23606
|
+
sdk?: undefined;
|
|
23127
23607
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
23128
23608
|
}>, z.ZodObject<{
|
|
23129
23609
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
23130
23610
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
23131
23611
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
23612
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
23132
23613
|
} & {
|
|
23133
23614
|
dropdowns: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">>, "many">;
|
|
23134
23615
|
}, "strip", z.ZodTypeAny, {
|
|
23135
23616
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
23136
23617
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
23137
23618
|
graphql?: undefined;
|
|
23619
|
+
sdk?: undefined;
|
|
23138
23620
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
23139
23621
|
}, {
|
|
23140
23622
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
23141
23623
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
23142
23624
|
graphql?: undefined;
|
|
23625
|
+
sdk?: undefined;
|
|
23143
23626
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
23144
23627
|
}>, z.ZodObject<{
|
|
23145
23628
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
23146
23629
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
23147
23630
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
23631
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
23148
23632
|
} & {
|
|
23149
23633
|
anchors: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">>, "many">;
|
|
23150
23634
|
}, "strip", z.ZodTypeAny, {
|
|
23151
23635
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
23152
23636
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
23153
23637
|
graphql?: undefined;
|
|
23638
|
+
sdk?: undefined;
|
|
23154
23639
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
23155
23640
|
}, {
|
|
23156
23641
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
23157
23642
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
23158
23643
|
graphql?: undefined;
|
|
23644
|
+
sdk?: undefined;
|
|
23159
23645
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
23160
23646
|
}>, z.ZodObject<{
|
|
23161
23647
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
23162
23648
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
23163
23649
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
23650
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
23164
23651
|
} & {
|
|
23165
23652
|
groups: z.ZodArray<z.ZodType<{
|
|
23166
23653
|
group: string;
|
|
@@ -23177,6 +23664,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
23177
23664
|
boost?: number | undefined;
|
|
23178
23665
|
hidden?: boolean | undefined;
|
|
23179
23666
|
graphql?: undefined;
|
|
23667
|
+
sdk?: undefined;
|
|
23180
23668
|
root?: string | undefined;
|
|
23181
23669
|
} & {
|
|
23182
23670
|
openapi?: string | string[] | {
|
|
@@ -23204,6 +23692,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
23204
23692
|
boost?: number | undefined;
|
|
23205
23693
|
hidden?: boolean | undefined;
|
|
23206
23694
|
graphql?: undefined;
|
|
23695
|
+
sdk?: undefined;
|
|
23207
23696
|
root?: string | undefined;
|
|
23208
23697
|
} & {
|
|
23209
23698
|
openapi?: string | string[] | {
|
|
@@ -23233,6 +23722,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
23233
23722
|
boost?: number | undefined;
|
|
23234
23723
|
hidden?: boolean | undefined;
|
|
23235
23724
|
graphql?: undefined;
|
|
23725
|
+
sdk?: undefined;
|
|
23236
23726
|
root?: string | undefined;
|
|
23237
23727
|
} & {
|
|
23238
23728
|
openapi?: string | string[] | {
|
|
@@ -23248,6 +23738,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
23248
23738
|
})[];
|
|
23249
23739
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
23250
23740
|
graphql?: undefined;
|
|
23741
|
+
sdk?: undefined;
|
|
23251
23742
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
23252
23743
|
}, {
|
|
23253
23744
|
groups: ({
|
|
@@ -23265,6 +23756,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
23265
23756
|
boost?: number | undefined;
|
|
23266
23757
|
hidden?: boolean | undefined;
|
|
23267
23758
|
graphql?: undefined;
|
|
23759
|
+
sdk?: undefined;
|
|
23268
23760
|
root?: string | undefined;
|
|
23269
23761
|
} & {
|
|
23270
23762
|
openapi?: string | string[] | {
|
|
@@ -23280,11 +23772,13 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
23280
23772
|
})[];
|
|
23281
23773
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
23282
23774
|
graphql?: undefined;
|
|
23775
|
+
sdk?: undefined;
|
|
23283
23776
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
23284
23777
|
}>, z.ZodObject<{
|
|
23285
23778
|
directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
|
|
23286
23779
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
23287
23780
|
graphql: z.ZodOptional<z.ZodNever>;
|
|
23781
|
+
sdk: z.ZodOptional<z.ZodNever>;
|
|
23288
23782
|
} & {
|
|
23289
23783
|
pages: z.ZodArray<z.ZodType<string | ({
|
|
23290
23784
|
group: string;
|
|
@@ -23301,6 +23795,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
23301
23795
|
boost?: number | undefined;
|
|
23302
23796
|
hidden?: boolean | undefined;
|
|
23303
23797
|
graphql?: undefined;
|
|
23798
|
+
sdk?: undefined;
|
|
23304
23799
|
root?: string | undefined;
|
|
23305
23800
|
} & {
|
|
23306
23801
|
openapi?: string | string[] | {
|
|
@@ -23328,6 +23823,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
23328
23823
|
boost?: number | undefined;
|
|
23329
23824
|
hidden?: boolean | undefined;
|
|
23330
23825
|
graphql?: undefined;
|
|
23826
|
+
sdk?: undefined;
|
|
23331
23827
|
root?: string | undefined;
|
|
23332
23828
|
} & {
|
|
23333
23829
|
openapi?: string | string[] | {
|
|
@@ -23357,6 +23853,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
23357
23853
|
boost?: number | undefined;
|
|
23358
23854
|
hidden?: boolean | undefined;
|
|
23359
23855
|
graphql?: undefined;
|
|
23856
|
+
sdk?: undefined;
|
|
23360
23857
|
root?: string | undefined;
|
|
23361
23858
|
} & {
|
|
23362
23859
|
openapi?: string | string[] | {
|
|
@@ -23372,6 +23869,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
23372
23869
|
}))[];
|
|
23373
23870
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
23374
23871
|
graphql?: undefined;
|
|
23872
|
+
sdk?: undefined;
|
|
23375
23873
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
23376
23874
|
}, {
|
|
23377
23875
|
pages: (string | ({
|
|
@@ -23389,6 +23887,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
23389
23887
|
boost?: number | undefined;
|
|
23390
23888
|
hidden?: boolean | undefined;
|
|
23391
23889
|
graphql?: undefined;
|
|
23890
|
+
sdk?: undefined;
|
|
23392
23891
|
root?: string | undefined;
|
|
23393
23892
|
} & {
|
|
23394
23893
|
openapi?: string | string[] | {
|
|
@@ -23404,6 +23903,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
23404
23903
|
}))[];
|
|
23405
23904
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
23406
23905
|
graphql?: undefined;
|
|
23906
|
+
sdk?: undefined;
|
|
23407
23907
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
23408
23908
|
}>]>;
|
|
23409
23909
|
footer: z.ZodOptional<z.ZodObject<{
|
|
@@ -24302,31 +24802,37 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
24302
24802
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
24303
24803
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
24304
24804
|
graphql?: undefined;
|
|
24805
|
+
sdk?: undefined;
|
|
24305
24806
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
24306
24807
|
} | {
|
|
24307
24808
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
24308
24809
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
24309
24810
|
graphql?: undefined;
|
|
24811
|
+
sdk?: undefined;
|
|
24310
24812
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
24311
24813
|
} | {
|
|
24312
24814
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
24313
24815
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
24314
24816
|
graphql?: undefined;
|
|
24817
|
+
sdk?: undefined;
|
|
24315
24818
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
24316
24819
|
} | {
|
|
24317
24820
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
24318
24821
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
24319
24822
|
graphql?: undefined;
|
|
24823
|
+
sdk?: undefined;
|
|
24320
24824
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
24321
24825
|
} | {
|
|
24322
24826
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
24323
24827
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
24324
24828
|
graphql?: undefined;
|
|
24829
|
+
sdk?: undefined;
|
|
24325
24830
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
24326
24831
|
} | {
|
|
24327
24832
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
24328
24833
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
24329
24834
|
graphql?: undefined;
|
|
24835
|
+
sdk?: undefined;
|
|
24330
24836
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
24331
24837
|
} | {
|
|
24332
24838
|
groups: ({
|
|
@@ -24344,6 +24850,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
24344
24850
|
boost?: number | undefined;
|
|
24345
24851
|
hidden?: boolean | undefined;
|
|
24346
24852
|
graphql?: undefined;
|
|
24853
|
+
sdk?: undefined;
|
|
24347
24854
|
root?: string | undefined;
|
|
24348
24855
|
} & {
|
|
24349
24856
|
openapi?: string | string[] | {
|
|
@@ -24359,6 +24866,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
24359
24866
|
})[];
|
|
24360
24867
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
24361
24868
|
graphql?: undefined;
|
|
24869
|
+
sdk?: undefined;
|
|
24362
24870
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
24363
24871
|
} | {
|
|
24364
24872
|
pages: (string | ({
|
|
@@ -24376,6 +24884,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
24376
24884
|
boost?: number | undefined;
|
|
24377
24885
|
hidden?: boolean | undefined;
|
|
24378
24886
|
graphql?: undefined;
|
|
24887
|
+
sdk?: undefined;
|
|
24379
24888
|
root?: string | undefined;
|
|
24380
24889
|
} & {
|
|
24381
24890
|
openapi?: string | string[] | {
|
|
@@ -24391,6 +24900,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
24391
24900
|
}))[];
|
|
24392
24901
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
24393
24902
|
graphql?: undefined;
|
|
24903
|
+
sdk?: undefined;
|
|
24394
24904
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
24395
24905
|
};
|
|
24396
24906
|
background?: {
|
|
@@ -24703,31 +25213,37 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
24703
25213
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
24704
25214
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
24705
25215
|
graphql?: undefined;
|
|
25216
|
+
sdk?: undefined;
|
|
24706
25217
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
24707
25218
|
} | {
|
|
24708
25219
|
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
24709
25220
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
24710
25221
|
graphql?: undefined;
|
|
25222
|
+
sdk?: undefined;
|
|
24711
25223
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
24712
25224
|
} | {
|
|
24713
25225
|
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
24714
25226
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
24715
25227
|
graphql?: undefined;
|
|
25228
|
+
sdk?: undefined;
|
|
24716
25229
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
24717
25230
|
} | {
|
|
24718
25231
|
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
24719
25232
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
24720
25233
|
graphql?: undefined;
|
|
25234
|
+
sdk?: undefined;
|
|
24721
25235
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
24722
25236
|
} | {
|
|
24723
25237
|
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
24724
25238
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
24725
25239
|
graphql?: undefined;
|
|
25240
|
+
sdk?: undefined;
|
|
24726
25241
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
24727
25242
|
} | {
|
|
24728
25243
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
24729
25244
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
24730
25245
|
graphql?: undefined;
|
|
25246
|
+
sdk?: undefined;
|
|
24731
25247
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
24732
25248
|
} | {
|
|
24733
25249
|
groups: ({
|
|
@@ -24745,6 +25261,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
24745
25261
|
boost?: number | undefined;
|
|
24746
25262
|
hidden?: boolean | undefined;
|
|
24747
25263
|
graphql?: undefined;
|
|
25264
|
+
sdk?: undefined;
|
|
24748
25265
|
root?: string | undefined;
|
|
24749
25266
|
} & {
|
|
24750
25267
|
openapi?: string | string[] | {
|
|
@@ -24760,6 +25277,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
24760
25277
|
})[];
|
|
24761
25278
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
24762
25279
|
graphql?: undefined;
|
|
25280
|
+
sdk?: undefined;
|
|
24763
25281
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
24764
25282
|
} | {
|
|
24765
25283
|
pages: (string | ({
|
|
@@ -24777,6 +25295,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
24777
25295
|
boost?: number | undefined;
|
|
24778
25296
|
hidden?: boolean | undefined;
|
|
24779
25297
|
graphql?: undefined;
|
|
25298
|
+
sdk?: undefined;
|
|
24780
25299
|
root?: string | undefined;
|
|
24781
25300
|
} & {
|
|
24782
25301
|
openapi?: string | string[] | {
|
|
@@ -24792,6 +25311,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
24792
25311
|
}))[];
|
|
24793
25312
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
24794
25313
|
graphql?: undefined;
|
|
25314
|
+
sdk?: undefined;
|
|
24795
25315
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
24796
25316
|
};
|
|
24797
25317
|
background?: {
|