@mintlify/validation 0.1.253 → 0.1.255

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/mint-config/schemas/v2/index.d.ts +4163 -7618
  2. package/dist/mint-config/schemas/v2/properties/index.d.ts +1 -0
  3. package/dist/mint-config/schemas/v2/properties/index.js +1 -0
  4. package/dist/mint-config/schemas/v2/properties/navigation/anchors.d.ts +12 -455
  5. package/dist/mint-config/schemas/v2/properties/navigation/anchors.js +28 -11
  6. package/dist/mint-config/schemas/v2/properties/navigation/divisionNav.d.ts +56 -0
  7. package/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js +5 -0
  8. package/dist/mint-config/schemas/v2/properties/navigation/dropdown.d.ts +13 -330
  9. package/dist/mint-config/schemas/v2/properties/navigation/dropdown.js +28 -11
  10. package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +22 -626
  11. package/dist/mint-config/schemas/v2/properties/navigation/groups.js +15 -13
  12. package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +258 -1481
  13. package/dist/mint-config/schemas/v2/properties/navigation/index.js +23 -13
  14. package/dist/mint-config/schemas/v2/properties/navigation/languages.d.ts +11 -202
  15. package/dist/mint-config/schemas/v2/properties/navigation/languages.js +33 -11
  16. package/dist/mint-config/schemas/v2/properties/navigation/pages.d.ts +2 -3
  17. package/dist/mint-config/schemas/v2/properties/navigation/pages.js +2 -2
  18. package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +11 -328
  19. package/dist/mint-config/schemas/v2/properties/navigation/tabs.js +28 -11
  20. package/dist/mint-config/schemas/v2/properties/navigation/version.d.ts +12 -203
  21. package/dist/mint-config/schemas/v2/properties/navigation/version.js +28 -11
  22. package/dist/mint-config/schemas/v2/properties/reusable/page.d.ts +3 -0
  23. package/dist/mint-config/schemas/v2/properties/reusable/page.js +1 -0
  24. package/dist/mint-config/schemas/v2/themes/linden.d.ts +253 -944
  25. package/dist/mint-config/schemas/v2/themes/maple.d.ts +253 -944
  26. package/dist/mint-config/schemas/v2/themes/mint.d.ts +253 -944
  27. package/dist/mint-config/schemas/v2/themes/palm.d.ts +253 -944
  28. package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +143 -730
  29. package/dist/mint-config/schemas/v2/themes/willow.d.ts +253 -944
  30. package/dist/mint-config/upgrades/updateNavigationToDocsConfig.js +14 -8
  31. package/dist/mint-config/validateConfig.d.ts +420 -940
  32. package/dist/tsconfig.build.tsbuildinfo +1 -1
  33. package/package.json +3 -3
  34. package/dist/mint-config/schemas/v2/properties/navigation/divisionSchemas.d.ts +0 -7
  35. package/dist/mint-config/schemas/v2/properties/navigation/divisionSchemas.js +0 -26
@@ -484,7 +484,39 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
484
484
  light?: string | undefined;
485
485
  dark?: string | undefined;
486
486
  };
487
- navigation: ({
487
+ navigation: (({
488
+ languages: import("./schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
489
+ } | {
490
+ versions: import("./schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
491
+ } | {
492
+ tabs: import("./schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
493
+ } | {
494
+ dropdowns: import("./schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
495
+ } | {
496
+ anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
497
+ } | {
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
+ openapi: (string | string[] | {
508
+ source: string;
509
+ directory?: string | undefined;
510
+ }) & (string | string[] | {
511
+ source: string;
512
+ directory?: string | undefined;
513
+ } | undefined);
514
+ } | {
515
+ pages: any[];
516
+ }))[];
517
+ } | {
518
+ pages: any[];
519
+ }) & {
488
520
  global?: {
489
521
  languages?: ({
490
522
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
@@ -533,16 +565,16 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
533
565
  href: string;
534
566
  })[] | undefined;
535
567
  } | undefined;
536
- } & ({
537
- languages: any[];
568
+ }) & ((({
569
+ languages: import("./schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
538
570
  } | {
539
- versions: any[];
571
+ versions: import("./schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
540
572
  } | {
541
- tabs: any[];
573
+ tabs: import("./schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
542
574
  } | {
543
- dropdowns: any[];
575
+ dropdowns: import("./schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
544
576
  } | {
545
- anchors: any[];
577
+ anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
546
578
  } | {
547
579
  groups: ({
548
580
  group: string;
@@ -551,33 +583,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
551
583
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
552
584
  } | undefined;
553
585
  hidden?: boolean | undefined;
554
- root?: string | {
555
- href: string;
556
- title: string;
557
- sidebarTitle?: string | undefined;
558
- description?: string | undefined;
559
- api?: string | undefined;
560
- openapi?: string | undefined;
561
- contentType?: string | undefined;
562
- authMethod?: string | undefined;
563
- auth?: string | undefined;
564
- version?: string | undefined;
565
- mode?: string | undefined;
566
- hideFooterPagination?: boolean | undefined;
567
- authors?: unknown;
568
- lastUpdatedDate?: string | undefined;
569
- createdDate?: string | undefined;
570
- 'openapi-schema'?: string | undefined;
571
- icon?: string | {
572
- name: string;
573
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
574
- } | undefined;
575
- tag?: string | undefined;
576
- url?: string | undefined;
577
- hideApiMarker?: boolean | undefined;
578
- noindex?: boolean | undefined;
579
- isPublic?: boolean | undefined;
580
- } | undefined;
586
+ root?: string | undefined;
581
587
  } & ({
582
588
  openapi: (string | string[] | {
583
589
  source: string;
@@ -591,7 +597,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
591
597
  }))[];
592
598
  } | {
593
599
  pages: any[];
594
- })) & (({
600
+ }) & {
595
601
  global?: {
596
602
  languages?: ({
597
603
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
@@ -640,65 +646,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
640
646
  href: string;
641
647
  })[] | undefined;
642
648
  } | undefined;
643
- } & ({
644
- languages: any[];
645
- } | {
646
- versions: any[];
647
- } | {
648
- tabs: any[];
649
- } | {
650
- dropdowns: any[];
651
- } | {
652
- anchors: any[];
653
- } | {
654
- groups: ({
655
- group: string;
656
- icon?: string | {
657
- name: string;
658
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
659
- } | undefined;
660
- hidden?: boolean | undefined;
661
- root?: string | {
662
- href: string;
663
- title: string;
664
- sidebarTitle?: string | undefined;
665
- description?: string | undefined;
666
- api?: string | undefined;
667
- openapi?: string | undefined;
668
- contentType?: string | undefined;
669
- authMethod?: string | undefined;
670
- auth?: string | undefined;
671
- version?: string | undefined;
672
- mode?: string | undefined;
673
- hideFooterPagination?: boolean | undefined;
674
- authors?: unknown;
675
- lastUpdatedDate?: string | undefined;
676
- createdDate?: string | undefined;
677
- 'openapi-schema'?: string | undefined;
678
- icon?: string | {
679
- name: string;
680
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
681
- } | undefined;
682
- tag?: string | undefined;
683
- url?: string | undefined;
684
- hideApiMarker?: boolean | undefined;
685
- noindex?: boolean | undefined;
686
- isPublic?: boolean | undefined;
687
- } | undefined;
688
- } & ({
689
- openapi: (string | string[] | {
690
- source: string;
691
- directory?: string | undefined;
692
- }) & (string | string[] | {
693
- source: string;
694
- directory?: string | undefined;
695
- } | undefined);
696
- } | {
697
- pages: any[];
698
- }))[];
699
- } | {
700
- pages: any[];
701
- })) | undefined);
649
+ }) | undefined);
702
650
  $schema?: string | undefined;
703
651
  description?: string | undefined;
704
652
  logo?: string | {
@@ -869,7 +817,39 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
869
817
  light?: string | undefined;
870
818
  dark?: string | undefined;
871
819
  };
872
- navigation: ({
820
+ navigation: (({
821
+ languages: import("./schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
822
+ } | {
823
+ versions: import("./schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
824
+ } | {
825
+ tabs: import("./schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
826
+ } | {
827
+ dropdowns: import("./schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
828
+ } | {
829
+ anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
830
+ } | {
831
+ 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
+ openapi: (string | string[] | {
841
+ source: string;
842
+ directory?: string | undefined;
843
+ }) & (string | string[] | {
844
+ source: string;
845
+ directory?: string | undefined;
846
+ } | undefined);
847
+ } | {
848
+ pages: any[];
849
+ }))[];
850
+ } | {
851
+ pages: any[];
852
+ }) & {
873
853
  global?: {
874
854
  languages?: ({
875
855
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
@@ -918,16 +898,16 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
918
898
  href: string;
919
899
  })[] | undefined;
920
900
  } | undefined;
921
- } & ({
922
- languages: any[];
901
+ }) & ((({
902
+ languages: import("./schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
923
903
  } | {
924
- versions: any[];
904
+ versions: import("./schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
925
905
  } | {
926
- tabs: any[];
906
+ tabs: import("./schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
927
907
  } | {
928
- dropdowns: any[];
908
+ dropdowns: import("./schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
929
909
  } | {
930
- anchors: any[];
910
+ anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
931
911
  } | {
932
912
  groups: ({
933
913
  group: string;
@@ -936,33 +916,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
936
916
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
937
917
  } | undefined;
938
918
  hidden?: boolean | undefined;
939
- root?: string | {
940
- href: string;
941
- title: string;
942
- sidebarTitle?: string | undefined;
943
- description?: string | undefined;
944
- api?: string | undefined;
945
- openapi?: string | undefined;
946
- contentType?: string | undefined;
947
- authMethod?: string | undefined;
948
- auth?: string | undefined;
949
- version?: string | undefined;
950
- mode?: string | undefined;
951
- hideFooterPagination?: boolean | undefined;
952
- authors?: unknown;
953
- lastUpdatedDate?: string | undefined;
954
- createdDate?: string | undefined;
955
- 'openapi-schema'?: string | undefined;
956
- icon?: string | {
957
- name: string;
958
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
959
- } | undefined;
960
- tag?: string | undefined;
961
- url?: string | undefined;
962
- hideApiMarker?: boolean | undefined;
963
- noindex?: boolean | undefined;
964
- isPublic?: boolean | undefined;
965
- } | undefined;
919
+ root?: string | undefined;
966
920
  } & ({
967
921
  openapi: (string | string[] | {
968
922
  source: string;
@@ -976,7 +930,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
976
930
  }))[];
977
931
  } | {
978
932
  pages: any[];
979
- })) & (({
933
+ }) & {
980
934
  global?: {
981
935
  languages?: ({
982
936
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
@@ -1025,65 +979,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1025
979
  href: string;
1026
980
  })[] | undefined;
1027
981
  } | undefined;
1028
- } & ({
1029
- languages: any[];
1030
- } | {
1031
- versions: any[];
1032
- } | {
1033
- tabs: any[];
1034
- } | {
1035
- dropdowns: any[];
1036
- } | {
1037
- anchors: any[];
1038
- } | {
1039
- groups: ({
1040
- group: string;
1041
- icon?: string | {
1042
- name: string;
1043
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1044
- } | undefined;
1045
- hidden?: boolean | undefined;
1046
- root?: string | {
1047
- href: string;
1048
- title: string;
1049
- sidebarTitle?: string | undefined;
1050
- description?: string | undefined;
1051
- api?: string | undefined;
1052
- openapi?: string | undefined;
1053
- contentType?: string | undefined;
1054
- authMethod?: string | undefined;
1055
- auth?: string | undefined;
1056
- version?: string | undefined;
1057
- mode?: string | undefined;
1058
- hideFooterPagination?: boolean | undefined;
1059
- authors?: unknown;
1060
- lastUpdatedDate?: string | undefined;
1061
- createdDate?: string | undefined;
1062
- 'openapi-schema'?: string | undefined;
1063
- icon?: string | {
1064
- name: string;
1065
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1066
- } | undefined;
1067
- tag?: string | undefined;
1068
- url?: string | undefined;
1069
- hideApiMarker?: boolean | undefined;
1070
- noindex?: boolean | undefined;
1071
- isPublic?: boolean | undefined;
1072
- } | undefined;
1073
- } & ({
1074
- openapi: (string | string[] | {
1075
- source: string;
1076
- directory?: string | undefined;
1077
- }) & (string | string[] | {
1078
- source: string;
1079
- directory?: string | undefined;
1080
- } | undefined);
1081
- } | {
1082
- pages: any[];
1083
- }))[];
1084
- } | {
1085
- pages: any[];
1086
- })) | undefined);
982
+ }) | undefined);
1087
983
  $schema?: string | undefined;
1088
984
  description?: string | undefined;
1089
985
  logo?: string | {
@@ -1254,7 +1150,39 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1254
1150
  light?: string | undefined;
1255
1151
  dark?: string | undefined;
1256
1152
  };
1257
- navigation: ({
1153
+ navigation: (({
1154
+ languages: import("./schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
1155
+ } | {
1156
+ versions: import("./schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
1157
+ } | {
1158
+ tabs: import("./schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
1159
+ } | {
1160
+ dropdowns: import("./schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
1161
+ } | {
1162
+ anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
1163
+ } | {
1164
+ 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
+ openapi: (string | string[] | {
1174
+ source: string;
1175
+ directory?: string | undefined;
1176
+ }) & (string | string[] | {
1177
+ source: string;
1178
+ directory?: string | undefined;
1179
+ } | undefined);
1180
+ } | {
1181
+ pages: any[];
1182
+ }))[];
1183
+ } | {
1184
+ pages: any[];
1185
+ }) & {
1258
1186
  global?: {
1259
1187
  languages?: ({
1260
1188
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
@@ -1303,16 +1231,16 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1303
1231
  href: string;
1304
1232
  })[] | undefined;
1305
1233
  } | undefined;
1306
- } & ({
1307
- languages: any[];
1234
+ }) & ((({
1235
+ languages: import("./schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
1308
1236
  } | {
1309
- versions: any[];
1237
+ versions: import("./schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
1310
1238
  } | {
1311
- tabs: any[];
1239
+ tabs: import("./schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
1312
1240
  } | {
1313
- dropdowns: any[];
1241
+ dropdowns: import("./schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
1314
1242
  } | {
1315
- anchors: any[];
1243
+ anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
1316
1244
  } | {
1317
1245
  groups: ({
1318
1246
  group: string;
@@ -1321,33 +1249,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1321
1249
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1322
1250
  } | undefined;
1323
1251
  hidden?: boolean | undefined;
1324
- root?: string | {
1325
- href: string;
1326
- title: string;
1327
- sidebarTitle?: string | undefined;
1328
- description?: string | undefined;
1329
- api?: string | undefined;
1330
- openapi?: string | undefined;
1331
- contentType?: string | undefined;
1332
- authMethod?: string | undefined;
1333
- auth?: string | undefined;
1334
- version?: string | undefined;
1335
- mode?: string | undefined;
1336
- hideFooterPagination?: boolean | undefined;
1337
- authors?: unknown;
1338
- lastUpdatedDate?: string | undefined;
1339
- createdDate?: string | undefined;
1340
- 'openapi-schema'?: string | undefined;
1341
- icon?: string | {
1342
- name: string;
1343
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1344
- } | undefined;
1345
- tag?: string | undefined;
1346
- url?: string | undefined;
1347
- hideApiMarker?: boolean | undefined;
1348
- noindex?: boolean | undefined;
1349
- isPublic?: boolean | undefined;
1350
- } | undefined;
1252
+ root?: string | undefined;
1351
1253
  } & ({
1352
1254
  openapi: (string | string[] | {
1353
1255
  source: string;
@@ -1361,7 +1263,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1361
1263
  }))[];
1362
1264
  } | {
1363
1265
  pages: any[];
1364
- })) & (({
1266
+ }) & {
1365
1267
  global?: {
1366
1268
  languages?: ({
1367
1269
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
@@ -1410,65 +1312,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1410
1312
  href: string;
1411
1313
  })[] | undefined;
1412
1314
  } | undefined;
1413
- } & ({
1414
- languages: any[];
1415
- } | {
1416
- versions: any[];
1417
- } | {
1418
- tabs: any[];
1419
- } | {
1420
- dropdowns: any[];
1421
- } | {
1422
- anchors: any[];
1423
- } | {
1424
- groups: ({
1425
- group: string;
1426
- icon?: string | {
1427
- name: string;
1428
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1429
- } | undefined;
1430
- hidden?: boolean | undefined;
1431
- root?: string | {
1432
- href: string;
1433
- title: string;
1434
- sidebarTitle?: string | undefined;
1435
- description?: string | undefined;
1436
- api?: string | undefined;
1437
- openapi?: string | undefined;
1438
- contentType?: string | undefined;
1439
- authMethod?: string | undefined;
1440
- auth?: string | undefined;
1441
- version?: string | undefined;
1442
- mode?: string | undefined;
1443
- hideFooterPagination?: boolean | undefined;
1444
- authors?: unknown;
1445
- lastUpdatedDate?: string | undefined;
1446
- createdDate?: string | undefined;
1447
- 'openapi-schema'?: string | undefined;
1448
- icon?: string | {
1449
- name: string;
1450
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1451
- } | undefined;
1452
- tag?: string | undefined;
1453
- url?: string | undefined;
1454
- hideApiMarker?: boolean | undefined;
1455
- noindex?: boolean | undefined;
1456
- isPublic?: boolean | undefined;
1457
- } | undefined;
1458
- } & ({
1459
- openapi: (string | string[] | {
1460
- source: string;
1461
- directory?: string | undefined;
1462
- }) & (string | string[] | {
1463
- source: string;
1464
- directory?: string | undefined;
1465
- } | undefined);
1466
- } | {
1467
- pages: any[];
1468
- }))[];
1469
- } | {
1470
- pages: any[];
1471
- })) | undefined);
1315
+ }) | undefined);
1472
1316
  $schema?: string | undefined;
1473
1317
  description?: string | undefined;
1474
1318
  logo?: string | {
@@ -1639,7 +1483,39 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1639
1483
  light?: string | undefined;
1640
1484
  dark?: string | undefined;
1641
1485
  };
1642
- navigation: ({
1486
+ navigation: (({
1487
+ languages: import("./schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
1488
+ } | {
1489
+ versions: import("./schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
1490
+ } | {
1491
+ tabs: import("./schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
1492
+ } | {
1493
+ dropdowns: import("./schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
1494
+ } | {
1495
+ anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
1496
+ } | {
1497
+ 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
+ openapi: (string | string[] | {
1507
+ source: string;
1508
+ directory?: string | undefined;
1509
+ }) & (string | string[] | {
1510
+ source: string;
1511
+ directory?: string | undefined;
1512
+ } | undefined);
1513
+ } | {
1514
+ pages: any[];
1515
+ }))[];
1516
+ } | {
1517
+ pages: any[];
1518
+ }) & {
1643
1519
  global?: {
1644
1520
  languages?: ({
1645
1521
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
@@ -1688,16 +1564,16 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1688
1564
  href: string;
1689
1565
  })[] | undefined;
1690
1566
  } | undefined;
1691
- } & ({
1692
- languages: any[];
1567
+ }) & ((({
1568
+ languages: import("./schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
1693
1569
  } | {
1694
- versions: any[];
1570
+ versions: import("./schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
1695
1571
  } | {
1696
- tabs: any[];
1572
+ tabs: import("./schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
1697
1573
  } | {
1698
- dropdowns: any[];
1574
+ dropdowns: import("./schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
1699
1575
  } | {
1700
- anchors: any[];
1576
+ anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
1701
1577
  } | {
1702
1578
  groups: ({
1703
1579
  group: string;
@@ -1706,33 +1582,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1706
1582
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1707
1583
  } | undefined;
1708
1584
  hidden?: boolean | undefined;
1709
- root?: string | {
1710
- href: string;
1711
- title: string;
1712
- sidebarTitle?: string | undefined;
1713
- description?: string | undefined;
1714
- api?: string | undefined;
1715
- openapi?: string | undefined;
1716
- contentType?: string | undefined;
1717
- authMethod?: string | undefined;
1718
- auth?: string | undefined;
1719
- version?: string | undefined;
1720
- mode?: string | undefined;
1721
- hideFooterPagination?: boolean | undefined;
1722
- authors?: unknown;
1723
- lastUpdatedDate?: string | undefined;
1724
- createdDate?: string | undefined;
1725
- 'openapi-schema'?: string | undefined;
1726
- icon?: string | {
1727
- name: string;
1728
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1729
- } | undefined;
1730
- tag?: string | undefined;
1731
- url?: string | undefined;
1732
- hideApiMarker?: boolean | undefined;
1733
- noindex?: boolean | undefined;
1734
- isPublic?: boolean | undefined;
1735
- } | undefined;
1585
+ root?: string | undefined;
1736
1586
  } & ({
1737
1587
  openapi: (string | string[] | {
1738
1588
  source: string;
@@ -1746,7 +1596,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1746
1596
  }))[];
1747
1597
  } | {
1748
1598
  pages: any[];
1749
- })) & (({
1599
+ }) & {
1750
1600
  global?: {
1751
1601
  languages?: ({
1752
1602
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
@@ -1795,65 +1645,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1795
1645
  href: string;
1796
1646
  })[] | undefined;
1797
1647
  } | undefined;
1798
- } & ({
1799
- languages: any[];
1800
- } | {
1801
- versions: any[];
1802
- } | {
1803
- tabs: any[];
1804
- } | {
1805
- dropdowns: any[];
1806
- } | {
1807
- anchors: any[];
1808
- } | {
1809
- groups: ({
1810
- group: string;
1811
- icon?: string | {
1812
- name: string;
1813
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1814
- } | undefined;
1815
- hidden?: boolean | undefined;
1816
- root?: string | {
1817
- href: string;
1818
- title: string;
1819
- sidebarTitle?: string | undefined;
1820
- description?: string | undefined;
1821
- api?: string | undefined;
1822
- openapi?: string | undefined;
1823
- contentType?: string | undefined;
1824
- authMethod?: string | undefined;
1825
- auth?: string | undefined;
1826
- version?: string | undefined;
1827
- mode?: string | undefined;
1828
- hideFooterPagination?: boolean | undefined;
1829
- authors?: unknown;
1830
- lastUpdatedDate?: string | undefined;
1831
- createdDate?: string | undefined;
1832
- 'openapi-schema'?: string | undefined;
1833
- icon?: string | {
1834
- name: string;
1835
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1836
- } | undefined;
1837
- tag?: string | undefined;
1838
- url?: string | undefined;
1839
- hideApiMarker?: boolean | undefined;
1840
- noindex?: boolean | undefined;
1841
- isPublic?: boolean | undefined;
1842
- } | undefined;
1843
- } & ({
1844
- openapi: (string | string[] | {
1845
- source: string;
1846
- directory?: string | undefined;
1847
- }) & (string | string[] | {
1848
- source: string;
1849
- directory?: string | undefined;
1850
- } | undefined);
1851
- } | {
1852
- pages: any[];
1853
- }))[];
1854
- } | {
1855
- pages: any[];
1856
- })) | undefined);
1648
+ }) | undefined);
1857
1649
  $schema?: string | undefined;
1858
1650
  description?: string | undefined;
1859
1651
  logo?: string | {
@@ -2024,7 +1816,39 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2024
1816
  light?: string | undefined;
2025
1817
  dark?: string | undefined;
2026
1818
  };
2027
- navigation: ({
1819
+ navigation: (({
1820
+ languages: import("./schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
1821
+ } | {
1822
+ versions: import("./schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
1823
+ } | {
1824
+ tabs: import("./schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
1825
+ } | {
1826
+ dropdowns: import("./schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
1827
+ } | {
1828
+ anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
1829
+ } | {
1830
+ 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
+ openapi: (string | string[] | {
1840
+ source: string;
1841
+ directory?: string | undefined;
1842
+ }) & (string | string[] | {
1843
+ source: string;
1844
+ directory?: string | undefined;
1845
+ } | undefined);
1846
+ } | {
1847
+ pages: any[];
1848
+ }))[];
1849
+ } | {
1850
+ pages: any[];
1851
+ }) & {
2028
1852
  global?: {
2029
1853
  languages?: ({
2030
1854
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
@@ -2073,16 +1897,16 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2073
1897
  href: string;
2074
1898
  })[] | undefined;
2075
1899
  } | undefined;
2076
- } & ({
2077
- languages: any[];
1900
+ }) & ((({
1901
+ languages: import("./schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
2078
1902
  } | {
2079
- versions: any[];
1903
+ versions: import("./schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
2080
1904
  } | {
2081
- tabs: any[];
1905
+ tabs: import("./schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
2082
1906
  } | {
2083
- dropdowns: any[];
1907
+ dropdowns: import("./schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
2084
1908
  } | {
2085
- anchors: any[];
1909
+ anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
2086
1910
  } | {
2087
1911
  groups: ({
2088
1912
  group: string;
@@ -2091,33 +1915,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2091
1915
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2092
1916
  } | undefined;
2093
1917
  hidden?: boolean | undefined;
2094
- root?: string | {
2095
- href: string;
2096
- title: string;
2097
- sidebarTitle?: string | undefined;
2098
- description?: string | undefined;
2099
- api?: string | undefined;
2100
- openapi?: string | undefined;
2101
- contentType?: string | undefined;
2102
- authMethod?: string | undefined;
2103
- auth?: string | undefined;
2104
- version?: string | undefined;
2105
- mode?: string | undefined;
2106
- hideFooterPagination?: boolean | undefined;
2107
- authors?: unknown;
2108
- lastUpdatedDate?: string | undefined;
2109
- createdDate?: string | undefined;
2110
- 'openapi-schema'?: string | undefined;
2111
- icon?: string | {
2112
- name: string;
2113
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2114
- } | undefined;
2115
- tag?: string | undefined;
2116
- url?: string | undefined;
2117
- hideApiMarker?: boolean | undefined;
2118
- noindex?: boolean | undefined;
2119
- isPublic?: boolean | undefined;
2120
- } | undefined;
1918
+ root?: string | undefined;
2121
1919
  } & ({
2122
1920
  openapi: (string | string[] | {
2123
1921
  source: string;
@@ -2131,7 +1929,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2131
1929
  }))[];
2132
1930
  } | {
2133
1931
  pages: any[];
2134
- })) & (({
1932
+ }) & {
2135
1933
  global?: {
2136
1934
  languages?: ({
2137
1935
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
@@ -2180,65 +1978,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2180
1978
  href: string;
2181
1979
  })[] | undefined;
2182
1980
  } | undefined;
2183
- } & ({
2184
- languages: any[];
2185
- } | {
2186
- versions: any[];
2187
- } | {
2188
- tabs: any[];
2189
- } | {
2190
- dropdowns: any[];
2191
- } | {
2192
- anchors: any[];
2193
- } | {
2194
- groups: ({
2195
- group: string;
2196
- icon?: string | {
2197
- name: string;
2198
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2199
- } | undefined;
2200
- hidden?: boolean | undefined;
2201
- root?: string | {
2202
- href: string;
2203
- title: string;
2204
- sidebarTitle?: string | undefined;
2205
- description?: string | undefined;
2206
- api?: string | undefined;
2207
- openapi?: string | undefined;
2208
- contentType?: string | undefined;
2209
- authMethod?: string | undefined;
2210
- auth?: string | undefined;
2211
- version?: string | undefined;
2212
- mode?: string | undefined;
2213
- hideFooterPagination?: boolean | undefined;
2214
- authors?: unknown;
2215
- lastUpdatedDate?: string | undefined;
2216
- createdDate?: string | undefined;
2217
- 'openapi-schema'?: string | undefined;
2218
- icon?: string | {
2219
- name: string;
2220
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2221
- } | undefined;
2222
- tag?: string | undefined;
2223
- url?: string | undefined;
2224
- hideApiMarker?: boolean | undefined;
2225
- noindex?: boolean | undefined;
2226
- isPublic?: boolean | undefined;
2227
- } | undefined;
2228
- } & ({
2229
- openapi: (string | string[] | {
2230
- source: string;
2231
- directory?: string | undefined;
2232
- }) & (string | string[] | {
2233
- source: string;
2234
- directory?: string | undefined;
2235
- } | undefined);
2236
- } | {
2237
- pages: any[];
2238
- }))[];
2239
- } | {
2240
- pages: any[];
2241
- })) | undefined);
1981
+ }) | undefined);
2242
1982
  $schema?: string | undefined;
2243
1983
  description?: string | undefined;
2244
1984
  logo?: string | {
@@ -2413,7 +2153,39 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2413
2153
  light?: string | undefined;
2414
2154
  dark?: string | undefined;
2415
2155
  };
2416
- navigation: ({
2156
+ navigation: (({
2157
+ languages: import("./schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
2158
+ } | {
2159
+ versions: import("./schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
2160
+ } | {
2161
+ tabs: import("./schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
2162
+ } | {
2163
+ dropdowns: import("./schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
2164
+ } | {
2165
+ anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
2166
+ } | {
2167
+ 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
+ openapi: (string | string[] | {
2177
+ source: string;
2178
+ directory?: string | undefined;
2179
+ }) & (string | string[] | {
2180
+ source: string;
2181
+ directory?: string | undefined;
2182
+ } | undefined);
2183
+ } | {
2184
+ pages: any[];
2185
+ }))[];
2186
+ } | {
2187
+ pages: any[];
2188
+ }) & {
2417
2189
  global?: {
2418
2190
  languages?: ({
2419
2191
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
@@ -2462,16 +2234,16 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2462
2234
  href: string;
2463
2235
  })[] | undefined;
2464
2236
  } | undefined;
2465
- } & ({
2466
- languages: any[];
2237
+ }) & ((({
2238
+ languages: import("./schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
2467
2239
  } | {
2468
- versions: any[];
2240
+ versions: import("./schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
2469
2241
  } | {
2470
- tabs: any[];
2242
+ tabs: import("./schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
2471
2243
  } | {
2472
- dropdowns: any[];
2244
+ dropdowns: import("./schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
2473
2245
  } | {
2474
- anchors: any[];
2246
+ anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
2475
2247
  } | {
2476
2248
  groups: ({
2477
2249
  group: string;
@@ -2480,33 +2252,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2480
2252
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2481
2253
  } | undefined;
2482
2254
  hidden?: boolean | undefined;
2483
- root?: string | {
2484
- href: string;
2485
- title: string;
2486
- sidebarTitle?: string | undefined;
2487
- description?: string | undefined;
2488
- api?: string | undefined;
2489
- openapi?: string | undefined;
2490
- contentType?: string | undefined;
2491
- authMethod?: string | undefined;
2492
- auth?: string | undefined;
2493
- version?: string | undefined;
2494
- mode?: string | undefined;
2495
- hideFooterPagination?: boolean | undefined;
2496
- authors?: unknown;
2497
- lastUpdatedDate?: string | undefined;
2498
- createdDate?: string | undefined;
2499
- 'openapi-schema'?: string | undefined;
2500
- icon?: string | {
2501
- name: string;
2502
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2503
- } | undefined;
2504
- tag?: string | undefined;
2505
- url?: string | undefined;
2506
- hideApiMarker?: boolean | undefined;
2507
- noindex?: boolean | undefined;
2508
- isPublic?: boolean | undefined;
2509
- } | undefined;
2255
+ root?: string | undefined;
2510
2256
  } & ({
2511
2257
  openapi: (string | string[] | {
2512
2258
  source: string;
@@ -2520,7 +2266,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2520
2266
  }))[];
2521
2267
  } | {
2522
2268
  pages: any[];
2523
- })) & (({
2269
+ }) & {
2524
2270
  global?: {
2525
2271
  languages?: ({
2526
2272
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
@@ -2569,65 +2315,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2569
2315
  href: string;
2570
2316
  })[] | undefined;
2571
2317
  } | undefined;
2572
- } & ({
2573
- languages: any[];
2574
- } | {
2575
- versions: any[];
2576
- } | {
2577
- tabs: any[];
2578
- } | {
2579
- dropdowns: any[];
2580
- } | {
2581
- anchors: any[];
2582
- } | {
2583
- groups: ({
2584
- group: string;
2585
- icon?: string | {
2586
- name: string;
2587
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2588
- } | undefined;
2589
- hidden?: boolean | undefined;
2590
- root?: string | {
2591
- href: string;
2592
- title: string;
2593
- sidebarTitle?: string | undefined;
2594
- description?: string | undefined;
2595
- api?: string | undefined;
2596
- openapi?: string | undefined;
2597
- contentType?: string | undefined;
2598
- authMethod?: string | undefined;
2599
- auth?: string | undefined;
2600
- version?: string | undefined;
2601
- mode?: string | undefined;
2602
- hideFooterPagination?: boolean | undefined;
2603
- authors?: unknown;
2604
- lastUpdatedDate?: string | undefined;
2605
- createdDate?: string | undefined;
2606
- 'openapi-schema'?: string | undefined;
2607
- icon?: string | {
2608
- name: string;
2609
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2610
- } | undefined;
2611
- tag?: string | undefined;
2612
- url?: string | undefined;
2613
- hideApiMarker?: boolean | undefined;
2614
- noindex?: boolean | undefined;
2615
- isPublic?: boolean | undefined;
2616
- } | undefined;
2617
- } & ({
2618
- openapi: (string | string[] | {
2619
- source: string;
2620
- directory?: string | undefined;
2621
- }) & (string | string[] | {
2622
- source: string;
2623
- directory?: string | undefined;
2624
- } | undefined);
2625
- } | {
2626
- pages: any[];
2627
- }))[];
2628
- } | {
2629
- pages: any[];
2630
- })) | undefined);
2318
+ }) | undefined);
2631
2319
  description?: string | undefined;
2632
2320
  logo?: string | {
2633
2321
  light: string;
@@ -2798,7 +2486,39 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2798
2486
  light?: string | undefined;
2799
2487
  dark?: string | undefined;
2800
2488
  };
2801
- navigation: ({
2489
+ navigation: (({
2490
+ languages: import("./schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
2491
+ } | {
2492
+ versions: import("./schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
2493
+ } | {
2494
+ tabs: import("./schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
2495
+ } | {
2496
+ dropdowns: import("./schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
2497
+ } | {
2498
+ anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
2499
+ } | {
2500
+ 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
+ openapi: (string | string[] | {
2510
+ source: string;
2511
+ directory?: string | undefined;
2512
+ }) & (string | string[] | {
2513
+ source: string;
2514
+ directory?: string | undefined;
2515
+ } | undefined);
2516
+ } | {
2517
+ pages: any[];
2518
+ }))[];
2519
+ } | {
2520
+ pages: any[];
2521
+ }) & {
2802
2522
  global?: {
2803
2523
  languages?: ({
2804
2524
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
@@ -2847,16 +2567,16 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2847
2567
  href: string;
2848
2568
  })[] | undefined;
2849
2569
  } | undefined;
2850
- } & ({
2851
- languages: any[];
2570
+ }) & ((({
2571
+ languages: import("./schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
2852
2572
  } | {
2853
- versions: any[];
2573
+ versions: import("./schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
2854
2574
  } | {
2855
- tabs: any[];
2575
+ tabs: import("./schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
2856
2576
  } | {
2857
- dropdowns: any[];
2577
+ dropdowns: import("./schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
2858
2578
  } | {
2859
- anchors: any[];
2579
+ anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
2860
2580
  } | {
2861
2581
  groups: ({
2862
2582
  group: string;
@@ -2865,33 +2585,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2865
2585
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2866
2586
  } | undefined;
2867
2587
  hidden?: boolean | undefined;
2868
- root?: string | {
2869
- href: string;
2870
- title: string;
2871
- sidebarTitle?: string | undefined;
2872
- description?: string | undefined;
2873
- api?: string | undefined;
2874
- openapi?: string | undefined;
2875
- contentType?: string | undefined;
2876
- authMethod?: string | undefined;
2877
- auth?: string | undefined;
2878
- version?: string | undefined;
2879
- mode?: string | undefined;
2880
- hideFooterPagination?: boolean | undefined;
2881
- authors?: unknown;
2882
- lastUpdatedDate?: string | undefined;
2883
- createdDate?: string | undefined;
2884
- 'openapi-schema'?: string | undefined;
2885
- icon?: string | {
2886
- name: string;
2887
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2888
- } | undefined;
2889
- tag?: string | undefined;
2890
- url?: string | undefined;
2891
- hideApiMarker?: boolean | undefined;
2892
- noindex?: boolean | undefined;
2893
- isPublic?: boolean | undefined;
2894
- } | undefined;
2588
+ root?: string | undefined;
2895
2589
  } & ({
2896
2590
  openapi: (string | string[] | {
2897
2591
  source: string;
@@ -2905,7 +2599,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2905
2599
  }))[];
2906
2600
  } | {
2907
2601
  pages: any[];
2908
- })) & (({
2602
+ }) & {
2909
2603
  global?: {
2910
2604
  languages?: ({
2911
2605
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
@@ -2954,65 +2648,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2954
2648
  href: string;
2955
2649
  })[] | undefined;
2956
2650
  } | undefined;
2957
- } & ({
2958
- languages: any[];
2959
- } | {
2960
- versions: any[];
2961
- } | {
2962
- tabs: any[];
2963
- } | {
2964
- dropdowns: any[];
2965
- } | {
2966
- anchors: any[];
2967
- } | {
2968
- groups: ({
2969
- group: string;
2970
- icon?: string | {
2971
- name: string;
2972
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2973
- } | undefined;
2974
- hidden?: boolean | undefined;
2975
- root?: string | {
2976
- href: string;
2977
- title: string;
2978
- sidebarTitle?: string | undefined;
2979
- description?: string | undefined;
2980
- api?: string | undefined;
2981
- openapi?: string | undefined;
2982
- contentType?: string | undefined;
2983
- authMethod?: string | undefined;
2984
- auth?: string | undefined;
2985
- version?: string | undefined;
2986
- mode?: string | undefined;
2987
- hideFooterPagination?: boolean | undefined;
2988
- authors?: unknown;
2989
- lastUpdatedDate?: string | undefined;
2990
- createdDate?: string | undefined;
2991
- 'openapi-schema'?: string | undefined;
2992
- icon?: string | {
2993
- name: string;
2994
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2995
- } | undefined;
2996
- tag?: string | undefined;
2997
- url?: string | undefined;
2998
- hideApiMarker?: boolean | undefined;
2999
- noindex?: boolean | undefined;
3000
- isPublic?: boolean | undefined;
3001
- } | undefined;
3002
- } & ({
3003
- openapi: (string | string[] | {
3004
- source: string;
3005
- directory?: string | undefined;
3006
- }) & (string | string[] | {
3007
- source: string;
3008
- directory?: string | undefined;
3009
- } | undefined);
3010
- } | {
3011
- pages: any[];
3012
- }))[];
3013
- } | {
3014
- pages: any[];
3015
- })) | undefined);
2651
+ }) | undefined);
3016
2652
  description?: string | undefined;
3017
2653
  logo?: string | {
3018
2654
  light: string;
@@ -3183,7 +2819,39 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
3183
2819
  light?: string | undefined;
3184
2820
  dark?: string | undefined;
3185
2821
  };
3186
- navigation: ({
2822
+ navigation: (({
2823
+ languages: import("./schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
2824
+ } | {
2825
+ versions: import("./schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
2826
+ } | {
2827
+ tabs: import("./schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
2828
+ } | {
2829
+ dropdowns: import("./schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
2830
+ } | {
2831
+ anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
2832
+ } | {
2833
+ 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
+ openapi: (string | string[] | {
2843
+ source: string;
2844
+ directory?: string | undefined;
2845
+ }) & (string | string[] | {
2846
+ source: string;
2847
+ directory?: string | undefined;
2848
+ } | undefined);
2849
+ } | {
2850
+ pages: any[];
2851
+ }))[];
2852
+ } | {
2853
+ pages: any[];
2854
+ }) & {
3187
2855
  global?: {
3188
2856
  languages?: ({
3189
2857
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
@@ -3232,16 +2900,16 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
3232
2900
  href: string;
3233
2901
  })[] | undefined;
3234
2902
  } | undefined;
3235
- } & ({
3236
- languages: any[];
2903
+ }) & ((({
2904
+ languages: import("./schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
3237
2905
  } | {
3238
- versions: any[];
2906
+ versions: import("./schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
3239
2907
  } | {
3240
- tabs: any[];
2908
+ tabs: import("./schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
3241
2909
  } | {
3242
- dropdowns: any[];
2910
+ dropdowns: import("./schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
3243
2911
  } | {
3244
- anchors: any[];
2912
+ anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
3245
2913
  } | {
3246
2914
  groups: ({
3247
2915
  group: string;
@@ -3250,33 +2918,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
3250
2918
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3251
2919
  } | undefined;
3252
2920
  hidden?: boolean | undefined;
3253
- root?: string | {
3254
- href: string;
3255
- title: string;
3256
- sidebarTitle?: string | undefined;
3257
- description?: string | undefined;
3258
- api?: string | undefined;
3259
- openapi?: string | undefined;
3260
- contentType?: string | undefined;
3261
- authMethod?: string | undefined;
3262
- auth?: string | undefined;
3263
- version?: string | undefined;
3264
- mode?: string | undefined;
3265
- hideFooterPagination?: boolean | undefined;
3266
- authors?: unknown;
3267
- lastUpdatedDate?: string | undefined;
3268
- createdDate?: string | undefined;
3269
- 'openapi-schema'?: string | undefined;
3270
- icon?: string | {
3271
- name: string;
3272
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3273
- } | undefined;
3274
- tag?: string | undefined;
3275
- url?: string | undefined;
3276
- hideApiMarker?: boolean | undefined;
3277
- noindex?: boolean | undefined;
3278
- isPublic?: boolean | undefined;
3279
- } | undefined;
2921
+ root?: string | undefined;
3280
2922
  } & ({
3281
2923
  openapi: (string | string[] | {
3282
2924
  source: string;
@@ -3290,7 +2932,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
3290
2932
  }))[];
3291
2933
  } | {
3292
2934
  pages: any[];
3293
- })) & (({
2935
+ }) & {
3294
2936
  global?: {
3295
2937
  languages?: ({
3296
2938
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
@@ -3339,65 +2981,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
3339
2981
  href: string;
3340
2982
  })[] | undefined;
3341
2983
  } | undefined;
3342
- } & ({
3343
- languages: any[];
3344
- } | {
3345
- versions: any[];
3346
- } | {
3347
- tabs: any[];
3348
- } | {
3349
- dropdowns: any[];
3350
- } | {
3351
- anchors: any[];
3352
- } | {
3353
- groups: ({
3354
- group: string;
3355
- icon?: string | {
3356
- name: string;
3357
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3358
- } | undefined;
3359
- hidden?: boolean | undefined;
3360
- root?: string | {
3361
- href: string;
3362
- title: string;
3363
- sidebarTitle?: string | undefined;
3364
- description?: string | undefined;
3365
- api?: string | undefined;
3366
- openapi?: string | undefined;
3367
- contentType?: string | undefined;
3368
- authMethod?: string | undefined;
3369
- auth?: string | undefined;
3370
- version?: string | undefined;
3371
- mode?: string | undefined;
3372
- hideFooterPagination?: boolean | undefined;
3373
- authors?: unknown;
3374
- lastUpdatedDate?: string | undefined;
3375
- createdDate?: string | undefined;
3376
- 'openapi-schema'?: string | undefined;
3377
- icon?: string | {
3378
- name: string;
3379
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3380
- } | undefined;
3381
- tag?: string | undefined;
3382
- url?: string | undefined;
3383
- hideApiMarker?: boolean | undefined;
3384
- noindex?: boolean | undefined;
3385
- isPublic?: boolean | undefined;
3386
- } | undefined;
3387
- } & ({
3388
- openapi: (string | string[] | {
3389
- source: string;
3390
- directory?: string | undefined;
3391
- }) & (string | string[] | {
3392
- source: string;
3393
- directory?: string | undefined;
3394
- } | undefined);
3395
- } | {
3396
- pages: any[];
3397
- }))[];
3398
- } | {
3399
- pages: any[];
3400
- })) | undefined);
2984
+ }) | undefined);
3401
2985
  description?: string | undefined;
3402
2986
  logo?: string | {
3403
2987
  light: string;
@@ -3568,7 +3152,39 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
3568
3152
  light?: string | undefined;
3569
3153
  dark?: string | undefined;
3570
3154
  };
3571
- navigation: ({
3155
+ navigation: (({
3156
+ languages: import("./schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
3157
+ } | {
3158
+ versions: import("./schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
3159
+ } | {
3160
+ tabs: import("./schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
3161
+ } | {
3162
+ dropdowns: import("./schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
3163
+ } | {
3164
+ anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
3165
+ } | {
3166
+ 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
+ openapi: (string | string[] | {
3176
+ source: string;
3177
+ directory?: string | undefined;
3178
+ }) & (string | string[] | {
3179
+ source: string;
3180
+ directory?: string | undefined;
3181
+ } | undefined);
3182
+ } | {
3183
+ pages: any[];
3184
+ }))[];
3185
+ } | {
3186
+ pages: any[];
3187
+ }) & {
3572
3188
  global?: {
3573
3189
  languages?: ({
3574
3190
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
@@ -3617,16 +3233,16 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
3617
3233
  href: string;
3618
3234
  })[] | undefined;
3619
3235
  } | undefined;
3620
- } & ({
3621
- languages: any[];
3236
+ }) & ((({
3237
+ languages: import("./schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
3622
3238
  } | {
3623
- versions: any[];
3239
+ versions: import("./schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
3624
3240
  } | {
3625
- tabs: any[];
3241
+ tabs: import("./schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
3626
3242
  } | {
3627
- dropdowns: any[];
3243
+ dropdowns: import("./schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
3628
3244
  } | {
3629
- anchors: any[];
3245
+ anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
3630
3246
  } | {
3631
3247
  groups: ({
3632
3248
  group: string;
@@ -3635,33 +3251,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
3635
3251
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3636
3252
  } | undefined;
3637
3253
  hidden?: boolean | undefined;
3638
- root?: string | {
3639
- href: string;
3640
- title: string;
3641
- sidebarTitle?: string | undefined;
3642
- description?: string | undefined;
3643
- api?: string | undefined;
3644
- openapi?: string | undefined;
3645
- contentType?: string | undefined;
3646
- authMethod?: string | undefined;
3647
- auth?: string | undefined;
3648
- version?: string | undefined;
3649
- mode?: string | undefined;
3650
- hideFooterPagination?: boolean | undefined;
3651
- authors?: unknown;
3652
- lastUpdatedDate?: string | undefined;
3653
- createdDate?: string | undefined;
3654
- 'openapi-schema'?: string | undefined;
3655
- icon?: string | {
3656
- name: string;
3657
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3658
- } | undefined;
3659
- tag?: string | undefined;
3660
- url?: string | undefined;
3661
- hideApiMarker?: boolean | undefined;
3662
- noindex?: boolean | undefined;
3663
- isPublic?: boolean | undefined;
3664
- } | undefined;
3254
+ root?: string | undefined;
3665
3255
  } & ({
3666
3256
  openapi: (string | string[] | {
3667
3257
  source: string;
@@ -3675,7 +3265,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
3675
3265
  }))[];
3676
3266
  } | {
3677
3267
  pages: any[];
3678
- })) & (({
3268
+ }) & {
3679
3269
  global?: {
3680
3270
  languages?: ({
3681
3271
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
@@ -3724,65 +3314,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
3724
3314
  href: string;
3725
3315
  })[] | undefined;
3726
3316
  } | undefined;
3727
- } & ({
3728
- languages: any[];
3729
- } | {
3730
- versions: any[];
3731
- } | {
3732
- tabs: any[];
3733
- } | {
3734
- dropdowns: any[];
3735
- } | {
3736
- anchors: any[];
3737
- } | {
3738
- groups: ({
3739
- group: string;
3740
- icon?: string | {
3741
- name: string;
3742
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3743
- } | undefined;
3744
- hidden?: boolean | undefined;
3745
- root?: string | {
3746
- href: string;
3747
- title: string;
3748
- sidebarTitle?: string | undefined;
3749
- description?: string | undefined;
3750
- api?: string | undefined;
3751
- openapi?: string | undefined;
3752
- contentType?: string | undefined;
3753
- authMethod?: string | undefined;
3754
- auth?: string | undefined;
3755
- version?: string | undefined;
3756
- mode?: string | undefined;
3757
- hideFooterPagination?: boolean | undefined;
3758
- authors?: unknown;
3759
- lastUpdatedDate?: string | undefined;
3760
- createdDate?: string | undefined;
3761
- 'openapi-schema'?: string | undefined;
3762
- icon?: string | {
3763
- name: string;
3764
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3765
- } | undefined;
3766
- tag?: string | undefined;
3767
- url?: string | undefined;
3768
- hideApiMarker?: boolean | undefined;
3769
- noindex?: boolean | undefined;
3770
- isPublic?: boolean | undefined;
3771
- } | undefined;
3772
- } & ({
3773
- openapi: (string | string[] | {
3774
- source: string;
3775
- directory?: string | undefined;
3776
- }) & (string | string[] | {
3777
- source: string;
3778
- directory?: string | undefined;
3779
- } | undefined);
3780
- } | {
3781
- pages: any[];
3782
- }))[];
3783
- } | {
3784
- pages: any[];
3785
- })) | undefined);
3317
+ }) | undefined);
3786
3318
  description?: string | undefined;
3787
3319
  logo?: string | {
3788
3320
  light: string;
@@ -3953,7 +3485,39 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
3953
3485
  light?: string | undefined;
3954
3486
  dark?: string | undefined;
3955
3487
  };
3956
- navigation: ({
3488
+ navigation: (({
3489
+ languages: import("./schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
3490
+ } | {
3491
+ versions: import("./schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
3492
+ } | {
3493
+ tabs: import("./schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
3494
+ } | {
3495
+ dropdowns: import("./schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
3496
+ } | {
3497
+ anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
3498
+ } | {
3499
+ 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
+ openapi: (string | string[] | {
3509
+ source: string;
3510
+ directory?: string | undefined;
3511
+ }) & (string | string[] | {
3512
+ source: string;
3513
+ directory?: string | undefined;
3514
+ } | undefined);
3515
+ } | {
3516
+ pages: any[];
3517
+ }))[];
3518
+ } | {
3519
+ pages: any[];
3520
+ }) & {
3957
3521
  global?: {
3958
3522
  languages?: ({
3959
3523
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
@@ -4002,16 +3566,16 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
4002
3566
  href: string;
4003
3567
  })[] | undefined;
4004
3568
  } | undefined;
4005
- } & ({
4006
- languages: any[];
3569
+ }) & ((({
3570
+ languages: import("./schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
4007
3571
  } | {
4008
- versions: any[];
3572
+ versions: import("./schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
4009
3573
  } | {
4010
- tabs: any[];
3574
+ tabs: import("./schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
4011
3575
  } | {
4012
- dropdowns: any[];
3576
+ dropdowns: import("./schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
4013
3577
  } | {
4014
- anchors: any[];
3578
+ anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
4015
3579
  } | {
4016
3580
  groups: ({
4017
3581
  group: string;
@@ -4020,33 +3584,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
4020
3584
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4021
3585
  } | undefined;
4022
3586
  hidden?: boolean | undefined;
4023
- root?: string | {
4024
- href: string;
4025
- title: string;
4026
- sidebarTitle?: string | undefined;
4027
- description?: string | undefined;
4028
- api?: string | undefined;
4029
- openapi?: string | undefined;
4030
- contentType?: string | undefined;
4031
- authMethod?: string | undefined;
4032
- auth?: string | undefined;
4033
- version?: string | undefined;
4034
- mode?: string | undefined;
4035
- hideFooterPagination?: boolean | undefined;
4036
- authors?: unknown;
4037
- lastUpdatedDate?: string | undefined;
4038
- createdDate?: string | undefined;
4039
- 'openapi-schema'?: string | undefined;
4040
- icon?: string | {
4041
- name: string;
4042
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4043
- } | undefined;
4044
- tag?: string | undefined;
4045
- url?: string | undefined;
4046
- hideApiMarker?: boolean | undefined;
4047
- noindex?: boolean | undefined;
4048
- isPublic?: boolean | undefined;
4049
- } | undefined;
3587
+ root?: string | undefined;
4050
3588
  } & ({
4051
3589
  openapi: (string | string[] | {
4052
3590
  source: string;
@@ -4060,7 +3598,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
4060
3598
  }))[];
4061
3599
  } | {
4062
3600
  pages: any[];
4063
- })) & (({
3601
+ }) & {
4064
3602
  global?: {
4065
3603
  languages?: ({
4066
3604
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
@@ -4109,65 +3647,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
4109
3647
  href: string;
4110
3648
  })[] | undefined;
4111
3649
  } | undefined;
4112
- } & ({
4113
- languages: any[];
4114
- } | {
4115
- versions: any[];
4116
- } | {
4117
- tabs: any[];
4118
- } | {
4119
- dropdowns: any[];
4120
- } | {
4121
- anchors: any[];
4122
- } | {
4123
- groups: ({
4124
- group: string;
4125
- icon?: string | {
4126
- name: string;
4127
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4128
- } | undefined;
4129
- hidden?: boolean | undefined;
4130
- root?: string | {
4131
- href: string;
4132
- title: string;
4133
- sidebarTitle?: string | undefined;
4134
- description?: string | undefined;
4135
- api?: string | undefined;
4136
- openapi?: string | undefined;
4137
- contentType?: string | undefined;
4138
- authMethod?: string | undefined;
4139
- auth?: string | undefined;
4140
- version?: string | undefined;
4141
- mode?: string | undefined;
4142
- hideFooterPagination?: boolean | undefined;
4143
- authors?: unknown;
4144
- lastUpdatedDate?: string | undefined;
4145
- createdDate?: string | undefined;
4146
- 'openapi-schema'?: string | undefined;
4147
- icon?: string | {
4148
- name: string;
4149
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4150
- } | undefined;
4151
- tag?: string | undefined;
4152
- url?: string | undefined;
4153
- hideApiMarker?: boolean | undefined;
4154
- noindex?: boolean | undefined;
4155
- isPublic?: boolean | undefined;
4156
- } | undefined;
4157
- } & ({
4158
- openapi: (string | string[] | {
4159
- source: string;
4160
- directory?: string | undefined;
4161
- }) & (string | string[] | {
4162
- source: string;
4163
- directory?: string | undefined;
4164
- } | undefined);
4165
- } | {
4166
- pages: any[];
4167
- }))[];
4168
- } | {
4169
- pages: any[];
4170
- })) | undefined);
3650
+ }) | undefined);
4171
3651
  description?: string | undefined;
4172
3652
  logo?: string | {
4173
3653
  light: string;