@mintlify/validation 0.1.795 → 0.1.797

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.
Files changed (41) hide show
  1. package/dist/editor-navigation/types.d.ts +3 -3
  2. package/dist/editor-navigation/types.js +1 -1
  3. package/dist/index.js +2 -0
  4. package/dist/mint-config/schemas/v2/index.d.ts +520 -0
  5. package/dist/mint-config/schemas/v2/properties/navigation/anchors.d.ts +6 -0
  6. package/dist/mint-config/schemas/v2/properties/navigation/anchors.js +2 -1
  7. package/dist/mint-config/schemas/v2/properties/navigation/dropdown.d.ts +6 -0
  8. package/dist/mint-config/schemas/v2/properties/navigation/dropdown.js +2 -1
  9. package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +7 -0
  10. package/dist/mint-config/schemas/v2/properties/navigation/groups.js +2 -1
  11. package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +40 -0
  12. package/dist/mint-config/schemas/v2/properties/navigation/index.js +2 -1
  13. package/dist/mint-config/schemas/v2/properties/navigation/languages.d.ts +6 -0
  14. package/dist/mint-config/schemas/v2/properties/navigation/languages.js +2 -1
  15. package/dist/mint-config/schemas/v2/properties/navigation/menu.d.ts +6 -0
  16. package/dist/mint-config/schemas/v2/properties/navigation/menu.js +2 -1
  17. package/dist/mint-config/schemas/v2/properties/navigation/pages.d.ts +4 -0
  18. package/dist/mint-config/schemas/v2/properties/navigation/products.d.ts +6 -0
  19. package/dist/mint-config/schemas/v2/properties/navigation/products.js +2 -1
  20. package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +3 -0
  21. package/dist/mint-config/schemas/v2/properties/navigation/tabs.js +25 -2
  22. package/dist/mint-config/schemas/v2/properties/navigation/version.d.ts +6 -0
  23. package/dist/mint-config/schemas/v2/properties/navigation/version.js +2 -1
  24. package/dist/mint-config/schemas/v2/properties/reusable/graphql.d.ts +24 -0
  25. package/dist/mint-config/schemas/v2/properties/reusable/graphql.js +35 -0
  26. package/dist/mint-config/schemas/v2/properties/reusable/index.d.ts +1 -0
  27. package/dist/mint-config/schemas/v2/properties/reusable/index.js +1 -0
  28. package/dist/mint-config/schemas/v2/themes/almond.d.ts +52 -0
  29. package/dist/mint-config/schemas/v2/themes/aspen.d.ts +52 -0
  30. package/dist/mint-config/schemas/v2/themes/linden.d.ts +52 -0
  31. package/dist/mint-config/schemas/v2/themes/luma.d.ts +52 -0
  32. package/dist/mint-config/schemas/v2/themes/maple.d.ts +52 -0
  33. package/dist/mint-config/schemas/v2/themes/mint.d.ts +52 -0
  34. package/dist/mint-config/schemas/v2/themes/palm.d.ts +52 -0
  35. package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +32 -0
  36. package/dist/mint-config/schemas/v2/themes/sequoia.d.ts +52 -0
  37. package/dist/mint-config/schemas/v2/themes/willow.d.ts +52 -0
  38. package/dist/mint-config/validateConfig.d.ts +180 -0
  39. package/dist/tsconfig.build.tsbuildinfo +1 -1
  40. package/dist/types/serverStaticProps.d.ts +3 -1
  41. package/package.json +3 -3
@@ -479,84 +479,103 @@ export declare const mintConfigSchema: z.ZodObject<{
479
479
  navigation: z.ZodUnion<[z.ZodObject<{
480
480
  directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
481
481
  global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
482
+ graphql: z.ZodOptional<z.ZodNever>;
482
483
  } & {
483
484
  products: z.ZodArray<z.ZodType<import("../properties/navigation/divisionNav.js").ProductNavigation<"default">, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").ProductNavigation<"default">>, "many">;
484
485
  }, "strip", z.ZodTypeAny, {
485
486
  products: import("../properties/navigation/divisionNav.js").ProductNavigation<"default">[];
486
487
  directory?: "none" | "card" | "accordion" | undefined;
488
+ graphql?: undefined;
487
489
  global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
488
490
  }, {
489
491
  products: import("../properties/navigation/divisionNav.js").ProductNavigation<"default">[];
490
492
  directory?: "none" | "card" | "accordion" | undefined;
493
+ graphql?: undefined;
491
494
  global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
492
495
  }>, z.ZodObject<{
493
496
  directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
494
497
  global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
498
+ graphql: z.ZodOptional<z.ZodNever>;
495
499
  } & {
496
500
  languages: z.ZodArray<z.ZodType<import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">>, "many">;
497
501
  }, "strip", z.ZodTypeAny, {
498
502
  languages: import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
499
503
  directory?: "none" | "card" | "accordion" | undefined;
504
+ graphql?: undefined;
500
505
  global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
501
506
  }, {
502
507
  languages: import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
503
508
  directory?: "none" | "card" | "accordion" | undefined;
509
+ graphql?: undefined;
504
510
  global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
505
511
  }>, z.ZodObject<{
506
512
  directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
507
513
  global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
514
+ graphql: z.ZodOptional<z.ZodNever>;
508
515
  } & {
509
516
  versions: z.ZodArray<z.ZodType<import("../properties/navigation/divisionNav.js").VersionNavigation<"default">, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").VersionNavigation<"default">>, "many">;
510
517
  }, "strip", z.ZodTypeAny, {
511
518
  versions: import("../properties/navigation/divisionNav.js").VersionNavigation<"default">[];
512
519
  directory?: "none" | "card" | "accordion" | undefined;
520
+ graphql?: undefined;
513
521
  global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
514
522
  }, {
515
523
  versions: import("../properties/navigation/divisionNav.js").VersionNavigation<"default">[];
516
524
  directory?: "none" | "card" | "accordion" | undefined;
525
+ graphql?: undefined;
517
526
  global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
518
527
  }>, z.ZodObject<{
519
528
  directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
520
529
  global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
530
+ graphql: z.ZodOptional<z.ZodNever>;
521
531
  } & {
522
532
  tabs: z.ZodArray<z.ZodType<import("../properties/navigation/divisionNav.js").TabNavigation<"default">, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").TabNavigation<"default">>, "many">;
523
533
  }, "strip", z.ZodTypeAny, {
524
534
  tabs: import("../properties/navigation/divisionNav.js").TabNavigation<"default">[];
525
535
  directory?: "none" | "card" | "accordion" | undefined;
536
+ graphql?: undefined;
526
537
  global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
527
538
  }, {
528
539
  tabs: import("../properties/navigation/divisionNav.js").TabNavigation<"default">[];
529
540
  directory?: "none" | "card" | "accordion" | undefined;
541
+ graphql?: undefined;
530
542
  global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
531
543
  }>, z.ZodObject<{
532
544
  directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
533
545
  global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
546
+ graphql: z.ZodOptional<z.ZodNever>;
534
547
  } & {
535
548
  dropdowns: z.ZodArray<z.ZodType<import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">>, "many">;
536
549
  }, "strip", z.ZodTypeAny, {
537
550
  dropdowns: import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
538
551
  directory?: "none" | "card" | "accordion" | undefined;
552
+ graphql?: undefined;
539
553
  global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
540
554
  }, {
541
555
  dropdowns: import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
542
556
  directory?: "none" | "card" | "accordion" | undefined;
557
+ graphql?: undefined;
543
558
  global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
544
559
  }>, z.ZodObject<{
545
560
  directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
546
561
  global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
562
+ graphql: z.ZodOptional<z.ZodNever>;
547
563
  } & {
548
564
  anchors: z.ZodArray<z.ZodType<import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">>, "many">;
549
565
  }, "strip", z.ZodTypeAny, {
550
566
  anchors: import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
551
567
  directory?: "none" | "card" | "accordion" | undefined;
568
+ graphql?: undefined;
552
569
  global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
553
570
  }, {
554
571
  anchors: import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
555
572
  directory?: "none" | "card" | "accordion" | undefined;
573
+ graphql?: undefined;
556
574
  global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
557
575
  }>, z.ZodObject<{
558
576
  directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
559
577
  global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
578
+ graphql: z.ZodOptional<z.ZodNever>;
560
579
  } & {
561
580
  groups: z.ZodArray<z.ZodType<{
562
581
  group: string;
@@ -572,6 +591,7 @@ export declare const mintConfigSchema: z.ZodObject<{
572
591
  searchable?: boolean | undefined;
573
592
  boost?: number | undefined;
574
593
  hidden?: boolean | undefined;
594
+ graphql?: undefined;
575
595
  root?: string | undefined;
576
596
  } & {
577
597
  openapi?: string | string[] | {
@@ -598,6 +618,7 @@ export declare const mintConfigSchema: z.ZodObject<{
598
618
  searchable?: boolean | undefined;
599
619
  boost?: number | undefined;
600
620
  hidden?: boolean | undefined;
621
+ graphql?: undefined;
601
622
  root?: string | undefined;
602
623
  } & {
603
624
  openapi?: string | string[] | {
@@ -626,6 +647,7 @@ export declare const mintConfigSchema: z.ZodObject<{
626
647
  searchable?: boolean | undefined;
627
648
  boost?: number | undefined;
628
649
  hidden?: boolean | undefined;
650
+ graphql?: undefined;
629
651
  root?: string | undefined;
630
652
  } & {
631
653
  openapi?: string | string[] | {
@@ -640,6 +662,7 @@ export declare const mintConfigSchema: z.ZodObject<{
640
662
  pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
641
663
  })[];
642
664
  directory?: "none" | "card" | "accordion" | undefined;
665
+ graphql?: undefined;
643
666
  global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
644
667
  }, {
645
668
  groups: ({
@@ -656,6 +679,7 @@ export declare const mintConfigSchema: z.ZodObject<{
656
679
  searchable?: boolean | undefined;
657
680
  boost?: number | undefined;
658
681
  hidden?: boolean | undefined;
682
+ graphql?: undefined;
659
683
  root?: string | undefined;
660
684
  } & {
661
685
  openapi?: string | string[] | {
@@ -670,10 +694,12 @@ export declare const mintConfigSchema: z.ZodObject<{
670
694
  pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
671
695
  })[];
672
696
  directory?: "none" | "card" | "accordion" | undefined;
697
+ graphql?: undefined;
673
698
  global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
674
699
  }>, z.ZodObject<{
675
700
  directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
676
701
  global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
702
+ graphql: z.ZodOptional<z.ZodNever>;
677
703
  } & {
678
704
  pages: z.ZodArray<z.ZodType<string | ({
679
705
  group: string;
@@ -689,6 +715,7 @@ export declare const mintConfigSchema: z.ZodObject<{
689
715
  searchable?: boolean | undefined;
690
716
  boost?: number | undefined;
691
717
  hidden?: boolean | undefined;
718
+ graphql?: undefined;
692
719
  root?: string | undefined;
693
720
  } & {
694
721
  openapi?: string | string[] | {
@@ -715,6 +742,7 @@ export declare const mintConfigSchema: z.ZodObject<{
715
742
  searchable?: boolean | undefined;
716
743
  boost?: number | undefined;
717
744
  hidden?: boolean | undefined;
745
+ graphql?: undefined;
718
746
  root?: string | undefined;
719
747
  } & {
720
748
  openapi?: string | string[] | {
@@ -743,6 +771,7 @@ export declare const mintConfigSchema: z.ZodObject<{
743
771
  searchable?: boolean | undefined;
744
772
  boost?: number | undefined;
745
773
  hidden?: boolean | undefined;
774
+ graphql?: undefined;
746
775
  root?: string | undefined;
747
776
  } & {
748
777
  openapi?: string | string[] | {
@@ -757,6 +786,7 @@ export declare const mintConfigSchema: z.ZodObject<{
757
786
  pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
758
787
  }))[];
759
788
  directory?: "none" | "card" | "accordion" | undefined;
789
+ graphql?: undefined;
760
790
  global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
761
791
  }, {
762
792
  pages: (string | ({
@@ -773,6 +803,7 @@ export declare const mintConfigSchema: z.ZodObject<{
773
803
  searchable?: boolean | undefined;
774
804
  boost?: number | undefined;
775
805
  hidden?: boolean | undefined;
806
+ graphql?: undefined;
776
807
  root?: string | undefined;
777
808
  } & {
778
809
  openapi?: string | string[] | {
@@ -787,6 +818,7 @@ export declare const mintConfigSchema: z.ZodObject<{
787
818
  pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
788
819
  }))[];
789
820
  directory?: "none" | "card" | "accordion" | undefined;
821
+ graphql?: undefined;
790
822
  global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
791
823
  }>]>;
792
824
  footer: z.ZodOptional<z.ZodObject<{
@@ -1684,26 +1716,32 @@ export declare const mintConfigSchema: z.ZodObject<{
1684
1716
  navigation: {
1685
1717
  products: import("../properties/navigation/divisionNav.js").ProductNavigation<"default">[];
1686
1718
  directory?: "none" | "card" | "accordion" | undefined;
1719
+ graphql?: undefined;
1687
1720
  global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1688
1721
  } | {
1689
1722
  languages: import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
1690
1723
  directory?: "none" | "card" | "accordion" | undefined;
1724
+ graphql?: undefined;
1691
1725
  global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1692
1726
  } | {
1693
1727
  versions: import("../properties/navigation/divisionNav.js").VersionNavigation<"default">[];
1694
1728
  directory?: "none" | "card" | "accordion" | undefined;
1729
+ graphql?: undefined;
1695
1730
  global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1696
1731
  } | {
1697
1732
  tabs: import("../properties/navigation/divisionNav.js").TabNavigation<"default">[];
1698
1733
  directory?: "none" | "card" | "accordion" | undefined;
1734
+ graphql?: undefined;
1699
1735
  global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1700
1736
  } | {
1701
1737
  dropdowns: import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
1702
1738
  directory?: "none" | "card" | "accordion" | undefined;
1739
+ graphql?: undefined;
1703
1740
  global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1704
1741
  } | {
1705
1742
  anchors: import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
1706
1743
  directory?: "none" | "card" | "accordion" | undefined;
1744
+ graphql?: undefined;
1707
1745
  global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1708
1746
  } | {
1709
1747
  groups: ({
@@ -1720,6 +1758,7 @@ export declare const mintConfigSchema: z.ZodObject<{
1720
1758
  searchable?: boolean | undefined;
1721
1759
  boost?: number | undefined;
1722
1760
  hidden?: boolean | undefined;
1761
+ graphql?: undefined;
1723
1762
  root?: string | undefined;
1724
1763
  } & {
1725
1764
  openapi?: string | string[] | {
@@ -1734,6 +1773,7 @@ export declare const mintConfigSchema: z.ZodObject<{
1734
1773
  pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
1735
1774
  })[];
1736
1775
  directory?: "none" | "card" | "accordion" | undefined;
1776
+ graphql?: undefined;
1737
1777
  global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1738
1778
  } | {
1739
1779
  pages: (string | ({
@@ -1750,6 +1790,7 @@ export declare const mintConfigSchema: z.ZodObject<{
1750
1790
  searchable?: boolean | undefined;
1751
1791
  boost?: number | undefined;
1752
1792
  hidden?: boolean | undefined;
1793
+ graphql?: undefined;
1753
1794
  root?: string | undefined;
1754
1795
  } & {
1755
1796
  openapi?: string | string[] | {
@@ -1764,6 +1805,7 @@ export declare const mintConfigSchema: z.ZodObject<{
1764
1805
  pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
1765
1806
  }))[];
1766
1807
  directory?: "none" | "card" | "accordion" | undefined;
1808
+ graphql?: undefined;
1767
1809
  global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1768
1810
  };
1769
1811
  background?: {
@@ -2075,26 +2117,32 @@ export declare const mintConfigSchema: z.ZodObject<{
2075
2117
  navigation: {
2076
2118
  products: import("../properties/navigation/divisionNav.js").ProductNavigation<"default">[];
2077
2119
  directory?: "none" | "card" | "accordion" | undefined;
2120
+ graphql?: undefined;
2078
2121
  global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
2079
2122
  } | {
2080
2123
  languages: import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
2081
2124
  directory?: "none" | "card" | "accordion" | undefined;
2125
+ graphql?: undefined;
2082
2126
  global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
2083
2127
  } | {
2084
2128
  versions: import("../properties/navigation/divisionNav.js").VersionNavigation<"default">[];
2085
2129
  directory?: "none" | "card" | "accordion" | undefined;
2130
+ graphql?: undefined;
2086
2131
  global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
2087
2132
  } | {
2088
2133
  tabs: import("../properties/navigation/divisionNav.js").TabNavigation<"default">[];
2089
2134
  directory?: "none" | "card" | "accordion" | undefined;
2135
+ graphql?: undefined;
2090
2136
  global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
2091
2137
  } | {
2092
2138
  dropdowns: import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
2093
2139
  directory?: "none" | "card" | "accordion" | undefined;
2140
+ graphql?: undefined;
2094
2141
  global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
2095
2142
  } | {
2096
2143
  anchors: import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
2097
2144
  directory?: "none" | "card" | "accordion" | undefined;
2145
+ graphql?: undefined;
2098
2146
  global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
2099
2147
  } | {
2100
2148
  groups: ({
@@ -2111,6 +2159,7 @@ export declare const mintConfigSchema: z.ZodObject<{
2111
2159
  searchable?: boolean | undefined;
2112
2160
  boost?: number | undefined;
2113
2161
  hidden?: boolean | undefined;
2162
+ graphql?: undefined;
2114
2163
  root?: string | undefined;
2115
2164
  } & {
2116
2165
  openapi?: string | string[] | {
@@ -2125,6 +2174,7 @@ export declare const mintConfigSchema: z.ZodObject<{
2125
2174
  pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
2126
2175
  })[];
2127
2176
  directory?: "none" | "card" | "accordion" | undefined;
2177
+ graphql?: undefined;
2128
2178
  global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
2129
2179
  } | {
2130
2180
  pages: (string | ({
@@ -2141,6 +2191,7 @@ export declare const mintConfigSchema: z.ZodObject<{
2141
2191
  searchable?: boolean | undefined;
2142
2192
  boost?: number | undefined;
2143
2193
  hidden?: boolean | undefined;
2194
+ graphql?: undefined;
2144
2195
  root?: string | undefined;
2145
2196
  } & {
2146
2197
  openapi?: string | string[] | {
@@ -2155,6 +2206,7 @@ export declare const mintConfigSchema: z.ZodObject<{
2155
2206
  pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
2156
2207
  }))[];
2157
2208
  directory?: "none" | "card" | "accordion" | undefined;
2209
+ graphql?: undefined;
2158
2210
  global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
2159
2211
  };
2160
2212
  background?: {