@mintlify/validation 0.1.263 → 0.1.265

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 (24) hide show
  1. package/dist/index.js +42 -1
  2. package/dist/mint-config/schemas/v2/index.d.ts +640 -340
  3. package/dist/mint-config/schemas/v2/properties/navigation/anchors.d.ts +1 -2
  4. package/dist/mint-config/schemas/v2/properties/navigation/anchors.js +33 -15
  5. package/dist/mint-config/schemas/v2/properties/navigation/dropdown.d.ts +1 -2
  6. package/dist/mint-config/schemas/v2/properties/navigation/dropdown.js +30 -14
  7. package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +96 -17
  8. package/dist/mint-config/schemas/v2/properties/navigation/groups.js +15 -6
  9. package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +68 -32
  10. package/dist/mint-config/schemas/v2/properties/navigation/languages.d.ts +1 -2
  11. package/dist/mint-config/schemas/v2/properties/navigation/languages.js +28 -13
  12. package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +1 -2
  13. package/dist/mint-config/schemas/v2/properties/navigation/tabs.js +37 -16
  14. package/dist/mint-config/schemas/v2/properties/navigation/version.d.ts +1 -2
  15. package/dist/mint-config/schemas/v2/properties/navigation/version.js +34 -15
  16. package/dist/mint-config/schemas/v2/themes/linden.d.ts +128 -68
  17. package/dist/mint-config/schemas/v2/themes/maple.d.ts +128 -68
  18. package/dist/mint-config/schemas/v2/themes/mint.d.ts +128 -68
  19. package/dist/mint-config/schemas/v2/themes/palm.d.ts +128 -68
  20. package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +68 -32
  21. package/dist/mint-config/schemas/v2/themes/willow.d.ts +128 -68
  22. package/dist/mint-config/validateConfig.d.ts +300 -180
  23. package/dist/tsconfig.build.tsbuildinfo +1 -1
  24. package/package.json +2 -2
@@ -496,14 +496,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
496
496
  anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
497
497
  } | {
498
498
  groups: ({
499
- group: string;
500
- icon?: string | {
501
- name: string;
502
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
503
- } | undefined;
504
- hidden?: boolean | undefined;
505
- root?: string | undefined;
506
- } & ({
507
499
  openapi: (string | string[] | {
508
500
  source: string;
509
501
  directory?: string | undefined;
@@ -511,9 +503,23 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
511
503
  source: string;
512
504
  directory?: string | undefined;
513
505
  } | undefined);
506
+ group: string;
507
+ icon?: string | {
508
+ name: string;
509
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
510
+ } | undefined;
511
+ hidden?: boolean | undefined;
512
+ root?: string | undefined;
514
513
  } | {
514
+ group: string;
515
515
  pages: any[];
516
- }))[];
516
+ icon?: string | {
517
+ name: string;
518
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
519
+ } | undefined;
520
+ hidden?: boolean | undefined;
521
+ root?: string | undefined;
522
+ })[];
517
523
  } | {
518
524
  pages: any[];
519
525
  }) & {
@@ -577,14 +583,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
577
583
  anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
578
584
  } | {
579
585
  groups: ({
580
- group: string;
581
- icon?: string | {
582
- name: string;
583
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
584
- } | undefined;
585
- hidden?: boolean | undefined;
586
- root?: string | undefined;
587
- } & ({
588
586
  openapi: (string | string[] | {
589
587
  source: string;
590
588
  directory?: string | undefined;
@@ -592,9 +590,23 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
592
590
  source: string;
593
591
  directory?: string | undefined;
594
592
  } | undefined);
593
+ group: string;
594
+ icon?: string | {
595
+ name: string;
596
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
597
+ } | undefined;
598
+ hidden?: boolean | undefined;
599
+ root?: string | undefined;
595
600
  } | {
601
+ group: string;
596
602
  pages: any[];
597
- }))[];
603
+ icon?: string | {
604
+ name: string;
605
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
606
+ } | undefined;
607
+ hidden?: boolean | undefined;
608
+ root?: string | undefined;
609
+ })[];
598
610
  } | {
599
611
  pages: any[];
600
612
  }) & {
@@ -829,14 +841,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
829
841
  anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
830
842
  } | {
831
843
  groups: ({
832
- group: string;
833
- icon?: string | {
834
- name: string;
835
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
836
- } | undefined;
837
- hidden?: boolean | undefined;
838
- root?: string | undefined;
839
- } & ({
840
844
  openapi: (string | string[] | {
841
845
  source: string;
842
846
  directory?: string | undefined;
@@ -844,9 +848,23 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
844
848
  source: string;
845
849
  directory?: string | undefined;
846
850
  } | undefined);
851
+ group: string;
852
+ icon?: string | {
853
+ name: string;
854
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
855
+ } | undefined;
856
+ hidden?: boolean | undefined;
857
+ root?: string | undefined;
847
858
  } | {
859
+ group: string;
848
860
  pages: any[];
849
- }))[];
861
+ icon?: string | {
862
+ name: string;
863
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
864
+ } | undefined;
865
+ hidden?: boolean | undefined;
866
+ root?: string | undefined;
867
+ })[];
850
868
  } | {
851
869
  pages: any[];
852
870
  }) & {
@@ -910,14 +928,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
910
928
  anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
911
929
  } | {
912
930
  groups: ({
913
- group: string;
914
- icon?: string | {
915
- name: string;
916
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
917
- } | undefined;
918
- hidden?: boolean | undefined;
919
- root?: string | undefined;
920
- } & ({
921
931
  openapi: (string | string[] | {
922
932
  source: string;
923
933
  directory?: string | undefined;
@@ -925,9 +935,23 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
925
935
  source: string;
926
936
  directory?: string | undefined;
927
937
  } | undefined);
938
+ group: string;
939
+ icon?: string | {
940
+ name: string;
941
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
942
+ } | undefined;
943
+ hidden?: boolean | undefined;
944
+ root?: string | undefined;
928
945
  } | {
946
+ group: string;
929
947
  pages: any[];
930
- }))[];
948
+ icon?: string | {
949
+ name: string;
950
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
951
+ } | undefined;
952
+ hidden?: boolean | undefined;
953
+ root?: string | undefined;
954
+ })[];
931
955
  } | {
932
956
  pages: any[];
933
957
  }) & {
@@ -1162,14 +1186,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1162
1186
  anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
1163
1187
  } | {
1164
1188
  groups: ({
1165
- group: string;
1166
- icon?: string | {
1167
- name: string;
1168
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1169
- } | undefined;
1170
- hidden?: boolean | undefined;
1171
- root?: string | undefined;
1172
- } & ({
1173
1189
  openapi: (string | string[] | {
1174
1190
  source: string;
1175
1191
  directory?: string | undefined;
@@ -1177,9 +1193,23 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1177
1193
  source: string;
1178
1194
  directory?: string | undefined;
1179
1195
  } | undefined);
1196
+ group: string;
1197
+ icon?: string | {
1198
+ name: string;
1199
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1200
+ } | undefined;
1201
+ hidden?: boolean | undefined;
1202
+ root?: string | undefined;
1180
1203
  } | {
1204
+ group: string;
1181
1205
  pages: any[];
1182
- }))[];
1206
+ icon?: string | {
1207
+ name: string;
1208
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1209
+ } | undefined;
1210
+ hidden?: boolean | undefined;
1211
+ root?: string | undefined;
1212
+ })[];
1183
1213
  } | {
1184
1214
  pages: any[];
1185
1215
  }) & {
@@ -1243,14 +1273,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1243
1273
  anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
1244
1274
  } | {
1245
1275
  groups: ({
1246
- group: string;
1247
- icon?: string | {
1248
- name: string;
1249
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1250
- } | undefined;
1251
- hidden?: boolean | undefined;
1252
- root?: string | undefined;
1253
- } & ({
1254
1276
  openapi: (string | string[] | {
1255
1277
  source: string;
1256
1278
  directory?: string | undefined;
@@ -1258,9 +1280,23 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1258
1280
  source: string;
1259
1281
  directory?: string | undefined;
1260
1282
  } | undefined);
1283
+ group: string;
1284
+ icon?: string | {
1285
+ name: string;
1286
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1287
+ } | undefined;
1288
+ hidden?: boolean | undefined;
1289
+ root?: string | undefined;
1261
1290
  } | {
1291
+ group: string;
1262
1292
  pages: any[];
1263
- }))[];
1293
+ icon?: string | {
1294
+ name: string;
1295
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1296
+ } | undefined;
1297
+ hidden?: boolean | undefined;
1298
+ root?: string | undefined;
1299
+ })[];
1264
1300
  } | {
1265
1301
  pages: any[];
1266
1302
  }) & {
@@ -1495,14 +1531,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1495
1531
  anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
1496
1532
  } | {
1497
1533
  groups: ({
1498
- group: string;
1499
- icon?: string | {
1500
- name: string;
1501
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1502
- } | undefined;
1503
- hidden?: boolean | undefined;
1504
- root?: string | undefined;
1505
- } & ({
1506
1534
  openapi: (string | string[] | {
1507
1535
  source: string;
1508
1536
  directory?: string | undefined;
@@ -1510,9 +1538,23 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1510
1538
  source: string;
1511
1539
  directory?: string | undefined;
1512
1540
  } | undefined);
1541
+ group: string;
1542
+ icon?: string | {
1543
+ name: string;
1544
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1545
+ } | undefined;
1546
+ hidden?: boolean | undefined;
1547
+ root?: string | undefined;
1513
1548
  } | {
1549
+ group: string;
1514
1550
  pages: any[];
1515
- }))[];
1551
+ icon?: string | {
1552
+ name: string;
1553
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1554
+ } | undefined;
1555
+ hidden?: boolean | undefined;
1556
+ root?: string | undefined;
1557
+ })[];
1516
1558
  } | {
1517
1559
  pages: any[];
1518
1560
  }) & {
@@ -1576,14 +1618,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1576
1618
  anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
1577
1619
  } | {
1578
1620
  groups: ({
1579
- group: string;
1580
- icon?: string | {
1581
- name: string;
1582
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1583
- } | undefined;
1584
- hidden?: boolean | undefined;
1585
- root?: string | undefined;
1586
- } & ({
1587
1621
  openapi: (string | string[] | {
1588
1622
  source: string;
1589
1623
  directory?: string | undefined;
@@ -1591,9 +1625,23 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1591
1625
  source: string;
1592
1626
  directory?: string | undefined;
1593
1627
  } | undefined);
1628
+ group: string;
1629
+ icon?: string | {
1630
+ name: string;
1631
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1632
+ } | undefined;
1633
+ hidden?: boolean | undefined;
1634
+ root?: string | undefined;
1594
1635
  } | {
1636
+ group: string;
1595
1637
  pages: any[];
1596
- }))[];
1638
+ icon?: string | {
1639
+ name: string;
1640
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1641
+ } | undefined;
1642
+ hidden?: boolean | undefined;
1643
+ root?: string | undefined;
1644
+ })[];
1597
1645
  } | {
1598
1646
  pages: any[];
1599
1647
  }) & {
@@ -1828,14 +1876,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1828
1876
  anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
1829
1877
  } | {
1830
1878
  groups: ({
1831
- group: string;
1832
- icon?: string | {
1833
- name: string;
1834
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1835
- } | undefined;
1836
- hidden?: boolean | undefined;
1837
- root?: string | undefined;
1838
- } & ({
1839
1879
  openapi: (string | string[] | {
1840
1880
  source: string;
1841
1881
  directory?: string | undefined;
@@ -1843,9 +1883,23 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1843
1883
  source: string;
1844
1884
  directory?: string | undefined;
1845
1885
  } | undefined);
1886
+ group: string;
1887
+ icon?: string | {
1888
+ name: string;
1889
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1890
+ } | undefined;
1891
+ hidden?: boolean | undefined;
1892
+ root?: string | undefined;
1846
1893
  } | {
1894
+ group: string;
1847
1895
  pages: any[];
1848
- }))[];
1896
+ icon?: string | {
1897
+ name: string;
1898
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1899
+ } | undefined;
1900
+ hidden?: boolean | undefined;
1901
+ root?: string | undefined;
1902
+ })[];
1849
1903
  } | {
1850
1904
  pages: any[];
1851
1905
  }) & {
@@ -1909,14 +1963,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1909
1963
  anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
1910
1964
  } | {
1911
1965
  groups: ({
1912
- group: string;
1913
- icon?: string | {
1914
- name: string;
1915
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1916
- } | undefined;
1917
- hidden?: boolean | undefined;
1918
- root?: string | undefined;
1919
- } & ({
1920
1966
  openapi: (string | string[] | {
1921
1967
  source: string;
1922
1968
  directory?: string | undefined;
@@ -1924,9 +1970,23 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1924
1970
  source: string;
1925
1971
  directory?: string | undefined;
1926
1972
  } | undefined);
1973
+ group: string;
1974
+ icon?: string | {
1975
+ name: string;
1976
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1977
+ } | undefined;
1978
+ hidden?: boolean | undefined;
1979
+ root?: string | undefined;
1927
1980
  } | {
1981
+ group: string;
1928
1982
  pages: any[];
1929
- }))[];
1983
+ icon?: string | {
1984
+ name: string;
1985
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1986
+ } | undefined;
1987
+ hidden?: boolean | undefined;
1988
+ root?: string | undefined;
1989
+ })[];
1930
1990
  } | {
1931
1991
  pages: any[];
1932
1992
  }) & {
@@ -2165,14 +2225,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2165
2225
  anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
2166
2226
  } | {
2167
2227
  groups: ({
2168
- group: string;
2169
- icon?: string | {
2170
- name: string;
2171
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2172
- } | undefined;
2173
- hidden?: boolean | undefined;
2174
- root?: string | undefined;
2175
- } & ({
2176
2228
  openapi: (string | string[] | {
2177
2229
  source: string;
2178
2230
  directory?: string | undefined;
@@ -2180,9 +2232,23 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2180
2232
  source: string;
2181
2233
  directory?: string | undefined;
2182
2234
  } | undefined);
2235
+ group: string;
2236
+ icon?: string | {
2237
+ name: string;
2238
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2239
+ } | undefined;
2240
+ hidden?: boolean | undefined;
2241
+ root?: string | undefined;
2183
2242
  } | {
2243
+ group: string;
2184
2244
  pages: any[];
2185
- }))[];
2245
+ icon?: string | {
2246
+ name: string;
2247
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2248
+ } | undefined;
2249
+ hidden?: boolean | undefined;
2250
+ root?: string | undefined;
2251
+ })[];
2186
2252
  } | {
2187
2253
  pages: any[];
2188
2254
  }) & {
@@ -2246,14 +2312,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2246
2312
  anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
2247
2313
  } | {
2248
2314
  groups: ({
2249
- group: string;
2250
- icon?: string | {
2251
- name: string;
2252
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2253
- } | undefined;
2254
- hidden?: boolean | undefined;
2255
- root?: string | undefined;
2256
- } & ({
2257
2315
  openapi: (string | string[] | {
2258
2316
  source: string;
2259
2317
  directory?: string | undefined;
@@ -2261,9 +2319,23 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2261
2319
  source: string;
2262
2320
  directory?: string | undefined;
2263
2321
  } | undefined);
2322
+ group: string;
2323
+ icon?: string | {
2324
+ name: string;
2325
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2326
+ } | undefined;
2327
+ hidden?: boolean | undefined;
2328
+ root?: string | undefined;
2264
2329
  } | {
2330
+ group: string;
2265
2331
  pages: any[];
2266
- }))[];
2332
+ icon?: string | {
2333
+ name: string;
2334
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2335
+ } | undefined;
2336
+ hidden?: boolean | undefined;
2337
+ root?: string | undefined;
2338
+ })[];
2267
2339
  } | {
2268
2340
  pages: any[];
2269
2341
  }) & {
@@ -2498,14 +2570,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2498
2570
  anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
2499
2571
  } | {
2500
2572
  groups: ({
2501
- group: string;
2502
- icon?: string | {
2503
- name: string;
2504
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2505
- } | undefined;
2506
- hidden?: boolean | undefined;
2507
- root?: string | undefined;
2508
- } & ({
2509
2573
  openapi: (string | string[] | {
2510
2574
  source: string;
2511
2575
  directory?: string | undefined;
@@ -2513,9 +2577,23 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2513
2577
  source: string;
2514
2578
  directory?: string | undefined;
2515
2579
  } | undefined);
2580
+ group: string;
2581
+ icon?: string | {
2582
+ name: string;
2583
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2584
+ } | undefined;
2585
+ hidden?: boolean | undefined;
2586
+ root?: string | undefined;
2516
2587
  } | {
2588
+ group: string;
2517
2589
  pages: any[];
2518
- }))[];
2590
+ icon?: string | {
2591
+ name: string;
2592
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2593
+ } | undefined;
2594
+ hidden?: boolean | undefined;
2595
+ root?: string | undefined;
2596
+ })[];
2519
2597
  } | {
2520
2598
  pages: any[];
2521
2599
  }) & {
@@ -2579,14 +2657,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2579
2657
  anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
2580
2658
  } | {
2581
2659
  groups: ({
2582
- group: string;
2583
- icon?: string | {
2584
- name: string;
2585
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2586
- } | undefined;
2587
- hidden?: boolean | undefined;
2588
- root?: string | undefined;
2589
- } & ({
2590
2660
  openapi: (string | string[] | {
2591
2661
  source: string;
2592
2662
  directory?: string | undefined;
@@ -2594,9 +2664,23 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2594
2664
  source: string;
2595
2665
  directory?: string | undefined;
2596
2666
  } | undefined);
2667
+ group: string;
2668
+ icon?: string | {
2669
+ name: string;
2670
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2671
+ } | undefined;
2672
+ hidden?: boolean | undefined;
2673
+ root?: string | undefined;
2597
2674
  } | {
2675
+ group: string;
2598
2676
  pages: any[];
2599
- }))[];
2677
+ icon?: string | {
2678
+ name: string;
2679
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2680
+ } | undefined;
2681
+ hidden?: boolean | undefined;
2682
+ root?: string | undefined;
2683
+ })[];
2600
2684
  } | {
2601
2685
  pages: any[];
2602
2686
  }) & {
@@ -2831,14 +2915,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2831
2915
  anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
2832
2916
  } | {
2833
2917
  groups: ({
2834
- group: string;
2835
- icon?: string | {
2836
- name: string;
2837
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2838
- } | undefined;
2839
- hidden?: boolean | undefined;
2840
- root?: string | undefined;
2841
- } & ({
2842
2918
  openapi: (string | string[] | {
2843
2919
  source: string;
2844
2920
  directory?: string | undefined;
@@ -2846,9 +2922,23 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2846
2922
  source: string;
2847
2923
  directory?: string | undefined;
2848
2924
  } | undefined);
2925
+ group: string;
2926
+ icon?: string | {
2927
+ name: string;
2928
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2929
+ } | undefined;
2930
+ hidden?: boolean | undefined;
2931
+ root?: string | undefined;
2849
2932
  } | {
2933
+ group: string;
2850
2934
  pages: any[];
2851
- }))[];
2935
+ icon?: string | {
2936
+ name: string;
2937
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2938
+ } | undefined;
2939
+ hidden?: boolean | undefined;
2940
+ root?: string | undefined;
2941
+ })[];
2852
2942
  } | {
2853
2943
  pages: any[];
2854
2944
  }) & {
@@ -2912,14 +3002,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2912
3002
  anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
2913
3003
  } | {
2914
3004
  groups: ({
2915
- group: string;
2916
- icon?: string | {
2917
- name: string;
2918
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2919
- } | undefined;
2920
- hidden?: boolean | undefined;
2921
- root?: string | undefined;
2922
- } & ({
2923
3005
  openapi: (string | string[] | {
2924
3006
  source: string;
2925
3007
  directory?: string | undefined;
@@ -2927,9 +3009,23 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2927
3009
  source: string;
2928
3010
  directory?: string | undefined;
2929
3011
  } | undefined);
3012
+ group: string;
3013
+ icon?: string | {
3014
+ name: string;
3015
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3016
+ } | undefined;
3017
+ hidden?: boolean | undefined;
3018
+ root?: string | undefined;
2930
3019
  } | {
3020
+ group: string;
2931
3021
  pages: any[];
2932
- }))[];
3022
+ icon?: string | {
3023
+ name: string;
3024
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3025
+ } | undefined;
3026
+ hidden?: boolean | undefined;
3027
+ root?: string | undefined;
3028
+ })[];
2933
3029
  } | {
2934
3030
  pages: any[];
2935
3031
  }) & {
@@ -3164,14 +3260,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
3164
3260
  anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
3165
3261
  } | {
3166
3262
  groups: ({
3167
- group: string;
3168
- icon?: string | {
3169
- name: string;
3170
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3171
- } | undefined;
3172
- hidden?: boolean | undefined;
3173
- root?: string | undefined;
3174
- } & ({
3175
3263
  openapi: (string | string[] | {
3176
3264
  source: string;
3177
3265
  directory?: string | undefined;
@@ -3179,9 +3267,23 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
3179
3267
  source: string;
3180
3268
  directory?: string | undefined;
3181
3269
  } | undefined);
3270
+ group: string;
3271
+ icon?: string | {
3272
+ name: string;
3273
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3274
+ } | undefined;
3275
+ hidden?: boolean | undefined;
3276
+ root?: string | undefined;
3182
3277
  } | {
3278
+ group: string;
3183
3279
  pages: any[];
3184
- }))[];
3280
+ icon?: string | {
3281
+ name: string;
3282
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3283
+ } | undefined;
3284
+ hidden?: boolean | undefined;
3285
+ root?: string | undefined;
3286
+ })[];
3185
3287
  } | {
3186
3288
  pages: any[];
3187
3289
  }) & {
@@ -3245,14 +3347,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
3245
3347
  anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
3246
3348
  } | {
3247
3349
  groups: ({
3248
- group: string;
3249
- icon?: string | {
3250
- name: string;
3251
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3252
- } | undefined;
3253
- hidden?: boolean | undefined;
3254
- root?: string | undefined;
3255
- } & ({
3256
3350
  openapi: (string | string[] | {
3257
3351
  source: string;
3258
3352
  directory?: string | undefined;
@@ -3260,9 +3354,23 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
3260
3354
  source: string;
3261
3355
  directory?: string | undefined;
3262
3356
  } | undefined);
3357
+ group: string;
3358
+ icon?: string | {
3359
+ name: string;
3360
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3361
+ } | undefined;
3362
+ hidden?: boolean | undefined;
3363
+ root?: string | undefined;
3263
3364
  } | {
3365
+ group: string;
3264
3366
  pages: any[];
3265
- }))[];
3367
+ icon?: string | {
3368
+ name: string;
3369
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3370
+ } | undefined;
3371
+ hidden?: boolean | undefined;
3372
+ root?: string | undefined;
3373
+ })[];
3266
3374
  } | {
3267
3375
  pages: any[];
3268
3376
  }) & {
@@ -3497,14 +3605,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
3497
3605
  anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
3498
3606
  } | {
3499
3607
  groups: ({
3500
- group: string;
3501
- icon?: string | {
3502
- name: string;
3503
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3504
- } | undefined;
3505
- hidden?: boolean | undefined;
3506
- root?: string | undefined;
3507
- } & ({
3508
3608
  openapi: (string | string[] | {
3509
3609
  source: string;
3510
3610
  directory?: string | undefined;
@@ -3512,9 +3612,23 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
3512
3612
  source: string;
3513
3613
  directory?: string | undefined;
3514
3614
  } | undefined);
3615
+ group: string;
3616
+ icon?: string | {
3617
+ name: string;
3618
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3619
+ } | undefined;
3620
+ hidden?: boolean | undefined;
3621
+ root?: string | undefined;
3515
3622
  } | {
3623
+ group: string;
3516
3624
  pages: any[];
3517
- }))[];
3625
+ icon?: string | {
3626
+ name: string;
3627
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3628
+ } | undefined;
3629
+ hidden?: boolean | undefined;
3630
+ root?: string | undefined;
3631
+ })[];
3518
3632
  } | {
3519
3633
  pages: any[];
3520
3634
  }) & {
@@ -3578,14 +3692,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
3578
3692
  anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
3579
3693
  } | {
3580
3694
  groups: ({
3581
- group: string;
3582
- icon?: string | {
3583
- name: string;
3584
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3585
- } | undefined;
3586
- hidden?: boolean | undefined;
3587
- root?: string | undefined;
3588
- } & ({
3589
3695
  openapi: (string | string[] | {
3590
3696
  source: string;
3591
3697
  directory?: string | undefined;
@@ -3593,9 +3699,23 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
3593
3699
  source: string;
3594
3700
  directory?: string | undefined;
3595
3701
  } | undefined);
3702
+ group: string;
3703
+ icon?: string | {
3704
+ name: string;
3705
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3706
+ } | undefined;
3707
+ hidden?: boolean | undefined;
3708
+ root?: string | undefined;
3596
3709
  } | {
3710
+ group: string;
3597
3711
  pages: any[];
3598
- }))[];
3712
+ icon?: string | {
3713
+ name: string;
3714
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3715
+ } | undefined;
3716
+ hidden?: boolean | undefined;
3717
+ root?: string | undefined;
3718
+ })[];
3599
3719
  } | {
3600
3720
  pages: any[];
3601
3721
  }) & {