@mintlify/validation 0.1.254 → 0.1.256
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/mint-config/schemas/v2/index.d.ts +3922 -7432
- package/dist/mint-config/schemas/v2/properties/index.d.ts +1 -0
- package/dist/mint-config/schemas/v2/properties/index.js +1 -0
- package/dist/mint-config/schemas/v2/properties/navigation/anchors.d.ts +12 -455
- package/dist/mint-config/schemas/v2/properties/navigation/anchors.js +28 -11
- package/dist/mint-config/schemas/v2/properties/navigation/divisionNav.d.ts +56 -0
- package/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js +5 -0
- package/dist/mint-config/schemas/v2/properties/navigation/dropdown.d.ts +13 -330
- package/dist/mint-config/schemas/v2/properties/navigation/dropdown.js +28 -11
- package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +22 -646
- package/dist/mint-config/schemas/v2/properties/navigation/groups.js +15 -13
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +258 -1495
- package/dist/mint-config/schemas/v2/properties/navigation/index.js +23 -13
- package/dist/mint-config/schemas/v2/properties/navigation/languages.d.ts +11 -202
- package/dist/mint-config/schemas/v2/properties/navigation/languages.js +33 -11
- package/dist/mint-config/schemas/v2/properties/navigation/pages.d.ts +2 -3
- package/dist/mint-config/schemas/v2/properties/navigation/pages.js +2 -2
- package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +11 -328
- package/dist/mint-config/schemas/v2/properties/navigation/tabs.js +28 -11
- package/dist/mint-config/schemas/v2/properties/navigation/version.d.ts +12 -203
- package/dist/mint-config/schemas/v2/properties/navigation/version.js +28 -11
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +253 -955
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +253 -955
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +253 -955
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +253 -955
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +143 -737
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +253 -955
- package/dist/mint-config/upgrades/convertMintDecoratedNavToDocsDecoratedNav.d.ts +14 -0
- package/dist/mint-config/upgrades/convertMintDecoratedNavToDocsDecoratedNav.js +98 -0
- package/dist/mint-config/upgrades/updateNavigationToDocsConfig.js +14 -8
- package/dist/mint-config/validateConfig.d.ts +420 -960
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/dist/mint-config/schemas/v2/properties/navigation/divisionSchemas.d.ts +0 -7
- 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:
|
|
568
|
+
}) & ((({
|
|
569
|
+
languages: import("./schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
538
570
|
} | {
|
|
539
|
-
versions:
|
|
571
|
+
versions: import("./schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
540
572
|
} | {
|
|
541
|
-
tabs:
|
|
573
|
+
tabs: import("./schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
542
574
|
} | {
|
|
543
|
-
dropdowns:
|
|
575
|
+
dropdowns: import("./schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
544
576
|
} | {
|
|
545
|
-
anchors:
|
|
577
|
+
anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
546
578
|
} | {
|
|
547
579
|
groups: ({
|
|
548
580
|
group: string;
|
|
@@ -551,34 +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
|
-
public?: boolean | undefined;
|
|
581
|
-
} | undefined;
|
|
586
|
+
root?: string | undefined;
|
|
582
587
|
} & ({
|
|
583
588
|
openapi: (string | string[] | {
|
|
584
589
|
source: string;
|
|
@@ -592,7 +597,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
592
597
|
}))[];
|
|
593
598
|
} | {
|
|
594
599
|
pages: any[];
|
|
595
|
-
})
|
|
600
|
+
}) & {
|
|
596
601
|
global?: {
|
|
597
602
|
languages?: ({
|
|
598
603
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
@@ -641,66 +646,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
641
646
|
href: string;
|
|
642
647
|
})[] | undefined;
|
|
643
648
|
} | undefined;
|
|
644
|
-
}
|
|
645
|
-
languages: any[];
|
|
646
|
-
} | {
|
|
647
|
-
versions: any[];
|
|
648
|
-
} | {
|
|
649
|
-
tabs: any[];
|
|
650
|
-
} | {
|
|
651
|
-
dropdowns: any[];
|
|
652
|
-
} | {
|
|
653
|
-
anchors: any[];
|
|
654
|
-
} | {
|
|
655
|
-
groups: ({
|
|
656
|
-
group: string;
|
|
657
|
-
icon?: string | {
|
|
658
|
-
name: string;
|
|
659
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
660
|
-
} | undefined;
|
|
661
|
-
hidden?: boolean | undefined;
|
|
662
|
-
root?: string | {
|
|
663
|
-
href: string;
|
|
664
|
-
title: string;
|
|
665
|
-
sidebarTitle?: string | undefined;
|
|
666
|
-
description?: string | undefined;
|
|
667
|
-
api?: string | undefined;
|
|
668
|
-
openapi?: string | undefined;
|
|
669
|
-
contentType?: string | undefined;
|
|
670
|
-
authMethod?: string | undefined;
|
|
671
|
-
auth?: string | undefined;
|
|
672
|
-
version?: string | undefined;
|
|
673
|
-
mode?: string | undefined;
|
|
674
|
-
hideFooterPagination?: boolean | undefined;
|
|
675
|
-
authors?: unknown;
|
|
676
|
-
lastUpdatedDate?: string | undefined;
|
|
677
|
-
createdDate?: string | undefined;
|
|
678
|
-
'openapi-schema'?: string | undefined;
|
|
679
|
-
icon?: string | {
|
|
680
|
-
name: string;
|
|
681
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
682
|
-
} | undefined;
|
|
683
|
-
tag?: string | undefined;
|
|
684
|
-
url?: string | undefined;
|
|
685
|
-
hideApiMarker?: boolean | undefined;
|
|
686
|
-
noindex?: boolean | undefined;
|
|
687
|
-
isPublic?: boolean | undefined;
|
|
688
|
-
public?: boolean | undefined;
|
|
689
|
-
} | undefined;
|
|
690
|
-
} & ({
|
|
691
|
-
openapi: (string | string[] | {
|
|
692
|
-
source: string;
|
|
693
|
-
directory?: string | undefined;
|
|
694
|
-
}) & (string | string[] | {
|
|
695
|
-
source: string;
|
|
696
|
-
directory?: string | undefined;
|
|
697
|
-
} | undefined);
|
|
698
|
-
} | {
|
|
699
|
-
pages: any[];
|
|
700
|
-
}))[];
|
|
701
|
-
} | {
|
|
702
|
-
pages: any[];
|
|
703
|
-
})) | undefined);
|
|
649
|
+
}) | undefined);
|
|
704
650
|
$schema?: string | undefined;
|
|
705
651
|
description?: string | undefined;
|
|
706
652
|
logo?: string | {
|
|
@@ -871,7 +817,39 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
871
817
|
light?: string | undefined;
|
|
872
818
|
dark?: string | undefined;
|
|
873
819
|
};
|
|
874
|
-
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
|
+
}) & {
|
|
875
853
|
global?: {
|
|
876
854
|
languages?: ({
|
|
877
855
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
@@ -920,16 +898,16 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
920
898
|
href: string;
|
|
921
899
|
})[] | undefined;
|
|
922
900
|
} | undefined;
|
|
923
|
-
} & ({
|
|
924
|
-
languages:
|
|
901
|
+
}) & ((({
|
|
902
|
+
languages: import("./schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
925
903
|
} | {
|
|
926
|
-
versions:
|
|
904
|
+
versions: import("./schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
927
905
|
} | {
|
|
928
|
-
tabs:
|
|
906
|
+
tabs: import("./schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
929
907
|
} | {
|
|
930
|
-
dropdowns:
|
|
908
|
+
dropdowns: import("./schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
931
909
|
} | {
|
|
932
|
-
anchors:
|
|
910
|
+
anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
933
911
|
} | {
|
|
934
912
|
groups: ({
|
|
935
913
|
group: string;
|
|
@@ -938,34 +916,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
938
916
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
939
917
|
} | undefined;
|
|
940
918
|
hidden?: boolean | undefined;
|
|
941
|
-
root?: string |
|
|
942
|
-
href: string;
|
|
943
|
-
title: string;
|
|
944
|
-
sidebarTitle?: string | undefined;
|
|
945
|
-
description?: string | undefined;
|
|
946
|
-
api?: string | undefined;
|
|
947
|
-
openapi?: string | undefined;
|
|
948
|
-
contentType?: string | undefined;
|
|
949
|
-
authMethod?: string | undefined;
|
|
950
|
-
auth?: string | undefined;
|
|
951
|
-
version?: string | undefined;
|
|
952
|
-
mode?: string | undefined;
|
|
953
|
-
hideFooterPagination?: boolean | undefined;
|
|
954
|
-
authors?: unknown;
|
|
955
|
-
lastUpdatedDate?: string | undefined;
|
|
956
|
-
createdDate?: string | undefined;
|
|
957
|
-
'openapi-schema'?: string | undefined;
|
|
958
|
-
icon?: string | {
|
|
959
|
-
name: string;
|
|
960
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
961
|
-
} | undefined;
|
|
962
|
-
tag?: string | undefined;
|
|
963
|
-
url?: string | undefined;
|
|
964
|
-
hideApiMarker?: boolean | undefined;
|
|
965
|
-
noindex?: boolean | undefined;
|
|
966
|
-
isPublic?: boolean | undefined;
|
|
967
|
-
public?: boolean | undefined;
|
|
968
|
-
} | undefined;
|
|
919
|
+
root?: string | undefined;
|
|
969
920
|
} & ({
|
|
970
921
|
openapi: (string | string[] | {
|
|
971
922
|
source: string;
|
|
@@ -979,7 +930,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
979
930
|
}))[];
|
|
980
931
|
} | {
|
|
981
932
|
pages: any[];
|
|
982
|
-
})
|
|
933
|
+
}) & {
|
|
983
934
|
global?: {
|
|
984
935
|
languages?: ({
|
|
985
936
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
@@ -1028,66 +979,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1028
979
|
href: string;
|
|
1029
980
|
})[] | undefined;
|
|
1030
981
|
} | undefined;
|
|
1031
|
-
}
|
|
1032
|
-
languages: any[];
|
|
1033
|
-
} | {
|
|
1034
|
-
versions: any[];
|
|
1035
|
-
} | {
|
|
1036
|
-
tabs: any[];
|
|
1037
|
-
} | {
|
|
1038
|
-
dropdowns: any[];
|
|
1039
|
-
} | {
|
|
1040
|
-
anchors: any[];
|
|
1041
|
-
} | {
|
|
1042
|
-
groups: ({
|
|
1043
|
-
group: string;
|
|
1044
|
-
icon?: string | {
|
|
1045
|
-
name: string;
|
|
1046
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1047
|
-
} | undefined;
|
|
1048
|
-
hidden?: boolean | undefined;
|
|
1049
|
-
root?: string | {
|
|
1050
|
-
href: string;
|
|
1051
|
-
title: string;
|
|
1052
|
-
sidebarTitle?: string | undefined;
|
|
1053
|
-
description?: string | undefined;
|
|
1054
|
-
api?: string | undefined;
|
|
1055
|
-
openapi?: string | undefined;
|
|
1056
|
-
contentType?: string | undefined;
|
|
1057
|
-
authMethod?: string | undefined;
|
|
1058
|
-
auth?: string | undefined;
|
|
1059
|
-
version?: string | undefined;
|
|
1060
|
-
mode?: string | undefined;
|
|
1061
|
-
hideFooterPagination?: boolean | undefined;
|
|
1062
|
-
authors?: unknown;
|
|
1063
|
-
lastUpdatedDate?: string | undefined;
|
|
1064
|
-
createdDate?: string | undefined;
|
|
1065
|
-
'openapi-schema'?: string | undefined;
|
|
1066
|
-
icon?: string | {
|
|
1067
|
-
name: string;
|
|
1068
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1069
|
-
} | undefined;
|
|
1070
|
-
tag?: string | undefined;
|
|
1071
|
-
url?: string | undefined;
|
|
1072
|
-
hideApiMarker?: boolean | undefined;
|
|
1073
|
-
noindex?: boolean | undefined;
|
|
1074
|
-
isPublic?: boolean | undefined;
|
|
1075
|
-
public?: boolean | undefined;
|
|
1076
|
-
} | undefined;
|
|
1077
|
-
} & ({
|
|
1078
|
-
openapi: (string | string[] | {
|
|
1079
|
-
source: string;
|
|
1080
|
-
directory?: string | undefined;
|
|
1081
|
-
}) & (string | string[] | {
|
|
1082
|
-
source: string;
|
|
1083
|
-
directory?: string | undefined;
|
|
1084
|
-
} | undefined);
|
|
1085
|
-
} | {
|
|
1086
|
-
pages: any[];
|
|
1087
|
-
}))[];
|
|
1088
|
-
} | {
|
|
1089
|
-
pages: any[];
|
|
1090
|
-
})) | undefined);
|
|
982
|
+
}) | undefined);
|
|
1091
983
|
$schema?: string | undefined;
|
|
1092
984
|
description?: string | undefined;
|
|
1093
985
|
logo?: string | {
|
|
@@ -1258,7 +1150,39 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1258
1150
|
light?: string | undefined;
|
|
1259
1151
|
dark?: string | undefined;
|
|
1260
1152
|
};
|
|
1261
|
-
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
|
+
}) & {
|
|
1262
1186
|
global?: {
|
|
1263
1187
|
languages?: ({
|
|
1264
1188
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
@@ -1307,16 +1231,16 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1307
1231
|
href: string;
|
|
1308
1232
|
})[] | undefined;
|
|
1309
1233
|
} | undefined;
|
|
1310
|
-
} & ({
|
|
1311
|
-
languages:
|
|
1234
|
+
}) & ((({
|
|
1235
|
+
languages: import("./schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
1312
1236
|
} | {
|
|
1313
|
-
versions:
|
|
1237
|
+
versions: import("./schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
1314
1238
|
} | {
|
|
1315
|
-
tabs:
|
|
1239
|
+
tabs: import("./schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
1316
1240
|
} | {
|
|
1317
|
-
dropdowns:
|
|
1241
|
+
dropdowns: import("./schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
1318
1242
|
} | {
|
|
1319
|
-
anchors:
|
|
1243
|
+
anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
1320
1244
|
} | {
|
|
1321
1245
|
groups: ({
|
|
1322
1246
|
group: string;
|
|
@@ -1325,34 +1249,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1325
1249
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1326
1250
|
} | undefined;
|
|
1327
1251
|
hidden?: boolean | undefined;
|
|
1328
|
-
root?: string |
|
|
1329
|
-
href: string;
|
|
1330
|
-
title: string;
|
|
1331
|
-
sidebarTitle?: string | undefined;
|
|
1332
|
-
description?: string | undefined;
|
|
1333
|
-
api?: string | undefined;
|
|
1334
|
-
openapi?: string | undefined;
|
|
1335
|
-
contentType?: string | undefined;
|
|
1336
|
-
authMethod?: string | undefined;
|
|
1337
|
-
auth?: string | undefined;
|
|
1338
|
-
version?: string | undefined;
|
|
1339
|
-
mode?: string | undefined;
|
|
1340
|
-
hideFooterPagination?: boolean | undefined;
|
|
1341
|
-
authors?: unknown;
|
|
1342
|
-
lastUpdatedDate?: string | undefined;
|
|
1343
|
-
createdDate?: string | undefined;
|
|
1344
|
-
'openapi-schema'?: string | undefined;
|
|
1345
|
-
icon?: string | {
|
|
1346
|
-
name: string;
|
|
1347
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1348
|
-
} | undefined;
|
|
1349
|
-
tag?: string | undefined;
|
|
1350
|
-
url?: string | undefined;
|
|
1351
|
-
hideApiMarker?: boolean | undefined;
|
|
1352
|
-
noindex?: boolean | undefined;
|
|
1353
|
-
isPublic?: boolean | undefined;
|
|
1354
|
-
public?: boolean | undefined;
|
|
1355
|
-
} | undefined;
|
|
1252
|
+
root?: string | undefined;
|
|
1356
1253
|
} & ({
|
|
1357
1254
|
openapi: (string | string[] | {
|
|
1358
1255
|
source: string;
|
|
@@ -1366,7 +1263,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1366
1263
|
}))[];
|
|
1367
1264
|
} | {
|
|
1368
1265
|
pages: any[];
|
|
1369
|
-
})
|
|
1266
|
+
}) & {
|
|
1370
1267
|
global?: {
|
|
1371
1268
|
languages?: ({
|
|
1372
1269
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
@@ -1415,66 +1312,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1415
1312
|
href: string;
|
|
1416
1313
|
})[] | undefined;
|
|
1417
1314
|
} | undefined;
|
|
1418
|
-
}
|
|
1419
|
-
languages: any[];
|
|
1420
|
-
} | {
|
|
1421
|
-
versions: any[];
|
|
1422
|
-
} | {
|
|
1423
|
-
tabs: any[];
|
|
1424
|
-
} | {
|
|
1425
|
-
dropdowns: any[];
|
|
1426
|
-
} | {
|
|
1427
|
-
anchors: any[];
|
|
1428
|
-
} | {
|
|
1429
|
-
groups: ({
|
|
1430
|
-
group: string;
|
|
1431
|
-
icon?: string | {
|
|
1432
|
-
name: string;
|
|
1433
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1434
|
-
} | undefined;
|
|
1435
|
-
hidden?: boolean | undefined;
|
|
1436
|
-
root?: string | {
|
|
1437
|
-
href: string;
|
|
1438
|
-
title: string;
|
|
1439
|
-
sidebarTitle?: string | undefined;
|
|
1440
|
-
description?: string | undefined;
|
|
1441
|
-
api?: string | undefined;
|
|
1442
|
-
openapi?: string | undefined;
|
|
1443
|
-
contentType?: string | undefined;
|
|
1444
|
-
authMethod?: string | undefined;
|
|
1445
|
-
auth?: string | undefined;
|
|
1446
|
-
version?: string | undefined;
|
|
1447
|
-
mode?: string | undefined;
|
|
1448
|
-
hideFooterPagination?: boolean | undefined;
|
|
1449
|
-
authors?: unknown;
|
|
1450
|
-
lastUpdatedDate?: string | undefined;
|
|
1451
|
-
createdDate?: string | undefined;
|
|
1452
|
-
'openapi-schema'?: string | undefined;
|
|
1453
|
-
icon?: string | {
|
|
1454
|
-
name: string;
|
|
1455
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1456
|
-
} | undefined;
|
|
1457
|
-
tag?: string | undefined;
|
|
1458
|
-
url?: string | undefined;
|
|
1459
|
-
hideApiMarker?: boolean | undefined;
|
|
1460
|
-
noindex?: boolean | undefined;
|
|
1461
|
-
isPublic?: boolean | undefined;
|
|
1462
|
-
public?: boolean | undefined;
|
|
1463
|
-
} | undefined;
|
|
1464
|
-
} & ({
|
|
1465
|
-
openapi: (string | string[] | {
|
|
1466
|
-
source: string;
|
|
1467
|
-
directory?: string | undefined;
|
|
1468
|
-
}) & (string | string[] | {
|
|
1469
|
-
source: string;
|
|
1470
|
-
directory?: string | undefined;
|
|
1471
|
-
} | undefined);
|
|
1472
|
-
} | {
|
|
1473
|
-
pages: any[];
|
|
1474
|
-
}))[];
|
|
1475
|
-
} | {
|
|
1476
|
-
pages: any[];
|
|
1477
|
-
})) | undefined);
|
|
1315
|
+
}) | undefined);
|
|
1478
1316
|
$schema?: string | undefined;
|
|
1479
1317
|
description?: string | undefined;
|
|
1480
1318
|
logo?: string | {
|
|
@@ -1645,7 +1483,39 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1645
1483
|
light?: string | undefined;
|
|
1646
1484
|
dark?: string | undefined;
|
|
1647
1485
|
};
|
|
1648
|
-
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
|
+
}) & {
|
|
1649
1519
|
global?: {
|
|
1650
1520
|
languages?: ({
|
|
1651
1521
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
@@ -1694,16 +1564,16 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1694
1564
|
href: string;
|
|
1695
1565
|
})[] | undefined;
|
|
1696
1566
|
} | undefined;
|
|
1697
|
-
} & ({
|
|
1698
|
-
languages:
|
|
1567
|
+
}) & ((({
|
|
1568
|
+
languages: import("./schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
1699
1569
|
} | {
|
|
1700
|
-
versions:
|
|
1570
|
+
versions: import("./schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
1701
1571
|
} | {
|
|
1702
|
-
tabs:
|
|
1572
|
+
tabs: import("./schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
1703
1573
|
} | {
|
|
1704
|
-
dropdowns:
|
|
1574
|
+
dropdowns: import("./schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
1705
1575
|
} | {
|
|
1706
|
-
anchors:
|
|
1576
|
+
anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
1707
1577
|
} | {
|
|
1708
1578
|
groups: ({
|
|
1709
1579
|
group: string;
|
|
@@ -1712,34 +1582,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1712
1582
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1713
1583
|
} | undefined;
|
|
1714
1584
|
hidden?: boolean | undefined;
|
|
1715
|
-
root?: string |
|
|
1716
|
-
href: string;
|
|
1717
|
-
title: string;
|
|
1718
|
-
sidebarTitle?: string | undefined;
|
|
1719
|
-
description?: string | undefined;
|
|
1720
|
-
api?: string | undefined;
|
|
1721
|
-
openapi?: string | undefined;
|
|
1722
|
-
contentType?: string | undefined;
|
|
1723
|
-
authMethod?: string | undefined;
|
|
1724
|
-
auth?: string | undefined;
|
|
1725
|
-
version?: string | undefined;
|
|
1726
|
-
mode?: string | undefined;
|
|
1727
|
-
hideFooterPagination?: boolean | undefined;
|
|
1728
|
-
authors?: unknown;
|
|
1729
|
-
lastUpdatedDate?: string | undefined;
|
|
1730
|
-
createdDate?: string | undefined;
|
|
1731
|
-
'openapi-schema'?: string | undefined;
|
|
1732
|
-
icon?: string | {
|
|
1733
|
-
name: string;
|
|
1734
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1735
|
-
} | undefined;
|
|
1736
|
-
tag?: string | undefined;
|
|
1737
|
-
url?: string | undefined;
|
|
1738
|
-
hideApiMarker?: boolean | undefined;
|
|
1739
|
-
noindex?: boolean | undefined;
|
|
1740
|
-
isPublic?: boolean | undefined;
|
|
1741
|
-
public?: boolean | undefined;
|
|
1742
|
-
} | undefined;
|
|
1585
|
+
root?: string | undefined;
|
|
1743
1586
|
} & ({
|
|
1744
1587
|
openapi: (string | string[] | {
|
|
1745
1588
|
source: string;
|
|
@@ -1753,7 +1596,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1753
1596
|
}))[];
|
|
1754
1597
|
} | {
|
|
1755
1598
|
pages: any[];
|
|
1756
|
-
})
|
|
1599
|
+
}) & {
|
|
1757
1600
|
global?: {
|
|
1758
1601
|
languages?: ({
|
|
1759
1602
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
@@ -1802,66 +1645,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1802
1645
|
href: string;
|
|
1803
1646
|
})[] | undefined;
|
|
1804
1647
|
} | undefined;
|
|
1805
|
-
}
|
|
1806
|
-
languages: any[];
|
|
1807
|
-
} | {
|
|
1808
|
-
versions: any[];
|
|
1809
|
-
} | {
|
|
1810
|
-
tabs: any[];
|
|
1811
|
-
} | {
|
|
1812
|
-
dropdowns: any[];
|
|
1813
|
-
} | {
|
|
1814
|
-
anchors: any[];
|
|
1815
|
-
} | {
|
|
1816
|
-
groups: ({
|
|
1817
|
-
group: string;
|
|
1818
|
-
icon?: string | {
|
|
1819
|
-
name: string;
|
|
1820
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1821
|
-
} | undefined;
|
|
1822
|
-
hidden?: boolean | undefined;
|
|
1823
|
-
root?: string | {
|
|
1824
|
-
href: string;
|
|
1825
|
-
title: string;
|
|
1826
|
-
sidebarTitle?: string | undefined;
|
|
1827
|
-
description?: string | undefined;
|
|
1828
|
-
api?: string | undefined;
|
|
1829
|
-
openapi?: string | undefined;
|
|
1830
|
-
contentType?: string | undefined;
|
|
1831
|
-
authMethod?: string | undefined;
|
|
1832
|
-
auth?: string | undefined;
|
|
1833
|
-
version?: string | undefined;
|
|
1834
|
-
mode?: string | undefined;
|
|
1835
|
-
hideFooterPagination?: boolean | undefined;
|
|
1836
|
-
authors?: unknown;
|
|
1837
|
-
lastUpdatedDate?: string | undefined;
|
|
1838
|
-
createdDate?: string | undefined;
|
|
1839
|
-
'openapi-schema'?: string | undefined;
|
|
1840
|
-
icon?: string | {
|
|
1841
|
-
name: string;
|
|
1842
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1843
|
-
} | undefined;
|
|
1844
|
-
tag?: string | undefined;
|
|
1845
|
-
url?: string | undefined;
|
|
1846
|
-
hideApiMarker?: boolean | undefined;
|
|
1847
|
-
noindex?: boolean | undefined;
|
|
1848
|
-
isPublic?: boolean | undefined;
|
|
1849
|
-
public?: boolean | undefined;
|
|
1850
|
-
} | undefined;
|
|
1851
|
-
} & ({
|
|
1852
|
-
openapi: (string | string[] | {
|
|
1853
|
-
source: string;
|
|
1854
|
-
directory?: string | undefined;
|
|
1855
|
-
}) & (string | string[] | {
|
|
1856
|
-
source: string;
|
|
1857
|
-
directory?: string | undefined;
|
|
1858
|
-
} | undefined);
|
|
1859
|
-
} | {
|
|
1860
|
-
pages: any[];
|
|
1861
|
-
}))[];
|
|
1862
|
-
} | {
|
|
1863
|
-
pages: any[];
|
|
1864
|
-
})) | undefined);
|
|
1648
|
+
}) | undefined);
|
|
1865
1649
|
$schema?: string | undefined;
|
|
1866
1650
|
description?: string | undefined;
|
|
1867
1651
|
logo?: string | {
|
|
@@ -2032,7 +1816,39 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2032
1816
|
light?: string | undefined;
|
|
2033
1817
|
dark?: string | undefined;
|
|
2034
1818
|
};
|
|
2035
|
-
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
|
+
}) & {
|
|
2036
1852
|
global?: {
|
|
2037
1853
|
languages?: ({
|
|
2038
1854
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
@@ -2081,16 +1897,16 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2081
1897
|
href: string;
|
|
2082
1898
|
})[] | undefined;
|
|
2083
1899
|
} | undefined;
|
|
2084
|
-
} & ({
|
|
2085
|
-
languages:
|
|
1900
|
+
}) & ((({
|
|
1901
|
+
languages: import("./schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
2086
1902
|
} | {
|
|
2087
|
-
versions:
|
|
1903
|
+
versions: import("./schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
2088
1904
|
} | {
|
|
2089
|
-
tabs:
|
|
1905
|
+
tabs: import("./schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
2090
1906
|
} | {
|
|
2091
|
-
dropdowns:
|
|
1907
|
+
dropdowns: import("./schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
2092
1908
|
} | {
|
|
2093
|
-
anchors:
|
|
1909
|
+
anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
2094
1910
|
} | {
|
|
2095
1911
|
groups: ({
|
|
2096
1912
|
group: string;
|
|
@@ -2099,34 +1915,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2099
1915
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2100
1916
|
} | undefined;
|
|
2101
1917
|
hidden?: boolean | undefined;
|
|
2102
|
-
root?: string |
|
|
2103
|
-
href: string;
|
|
2104
|
-
title: string;
|
|
2105
|
-
sidebarTitle?: string | undefined;
|
|
2106
|
-
description?: string | undefined;
|
|
2107
|
-
api?: string | undefined;
|
|
2108
|
-
openapi?: string | undefined;
|
|
2109
|
-
contentType?: string | undefined;
|
|
2110
|
-
authMethod?: string | undefined;
|
|
2111
|
-
auth?: string | undefined;
|
|
2112
|
-
version?: string | undefined;
|
|
2113
|
-
mode?: string | undefined;
|
|
2114
|
-
hideFooterPagination?: boolean | undefined;
|
|
2115
|
-
authors?: unknown;
|
|
2116
|
-
lastUpdatedDate?: string | undefined;
|
|
2117
|
-
createdDate?: string | undefined;
|
|
2118
|
-
'openapi-schema'?: string | undefined;
|
|
2119
|
-
icon?: string | {
|
|
2120
|
-
name: string;
|
|
2121
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2122
|
-
} | undefined;
|
|
2123
|
-
tag?: string | undefined;
|
|
2124
|
-
url?: string | undefined;
|
|
2125
|
-
hideApiMarker?: boolean | undefined;
|
|
2126
|
-
noindex?: boolean | undefined;
|
|
2127
|
-
isPublic?: boolean | undefined;
|
|
2128
|
-
public?: boolean | undefined;
|
|
2129
|
-
} | undefined;
|
|
1918
|
+
root?: string | undefined;
|
|
2130
1919
|
} & ({
|
|
2131
1920
|
openapi: (string | string[] | {
|
|
2132
1921
|
source: string;
|
|
@@ -2140,7 +1929,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2140
1929
|
}))[];
|
|
2141
1930
|
} | {
|
|
2142
1931
|
pages: any[];
|
|
2143
|
-
})
|
|
1932
|
+
}) & {
|
|
2144
1933
|
global?: {
|
|
2145
1934
|
languages?: ({
|
|
2146
1935
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
@@ -2189,66 +1978,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2189
1978
|
href: string;
|
|
2190
1979
|
})[] | undefined;
|
|
2191
1980
|
} | undefined;
|
|
2192
|
-
}
|
|
2193
|
-
languages: any[];
|
|
2194
|
-
} | {
|
|
2195
|
-
versions: any[];
|
|
2196
|
-
} | {
|
|
2197
|
-
tabs: any[];
|
|
2198
|
-
} | {
|
|
2199
|
-
dropdowns: any[];
|
|
2200
|
-
} | {
|
|
2201
|
-
anchors: any[];
|
|
2202
|
-
} | {
|
|
2203
|
-
groups: ({
|
|
2204
|
-
group: string;
|
|
2205
|
-
icon?: string | {
|
|
2206
|
-
name: string;
|
|
2207
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2208
|
-
} | undefined;
|
|
2209
|
-
hidden?: boolean | undefined;
|
|
2210
|
-
root?: string | {
|
|
2211
|
-
href: string;
|
|
2212
|
-
title: string;
|
|
2213
|
-
sidebarTitle?: string | undefined;
|
|
2214
|
-
description?: string | undefined;
|
|
2215
|
-
api?: string | undefined;
|
|
2216
|
-
openapi?: string | undefined;
|
|
2217
|
-
contentType?: string | undefined;
|
|
2218
|
-
authMethod?: string | undefined;
|
|
2219
|
-
auth?: string | undefined;
|
|
2220
|
-
version?: string | undefined;
|
|
2221
|
-
mode?: string | undefined;
|
|
2222
|
-
hideFooterPagination?: boolean | undefined;
|
|
2223
|
-
authors?: unknown;
|
|
2224
|
-
lastUpdatedDate?: string | undefined;
|
|
2225
|
-
createdDate?: string | undefined;
|
|
2226
|
-
'openapi-schema'?: string | undefined;
|
|
2227
|
-
icon?: string | {
|
|
2228
|
-
name: string;
|
|
2229
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2230
|
-
} | undefined;
|
|
2231
|
-
tag?: string | undefined;
|
|
2232
|
-
url?: string | undefined;
|
|
2233
|
-
hideApiMarker?: boolean | undefined;
|
|
2234
|
-
noindex?: boolean | undefined;
|
|
2235
|
-
isPublic?: boolean | undefined;
|
|
2236
|
-
public?: boolean | undefined;
|
|
2237
|
-
} | undefined;
|
|
2238
|
-
} & ({
|
|
2239
|
-
openapi: (string | string[] | {
|
|
2240
|
-
source: string;
|
|
2241
|
-
directory?: string | undefined;
|
|
2242
|
-
}) & (string | string[] | {
|
|
2243
|
-
source: string;
|
|
2244
|
-
directory?: string | undefined;
|
|
2245
|
-
} | undefined);
|
|
2246
|
-
} | {
|
|
2247
|
-
pages: any[];
|
|
2248
|
-
}))[];
|
|
2249
|
-
} | {
|
|
2250
|
-
pages: any[];
|
|
2251
|
-
})) | undefined);
|
|
1981
|
+
}) | undefined);
|
|
2252
1982
|
$schema?: string | undefined;
|
|
2253
1983
|
description?: string | undefined;
|
|
2254
1984
|
logo?: string | {
|
|
@@ -2423,7 +2153,39 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2423
2153
|
light?: string | undefined;
|
|
2424
2154
|
dark?: string | undefined;
|
|
2425
2155
|
};
|
|
2426
|
-
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
|
+
}) & {
|
|
2427
2189
|
global?: {
|
|
2428
2190
|
languages?: ({
|
|
2429
2191
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
@@ -2472,16 +2234,16 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2472
2234
|
href: string;
|
|
2473
2235
|
})[] | undefined;
|
|
2474
2236
|
} | undefined;
|
|
2475
|
-
} & ({
|
|
2476
|
-
languages:
|
|
2237
|
+
}) & ((({
|
|
2238
|
+
languages: import("./schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
2477
2239
|
} | {
|
|
2478
|
-
versions:
|
|
2240
|
+
versions: import("./schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
2479
2241
|
} | {
|
|
2480
|
-
tabs:
|
|
2242
|
+
tabs: import("./schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
2481
2243
|
} | {
|
|
2482
|
-
dropdowns:
|
|
2244
|
+
dropdowns: import("./schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
2483
2245
|
} | {
|
|
2484
|
-
anchors:
|
|
2246
|
+
anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
2485
2247
|
} | {
|
|
2486
2248
|
groups: ({
|
|
2487
2249
|
group: string;
|
|
@@ -2490,34 +2252,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2490
2252
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2491
2253
|
} | undefined;
|
|
2492
2254
|
hidden?: boolean | undefined;
|
|
2493
|
-
root?: string |
|
|
2494
|
-
href: string;
|
|
2495
|
-
title: string;
|
|
2496
|
-
sidebarTitle?: string | undefined;
|
|
2497
|
-
description?: string | undefined;
|
|
2498
|
-
api?: string | undefined;
|
|
2499
|
-
openapi?: string | undefined;
|
|
2500
|
-
contentType?: string | undefined;
|
|
2501
|
-
authMethod?: string | undefined;
|
|
2502
|
-
auth?: string | undefined;
|
|
2503
|
-
version?: string | undefined;
|
|
2504
|
-
mode?: string | undefined;
|
|
2505
|
-
hideFooterPagination?: boolean | undefined;
|
|
2506
|
-
authors?: unknown;
|
|
2507
|
-
lastUpdatedDate?: string | undefined;
|
|
2508
|
-
createdDate?: string | undefined;
|
|
2509
|
-
'openapi-schema'?: string | undefined;
|
|
2510
|
-
icon?: string | {
|
|
2511
|
-
name: string;
|
|
2512
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2513
|
-
} | undefined;
|
|
2514
|
-
tag?: string | undefined;
|
|
2515
|
-
url?: string | undefined;
|
|
2516
|
-
hideApiMarker?: boolean | undefined;
|
|
2517
|
-
noindex?: boolean | undefined;
|
|
2518
|
-
isPublic?: boolean | undefined;
|
|
2519
|
-
public?: boolean | undefined;
|
|
2520
|
-
} | undefined;
|
|
2255
|
+
root?: string | undefined;
|
|
2521
2256
|
} & ({
|
|
2522
2257
|
openapi: (string | string[] | {
|
|
2523
2258
|
source: string;
|
|
@@ -2531,7 +2266,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2531
2266
|
}))[];
|
|
2532
2267
|
} | {
|
|
2533
2268
|
pages: any[];
|
|
2534
|
-
})
|
|
2269
|
+
}) & {
|
|
2535
2270
|
global?: {
|
|
2536
2271
|
languages?: ({
|
|
2537
2272
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
@@ -2580,66 +2315,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2580
2315
|
href: string;
|
|
2581
2316
|
})[] | undefined;
|
|
2582
2317
|
} | undefined;
|
|
2583
|
-
}
|
|
2584
|
-
languages: any[];
|
|
2585
|
-
} | {
|
|
2586
|
-
versions: any[];
|
|
2587
|
-
} | {
|
|
2588
|
-
tabs: any[];
|
|
2589
|
-
} | {
|
|
2590
|
-
dropdowns: any[];
|
|
2591
|
-
} | {
|
|
2592
|
-
anchors: any[];
|
|
2593
|
-
} | {
|
|
2594
|
-
groups: ({
|
|
2595
|
-
group: string;
|
|
2596
|
-
icon?: string | {
|
|
2597
|
-
name: string;
|
|
2598
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2599
|
-
} | undefined;
|
|
2600
|
-
hidden?: boolean | undefined;
|
|
2601
|
-
root?: string | {
|
|
2602
|
-
href: string;
|
|
2603
|
-
title: string;
|
|
2604
|
-
sidebarTitle?: string | undefined;
|
|
2605
|
-
description?: string | undefined;
|
|
2606
|
-
api?: string | undefined;
|
|
2607
|
-
openapi?: string | undefined;
|
|
2608
|
-
contentType?: string | undefined;
|
|
2609
|
-
authMethod?: string | undefined;
|
|
2610
|
-
auth?: string | undefined;
|
|
2611
|
-
version?: string | undefined;
|
|
2612
|
-
mode?: string | undefined;
|
|
2613
|
-
hideFooterPagination?: boolean | undefined;
|
|
2614
|
-
authors?: unknown;
|
|
2615
|
-
lastUpdatedDate?: string | undefined;
|
|
2616
|
-
createdDate?: string | undefined;
|
|
2617
|
-
'openapi-schema'?: string | undefined;
|
|
2618
|
-
icon?: string | {
|
|
2619
|
-
name: string;
|
|
2620
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2621
|
-
} | undefined;
|
|
2622
|
-
tag?: string | undefined;
|
|
2623
|
-
url?: string | undefined;
|
|
2624
|
-
hideApiMarker?: boolean | undefined;
|
|
2625
|
-
noindex?: boolean | undefined;
|
|
2626
|
-
isPublic?: boolean | undefined;
|
|
2627
|
-
public?: boolean | undefined;
|
|
2628
|
-
} | undefined;
|
|
2629
|
-
} & ({
|
|
2630
|
-
openapi: (string | string[] | {
|
|
2631
|
-
source: string;
|
|
2632
|
-
directory?: string | undefined;
|
|
2633
|
-
}) & (string | string[] | {
|
|
2634
|
-
source: string;
|
|
2635
|
-
directory?: string | undefined;
|
|
2636
|
-
} | undefined);
|
|
2637
|
-
} | {
|
|
2638
|
-
pages: any[];
|
|
2639
|
-
}))[];
|
|
2640
|
-
} | {
|
|
2641
|
-
pages: any[];
|
|
2642
|
-
})) | undefined);
|
|
2318
|
+
}) | undefined);
|
|
2643
2319
|
description?: string | undefined;
|
|
2644
2320
|
logo?: string | {
|
|
2645
2321
|
light: string;
|
|
@@ -2810,7 +2486,39 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2810
2486
|
light?: string | undefined;
|
|
2811
2487
|
dark?: string | undefined;
|
|
2812
2488
|
};
|
|
2813
|
-
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
|
+
}) & {
|
|
2814
2522
|
global?: {
|
|
2815
2523
|
languages?: ({
|
|
2816
2524
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
@@ -2859,16 +2567,16 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2859
2567
|
href: string;
|
|
2860
2568
|
})[] | undefined;
|
|
2861
2569
|
} | undefined;
|
|
2862
|
-
} & ({
|
|
2863
|
-
languages:
|
|
2570
|
+
}) & ((({
|
|
2571
|
+
languages: import("./schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
2864
2572
|
} | {
|
|
2865
|
-
versions:
|
|
2573
|
+
versions: import("./schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
2866
2574
|
} | {
|
|
2867
|
-
tabs:
|
|
2575
|
+
tabs: import("./schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
2868
2576
|
} | {
|
|
2869
|
-
dropdowns:
|
|
2577
|
+
dropdowns: import("./schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
2870
2578
|
} | {
|
|
2871
|
-
anchors:
|
|
2579
|
+
anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
2872
2580
|
} | {
|
|
2873
2581
|
groups: ({
|
|
2874
2582
|
group: string;
|
|
@@ -2877,34 +2585,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2877
2585
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2878
2586
|
} | undefined;
|
|
2879
2587
|
hidden?: boolean | undefined;
|
|
2880
|
-
root?: string |
|
|
2881
|
-
href: string;
|
|
2882
|
-
title: string;
|
|
2883
|
-
sidebarTitle?: string | undefined;
|
|
2884
|
-
description?: string | undefined;
|
|
2885
|
-
api?: string | undefined;
|
|
2886
|
-
openapi?: string | undefined;
|
|
2887
|
-
contentType?: string | undefined;
|
|
2888
|
-
authMethod?: string | undefined;
|
|
2889
|
-
auth?: string | undefined;
|
|
2890
|
-
version?: string | undefined;
|
|
2891
|
-
mode?: string | undefined;
|
|
2892
|
-
hideFooterPagination?: boolean | undefined;
|
|
2893
|
-
authors?: unknown;
|
|
2894
|
-
lastUpdatedDate?: string | undefined;
|
|
2895
|
-
createdDate?: string | undefined;
|
|
2896
|
-
'openapi-schema'?: string | undefined;
|
|
2897
|
-
icon?: string | {
|
|
2898
|
-
name: string;
|
|
2899
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2900
|
-
} | undefined;
|
|
2901
|
-
tag?: string | undefined;
|
|
2902
|
-
url?: string | undefined;
|
|
2903
|
-
hideApiMarker?: boolean | undefined;
|
|
2904
|
-
noindex?: boolean | undefined;
|
|
2905
|
-
isPublic?: boolean | undefined;
|
|
2906
|
-
public?: boolean | undefined;
|
|
2907
|
-
} | undefined;
|
|
2588
|
+
root?: string | undefined;
|
|
2908
2589
|
} & ({
|
|
2909
2590
|
openapi: (string | string[] | {
|
|
2910
2591
|
source: string;
|
|
@@ -2918,7 +2599,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2918
2599
|
}))[];
|
|
2919
2600
|
} | {
|
|
2920
2601
|
pages: any[];
|
|
2921
|
-
})
|
|
2602
|
+
}) & {
|
|
2922
2603
|
global?: {
|
|
2923
2604
|
languages?: ({
|
|
2924
2605
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
@@ -2967,66 +2648,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2967
2648
|
href: string;
|
|
2968
2649
|
})[] | undefined;
|
|
2969
2650
|
} | undefined;
|
|
2970
|
-
}
|
|
2971
|
-
languages: any[];
|
|
2972
|
-
} | {
|
|
2973
|
-
versions: any[];
|
|
2974
|
-
} | {
|
|
2975
|
-
tabs: any[];
|
|
2976
|
-
} | {
|
|
2977
|
-
dropdowns: any[];
|
|
2978
|
-
} | {
|
|
2979
|
-
anchors: any[];
|
|
2980
|
-
} | {
|
|
2981
|
-
groups: ({
|
|
2982
|
-
group: string;
|
|
2983
|
-
icon?: string | {
|
|
2984
|
-
name: string;
|
|
2985
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2986
|
-
} | undefined;
|
|
2987
|
-
hidden?: boolean | undefined;
|
|
2988
|
-
root?: string | {
|
|
2989
|
-
href: string;
|
|
2990
|
-
title: string;
|
|
2991
|
-
sidebarTitle?: string | undefined;
|
|
2992
|
-
description?: string | undefined;
|
|
2993
|
-
api?: string | undefined;
|
|
2994
|
-
openapi?: string | undefined;
|
|
2995
|
-
contentType?: string | undefined;
|
|
2996
|
-
authMethod?: string | undefined;
|
|
2997
|
-
auth?: string | undefined;
|
|
2998
|
-
version?: string | undefined;
|
|
2999
|
-
mode?: string | undefined;
|
|
3000
|
-
hideFooterPagination?: boolean | undefined;
|
|
3001
|
-
authors?: unknown;
|
|
3002
|
-
lastUpdatedDate?: string | undefined;
|
|
3003
|
-
createdDate?: string | undefined;
|
|
3004
|
-
'openapi-schema'?: string | undefined;
|
|
3005
|
-
icon?: string | {
|
|
3006
|
-
name: string;
|
|
3007
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3008
|
-
} | undefined;
|
|
3009
|
-
tag?: string | undefined;
|
|
3010
|
-
url?: string | undefined;
|
|
3011
|
-
hideApiMarker?: boolean | undefined;
|
|
3012
|
-
noindex?: boolean | undefined;
|
|
3013
|
-
isPublic?: boolean | undefined;
|
|
3014
|
-
public?: boolean | undefined;
|
|
3015
|
-
} | undefined;
|
|
3016
|
-
} & ({
|
|
3017
|
-
openapi: (string | string[] | {
|
|
3018
|
-
source: string;
|
|
3019
|
-
directory?: string | undefined;
|
|
3020
|
-
}) & (string | string[] | {
|
|
3021
|
-
source: string;
|
|
3022
|
-
directory?: string | undefined;
|
|
3023
|
-
} | undefined);
|
|
3024
|
-
} | {
|
|
3025
|
-
pages: any[];
|
|
3026
|
-
}))[];
|
|
3027
|
-
} | {
|
|
3028
|
-
pages: any[];
|
|
3029
|
-
})) | undefined);
|
|
2651
|
+
}) | undefined);
|
|
3030
2652
|
description?: string | undefined;
|
|
3031
2653
|
logo?: string | {
|
|
3032
2654
|
light: string;
|
|
@@ -3197,7 +2819,39 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3197
2819
|
light?: string | undefined;
|
|
3198
2820
|
dark?: string | undefined;
|
|
3199
2821
|
};
|
|
3200
|
-
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
|
+
}) & {
|
|
3201
2855
|
global?: {
|
|
3202
2856
|
languages?: ({
|
|
3203
2857
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
@@ -3246,16 +2900,16 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3246
2900
|
href: string;
|
|
3247
2901
|
})[] | undefined;
|
|
3248
2902
|
} | undefined;
|
|
3249
|
-
} & ({
|
|
3250
|
-
languages:
|
|
2903
|
+
}) & ((({
|
|
2904
|
+
languages: import("./schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
3251
2905
|
} | {
|
|
3252
|
-
versions:
|
|
2906
|
+
versions: import("./schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
3253
2907
|
} | {
|
|
3254
|
-
tabs:
|
|
2908
|
+
tabs: import("./schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
3255
2909
|
} | {
|
|
3256
|
-
dropdowns:
|
|
2910
|
+
dropdowns: import("./schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
3257
2911
|
} | {
|
|
3258
|
-
anchors:
|
|
2912
|
+
anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
3259
2913
|
} | {
|
|
3260
2914
|
groups: ({
|
|
3261
2915
|
group: string;
|
|
@@ -3264,34 +2918,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3264
2918
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3265
2919
|
} | undefined;
|
|
3266
2920
|
hidden?: boolean | undefined;
|
|
3267
|
-
root?: string |
|
|
3268
|
-
href: string;
|
|
3269
|
-
title: string;
|
|
3270
|
-
sidebarTitle?: string | undefined;
|
|
3271
|
-
description?: string | undefined;
|
|
3272
|
-
api?: string | undefined;
|
|
3273
|
-
openapi?: string | undefined;
|
|
3274
|
-
contentType?: string | undefined;
|
|
3275
|
-
authMethod?: string | undefined;
|
|
3276
|
-
auth?: string | undefined;
|
|
3277
|
-
version?: string | undefined;
|
|
3278
|
-
mode?: string | undefined;
|
|
3279
|
-
hideFooterPagination?: boolean | undefined;
|
|
3280
|
-
authors?: unknown;
|
|
3281
|
-
lastUpdatedDate?: string | undefined;
|
|
3282
|
-
createdDate?: string | undefined;
|
|
3283
|
-
'openapi-schema'?: string | undefined;
|
|
3284
|
-
icon?: string | {
|
|
3285
|
-
name: string;
|
|
3286
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3287
|
-
} | undefined;
|
|
3288
|
-
tag?: string | undefined;
|
|
3289
|
-
url?: string | undefined;
|
|
3290
|
-
hideApiMarker?: boolean | undefined;
|
|
3291
|
-
noindex?: boolean | undefined;
|
|
3292
|
-
isPublic?: boolean | undefined;
|
|
3293
|
-
public?: boolean | undefined;
|
|
3294
|
-
} | undefined;
|
|
2921
|
+
root?: string | undefined;
|
|
3295
2922
|
} & ({
|
|
3296
2923
|
openapi: (string | string[] | {
|
|
3297
2924
|
source: string;
|
|
@@ -3305,7 +2932,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3305
2932
|
}))[];
|
|
3306
2933
|
} | {
|
|
3307
2934
|
pages: any[];
|
|
3308
|
-
})
|
|
2935
|
+
}) & {
|
|
3309
2936
|
global?: {
|
|
3310
2937
|
languages?: ({
|
|
3311
2938
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
@@ -3354,66 +2981,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3354
2981
|
href: string;
|
|
3355
2982
|
})[] | undefined;
|
|
3356
2983
|
} | undefined;
|
|
3357
|
-
}
|
|
3358
|
-
languages: any[];
|
|
3359
|
-
} | {
|
|
3360
|
-
versions: any[];
|
|
3361
|
-
} | {
|
|
3362
|
-
tabs: any[];
|
|
3363
|
-
} | {
|
|
3364
|
-
dropdowns: any[];
|
|
3365
|
-
} | {
|
|
3366
|
-
anchors: any[];
|
|
3367
|
-
} | {
|
|
3368
|
-
groups: ({
|
|
3369
|
-
group: string;
|
|
3370
|
-
icon?: string | {
|
|
3371
|
-
name: string;
|
|
3372
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3373
|
-
} | undefined;
|
|
3374
|
-
hidden?: boolean | undefined;
|
|
3375
|
-
root?: string | {
|
|
3376
|
-
href: string;
|
|
3377
|
-
title: string;
|
|
3378
|
-
sidebarTitle?: string | undefined;
|
|
3379
|
-
description?: string | undefined;
|
|
3380
|
-
api?: string | undefined;
|
|
3381
|
-
openapi?: string | undefined;
|
|
3382
|
-
contentType?: string | undefined;
|
|
3383
|
-
authMethod?: string | undefined;
|
|
3384
|
-
auth?: string | undefined;
|
|
3385
|
-
version?: string | undefined;
|
|
3386
|
-
mode?: string | undefined;
|
|
3387
|
-
hideFooterPagination?: boolean | undefined;
|
|
3388
|
-
authors?: unknown;
|
|
3389
|
-
lastUpdatedDate?: string | undefined;
|
|
3390
|
-
createdDate?: string | undefined;
|
|
3391
|
-
'openapi-schema'?: string | undefined;
|
|
3392
|
-
icon?: string | {
|
|
3393
|
-
name: string;
|
|
3394
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3395
|
-
} | undefined;
|
|
3396
|
-
tag?: string | undefined;
|
|
3397
|
-
url?: string | undefined;
|
|
3398
|
-
hideApiMarker?: boolean | undefined;
|
|
3399
|
-
noindex?: boolean | undefined;
|
|
3400
|
-
isPublic?: boolean | undefined;
|
|
3401
|
-
public?: boolean | undefined;
|
|
3402
|
-
} | undefined;
|
|
3403
|
-
} & ({
|
|
3404
|
-
openapi: (string | string[] | {
|
|
3405
|
-
source: string;
|
|
3406
|
-
directory?: string | undefined;
|
|
3407
|
-
}) & (string | string[] | {
|
|
3408
|
-
source: string;
|
|
3409
|
-
directory?: string | undefined;
|
|
3410
|
-
} | undefined);
|
|
3411
|
-
} | {
|
|
3412
|
-
pages: any[];
|
|
3413
|
-
}))[];
|
|
3414
|
-
} | {
|
|
3415
|
-
pages: any[];
|
|
3416
|
-
})) | undefined);
|
|
2984
|
+
}) | undefined);
|
|
3417
2985
|
description?: string | undefined;
|
|
3418
2986
|
logo?: string | {
|
|
3419
2987
|
light: string;
|
|
@@ -3584,7 +3152,39 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3584
3152
|
light?: string | undefined;
|
|
3585
3153
|
dark?: string | undefined;
|
|
3586
3154
|
};
|
|
3587
|
-
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
|
+
}) & {
|
|
3588
3188
|
global?: {
|
|
3589
3189
|
languages?: ({
|
|
3590
3190
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
@@ -3633,16 +3233,16 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3633
3233
|
href: string;
|
|
3634
3234
|
})[] | undefined;
|
|
3635
3235
|
} | undefined;
|
|
3636
|
-
} & ({
|
|
3637
|
-
languages:
|
|
3236
|
+
}) & ((({
|
|
3237
|
+
languages: import("./schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
3638
3238
|
} | {
|
|
3639
|
-
versions:
|
|
3239
|
+
versions: import("./schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
3640
3240
|
} | {
|
|
3641
|
-
tabs:
|
|
3241
|
+
tabs: import("./schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
3642
3242
|
} | {
|
|
3643
|
-
dropdowns:
|
|
3243
|
+
dropdowns: import("./schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
3644
3244
|
} | {
|
|
3645
|
-
anchors:
|
|
3245
|
+
anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
3646
3246
|
} | {
|
|
3647
3247
|
groups: ({
|
|
3648
3248
|
group: string;
|
|
@@ -3651,34 +3251,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3651
3251
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3652
3252
|
} | undefined;
|
|
3653
3253
|
hidden?: boolean | undefined;
|
|
3654
|
-
root?: string |
|
|
3655
|
-
href: string;
|
|
3656
|
-
title: string;
|
|
3657
|
-
sidebarTitle?: string | undefined;
|
|
3658
|
-
description?: string | undefined;
|
|
3659
|
-
api?: string | undefined;
|
|
3660
|
-
openapi?: string | undefined;
|
|
3661
|
-
contentType?: string | undefined;
|
|
3662
|
-
authMethod?: string | undefined;
|
|
3663
|
-
auth?: string | undefined;
|
|
3664
|
-
version?: string | undefined;
|
|
3665
|
-
mode?: string | undefined;
|
|
3666
|
-
hideFooterPagination?: boolean | undefined;
|
|
3667
|
-
authors?: unknown;
|
|
3668
|
-
lastUpdatedDate?: string | undefined;
|
|
3669
|
-
createdDate?: string | undefined;
|
|
3670
|
-
'openapi-schema'?: string | undefined;
|
|
3671
|
-
icon?: string | {
|
|
3672
|
-
name: string;
|
|
3673
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3674
|
-
} | undefined;
|
|
3675
|
-
tag?: string | undefined;
|
|
3676
|
-
url?: string | undefined;
|
|
3677
|
-
hideApiMarker?: boolean | undefined;
|
|
3678
|
-
noindex?: boolean | undefined;
|
|
3679
|
-
isPublic?: boolean | undefined;
|
|
3680
|
-
public?: boolean | undefined;
|
|
3681
|
-
} | undefined;
|
|
3254
|
+
root?: string | undefined;
|
|
3682
3255
|
} & ({
|
|
3683
3256
|
openapi: (string | string[] | {
|
|
3684
3257
|
source: string;
|
|
@@ -3692,7 +3265,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3692
3265
|
}))[];
|
|
3693
3266
|
} | {
|
|
3694
3267
|
pages: any[];
|
|
3695
|
-
})
|
|
3268
|
+
}) & {
|
|
3696
3269
|
global?: {
|
|
3697
3270
|
languages?: ({
|
|
3698
3271
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
@@ -3741,66 +3314,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3741
3314
|
href: string;
|
|
3742
3315
|
})[] | undefined;
|
|
3743
3316
|
} | undefined;
|
|
3744
|
-
}
|
|
3745
|
-
languages: any[];
|
|
3746
|
-
} | {
|
|
3747
|
-
versions: any[];
|
|
3748
|
-
} | {
|
|
3749
|
-
tabs: any[];
|
|
3750
|
-
} | {
|
|
3751
|
-
dropdowns: any[];
|
|
3752
|
-
} | {
|
|
3753
|
-
anchors: any[];
|
|
3754
|
-
} | {
|
|
3755
|
-
groups: ({
|
|
3756
|
-
group: string;
|
|
3757
|
-
icon?: string | {
|
|
3758
|
-
name: string;
|
|
3759
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3760
|
-
} | undefined;
|
|
3761
|
-
hidden?: boolean | undefined;
|
|
3762
|
-
root?: string | {
|
|
3763
|
-
href: string;
|
|
3764
|
-
title: string;
|
|
3765
|
-
sidebarTitle?: string | undefined;
|
|
3766
|
-
description?: string | undefined;
|
|
3767
|
-
api?: string | undefined;
|
|
3768
|
-
openapi?: string | undefined;
|
|
3769
|
-
contentType?: string | undefined;
|
|
3770
|
-
authMethod?: string | undefined;
|
|
3771
|
-
auth?: string | undefined;
|
|
3772
|
-
version?: string | undefined;
|
|
3773
|
-
mode?: string | undefined;
|
|
3774
|
-
hideFooterPagination?: boolean | undefined;
|
|
3775
|
-
authors?: unknown;
|
|
3776
|
-
lastUpdatedDate?: string | undefined;
|
|
3777
|
-
createdDate?: string | undefined;
|
|
3778
|
-
'openapi-schema'?: string | undefined;
|
|
3779
|
-
icon?: string | {
|
|
3780
|
-
name: string;
|
|
3781
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3782
|
-
} | undefined;
|
|
3783
|
-
tag?: string | undefined;
|
|
3784
|
-
url?: string | undefined;
|
|
3785
|
-
hideApiMarker?: boolean | undefined;
|
|
3786
|
-
noindex?: boolean | undefined;
|
|
3787
|
-
isPublic?: boolean | undefined;
|
|
3788
|
-
public?: boolean | undefined;
|
|
3789
|
-
} | undefined;
|
|
3790
|
-
} & ({
|
|
3791
|
-
openapi: (string | string[] | {
|
|
3792
|
-
source: string;
|
|
3793
|
-
directory?: string | undefined;
|
|
3794
|
-
}) & (string | string[] | {
|
|
3795
|
-
source: string;
|
|
3796
|
-
directory?: string | undefined;
|
|
3797
|
-
} | undefined);
|
|
3798
|
-
} | {
|
|
3799
|
-
pages: any[];
|
|
3800
|
-
}))[];
|
|
3801
|
-
} | {
|
|
3802
|
-
pages: any[];
|
|
3803
|
-
})) | undefined);
|
|
3317
|
+
}) | undefined);
|
|
3804
3318
|
description?: string | undefined;
|
|
3805
3319
|
logo?: string | {
|
|
3806
3320
|
light: string;
|
|
@@ -3971,7 +3485,39 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3971
3485
|
light?: string | undefined;
|
|
3972
3486
|
dark?: string | undefined;
|
|
3973
3487
|
};
|
|
3974
|
-
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
|
+
}) & {
|
|
3975
3521
|
global?: {
|
|
3976
3522
|
languages?: ({
|
|
3977
3523
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
@@ -4020,16 +3566,16 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4020
3566
|
href: string;
|
|
4021
3567
|
})[] | undefined;
|
|
4022
3568
|
} | undefined;
|
|
4023
|
-
} & ({
|
|
4024
|
-
languages:
|
|
3569
|
+
}) & ((({
|
|
3570
|
+
languages: import("./schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
4025
3571
|
} | {
|
|
4026
|
-
versions:
|
|
3572
|
+
versions: import("./schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
4027
3573
|
} | {
|
|
4028
|
-
tabs:
|
|
3574
|
+
tabs: import("./schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
4029
3575
|
} | {
|
|
4030
|
-
dropdowns:
|
|
3576
|
+
dropdowns: import("./schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
4031
3577
|
} | {
|
|
4032
|
-
anchors:
|
|
3578
|
+
anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
4033
3579
|
} | {
|
|
4034
3580
|
groups: ({
|
|
4035
3581
|
group: string;
|
|
@@ -4038,34 +3584,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4038
3584
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4039
3585
|
} | undefined;
|
|
4040
3586
|
hidden?: boolean | undefined;
|
|
4041
|
-
root?: string |
|
|
4042
|
-
href: string;
|
|
4043
|
-
title: string;
|
|
4044
|
-
sidebarTitle?: string | undefined;
|
|
4045
|
-
description?: string | undefined;
|
|
4046
|
-
api?: string | undefined;
|
|
4047
|
-
openapi?: string | undefined;
|
|
4048
|
-
contentType?: string | undefined;
|
|
4049
|
-
authMethod?: string | undefined;
|
|
4050
|
-
auth?: string | undefined;
|
|
4051
|
-
version?: string | undefined;
|
|
4052
|
-
mode?: string | undefined;
|
|
4053
|
-
hideFooterPagination?: boolean | undefined;
|
|
4054
|
-
authors?: unknown;
|
|
4055
|
-
lastUpdatedDate?: string | undefined;
|
|
4056
|
-
createdDate?: string | undefined;
|
|
4057
|
-
'openapi-schema'?: string | undefined;
|
|
4058
|
-
icon?: string | {
|
|
4059
|
-
name: string;
|
|
4060
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4061
|
-
} | undefined;
|
|
4062
|
-
tag?: string | undefined;
|
|
4063
|
-
url?: string | undefined;
|
|
4064
|
-
hideApiMarker?: boolean | undefined;
|
|
4065
|
-
noindex?: boolean | undefined;
|
|
4066
|
-
isPublic?: boolean | undefined;
|
|
4067
|
-
public?: boolean | undefined;
|
|
4068
|
-
} | undefined;
|
|
3587
|
+
root?: string | undefined;
|
|
4069
3588
|
} & ({
|
|
4070
3589
|
openapi: (string | string[] | {
|
|
4071
3590
|
source: string;
|
|
@@ -4079,7 +3598,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4079
3598
|
}))[];
|
|
4080
3599
|
} | {
|
|
4081
3600
|
pages: any[];
|
|
4082
|
-
})
|
|
3601
|
+
}) & {
|
|
4083
3602
|
global?: {
|
|
4084
3603
|
languages?: ({
|
|
4085
3604
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
@@ -4128,66 +3647,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4128
3647
|
href: string;
|
|
4129
3648
|
})[] | undefined;
|
|
4130
3649
|
} | undefined;
|
|
4131
|
-
}
|
|
4132
|
-
languages: any[];
|
|
4133
|
-
} | {
|
|
4134
|
-
versions: any[];
|
|
4135
|
-
} | {
|
|
4136
|
-
tabs: any[];
|
|
4137
|
-
} | {
|
|
4138
|
-
dropdowns: any[];
|
|
4139
|
-
} | {
|
|
4140
|
-
anchors: any[];
|
|
4141
|
-
} | {
|
|
4142
|
-
groups: ({
|
|
4143
|
-
group: string;
|
|
4144
|
-
icon?: string | {
|
|
4145
|
-
name: string;
|
|
4146
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4147
|
-
} | undefined;
|
|
4148
|
-
hidden?: boolean | undefined;
|
|
4149
|
-
root?: string | {
|
|
4150
|
-
href: string;
|
|
4151
|
-
title: string;
|
|
4152
|
-
sidebarTitle?: string | undefined;
|
|
4153
|
-
description?: string | undefined;
|
|
4154
|
-
api?: string | undefined;
|
|
4155
|
-
openapi?: string | undefined;
|
|
4156
|
-
contentType?: string | undefined;
|
|
4157
|
-
authMethod?: string | undefined;
|
|
4158
|
-
auth?: string | undefined;
|
|
4159
|
-
version?: string | undefined;
|
|
4160
|
-
mode?: string | undefined;
|
|
4161
|
-
hideFooterPagination?: boolean | undefined;
|
|
4162
|
-
authors?: unknown;
|
|
4163
|
-
lastUpdatedDate?: string | undefined;
|
|
4164
|
-
createdDate?: string | undefined;
|
|
4165
|
-
'openapi-schema'?: string | undefined;
|
|
4166
|
-
icon?: string | {
|
|
4167
|
-
name: string;
|
|
4168
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4169
|
-
} | undefined;
|
|
4170
|
-
tag?: string | undefined;
|
|
4171
|
-
url?: string | undefined;
|
|
4172
|
-
hideApiMarker?: boolean | undefined;
|
|
4173
|
-
noindex?: boolean | undefined;
|
|
4174
|
-
isPublic?: boolean | undefined;
|
|
4175
|
-
public?: boolean | undefined;
|
|
4176
|
-
} | undefined;
|
|
4177
|
-
} & ({
|
|
4178
|
-
openapi: (string | string[] | {
|
|
4179
|
-
source: string;
|
|
4180
|
-
directory?: string | undefined;
|
|
4181
|
-
}) & (string | string[] | {
|
|
4182
|
-
source: string;
|
|
4183
|
-
directory?: string | undefined;
|
|
4184
|
-
} | undefined);
|
|
4185
|
-
} | {
|
|
4186
|
-
pages: any[];
|
|
4187
|
-
}))[];
|
|
4188
|
-
} | {
|
|
4189
|
-
pages: any[];
|
|
4190
|
-
})) | undefined);
|
|
3650
|
+
}) | undefined);
|
|
4191
3651
|
description?: string | undefined;
|
|
4192
3652
|
logo?: string | {
|
|
4193
3653
|
light: string;
|