@mintlify/validation 0.1.825 → 0.1.827

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 (35) hide show
  1. package/dist/editor-navigation/conversion/common.d.ts +4 -3
  2. package/dist/editor-navigation/conversion/common.js +9 -1
  3. package/dist/editor-navigation/conversion/docsjson-to-tree.js +3 -1
  4. package/dist/editor-navigation/types.d.ts +7 -3
  5. package/dist/mint-config/schemas/v2/index.d.ts +480 -360
  6. package/dist/mint-config/schemas/v2/properties/navigation/anchors.d.ts +4 -4
  7. package/dist/mint-config/schemas/v2/properties/navigation/divisionNav.d.ts +4 -2
  8. package/dist/mint-config/schemas/v2/properties/navigation/dropdown.d.ts +4 -4
  9. package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +15 -12
  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 +100 -40
  12. package/dist/mint-config/schemas/v2/properties/navigation/languages.d.ts +4 -4
  13. package/dist/mint-config/schemas/v2/properties/navigation/menu.d.ts +4 -4
  14. package/dist/mint-config/schemas/v2/properties/navigation/pages.d.ts +38 -10
  15. package/dist/mint-config/schemas/v2/properties/navigation/products.d.ts +4 -4
  16. package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +2 -2
  17. package/dist/mint-config/schemas/v2/properties/navigation/version.d.ts +4 -4
  18. package/dist/mint-config/schemas/v2/properties/reusable/page.d.ts +39 -0
  19. package/dist/mint-config/schemas/v2/properties/reusable/page.js +7 -0
  20. package/dist/mint-config/schemas/v2/properties/reusable/sdk.d.ts +2 -1
  21. package/dist/mint-config/schemas/v2/properties/reusable/sdk.js +2 -1
  22. package/dist/mint-config/schemas/v2/themes/almond.d.ts +48 -36
  23. package/dist/mint-config/schemas/v2/themes/aspen.d.ts +48 -36
  24. package/dist/mint-config/schemas/v2/themes/linden.d.ts +48 -36
  25. package/dist/mint-config/schemas/v2/themes/luma.d.ts +48 -36
  26. package/dist/mint-config/schemas/v2/themes/maple.d.ts +48 -36
  27. package/dist/mint-config/schemas/v2/themes/mint.d.ts +48 -36
  28. package/dist/mint-config/schemas/v2/themes/palm.d.ts +48 -36
  29. package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +32 -24
  30. package/dist/mint-config/schemas/v2/themes/sequoia.d.ts +48 -36
  31. package/dist/mint-config/schemas/v2/themes/willow.d.ts +48 -36
  32. package/dist/mint-config/validateConfig.d.ts +144 -108
  33. package/dist/tsconfig.build.tsbuildinfo +1 -1
  34. package/dist/types/deployment/deploymentFeedback.d.ts +5 -2
  35. package/package.json +3 -3
@@ -547,7 +547,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
547
547
  sdk?: undefined;
548
548
  global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
549
549
  } | {
550
- groups: ({
550
+ groups: (Omit<{
551
551
  group: string;
552
552
  icon?: string | {
553
553
  name: string;
@@ -557,14 +557,14 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
557
557
  expanded?: boolean | undefined;
558
558
  public?: boolean | undefined;
559
559
  directory?: "none" | "card" | "accordion" | undefined;
560
+ graphql?: undefined;
560
561
  tag?: string | undefined;
561
562
  searchable?: boolean | undefined;
562
563
  boost?: number | undefined;
563
564
  hidden?: boolean | undefined;
564
- graphql?: undefined;
565
565
  sdk?: undefined;
566
566
  root?: string | undefined;
567
- } & {
567
+ }, "sdk"> & {
568
568
  openapi?: string | string[] | {
569
569
  source: string;
570
570
  directory?: string | undefined;
@@ -574,6 +574,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
574
574
  directory?: string | undefined;
575
575
  } | undefined;
576
576
  } & {
577
+ sdk?: z.infer<typeof import("../index.js").sdkSchema>;
577
578
  pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
578
579
  })[];
579
580
  directory?: "none" | "card" | "accordion" | undefined;
@@ -581,7 +582,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
581
582
  sdk?: undefined;
582
583
  global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
583
584
  } | {
584
- pages: (string | ({
585
+ pages: (string | (Omit<{
585
586
  group: string;
586
587
  icon?: string | {
587
588
  name: string;
@@ -591,14 +592,14 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
591
592
  expanded?: boolean | undefined;
592
593
  public?: boolean | undefined;
593
594
  directory?: "none" | "card" | "accordion" | undefined;
595
+ graphql?: undefined;
594
596
  tag?: string | undefined;
595
597
  searchable?: boolean | undefined;
596
598
  boost?: number | undefined;
597
599
  hidden?: boolean | undefined;
598
- graphql?: undefined;
599
600
  sdk?: undefined;
600
601
  root?: string | undefined;
601
- } & {
602
+ }, "sdk"> & {
602
603
  openapi?: string | string[] | {
603
604
  source: string;
604
605
  directory?: string | undefined;
@@ -608,6 +609,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
608
609
  directory?: string | undefined;
609
610
  } | undefined;
610
611
  } & {
612
+ sdk?: z.infer<typeof import("../index.js").sdkSchema>;
611
613
  pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
612
614
  }))[];
613
615
  directory?: "none" | "card" | "accordion" | undefined;
@@ -963,7 +965,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
963
965
  sdk?: undefined;
964
966
  global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
965
967
  } | {
966
- groups: ({
968
+ groups: (Omit<{
967
969
  group: string;
968
970
  icon?: string | {
969
971
  name: string;
@@ -973,14 +975,14 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
973
975
  expanded?: boolean | undefined;
974
976
  public?: boolean | undefined;
975
977
  directory?: "none" | "card" | "accordion" | undefined;
978
+ graphql?: undefined;
976
979
  tag?: string | undefined;
977
980
  searchable?: boolean | undefined;
978
981
  boost?: number | undefined;
979
982
  hidden?: boolean | undefined;
980
- graphql?: undefined;
981
983
  sdk?: undefined;
982
984
  root?: string | undefined;
983
- } & {
985
+ }, "sdk"> & {
984
986
  openapi?: string | string[] | {
985
987
  source: string;
986
988
  directory?: string | undefined;
@@ -990,6 +992,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
990
992
  directory?: string | undefined;
991
993
  } | undefined;
992
994
  } & {
995
+ sdk?: z.infer<typeof import("../index.js").sdkSchema>;
993
996
  pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
994
997
  })[];
995
998
  directory?: "none" | "card" | "accordion" | undefined;
@@ -997,7 +1000,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
997
1000
  sdk?: undefined;
998
1001
  global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
999
1002
  } | {
1000
- pages: (string | ({
1003
+ pages: (string | (Omit<{
1001
1004
  group: string;
1002
1005
  icon?: string | {
1003
1006
  name: string;
@@ -1007,14 +1010,14 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1007
1010
  expanded?: boolean | undefined;
1008
1011
  public?: boolean | undefined;
1009
1012
  directory?: "none" | "card" | "accordion" | undefined;
1013
+ graphql?: undefined;
1010
1014
  tag?: string | undefined;
1011
1015
  searchable?: boolean | undefined;
1012
1016
  boost?: number | undefined;
1013
1017
  hidden?: boolean | undefined;
1014
- graphql?: undefined;
1015
1018
  sdk?: undefined;
1016
1019
  root?: string | undefined;
1017
- } & {
1020
+ }, "sdk"> & {
1018
1021
  openapi?: string | string[] | {
1019
1022
  source: string;
1020
1023
  directory?: string | undefined;
@@ -1024,6 +1027,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1024
1027
  directory?: string | undefined;
1025
1028
  } | undefined;
1026
1029
  } & {
1030
+ sdk?: z.infer<typeof import("../index.js").sdkSchema>;
1027
1031
  pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
1028
1032
  }))[];
1029
1033
  directory?: "none" | "card" | "accordion" | undefined;
@@ -1379,7 +1383,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1379
1383
  sdk?: undefined;
1380
1384
  global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1381
1385
  } | {
1382
- groups: ({
1386
+ groups: (Omit<{
1383
1387
  group: string;
1384
1388
  icon?: string | {
1385
1389
  name: string;
@@ -1389,14 +1393,14 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1389
1393
  expanded?: boolean | undefined;
1390
1394
  public?: boolean | undefined;
1391
1395
  directory?: "none" | "card" | "accordion" | undefined;
1396
+ graphql?: undefined;
1392
1397
  tag?: string | undefined;
1393
1398
  searchable?: boolean | undefined;
1394
1399
  boost?: number | undefined;
1395
1400
  hidden?: boolean | undefined;
1396
- graphql?: undefined;
1397
1401
  sdk?: undefined;
1398
1402
  root?: string | undefined;
1399
- } & {
1403
+ }, "sdk"> & {
1400
1404
  openapi?: string | string[] | {
1401
1405
  source: string;
1402
1406
  directory?: string | undefined;
@@ -1406,6 +1410,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1406
1410
  directory?: string | undefined;
1407
1411
  } | undefined;
1408
1412
  } & {
1413
+ sdk?: z.infer<typeof import("../index.js").sdkSchema>;
1409
1414
  pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
1410
1415
  })[];
1411
1416
  directory?: "none" | "card" | "accordion" | undefined;
@@ -1413,7 +1418,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1413
1418
  sdk?: undefined;
1414
1419
  global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1415
1420
  } | {
1416
- pages: (string | ({
1421
+ pages: (string | (Omit<{
1417
1422
  group: string;
1418
1423
  icon?: string | {
1419
1424
  name: string;
@@ -1423,14 +1428,14 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1423
1428
  expanded?: boolean | undefined;
1424
1429
  public?: boolean | undefined;
1425
1430
  directory?: "none" | "card" | "accordion" | undefined;
1431
+ graphql?: undefined;
1426
1432
  tag?: string | undefined;
1427
1433
  searchable?: boolean | undefined;
1428
1434
  boost?: number | undefined;
1429
1435
  hidden?: boolean | undefined;
1430
- graphql?: undefined;
1431
1436
  sdk?: undefined;
1432
1437
  root?: string | undefined;
1433
- } & {
1438
+ }, "sdk"> & {
1434
1439
  openapi?: string | string[] | {
1435
1440
  source: string;
1436
1441
  directory?: string | undefined;
@@ -1440,6 +1445,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1440
1445
  directory?: string | undefined;
1441
1446
  } | undefined;
1442
1447
  } & {
1448
+ sdk?: z.infer<typeof import("../index.js").sdkSchema>;
1443
1449
  pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
1444
1450
  }))[];
1445
1451
  directory?: "none" | "card" | "accordion" | undefined;
@@ -1795,7 +1801,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1795
1801
  sdk?: undefined;
1796
1802
  global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1797
1803
  } | {
1798
- groups: ({
1804
+ groups: (Omit<{
1799
1805
  group: string;
1800
1806
  icon?: string | {
1801
1807
  name: string;
@@ -1805,14 +1811,14 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1805
1811
  expanded?: boolean | undefined;
1806
1812
  public?: boolean | undefined;
1807
1813
  directory?: "none" | "card" | "accordion" | undefined;
1814
+ graphql?: undefined;
1808
1815
  tag?: string | undefined;
1809
1816
  searchable?: boolean | undefined;
1810
1817
  boost?: number | undefined;
1811
1818
  hidden?: boolean | undefined;
1812
- graphql?: undefined;
1813
1819
  sdk?: undefined;
1814
1820
  root?: string | undefined;
1815
- } & {
1821
+ }, "sdk"> & {
1816
1822
  openapi?: string | string[] | {
1817
1823
  source: string;
1818
1824
  directory?: string | undefined;
@@ -1822,6 +1828,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1822
1828
  directory?: string | undefined;
1823
1829
  } | undefined;
1824
1830
  } & {
1831
+ sdk?: z.infer<typeof import("../index.js").sdkSchema>;
1825
1832
  pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
1826
1833
  })[];
1827
1834
  directory?: "none" | "card" | "accordion" | undefined;
@@ -1829,7 +1836,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1829
1836
  sdk?: undefined;
1830
1837
  global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1831
1838
  } | {
1832
- pages: (string | ({
1839
+ pages: (string | (Omit<{
1833
1840
  group: string;
1834
1841
  icon?: string | {
1835
1842
  name: string;
@@ -1839,14 +1846,14 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1839
1846
  expanded?: boolean | undefined;
1840
1847
  public?: boolean | undefined;
1841
1848
  directory?: "none" | "card" | "accordion" | undefined;
1849
+ graphql?: undefined;
1842
1850
  tag?: string | undefined;
1843
1851
  searchable?: boolean | undefined;
1844
1852
  boost?: number | undefined;
1845
1853
  hidden?: boolean | undefined;
1846
- graphql?: undefined;
1847
1854
  sdk?: undefined;
1848
1855
  root?: string | undefined;
1849
- } & {
1856
+ }, "sdk"> & {
1850
1857
  openapi?: string | string[] | {
1851
1858
  source: string;
1852
1859
  directory?: string | undefined;
@@ -1856,6 +1863,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1856
1863
  directory?: string | undefined;
1857
1864
  } | undefined;
1858
1865
  } & {
1866
+ sdk?: z.infer<typeof import("../index.js").sdkSchema>;
1859
1867
  pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
1860
1868
  }))[];
1861
1869
  directory?: "none" | "card" | "accordion" | undefined;
@@ -2211,7 +2219,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2211
2219
  sdk?: undefined;
2212
2220
  global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
2213
2221
  } | {
2214
- groups: ({
2222
+ groups: (Omit<{
2215
2223
  group: string;
2216
2224
  icon?: string | {
2217
2225
  name: string;
@@ -2221,14 +2229,14 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2221
2229
  expanded?: boolean | undefined;
2222
2230
  public?: boolean | undefined;
2223
2231
  directory?: "none" | "card" | "accordion" | undefined;
2232
+ graphql?: undefined;
2224
2233
  tag?: string | undefined;
2225
2234
  searchable?: boolean | undefined;
2226
2235
  boost?: number | undefined;
2227
2236
  hidden?: boolean | undefined;
2228
- graphql?: undefined;
2229
2237
  sdk?: undefined;
2230
2238
  root?: string | undefined;
2231
- } & {
2239
+ }, "sdk"> & {
2232
2240
  openapi?: string | string[] | {
2233
2241
  source: string;
2234
2242
  directory?: string | undefined;
@@ -2238,6 +2246,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2238
2246
  directory?: string | undefined;
2239
2247
  } | undefined;
2240
2248
  } & {
2249
+ sdk?: z.infer<typeof import("../index.js").sdkSchema>;
2241
2250
  pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
2242
2251
  })[];
2243
2252
  directory?: "none" | "card" | "accordion" | undefined;
@@ -2245,7 +2254,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2245
2254
  sdk?: undefined;
2246
2255
  global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
2247
2256
  } | {
2248
- pages: (string | ({
2257
+ pages: (string | (Omit<{
2249
2258
  group: string;
2250
2259
  icon?: string | {
2251
2260
  name: string;
@@ -2255,14 +2264,14 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2255
2264
  expanded?: boolean | undefined;
2256
2265
  public?: boolean | undefined;
2257
2266
  directory?: "none" | "card" | "accordion" | undefined;
2267
+ graphql?: undefined;
2258
2268
  tag?: string | undefined;
2259
2269
  searchable?: boolean | undefined;
2260
2270
  boost?: number | undefined;
2261
2271
  hidden?: boolean | undefined;
2262
- graphql?: undefined;
2263
2272
  sdk?: undefined;
2264
2273
  root?: string | undefined;
2265
- } & {
2274
+ }, "sdk"> & {
2266
2275
  openapi?: string | string[] | {
2267
2276
  source: string;
2268
2277
  directory?: string | undefined;
@@ -2272,6 +2281,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2272
2281
  directory?: string | undefined;
2273
2282
  } | undefined;
2274
2283
  } & {
2284
+ sdk?: z.infer<typeof import("../index.js").sdkSchema>;
2275
2285
  pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
2276
2286
  }))[];
2277
2287
  directory?: "none" | "card" | "accordion" | undefined;
@@ -2627,7 +2637,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2627
2637
  sdk?: undefined;
2628
2638
  global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
2629
2639
  } | {
2630
- groups: ({
2640
+ groups: (Omit<{
2631
2641
  group: string;
2632
2642
  icon?: string | {
2633
2643
  name: string;
@@ -2637,14 +2647,14 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2637
2647
  expanded?: boolean | undefined;
2638
2648
  public?: boolean | undefined;
2639
2649
  directory?: "none" | "card" | "accordion" | undefined;
2650
+ graphql?: undefined;
2640
2651
  tag?: string | undefined;
2641
2652
  searchable?: boolean | undefined;
2642
2653
  boost?: number | undefined;
2643
2654
  hidden?: boolean | undefined;
2644
- graphql?: undefined;
2645
2655
  sdk?: undefined;
2646
2656
  root?: string | undefined;
2647
- } & {
2657
+ }, "sdk"> & {
2648
2658
  openapi?: string | string[] | {
2649
2659
  source: string;
2650
2660
  directory?: string | undefined;
@@ -2654,6 +2664,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2654
2664
  directory?: string | undefined;
2655
2665
  } | undefined;
2656
2666
  } & {
2667
+ sdk?: z.infer<typeof import("../index.js").sdkSchema>;
2657
2668
  pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
2658
2669
  })[];
2659
2670
  directory?: "none" | "card" | "accordion" | undefined;
@@ -2661,7 +2672,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2661
2672
  sdk?: undefined;
2662
2673
  global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
2663
2674
  } | {
2664
- pages: (string | ({
2675
+ pages: (string | (Omit<{
2665
2676
  group: string;
2666
2677
  icon?: string | {
2667
2678
  name: string;
@@ -2671,14 +2682,14 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2671
2682
  expanded?: boolean | undefined;
2672
2683
  public?: boolean | undefined;
2673
2684
  directory?: "none" | "card" | "accordion" | undefined;
2685
+ graphql?: undefined;
2674
2686
  tag?: string | undefined;
2675
2687
  searchable?: boolean | undefined;
2676
2688
  boost?: number | undefined;
2677
2689
  hidden?: boolean | undefined;
2678
- graphql?: undefined;
2679
2690
  sdk?: undefined;
2680
2691
  root?: string | undefined;
2681
- } & {
2692
+ }, "sdk"> & {
2682
2693
  openapi?: string | string[] | {
2683
2694
  source: string;
2684
2695
  directory?: string | undefined;
@@ -2688,6 +2699,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2688
2699
  directory?: string | undefined;
2689
2700
  } | undefined;
2690
2701
  } & {
2702
+ sdk?: z.infer<typeof import("../index.js").sdkSchema>;
2691
2703
  pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
2692
2704
  }))[];
2693
2705
  directory?: "none" | "card" | "accordion" | undefined;
@@ -3043,7 +3055,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
3043
3055
  sdk?: undefined;
3044
3056
  global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
3045
3057
  } | {
3046
- groups: ({
3058
+ groups: (Omit<{
3047
3059
  group: string;
3048
3060
  icon?: string | {
3049
3061
  name: string;
@@ -3053,14 +3065,14 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
3053
3065
  expanded?: boolean | undefined;
3054
3066
  public?: boolean | undefined;
3055
3067
  directory?: "none" | "card" | "accordion" | undefined;
3068
+ graphql?: undefined;
3056
3069
  tag?: string | undefined;
3057
3070
  searchable?: boolean | undefined;
3058
3071
  boost?: number | undefined;
3059
3072
  hidden?: boolean | undefined;
3060
- graphql?: undefined;
3061
3073
  sdk?: undefined;
3062
3074
  root?: string | undefined;
3063
- } & {
3075
+ }, "sdk"> & {
3064
3076
  openapi?: string | string[] | {
3065
3077
  source: string;
3066
3078
  directory?: string | undefined;
@@ -3070,6 +3082,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
3070
3082
  directory?: string | undefined;
3071
3083
  } | undefined;
3072
3084
  } & {
3085
+ sdk?: z.infer<typeof import("../index.js").sdkSchema>;
3073
3086
  pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
3074
3087
  })[];
3075
3088
  directory?: "none" | "card" | "accordion" | undefined;
@@ -3077,7 +3090,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
3077
3090
  sdk?: undefined;
3078
3091
  global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
3079
3092
  } | {
3080
- pages: (string | ({
3093
+ pages: (string | (Omit<{
3081
3094
  group: string;
3082
3095
  icon?: string | {
3083
3096
  name: string;
@@ -3087,14 +3100,14 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
3087
3100
  expanded?: boolean | undefined;
3088
3101
  public?: boolean | undefined;
3089
3102
  directory?: "none" | "card" | "accordion" | undefined;
3103
+ graphql?: undefined;
3090
3104
  tag?: string | undefined;
3091
3105
  searchable?: boolean | undefined;
3092
3106
  boost?: number | undefined;
3093
3107
  hidden?: boolean | undefined;
3094
- graphql?: undefined;
3095
3108
  sdk?: undefined;
3096
3109
  root?: string | undefined;
3097
- } & {
3110
+ }, "sdk"> & {
3098
3111
  openapi?: string | string[] | {
3099
3112
  source: string;
3100
3113
  directory?: string | undefined;
@@ -3104,6 +3117,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
3104
3117
  directory?: string | undefined;
3105
3118
  } | undefined;
3106
3119
  } & {
3120
+ sdk?: z.infer<typeof import("../index.js").sdkSchema>;
3107
3121
  pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
3108
3122
  }))[];
3109
3123
  directory?: "none" | "card" | "accordion" | undefined;
@@ -3459,7 +3473,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
3459
3473
  sdk?: undefined;
3460
3474
  global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
3461
3475
  } | {
3462
- groups: ({
3476
+ groups: (Omit<{
3463
3477
  group: string;
3464
3478
  icon?: string | {
3465
3479
  name: string;
@@ -3469,14 +3483,14 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
3469
3483
  expanded?: boolean | undefined;
3470
3484
  public?: boolean | undefined;
3471
3485
  directory?: "none" | "card" | "accordion" | undefined;
3486
+ graphql?: undefined;
3472
3487
  tag?: string | undefined;
3473
3488
  searchable?: boolean | undefined;
3474
3489
  boost?: number | undefined;
3475
3490
  hidden?: boolean | undefined;
3476
- graphql?: undefined;
3477
3491
  sdk?: undefined;
3478
3492
  root?: string | undefined;
3479
- } & {
3493
+ }, "sdk"> & {
3480
3494
  openapi?: string | string[] | {
3481
3495
  source: string;
3482
3496
  directory?: string | undefined;
@@ -3486,6 +3500,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
3486
3500
  directory?: string | undefined;
3487
3501
  } | undefined;
3488
3502
  } & {
3503
+ sdk?: z.infer<typeof import("../index.js").sdkSchema>;
3489
3504
  pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
3490
3505
  })[];
3491
3506
  directory?: "none" | "card" | "accordion" | undefined;
@@ -3493,7 +3508,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
3493
3508
  sdk?: undefined;
3494
3509
  global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
3495
3510
  } | {
3496
- pages: (string | ({
3511
+ pages: (string | (Omit<{
3497
3512
  group: string;
3498
3513
  icon?: string | {
3499
3514
  name: string;
@@ -3503,14 +3518,14 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
3503
3518
  expanded?: boolean | undefined;
3504
3519
  public?: boolean | undefined;
3505
3520
  directory?: "none" | "card" | "accordion" | undefined;
3521
+ graphql?: undefined;
3506
3522
  tag?: string | undefined;
3507
3523
  searchable?: boolean | undefined;
3508
3524
  boost?: number | undefined;
3509
3525
  hidden?: boolean | undefined;
3510
- graphql?: undefined;
3511
3526
  sdk?: undefined;
3512
3527
  root?: string | undefined;
3513
- } & {
3528
+ }, "sdk"> & {
3514
3529
  openapi?: string | string[] | {
3515
3530
  source: string;
3516
3531
  directory?: string | undefined;
@@ -3520,6 +3535,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
3520
3535
  directory?: string | undefined;
3521
3536
  } | undefined;
3522
3537
  } & {
3538
+ sdk?: z.infer<typeof import("../index.js").sdkSchema>;
3523
3539
  pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
3524
3540
  }))[];
3525
3541
  directory?: "none" | "card" | "accordion" | undefined;
@@ -3875,7 +3891,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
3875
3891
  sdk?: undefined;
3876
3892
  global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
3877
3893
  } | {
3878
- groups: ({
3894
+ groups: (Omit<{
3879
3895
  group: string;
3880
3896
  icon?: string | {
3881
3897
  name: string;
@@ -3885,14 +3901,14 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
3885
3901
  expanded?: boolean | undefined;
3886
3902
  public?: boolean | undefined;
3887
3903
  directory?: "none" | "card" | "accordion" | undefined;
3904
+ graphql?: undefined;
3888
3905
  tag?: string | undefined;
3889
3906
  searchable?: boolean | undefined;
3890
3907
  boost?: number | undefined;
3891
3908
  hidden?: boolean | undefined;
3892
- graphql?: undefined;
3893
3909
  sdk?: undefined;
3894
3910
  root?: string | undefined;
3895
- } & {
3911
+ }, "sdk"> & {
3896
3912
  openapi?: string | string[] | {
3897
3913
  source: string;
3898
3914
  directory?: string | undefined;
@@ -3902,6 +3918,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
3902
3918
  directory?: string | undefined;
3903
3919
  } | undefined;
3904
3920
  } & {
3921
+ sdk?: z.infer<typeof import("../index.js").sdkSchema>;
3905
3922
  pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
3906
3923
  })[];
3907
3924
  directory?: "none" | "card" | "accordion" | undefined;
@@ -3909,7 +3926,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
3909
3926
  sdk?: undefined;
3910
3927
  global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
3911
3928
  } | {
3912
- pages: (string | ({
3929
+ pages: (string | (Omit<{
3913
3930
  group: string;
3914
3931
  icon?: string | {
3915
3932
  name: string;
@@ -3919,14 +3936,14 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
3919
3936
  expanded?: boolean | undefined;
3920
3937
  public?: boolean | undefined;
3921
3938
  directory?: "none" | "card" | "accordion" | undefined;
3939
+ graphql?: undefined;
3922
3940
  tag?: string | undefined;
3923
3941
  searchable?: boolean | undefined;
3924
3942
  boost?: number | undefined;
3925
3943
  hidden?: boolean | undefined;
3926
- graphql?: undefined;
3927
3944
  sdk?: undefined;
3928
3945
  root?: string | undefined;
3929
- } & {
3946
+ }, "sdk"> & {
3930
3947
  openapi?: string | string[] | {
3931
3948
  source: string;
3932
3949
  directory?: string | undefined;
@@ -3936,6 +3953,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
3936
3953
  directory?: string | undefined;
3937
3954
  } | undefined;
3938
3955
  } & {
3956
+ sdk?: z.infer<typeof import("../index.js").sdkSchema>;
3939
3957
  pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
3940
3958
  }))[];
3941
3959
  directory?: "none" | "card" | "accordion" | undefined;
@@ -4301,7 +4319,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
4301
4319
  sdk?: undefined;
4302
4320
  global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
4303
4321
  } | {
4304
- groups: ({
4322
+ groups: (Omit<{
4305
4323
  group: string;
4306
4324
  icon?: string | {
4307
4325
  name: string;
@@ -4311,14 +4329,14 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
4311
4329
  expanded?: boolean | undefined;
4312
4330
  public?: boolean | undefined;
4313
4331
  directory?: "none" | "card" | "accordion" | undefined;
4332
+ graphql?: undefined;
4314
4333
  tag?: string | undefined;
4315
4334
  searchable?: boolean | undefined;
4316
4335
  boost?: number | undefined;
4317
4336
  hidden?: boolean | undefined;
4318
- graphql?: undefined;
4319
4337
  sdk?: undefined;
4320
4338
  root?: string | undefined;
4321
- } & {
4339
+ }, "sdk"> & {
4322
4340
  openapi?: string | string[] | {
4323
4341
  source: string;
4324
4342
  directory?: string | undefined;
@@ -4328,6 +4346,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
4328
4346
  directory?: string | undefined;
4329
4347
  } | undefined;
4330
4348
  } & {
4349
+ sdk?: z.infer<typeof import("../index.js").sdkSchema>;
4331
4350
  pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
4332
4351
  })[];
4333
4352
  directory?: "none" | "card" | "accordion" | undefined;
@@ -4335,7 +4354,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
4335
4354
  sdk?: undefined;
4336
4355
  global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
4337
4356
  } | {
4338
- pages: (string | ({
4357
+ pages: (string | (Omit<{
4339
4358
  group: string;
4340
4359
  icon?: string | {
4341
4360
  name: string;
@@ -4345,14 +4364,14 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
4345
4364
  expanded?: boolean | undefined;
4346
4365
  public?: boolean | undefined;
4347
4366
  directory?: "none" | "card" | "accordion" | undefined;
4367
+ graphql?: undefined;
4348
4368
  tag?: string | undefined;
4349
4369
  searchable?: boolean | undefined;
4350
4370
  boost?: number | undefined;
4351
4371
  hidden?: boolean | undefined;
4352
- graphql?: undefined;
4353
4372
  sdk?: undefined;
4354
4373
  root?: string | undefined;
4355
- } & {
4374
+ }, "sdk"> & {
4356
4375
  openapi?: string | string[] | {
4357
4376
  source: string;
4358
4377
  directory?: string | undefined;
@@ -4362,6 +4381,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
4362
4381
  directory?: string | undefined;
4363
4382
  } | undefined;
4364
4383
  } & {
4384
+ sdk?: z.infer<typeof import("../index.js").sdkSchema>;
4365
4385
  pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
4366
4386
  }))[];
4367
4387
  directory?: "none" | "card" | "accordion" | undefined;
@@ -4717,7 +4737,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
4717
4737
  sdk?: undefined;
4718
4738
  global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
4719
4739
  } | {
4720
- groups: ({
4740
+ groups: (Omit<{
4721
4741
  group: string;
4722
4742
  icon?: string | {
4723
4743
  name: string;
@@ -4727,14 +4747,14 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
4727
4747
  expanded?: boolean | undefined;
4728
4748
  public?: boolean | undefined;
4729
4749
  directory?: "none" | "card" | "accordion" | undefined;
4750
+ graphql?: undefined;
4730
4751
  tag?: string | undefined;
4731
4752
  searchable?: boolean | undefined;
4732
4753
  boost?: number | undefined;
4733
4754
  hidden?: boolean | undefined;
4734
- graphql?: undefined;
4735
4755
  sdk?: undefined;
4736
4756
  root?: string | undefined;
4737
- } & {
4757
+ }, "sdk"> & {
4738
4758
  openapi?: string | string[] | {
4739
4759
  source: string;
4740
4760
  directory?: string | undefined;
@@ -4744,6 +4764,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
4744
4764
  directory?: string | undefined;
4745
4765
  } | undefined;
4746
4766
  } & {
4767
+ sdk?: z.infer<typeof import("../index.js").sdkSchema>;
4747
4768
  pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
4748
4769
  })[];
4749
4770
  directory?: "none" | "card" | "accordion" | undefined;
@@ -4751,7 +4772,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
4751
4772
  sdk?: undefined;
4752
4773
  global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
4753
4774
  } | {
4754
- pages: (string | ({
4775
+ pages: (string | (Omit<{
4755
4776
  group: string;
4756
4777
  icon?: string | {
4757
4778
  name: string;
@@ -4761,14 +4782,14 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
4761
4782
  expanded?: boolean | undefined;
4762
4783
  public?: boolean | undefined;
4763
4784
  directory?: "none" | "card" | "accordion" | undefined;
4785
+ graphql?: undefined;
4764
4786
  tag?: string | undefined;
4765
4787
  searchable?: boolean | undefined;
4766
4788
  boost?: number | undefined;
4767
4789
  hidden?: boolean | undefined;
4768
- graphql?: undefined;
4769
4790
  sdk?: undefined;
4770
4791
  root?: string | undefined;
4771
- } & {
4792
+ }, "sdk"> & {
4772
4793
  openapi?: string | string[] | {
4773
4794
  source: string;
4774
4795
  directory?: string | undefined;
@@ -4778,6 +4799,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
4778
4799
  directory?: string | undefined;
4779
4800
  } | undefined;
4780
4801
  } & {
4802
+ sdk?: z.infer<typeof import("../index.js").sdkSchema>;
4781
4803
  pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
4782
4804
  }))[];
4783
4805
  directory?: "none" | "card" | "accordion" | undefined;
@@ -5133,7 +5155,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
5133
5155
  sdk?: undefined;
5134
5156
  global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
5135
5157
  } | {
5136
- groups: ({
5158
+ groups: (Omit<{
5137
5159
  group: string;
5138
5160
  icon?: string | {
5139
5161
  name: string;
@@ -5143,14 +5165,14 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
5143
5165
  expanded?: boolean | undefined;
5144
5166
  public?: boolean | undefined;
5145
5167
  directory?: "none" | "card" | "accordion" | undefined;
5168
+ graphql?: undefined;
5146
5169
  tag?: string | undefined;
5147
5170
  searchable?: boolean | undefined;
5148
5171
  boost?: number | undefined;
5149
5172
  hidden?: boolean | undefined;
5150
- graphql?: undefined;
5151
5173
  sdk?: undefined;
5152
5174
  root?: string | undefined;
5153
- } & {
5175
+ }, "sdk"> & {
5154
5176
  openapi?: string | string[] | {
5155
5177
  source: string;
5156
5178
  directory?: string | undefined;
@@ -5160,6 +5182,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
5160
5182
  directory?: string | undefined;
5161
5183
  } | undefined;
5162
5184
  } & {
5185
+ sdk?: z.infer<typeof import("../index.js").sdkSchema>;
5163
5186
  pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
5164
5187
  })[];
5165
5188
  directory?: "none" | "card" | "accordion" | undefined;
@@ -5167,7 +5190,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
5167
5190
  sdk?: undefined;
5168
5191
  global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
5169
5192
  } | {
5170
- pages: (string | ({
5193
+ pages: (string | (Omit<{
5171
5194
  group: string;
5172
5195
  icon?: string | {
5173
5196
  name: string;
@@ -5177,14 +5200,14 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
5177
5200
  expanded?: boolean | undefined;
5178
5201
  public?: boolean | undefined;
5179
5202
  directory?: "none" | "card" | "accordion" | undefined;
5203
+ graphql?: undefined;
5180
5204
  tag?: string | undefined;
5181
5205
  searchable?: boolean | undefined;
5182
5206
  boost?: number | undefined;
5183
5207
  hidden?: boolean | undefined;
5184
- graphql?: undefined;
5185
5208
  sdk?: undefined;
5186
5209
  root?: string | undefined;
5187
- } & {
5210
+ }, "sdk"> & {
5188
5211
  openapi?: string | string[] | {
5189
5212
  source: string;
5190
5213
  directory?: string | undefined;
@@ -5194,6 +5217,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
5194
5217
  directory?: string | undefined;
5195
5218
  } | undefined;
5196
5219
  } & {
5220
+ sdk?: z.infer<typeof import("../index.js").sdkSchema>;
5197
5221
  pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
5198
5222
  }))[];
5199
5223
  directory?: "none" | "card" | "accordion" | undefined;
@@ -5549,7 +5573,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
5549
5573
  sdk?: undefined;
5550
5574
  global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
5551
5575
  } | {
5552
- groups: ({
5576
+ groups: (Omit<{
5553
5577
  group: string;
5554
5578
  icon?: string | {
5555
5579
  name: string;
@@ -5559,14 +5583,14 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
5559
5583
  expanded?: boolean | undefined;
5560
5584
  public?: boolean | undefined;
5561
5585
  directory?: "none" | "card" | "accordion" | undefined;
5586
+ graphql?: undefined;
5562
5587
  tag?: string | undefined;
5563
5588
  searchable?: boolean | undefined;
5564
5589
  boost?: number | undefined;
5565
5590
  hidden?: boolean | undefined;
5566
- graphql?: undefined;
5567
5591
  sdk?: undefined;
5568
5592
  root?: string | undefined;
5569
- } & {
5593
+ }, "sdk"> & {
5570
5594
  openapi?: string | string[] | {
5571
5595
  source: string;
5572
5596
  directory?: string | undefined;
@@ -5576,6 +5600,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
5576
5600
  directory?: string | undefined;
5577
5601
  } | undefined;
5578
5602
  } & {
5603
+ sdk?: z.infer<typeof import("../index.js").sdkSchema>;
5579
5604
  pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
5580
5605
  })[];
5581
5606
  directory?: "none" | "card" | "accordion" | undefined;
@@ -5583,7 +5608,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
5583
5608
  sdk?: undefined;
5584
5609
  global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
5585
5610
  } | {
5586
- pages: (string | ({
5611
+ pages: (string | (Omit<{
5587
5612
  group: string;
5588
5613
  icon?: string | {
5589
5614
  name: string;
@@ -5593,14 +5618,14 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
5593
5618
  expanded?: boolean | undefined;
5594
5619
  public?: boolean | undefined;
5595
5620
  directory?: "none" | "card" | "accordion" | undefined;
5621
+ graphql?: undefined;
5596
5622
  tag?: string | undefined;
5597
5623
  searchable?: boolean | undefined;
5598
5624
  boost?: number | undefined;
5599
5625
  hidden?: boolean | undefined;
5600
- graphql?: undefined;
5601
5626
  sdk?: undefined;
5602
5627
  root?: string | undefined;
5603
- } & {
5628
+ }, "sdk"> & {
5604
5629
  openapi?: string | string[] | {
5605
5630
  source: string;
5606
5631
  directory?: string | undefined;
@@ -5610,6 +5635,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
5610
5635
  directory?: string | undefined;
5611
5636
  } | undefined;
5612
5637
  } & {
5638
+ sdk?: z.infer<typeof import("../index.js").sdkSchema>;
5613
5639
  pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
5614
5640
  }))[];
5615
5641
  directory?: "none" | "card" | "accordion" | undefined;
@@ -5965,7 +5991,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
5965
5991
  sdk?: undefined;
5966
5992
  global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
5967
5993
  } | {
5968
- groups: ({
5994
+ groups: (Omit<{
5969
5995
  group: string;
5970
5996
  icon?: string | {
5971
5997
  name: string;
@@ -5975,14 +6001,14 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
5975
6001
  expanded?: boolean | undefined;
5976
6002
  public?: boolean | undefined;
5977
6003
  directory?: "none" | "card" | "accordion" | undefined;
6004
+ graphql?: undefined;
5978
6005
  tag?: string | undefined;
5979
6006
  searchable?: boolean | undefined;
5980
6007
  boost?: number | undefined;
5981
6008
  hidden?: boolean | undefined;
5982
- graphql?: undefined;
5983
6009
  sdk?: undefined;
5984
6010
  root?: string | undefined;
5985
- } & {
6011
+ }, "sdk"> & {
5986
6012
  openapi?: string | string[] | {
5987
6013
  source: string;
5988
6014
  directory?: string | undefined;
@@ -5992,6 +6018,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
5992
6018
  directory?: string | undefined;
5993
6019
  } | undefined;
5994
6020
  } & {
6021
+ sdk?: z.infer<typeof import("../index.js").sdkSchema>;
5995
6022
  pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
5996
6023
  })[];
5997
6024
  directory?: "none" | "card" | "accordion" | undefined;
@@ -5999,7 +6026,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
5999
6026
  sdk?: undefined;
6000
6027
  global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
6001
6028
  } | {
6002
- pages: (string | ({
6029
+ pages: (string | (Omit<{
6003
6030
  group: string;
6004
6031
  icon?: string | {
6005
6032
  name: string;
@@ -6009,14 +6036,14 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
6009
6036
  expanded?: boolean | undefined;
6010
6037
  public?: boolean | undefined;
6011
6038
  directory?: "none" | "card" | "accordion" | undefined;
6039
+ graphql?: undefined;
6012
6040
  tag?: string | undefined;
6013
6041
  searchable?: boolean | undefined;
6014
6042
  boost?: number | undefined;
6015
6043
  hidden?: boolean | undefined;
6016
- graphql?: undefined;
6017
6044
  sdk?: undefined;
6018
6045
  root?: string | undefined;
6019
- } & {
6046
+ }, "sdk"> & {
6020
6047
  openapi?: string | string[] | {
6021
6048
  source: string;
6022
6049
  directory?: string | undefined;
@@ -6026,6 +6053,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
6026
6053
  directory?: string | undefined;
6027
6054
  } | undefined;
6028
6055
  } & {
6056
+ sdk?: z.infer<typeof import("../index.js").sdkSchema>;
6029
6057
  pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
6030
6058
  }))[];
6031
6059
  directory?: "none" | "card" | "accordion" | undefined;
@@ -6381,7 +6409,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
6381
6409
  sdk?: undefined;
6382
6410
  global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
6383
6411
  } | {
6384
- groups: ({
6412
+ groups: (Omit<{
6385
6413
  group: string;
6386
6414
  icon?: string | {
6387
6415
  name: string;
@@ -6391,14 +6419,14 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
6391
6419
  expanded?: boolean | undefined;
6392
6420
  public?: boolean | undefined;
6393
6421
  directory?: "none" | "card" | "accordion" | undefined;
6422
+ graphql?: undefined;
6394
6423
  tag?: string | undefined;
6395
6424
  searchable?: boolean | undefined;
6396
6425
  boost?: number | undefined;
6397
6426
  hidden?: boolean | undefined;
6398
- graphql?: undefined;
6399
6427
  sdk?: undefined;
6400
6428
  root?: string | undefined;
6401
- } & {
6429
+ }, "sdk"> & {
6402
6430
  openapi?: string | string[] | {
6403
6431
  source: string;
6404
6432
  directory?: string | undefined;
@@ -6408,6 +6436,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
6408
6436
  directory?: string | undefined;
6409
6437
  } | undefined;
6410
6438
  } & {
6439
+ sdk?: z.infer<typeof import("../index.js").sdkSchema>;
6411
6440
  pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
6412
6441
  })[];
6413
6442
  directory?: "none" | "card" | "accordion" | undefined;
@@ -6415,7 +6444,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
6415
6444
  sdk?: undefined;
6416
6445
  global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
6417
6446
  } | {
6418
- pages: (string | ({
6447
+ pages: (string | (Omit<{
6419
6448
  group: string;
6420
6449
  icon?: string | {
6421
6450
  name: string;
@@ -6425,14 +6454,14 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
6425
6454
  expanded?: boolean | undefined;
6426
6455
  public?: boolean | undefined;
6427
6456
  directory?: "none" | "card" | "accordion" | undefined;
6457
+ graphql?: undefined;
6428
6458
  tag?: string | undefined;
6429
6459
  searchable?: boolean | undefined;
6430
6460
  boost?: number | undefined;
6431
6461
  hidden?: boolean | undefined;
6432
- graphql?: undefined;
6433
6462
  sdk?: undefined;
6434
6463
  root?: string | undefined;
6435
- } & {
6464
+ }, "sdk"> & {
6436
6465
  openapi?: string | string[] | {
6437
6466
  source: string;
6438
6467
  directory?: string | undefined;
@@ -6442,6 +6471,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
6442
6471
  directory?: string | undefined;
6443
6472
  } | undefined;
6444
6473
  } & {
6474
+ sdk?: z.infer<typeof import("../index.js").sdkSchema>;
6445
6475
  pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
6446
6476
  }))[];
6447
6477
  directory?: "none" | "card" | "accordion" | undefined;
@@ -6797,7 +6827,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
6797
6827
  sdk?: undefined;
6798
6828
  global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
6799
6829
  } | {
6800
- groups: ({
6830
+ groups: (Omit<{
6801
6831
  group: string;
6802
6832
  icon?: string | {
6803
6833
  name: string;
@@ -6807,14 +6837,14 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
6807
6837
  expanded?: boolean | undefined;
6808
6838
  public?: boolean | undefined;
6809
6839
  directory?: "none" | "card" | "accordion" | undefined;
6840
+ graphql?: undefined;
6810
6841
  tag?: string | undefined;
6811
6842
  searchable?: boolean | undefined;
6812
6843
  boost?: number | undefined;
6813
6844
  hidden?: boolean | undefined;
6814
- graphql?: undefined;
6815
6845
  sdk?: undefined;
6816
6846
  root?: string | undefined;
6817
- } & {
6847
+ }, "sdk"> & {
6818
6848
  openapi?: string | string[] | {
6819
6849
  source: string;
6820
6850
  directory?: string | undefined;
@@ -6824,6 +6854,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
6824
6854
  directory?: string | undefined;
6825
6855
  } | undefined;
6826
6856
  } & {
6857
+ sdk?: z.infer<typeof import("../index.js").sdkSchema>;
6827
6858
  pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
6828
6859
  })[];
6829
6860
  directory?: "none" | "card" | "accordion" | undefined;
@@ -6831,7 +6862,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
6831
6862
  sdk?: undefined;
6832
6863
  global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
6833
6864
  } | {
6834
- pages: (string | ({
6865
+ pages: (string | (Omit<{
6835
6866
  group: string;
6836
6867
  icon?: string | {
6837
6868
  name: string;
@@ -6841,14 +6872,14 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
6841
6872
  expanded?: boolean | undefined;
6842
6873
  public?: boolean | undefined;
6843
6874
  directory?: "none" | "card" | "accordion" | undefined;
6875
+ graphql?: undefined;
6844
6876
  tag?: string | undefined;
6845
6877
  searchable?: boolean | undefined;
6846
6878
  boost?: number | undefined;
6847
6879
  hidden?: boolean | undefined;
6848
- graphql?: undefined;
6849
6880
  sdk?: undefined;
6850
6881
  root?: string | undefined;
6851
- } & {
6882
+ }, "sdk"> & {
6852
6883
  openapi?: string | string[] | {
6853
6884
  source: string;
6854
6885
  directory?: string | undefined;
@@ -6858,6 +6889,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
6858
6889
  directory?: string | undefined;
6859
6890
  } | undefined;
6860
6891
  } & {
6892
+ sdk?: z.infer<typeof import("../index.js").sdkSchema>;
6861
6893
  pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
6862
6894
  }))[];
6863
6895
  directory?: "none" | "card" | "accordion" | undefined;
@@ -7213,7 +7245,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
7213
7245
  sdk?: undefined;
7214
7246
  global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
7215
7247
  } | {
7216
- groups: ({
7248
+ groups: (Omit<{
7217
7249
  group: string;
7218
7250
  icon?: string | {
7219
7251
  name: string;
@@ -7223,14 +7255,14 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
7223
7255
  expanded?: boolean | undefined;
7224
7256
  public?: boolean | undefined;
7225
7257
  directory?: "none" | "card" | "accordion" | undefined;
7258
+ graphql?: undefined;
7226
7259
  tag?: string | undefined;
7227
7260
  searchable?: boolean | undefined;
7228
7261
  boost?: number | undefined;
7229
7262
  hidden?: boolean | undefined;
7230
- graphql?: undefined;
7231
7263
  sdk?: undefined;
7232
7264
  root?: string | undefined;
7233
- } & {
7265
+ }, "sdk"> & {
7234
7266
  openapi?: string | string[] | {
7235
7267
  source: string;
7236
7268
  directory?: string | undefined;
@@ -7240,6 +7272,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
7240
7272
  directory?: string | undefined;
7241
7273
  } | undefined;
7242
7274
  } & {
7275
+ sdk?: z.infer<typeof import("../index.js").sdkSchema>;
7243
7276
  pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
7244
7277
  })[];
7245
7278
  directory?: "none" | "card" | "accordion" | undefined;
@@ -7247,7 +7280,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
7247
7280
  sdk?: undefined;
7248
7281
  global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
7249
7282
  } | {
7250
- pages: (string | ({
7283
+ pages: (string | (Omit<{
7251
7284
  group: string;
7252
7285
  icon?: string | {
7253
7286
  name: string;
@@ -7257,14 +7290,14 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
7257
7290
  expanded?: boolean | undefined;
7258
7291
  public?: boolean | undefined;
7259
7292
  directory?: "none" | "card" | "accordion" | undefined;
7293
+ graphql?: undefined;
7260
7294
  tag?: string | undefined;
7261
7295
  searchable?: boolean | undefined;
7262
7296
  boost?: number | undefined;
7263
7297
  hidden?: boolean | undefined;
7264
- graphql?: undefined;
7265
7298
  sdk?: undefined;
7266
7299
  root?: string | undefined;
7267
- } & {
7300
+ }, "sdk"> & {
7268
7301
  openapi?: string | string[] | {
7269
7302
  source: string;
7270
7303
  directory?: string | undefined;
@@ -7274,6 +7307,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
7274
7307
  directory?: string | undefined;
7275
7308
  } | undefined;
7276
7309
  } & {
7310
+ sdk?: z.infer<typeof import("../index.js").sdkSchema>;
7277
7311
  pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
7278
7312
  }))[];
7279
7313
  directory?: "none" | "card" | "accordion" | undefined;
@@ -7629,7 +7663,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
7629
7663
  sdk?: undefined;
7630
7664
  global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
7631
7665
  } | {
7632
- groups: ({
7666
+ groups: (Omit<{
7633
7667
  group: string;
7634
7668
  icon?: string | {
7635
7669
  name: string;
@@ -7639,14 +7673,14 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
7639
7673
  expanded?: boolean | undefined;
7640
7674
  public?: boolean | undefined;
7641
7675
  directory?: "none" | "card" | "accordion" | undefined;
7676
+ graphql?: undefined;
7642
7677
  tag?: string | undefined;
7643
7678
  searchable?: boolean | undefined;
7644
7679
  boost?: number | undefined;
7645
7680
  hidden?: boolean | undefined;
7646
- graphql?: undefined;
7647
7681
  sdk?: undefined;
7648
7682
  root?: string | undefined;
7649
- } & {
7683
+ }, "sdk"> & {
7650
7684
  openapi?: string | string[] | {
7651
7685
  source: string;
7652
7686
  directory?: string | undefined;
@@ -7656,6 +7690,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
7656
7690
  directory?: string | undefined;
7657
7691
  } | undefined;
7658
7692
  } & {
7693
+ sdk?: z.infer<typeof import("../index.js").sdkSchema>;
7659
7694
  pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
7660
7695
  })[];
7661
7696
  directory?: "none" | "card" | "accordion" | undefined;
@@ -7663,7 +7698,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
7663
7698
  sdk?: undefined;
7664
7699
  global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
7665
7700
  } | {
7666
- pages: (string | ({
7701
+ pages: (string | (Omit<{
7667
7702
  group: string;
7668
7703
  icon?: string | {
7669
7704
  name: string;
@@ -7673,14 +7708,14 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
7673
7708
  expanded?: boolean | undefined;
7674
7709
  public?: boolean | undefined;
7675
7710
  directory?: "none" | "card" | "accordion" | undefined;
7711
+ graphql?: undefined;
7676
7712
  tag?: string | undefined;
7677
7713
  searchable?: boolean | undefined;
7678
7714
  boost?: number | undefined;
7679
7715
  hidden?: boolean | undefined;
7680
- graphql?: undefined;
7681
7716
  sdk?: undefined;
7682
7717
  root?: string | undefined;
7683
- } & {
7718
+ }, "sdk"> & {
7684
7719
  openapi?: string | string[] | {
7685
7720
  source: string;
7686
7721
  directory?: string | undefined;
@@ -7690,6 +7725,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
7690
7725
  directory?: string | undefined;
7691
7726
  } | undefined;
7692
7727
  } & {
7728
+ sdk?: z.infer<typeof import("../index.js").sdkSchema>;
7693
7729
  pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
7694
7730
  }))[];
7695
7731
  directory?: "none" | "card" | "accordion" | undefined;