@mintlify/validation 0.1.585 → 0.1.586
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 +1138 -1874
- package/dist/mint-config/schemas/v2/properties/navigation/divisionNav.d.ts +12 -4
- package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +24 -717
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +360 -428
- package/dist/mint-config/schemas/v2/properties/navigation/pages.d.ts +177 -4
- package/dist/mint-config/schemas/v2/properties/reusable/page.d.ts +101 -55
- package/dist/mint-config/schemas/v2/properties/reusable/page.js +12 -0
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +140 -232
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +140 -232
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +140 -232
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +140 -232
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +140 -232
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +140 -232
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +92 -182
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +140 -232
- package/dist/mint-config/upgrades/convertMintDecoratedNavToDocsDecoratedNav.js +7 -3
- package/dist/mint-config/validateConfig.d.ts +336 -350
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +3 -3
|
@@ -519,10 +519,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
519
519
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
520
520
|
} | {
|
|
521
521
|
groups: ({
|
|
522
|
-
openapi: string | string[] | {
|
|
523
|
-
source: string;
|
|
524
|
-
directory?: string | undefined;
|
|
525
|
-
};
|
|
526
522
|
group: string;
|
|
527
523
|
icon?: string | {
|
|
528
524
|
name: string;
|
|
@@ -531,28 +527,24 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
531
527
|
} | undefined;
|
|
532
528
|
expanded?: boolean | undefined;
|
|
533
529
|
public?: boolean | undefined;
|
|
534
|
-
pages?: any[] | undefined;
|
|
535
530
|
tag?: string | undefined;
|
|
536
531
|
hidden?: boolean | undefined;
|
|
537
532
|
root?: string | undefined;
|
|
538
|
-
}
|
|
539
|
-
|
|
540
|
-
asyncapi: string | string[] | {
|
|
533
|
+
} & {
|
|
534
|
+
openapi?: string | string[] | {
|
|
541
535
|
source: string;
|
|
542
536
|
directory?: string | undefined;
|
|
543
|
-
};
|
|
544
|
-
icon?: string | {
|
|
545
|
-
name: string;
|
|
546
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
547
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
548
537
|
} | undefined;
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
}
|
|
538
|
+
asyncapi?: string | string[] | {
|
|
539
|
+
source: string;
|
|
540
|
+
directory?: string | undefined;
|
|
541
|
+
} | undefined;
|
|
542
|
+
} & {
|
|
543
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
544
|
+
})[];
|
|
545
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
546
|
+
} | {
|
|
547
|
+
pages: (string | ({
|
|
556
548
|
group: string;
|
|
557
549
|
icon?: string | {
|
|
558
550
|
name: string;
|
|
@@ -561,14 +553,21 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
561
553
|
} | undefined;
|
|
562
554
|
expanded?: boolean | undefined;
|
|
563
555
|
public?: boolean | undefined;
|
|
564
|
-
pages?: any[] | undefined;
|
|
565
556
|
tag?: string | undefined;
|
|
566
557
|
hidden?: boolean | undefined;
|
|
567
558
|
root?: string | undefined;
|
|
568
|
-
}
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
559
|
+
} & {
|
|
560
|
+
openapi?: string | string[] | {
|
|
561
|
+
source: string;
|
|
562
|
+
directory?: string | undefined;
|
|
563
|
+
} | undefined;
|
|
564
|
+
asyncapi?: string | string[] | {
|
|
565
|
+
source: string;
|
|
566
|
+
directory?: string | undefined;
|
|
567
|
+
} | undefined;
|
|
568
|
+
} & {
|
|
569
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
570
|
+
}))[];
|
|
572
571
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
573
572
|
};
|
|
574
573
|
background?: {
|
|
@@ -865,10 +864,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
865
864
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
866
865
|
} | {
|
|
867
866
|
groups: ({
|
|
868
|
-
openapi: string | string[] | {
|
|
869
|
-
source: string;
|
|
870
|
-
directory?: string | undefined;
|
|
871
|
-
};
|
|
872
867
|
group: string;
|
|
873
868
|
icon?: string | {
|
|
874
869
|
name: string;
|
|
@@ -877,28 +872,24 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
877
872
|
} | undefined;
|
|
878
873
|
expanded?: boolean | undefined;
|
|
879
874
|
public?: boolean | undefined;
|
|
880
|
-
pages?: any[] | undefined;
|
|
881
875
|
tag?: string | undefined;
|
|
882
876
|
hidden?: boolean | undefined;
|
|
883
877
|
root?: string | undefined;
|
|
884
|
-
}
|
|
885
|
-
|
|
886
|
-
asyncapi: string | string[] | {
|
|
878
|
+
} & {
|
|
879
|
+
openapi?: string | string[] | {
|
|
887
880
|
source: string;
|
|
888
881
|
directory?: string | undefined;
|
|
889
|
-
};
|
|
890
|
-
icon?: string | {
|
|
891
|
-
name: string;
|
|
892
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
893
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
894
882
|
} | undefined;
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
}
|
|
883
|
+
asyncapi?: string | string[] | {
|
|
884
|
+
source: string;
|
|
885
|
+
directory?: string | undefined;
|
|
886
|
+
} | undefined;
|
|
887
|
+
} & {
|
|
888
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
889
|
+
})[];
|
|
890
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
891
|
+
} | {
|
|
892
|
+
pages: (string | ({
|
|
902
893
|
group: string;
|
|
903
894
|
icon?: string | {
|
|
904
895
|
name: string;
|
|
@@ -907,14 +898,21 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
907
898
|
} | undefined;
|
|
908
899
|
expanded?: boolean | undefined;
|
|
909
900
|
public?: boolean | undefined;
|
|
910
|
-
pages?: any[] | undefined;
|
|
911
901
|
tag?: string | undefined;
|
|
912
902
|
hidden?: boolean | undefined;
|
|
913
903
|
root?: string | undefined;
|
|
914
|
-
}
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
904
|
+
} & {
|
|
905
|
+
openapi?: string | string[] | {
|
|
906
|
+
source: string;
|
|
907
|
+
directory?: string | undefined;
|
|
908
|
+
} | undefined;
|
|
909
|
+
asyncapi?: string | string[] | {
|
|
910
|
+
source: string;
|
|
911
|
+
directory?: string | undefined;
|
|
912
|
+
} | undefined;
|
|
913
|
+
} & {
|
|
914
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
915
|
+
}))[];
|
|
918
916
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
919
917
|
};
|
|
920
918
|
background?: {
|
|
@@ -1211,10 +1209,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1211
1209
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1212
1210
|
} | {
|
|
1213
1211
|
groups: ({
|
|
1214
|
-
openapi: string | string[] | {
|
|
1215
|
-
source: string;
|
|
1216
|
-
directory?: string | undefined;
|
|
1217
|
-
};
|
|
1218
1212
|
group: string;
|
|
1219
1213
|
icon?: string | {
|
|
1220
1214
|
name: string;
|
|
@@ -1223,28 +1217,24 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1223
1217
|
} | undefined;
|
|
1224
1218
|
expanded?: boolean | undefined;
|
|
1225
1219
|
public?: boolean | undefined;
|
|
1226
|
-
pages?: any[] | undefined;
|
|
1227
1220
|
tag?: string | undefined;
|
|
1228
1221
|
hidden?: boolean | undefined;
|
|
1229
1222
|
root?: string | undefined;
|
|
1230
|
-
}
|
|
1231
|
-
|
|
1232
|
-
asyncapi: string | string[] | {
|
|
1223
|
+
} & {
|
|
1224
|
+
openapi?: string | string[] | {
|
|
1233
1225
|
source: string;
|
|
1234
1226
|
directory?: string | undefined;
|
|
1235
|
-
};
|
|
1236
|
-
icon?: string | {
|
|
1237
|
-
name: string;
|
|
1238
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1239
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1240
1227
|
} | undefined;
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
}
|
|
1228
|
+
asyncapi?: string | string[] | {
|
|
1229
|
+
source: string;
|
|
1230
|
+
directory?: string | undefined;
|
|
1231
|
+
} | undefined;
|
|
1232
|
+
} & {
|
|
1233
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1234
|
+
})[];
|
|
1235
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1236
|
+
} | {
|
|
1237
|
+
pages: (string | ({
|
|
1248
1238
|
group: string;
|
|
1249
1239
|
icon?: string | {
|
|
1250
1240
|
name: string;
|
|
@@ -1253,14 +1243,21 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1253
1243
|
} | undefined;
|
|
1254
1244
|
expanded?: boolean | undefined;
|
|
1255
1245
|
public?: boolean | undefined;
|
|
1256
|
-
pages?: any[] | undefined;
|
|
1257
1246
|
tag?: string | undefined;
|
|
1258
1247
|
hidden?: boolean | undefined;
|
|
1259
1248
|
root?: string | undefined;
|
|
1260
|
-
}
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1249
|
+
} & {
|
|
1250
|
+
openapi?: string | string[] | {
|
|
1251
|
+
source: string;
|
|
1252
|
+
directory?: string | undefined;
|
|
1253
|
+
} | undefined;
|
|
1254
|
+
asyncapi?: string | string[] | {
|
|
1255
|
+
source: string;
|
|
1256
|
+
directory?: string | undefined;
|
|
1257
|
+
} | undefined;
|
|
1258
|
+
} & {
|
|
1259
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1260
|
+
}))[];
|
|
1264
1261
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1265
1262
|
};
|
|
1266
1263
|
background?: {
|
|
@@ -1557,10 +1554,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1557
1554
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1558
1555
|
} | {
|
|
1559
1556
|
groups: ({
|
|
1560
|
-
openapi: string | string[] | {
|
|
1561
|
-
source: string;
|
|
1562
|
-
directory?: string | undefined;
|
|
1563
|
-
};
|
|
1564
1557
|
group: string;
|
|
1565
1558
|
icon?: string | {
|
|
1566
1559
|
name: string;
|
|
@@ -1569,28 +1562,24 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1569
1562
|
} | undefined;
|
|
1570
1563
|
expanded?: boolean | undefined;
|
|
1571
1564
|
public?: boolean | undefined;
|
|
1572
|
-
pages?: any[] | undefined;
|
|
1573
1565
|
tag?: string | undefined;
|
|
1574
1566
|
hidden?: boolean | undefined;
|
|
1575
1567
|
root?: string | undefined;
|
|
1576
|
-
}
|
|
1577
|
-
|
|
1578
|
-
asyncapi: string | string[] | {
|
|
1568
|
+
} & {
|
|
1569
|
+
openapi?: string | string[] | {
|
|
1579
1570
|
source: string;
|
|
1580
1571
|
directory?: string | undefined;
|
|
1581
|
-
};
|
|
1582
|
-
icon?: string | {
|
|
1583
|
-
name: string;
|
|
1584
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1585
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1586
1572
|
} | undefined;
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
}
|
|
1573
|
+
asyncapi?: string | string[] | {
|
|
1574
|
+
source: string;
|
|
1575
|
+
directory?: string | undefined;
|
|
1576
|
+
} | undefined;
|
|
1577
|
+
} & {
|
|
1578
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1579
|
+
})[];
|
|
1580
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1581
|
+
} | {
|
|
1582
|
+
pages: (string | ({
|
|
1594
1583
|
group: string;
|
|
1595
1584
|
icon?: string | {
|
|
1596
1585
|
name: string;
|
|
@@ -1599,14 +1588,21 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1599
1588
|
} | undefined;
|
|
1600
1589
|
expanded?: boolean | undefined;
|
|
1601
1590
|
public?: boolean | undefined;
|
|
1602
|
-
pages?: any[] | undefined;
|
|
1603
1591
|
tag?: string | undefined;
|
|
1604
1592
|
hidden?: boolean | undefined;
|
|
1605
1593
|
root?: string | undefined;
|
|
1606
|
-
}
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1594
|
+
} & {
|
|
1595
|
+
openapi?: string | string[] | {
|
|
1596
|
+
source: string;
|
|
1597
|
+
directory?: string | undefined;
|
|
1598
|
+
} | undefined;
|
|
1599
|
+
asyncapi?: string | string[] | {
|
|
1600
|
+
source: string;
|
|
1601
|
+
directory?: string | undefined;
|
|
1602
|
+
} | undefined;
|
|
1603
|
+
} & {
|
|
1604
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1605
|
+
}))[];
|
|
1610
1606
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1611
1607
|
};
|
|
1612
1608
|
background?: {
|
|
@@ -1903,10 +1899,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1903
1899
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1904
1900
|
} | {
|
|
1905
1901
|
groups: ({
|
|
1906
|
-
openapi: string | string[] | {
|
|
1907
|
-
source: string;
|
|
1908
|
-
directory?: string | undefined;
|
|
1909
|
-
};
|
|
1910
1902
|
group: string;
|
|
1911
1903
|
icon?: string | {
|
|
1912
1904
|
name: string;
|
|
@@ -1915,28 +1907,24 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1915
1907
|
} | undefined;
|
|
1916
1908
|
expanded?: boolean | undefined;
|
|
1917
1909
|
public?: boolean | undefined;
|
|
1918
|
-
pages?: any[] | undefined;
|
|
1919
1910
|
tag?: string | undefined;
|
|
1920
1911
|
hidden?: boolean | undefined;
|
|
1921
1912
|
root?: string | undefined;
|
|
1922
|
-
}
|
|
1923
|
-
|
|
1924
|
-
asyncapi: string | string[] | {
|
|
1913
|
+
} & {
|
|
1914
|
+
openapi?: string | string[] | {
|
|
1925
1915
|
source: string;
|
|
1926
1916
|
directory?: string | undefined;
|
|
1927
|
-
};
|
|
1928
|
-
icon?: string | {
|
|
1929
|
-
name: string;
|
|
1930
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1931
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1932
1917
|
} | undefined;
|
|
1933
|
-
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
}
|
|
1918
|
+
asyncapi?: string | string[] | {
|
|
1919
|
+
source: string;
|
|
1920
|
+
directory?: string | undefined;
|
|
1921
|
+
} | undefined;
|
|
1922
|
+
} & {
|
|
1923
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1924
|
+
})[];
|
|
1925
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1926
|
+
} | {
|
|
1927
|
+
pages: (string | ({
|
|
1940
1928
|
group: string;
|
|
1941
1929
|
icon?: string | {
|
|
1942
1930
|
name: string;
|
|
@@ -1945,14 +1933,21 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1945
1933
|
} | undefined;
|
|
1946
1934
|
expanded?: boolean | undefined;
|
|
1947
1935
|
public?: boolean | undefined;
|
|
1948
|
-
pages?: any[] | undefined;
|
|
1949
1936
|
tag?: string | undefined;
|
|
1950
1937
|
hidden?: boolean | undefined;
|
|
1951
1938
|
root?: string | undefined;
|
|
1952
|
-
}
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1939
|
+
} & {
|
|
1940
|
+
openapi?: string | string[] | {
|
|
1941
|
+
source: string;
|
|
1942
|
+
directory?: string | undefined;
|
|
1943
|
+
} | undefined;
|
|
1944
|
+
asyncapi?: string | string[] | {
|
|
1945
|
+
source: string;
|
|
1946
|
+
directory?: string | undefined;
|
|
1947
|
+
} | undefined;
|
|
1948
|
+
} & {
|
|
1949
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1950
|
+
}))[];
|
|
1956
1951
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1957
1952
|
};
|
|
1958
1953
|
background?: {
|
|
@@ -2249,10 +2244,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2249
2244
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2250
2245
|
} | {
|
|
2251
2246
|
groups: ({
|
|
2252
|
-
openapi: string | string[] | {
|
|
2253
|
-
source: string;
|
|
2254
|
-
directory?: string | undefined;
|
|
2255
|
-
};
|
|
2256
2247
|
group: string;
|
|
2257
2248
|
icon?: string | {
|
|
2258
2249
|
name: string;
|
|
@@ -2261,28 +2252,24 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2261
2252
|
} | undefined;
|
|
2262
2253
|
expanded?: boolean | undefined;
|
|
2263
2254
|
public?: boolean | undefined;
|
|
2264
|
-
pages?: any[] | undefined;
|
|
2265
2255
|
tag?: string | undefined;
|
|
2266
2256
|
hidden?: boolean | undefined;
|
|
2267
2257
|
root?: string | undefined;
|
|
2268
|
-
}
|
|
2269
|
-
|
|
2270
|
-
asyncapi: string | string[] | {
|
|
2258
|
+
} & {
|
|
2259
|
+
openapi?: string | string[] | {
|
|
2271
2260
|
source: string;
|
|
2272
2261
|
directory?: string | undefined;
|
|
2273
|
-
};
|
|
2274
|
-
icon?: string | {
|
|
2275
|
-
name: string;
|
|
2276
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2277
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2278
2262
|
} | undefined;
|
|
2279
|
-
|
|
2280
|
-
|
|
2281
|
-
|
|
2282
|
-
|
|
2283
|
-
|
|
2284
|
-
|
|
2285
|
-
}
|
|
2263
|
+
asyncapi?: string | string[] | {
|
|
2264
|
+
source: string;
|
|
2265
|
+
directory?: string | undefined;
|
|
2266
|
+
} | undefined;
|
|
2267
|
+
} & {
|
|
2268
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
2269
|
+
})[];
|
|
2270
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2271
|
+
} | {
|
|
2272
|
+
pages: (string | ({
|
|
2286
2273
|
group: string;
|
|
2287
2274
|
icon?: string | {
|
|
2288
2275
|
name: string;
|
|
@@ -2291,14 +2278,21 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2291
2278
|
} | undefined;
|
|
2292
2279
|
expanded?: boolean | undefined;
|
|
2293
2280
|
public?: boolean | undefined;
|
|
2294
|
-
pages?: any[] | undefined;
|
|
2295
2281
|
tag?: string | undefined;
|
|
2296
2282
|
hidden?: boolean | undefined;
|
|
2297
2283
|
root?: string | undefined;
|
|
2298
|
-
}
|
|
2299
|
-
|
|
2300
|
-
|
|
2301
|
-
|
|
2284
|
+
} & {
|
|
2285
|
+
openapi?: string | string[] | {
|
|
2286
|
+
source: string;
|
|
2287
|
+
directory?: string | undefined;
|
|
2288
|
+
} | undefined;
|
|
2289
|
+
asyncapi?: string | string[] | {
|
|
2290
|
+
source: string;
|
|
2291
|
+
directory?: string | undefined;
|
|
2292
|
+
} | undefined;
|
|
2293
|
+
} & {
|
|
2294
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
2295
|
+
}))[];
|
|
2302
2296
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2303
2297
|
};
|
|
2304
2298
|
background?: {
|
|
@@ -2595,10 +2589,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2595
2589
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2596
2590
|
} | {
|
|
2597
2591
|
groups: ({
|
|
2598
|
-
openapi: string | string[] | {
|
|
2599
|
-
source: string;
|
|
2600
|
-
directory?: string | undefined;
|
|
2601
|
-
};
|
|
2602
2592
|
group: string;
|
|
2603
2593
|
icon?: string | {
|
|
2604
2594
|
name: string;
|
|
@@ -2607,28 +2597,24 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2607
2597
|
} | undefined;
|
|
2608
2598
|
expanded?: boolean | undefined;
|
|
2609
2599
|
public?: boolean | undefined;
|
|
2610
|
-
pages?: any[] | undefined;
|
|
2611
2600
|
tag?: string | undefined;
|
|
2612
2601
|
hidden?: boolean | undefined;
|
|
2613
2602
|
root?: string | undefined;
|
|
2614
|
-
}
|
|
2615
|
-
|
|
2616
|
-
asyncapi: string | string[] | {
|
|
2603
|
+
} & {
|
|
2604
|
+
openapi?: string | string[] | {
|
|
2617
2605
|
source: string;
|
|
2618
2606
|
directory?: string | undefined;
|
|
2619
|
-
};
|
|
2620
|
-
icon?: string | {
|
|
2621
|
-
name: string;
|
|
2622
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2623
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2624
2607
|
} | undefined;
|
|
2625
|
-
|
|
2626
|
-
|
|
2627
|
-
|
|
2628
|
-
|
|
2629
|
-
|
|
2630
|
-
|
|
2631
|
-
}
|
|
2608
|
+
asyncapi?: string | string[] | {
|
|
2609
|
+
source: string;
|
|
2610
|
+
directory?: string | undefined;
|
|
2611
|
+
} | undefined;
|
|
2612
|
+
} & {
|
|
2613
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
2614
|
+
})[];
|
|
2615
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2616
|
+
} | {
|
|
2617
|
+
pages: (string | ({
|
|
2632
2618
|
group: string;
|
|
2633
2619
|
icon?: string | {
|
|
2634
2620
|
name: string;
|
|
@@ -2637,14 +2623,21 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2637
2623
|
} | undefined;
|
|
2638
2624
|
expanded?: boolean | undefined;
|
|
2639
2625
|
public?: boolean | undefined;
|
|
2640
|
-
pages?: any[] | undefined;
|
|
2641
2626
|
tag?: string | undefined;
|
|
2642
2627
|
hidden?: boolean | undefined;
|
|
2643
2628
|
root?: string | undefined;
|
|
2644
|
-
}
|
|
2645
|
-
|
|
2646
|
-
|
|
2647
|
-
|
|
2629
|
+
} & {
|
|
2630
|
+
openapi?: string | string[] | {
|
|
2631
|
+
source: string;
|
|
2632
|
+
directory?: string | undefined;
|
|
2633
|
+
} | undefined;
|
|
2634
|
+
asyncapi?: string | string[] | {
|
|
2635
|
+
source: string;
|
|
2636
|
+
directory?: string | undefined;
|
|
2637
|
+
} | undefined;
|
|
2638
|
+
} & {
|
|
2639
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
2640
|
+
}))[];
|
|
2648
2641
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2649
2642
|
};
|
|
2650
2643
|
background?: {
|
|
@@ -2945,12 +2938,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2945
2938
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2946
2939
|
} | {
|
|
2947
2940
|
groups: ({
|
|
2948
|
-
openapi: string | string[] | {
|
|
2949
|
-
source: string;
|
|
2950
|
-
directory?: string | undefined;
|
|
2951
|
-
};
|
|
2952
2941
|
group: string;
|
|
2953
|
-
pages: any[];
|
|
2954
2942
|
icon?: string | {
|
|
2955
2943
|
name: string;
|
|
2956
2944
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -2961,26 +2949,22 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2961
2949
|
tag?: string | undefined;
|
|
2962
2950
|
hidden?: boolean | undefined;
|
|
2963
2951
|
root?: string | undefined;
|
|
2964
|
-
}
|
|
2965
|
-
|
|
2966
|
-
pages: any[];
|
|
2967
|
-
asyncapi: string | string[] | {
|
|
2952
|
+
} & {
|
|
2953
|
+
openapi?: string | string[] | {
|
|
2968
2954
|
source: string;
|
|
2969
2955
|
directory?: string | undefined;
|
|
2970
|
-
};
|
|
2971
|
-
icon?: string | {
|
|
2972
|
-
name: string;
|
|
2973
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2974
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2975
2956
|
} | undefined;
|
|
2976
|
-
|
|
2977
|
-
|
|
2978
|
-
|
|
2979
|
-
|
|
2980
|
-
|
|
2981
|
-
|
|
2957
|
+
asyncapi?: string | string[] | {
|
|
2958
|
+
source: string;
|
|
2959
|
+
directory?: string | undefined;
|
|
2960
|
+
} | undefined;
|
|
2961
|
+
} & {
|
|
2962
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
2963
|
+
})[];
|
|
2964
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2965
|
+
} | {
|
|
2966
|
+
pages: (string | ({
|
|
2982
2967
|
group: string;
|
|
2983
|
-
pages: any[];
|
|
2984
2968
|
icon?: string | {
|
|
2985
2969
|
name: string;
|
|
2986
2970
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -2991,10 +2975,18 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2991
2975
|
tag?: string | undefined;
|
|
2992
2976
|
hidden?: boolean | undefined;
|
|
2993
2977
|
root?: string | undefined;
|
|
2994
|
-
}
|
|
2995
|
-
|
|
2996
|
-
|
|
2997
|
-
|
|
2978
|
+
} & {
|
|
2979
|
+
openapi?: string | string[] | {
|
|
2980
|
+
source: string;
|
|
2981
|
+
directory?: string | undefined;
|
|
2982
|
+
} | undefined;
|
|
2983
|
+
asyncapi?: string | string[] | {
|
|
2984
|
+
source: string;
|
|
2985
|
+
directory?: string | undefined;
|
|
2986
|
+
} | undefined;
|
|
2987
|
+
} & {
|
|
2988
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
2989
|
+
}))[];
|
|
2998
2990
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2999
2991
|
};
|
|
3000
2992
|
background?: {
|
|
@@ -3291,12 +3283,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3291
3283
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3292
3284
|
} | {
|
|
3293
3285
|
groups: ({
|
|
3294
|
-
openapi: string | string[] | {
|
|
3295
|
-
source: string;
|
|
3296
|
-
directory?: string | undefined;
|
|
3297
|
-
};
|
|
3298
3286
|
group: string;
|
|
3299
|
-
pages: any[];
|
|
3300
3287
|
icon?: string | {
|
|
3301
3288
|
name: string;
|
|
3302
3289
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -3307,26 +3294,22 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3307
3294
|
tag?: string | undefined;
|
|
3308
3295
|
hidden?: boolean | undefined;
|
|
3309
3296
|
root?: string | undefined;
|
|
3310
|
-
}
|
|
3311
|
-
|
|
3312
|
-
pages: any[];
|
|
3313
|
-
asyncapi: string | string[] | {
|
|
3297
|
+
} & {
|
|
3298
|
+
openapi?: string | string[] | {
|
|
3314
3299
|
source: string;
|
|
3315
3300
|
directory?: string | undefined;
|
|
3316
|
-
};
|
|
3317
|
-
icon?: string | {
|
|
3318
|
-
name: string;
|
|
3319
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3320
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
3321
3301
|
} | undefined;
|
|
3322
|
-
|
|
3323
|
-
|
|
3324
|
-
|
|
3325
|
-
|
|
3326
|
-
|
|
3327
|
-
|
|
3302
|
+
asyncapi?: string | string[] | {
|
|
3303
|
+
source: string;
|
|
3304
|
+
directory?: string | undefined;
|
|
3305
|
+
} | undefined;
|
|
3306
|
+
} & {
|
|
3307
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
3308
|
+
})[];
|
|
3309
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3310
|
+
} | {
|
|
3311
|
+
pages: (string | ({
|
|
3328
3312
|
group: string;
|
|
3329
|
-
pages: any[];
|
|
3330
3313
|
icon?: string | {
|
|
3331
3314
|
name: string;
|
|
3332
3315
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -3337,10 +3320,18 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3337
3320
|
tag?: string | undefined;
|
|
3338
3321
|
hidden?: boolean | undefined;
|
|
3339
3322
|
root?: string | undefined;
|
|
3340
|
-
}
|
|
3341
|
-
|
|
3342
|
-
|
|
3343
|
-
|
|
3323
|
+
} & {
|
|
3324
|
+
openapi?: string | string[] | {
|
|
3325
|
+
source: string;
|
|
3326
|
+
directory?: string | undefined;
|
|
3327
|
+
} | undefined;
|
|
3328
|
+
asyncapi?: string | string[] | {
|
|
3329
|
+
source: string;
|
|
3330
|
+
directory?: string | undefined;
|
|
3331
|
+
} | undefined;
|
|
3332
|
+
} & {
|
|
3333
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
3334
|
+
}))[];
|
|
3344
3335
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3345
3336
|
};
|
|
3346
3337
|
background?: {
|
|
@@ -3637,12 +3628,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3637
3628
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3638
3629
|
} | {
|
|
3639
3630
|
groups: ({
|
|
3640
|
-
openapi: string | string[] | {
|
|
3641
|
-
source: string;
|
|
3642
|
-
directory?: string | undefined;
|
|
3643
|
-
};
|
|
3644
3631
|
group: string;
|
|
3645
|
-
pages: any[];
|
|
3646
3632
|
icon?: string | {
|
|
3647
3633
|
name: string;
|
|
3648
3634
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -3653,26 +3639,22 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3653
3639
|
tag?: string | undefined;
|
|
3654
3640
|
hidden?: boolean | undefined;
|
|
3655
3641
|
root?: string | undefined;
|
|
3656
|
-
}
|
|
3657
|
-
|
|
3658
|
-
pages: any[];
|
|
3659
|
-
asyncapi: string | string[] | {
|
|
3642
|
+
} & {
|
|
3643
|
+
openapi?: string | string[] | {
|
|
3660
3644
|
source: string;
|
|
3661
3645
|
directory?: string | undefined;
|
|
3662
|
-
};
|
|
3663
|
-
icon?: string | {
|
|
3664
|
-
name: string;
|
|
3665
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3666
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
3667
3646
|
} | undefined;
|
|
3668
|
-
|
|
3669
|
-
|
|
3670
|
-
|
|
3671
|
-
|
|
3672
|
-
|
|
3673
|
-
|
|
3647
|
+
asyncapi?: string | string[] | {
|
|
3648
|
+
source: string;
|
|
3649
|
+
directory?: string | undefined;
|
|
3650
|
+
} | undefined;
|
|
3651
|
+
} & {
|
|
3652
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
3653
|
+
})[];
|
|
3654
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3655
|
+
} | {
|
|
3656
|
+
pages: (string | ({
|
|
3674
3657
|
group: string;
|
|
3675
|
-
pages: any[];
|
|
3676
3658
|
icon?: string | {
|
|
3677
3659
|
name: string;
|
|
3678
3660
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -3683,10 +3665,18 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3683
3665
|
tag?: string | undefined;
|
|
3684
3666
|
hidden?: boolean | undefined;
|
|
3685
3667
|
root?: string | undefined;
|
|
3686
|
-
}
|
|
3687
|
-
|
|
3688
|
-
|
|
3689
|
-
|
|
3668
|
+
} & {
|
|
3669
|
+
openapi?: string | string[] | {
|
|
3670
|
+
source: string;
|
|
3671
|
+
directory?: string | undefined;
|
|
3672
|
+
} | undefined;
|
|
3673
|
+
asyncapi?: string | string[] | {
|
|
3674
|
+
source: string;
|
|
3675
|
+
directory?: string | undefined;
|
|
3676
|
+
} | undefined;
|
|
3677
|
+
} & {
|
|
3678
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
3679
|
+
}))[];
|
|
3690
3680
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3691
3681
|
};
|
|
3692
3682
|
background?: {
|
|
@@ -3983,12 +3973,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3983
3973
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3984
3974
|
} | {
|
|
3985
3975
|
groups: ({
|
|
3986
|
-
openapi: string | string[] | {
|
|
3987
|
-
source: string;
|
|
3988
|
-
directory?: string | undefined;
|
|
3989
|
-
};
|
|
3990
3976
|
group: string;
|
|
3991
|
-
pages: any[];
|
|
3992
3977
|
icon?: string | {
|
|
3993
3978
|
name: string;
|
|
3994
3979
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -3999,26 +3984,22 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3999
3984
|
tag?: string | undefined;
|
|
4000
3985
|
hidden?: boolean | undefined;
|
|
4001
3986
|
root?: string | undefined;
|
|
4002
|
-
}
|
|
4003
|
-
|
|
4004
|
-
pages: any[];
|
|
4005
|
-
asyncapi: string | string[] | {
|
|
3987
|
+
} & {
|
|
3988
|
+
openapi?: string | string[] | {
|
|
4006
3989
|
source: string;
|
|
4007
3990
|
directory?: string | undefined;
|
|
4008
|
-
};
|
|
4009
|
-
icon?: string | {
|
|
4010
|
-
name: string;
|
|
4011
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4012
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
4013
3991
|
} | undefined;
|
|
4014
|
-
|
|
4015
|
-
|
|
4016
|
-
|
|
4017
|
-
|
|
4018
|
-
|
|
4019
|
-
|
|
3992
|
+
asyncapi?: string | string[] | {
|
|
3993
|
+
source: string;
|
|
3994
|
+
directory?: string | undefined;
|
|
3995
|
+
} | undefined;
|
|
3996
|
+
} & {
|
|
3997
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
3998
|
+
})[];
|
|
3999
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4000
|
+
} | {
|
|
4001
|
+
pages: (string | ({
|
|
4020
4002
|
group: string;
|
|
4021
|
-
pages: any[];
|
|
4022
4003
|
icon?: string | {
|
|
4023
4004
|
name: string;
|
|
4024
4005
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -4029,10 +4010,18 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4029
4010
|
tag?: string | undefined;
|
|
4030
4011
|
hidden?: boolean | undefined;
|
|
4031
4012
|
root?: string | undefined;
|
|
4032
|
-
}
|
|
4033
|
-
|
|
4034
|
-
|
|
4035
|
-
|
|
4013
|
+
} & {
|
|
4014
|
+
openapi?: string | string[] | {
|
|
4015
|
+
source: string;
|
|
4016
|
+
directory?: string | undefined;
|
|
4017
|
+
} | undefined;
|
|
4018
|
+
asyncapi?: string | string[] | {
|
|
4019
|
+
source: string;
|
|
4020
|
+
directory?: string | undefined;
|
|
4021
|
+
} | undefined;
|
|
4022
|
+
} & {
|
|
4023
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
4024
|
+
}))[];
|
|
4036
4025
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4037
4026
|
};
|
|
4038
4027
|
background?: {
|
|
@@ -4329,12 +4318,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4329
4318
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4330
4319
|
} | {
|
|
4331
4320
|
groups: ({
|
|
4332
|
-
openapi: string | string[] | {
|
|
4333
|
-
source: string;
|
|
4334
|
-
directory?: string | undefined;
|
|
4335
|
-
};
|
|
4336
4321
|
group: string;
|
|
4337
|
-
pages: any[];
|
|
4338
4322
|
icon?: string | {
|
|
4339
4323
|
name: string;
|
|
4340
4324
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -4345,26 +4329,22 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4345
4329
|
tag?: string | undefined;
|
|
4346
4330
|
hidden?: boolean | undefined;
|
|
4347
4331
|
root?: string | undefined;
|
|
4348
|
-
}
|
|
4349
|
-
|
|
4350
|
-
pages: any[];
|
|
4351
|
-
asyncapi: string | string[] | {
|
|
4332
|
+
} & {
|
|
4333
|
+
openapi?: string | string[] | {
|
|
4352
4334
|
source: string;
|
|
4353
4335
|
directory?: string | undefined;
|
|
4354
|
-
};
|
|
4355
|
-
icon?: string | {
|
|
4356
|
-
name: string;
|
|
4357
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4358
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
4359
4336
|
} | undefined;
|
|
4360
|
-
|
|
4361
|
-
|
|
4362
|
-
|
|
4363
|
-
|
|
4364
|
-
|
|
4365
|
-
|
|
4337
|
+
asyncapi?: string | string[] | {
|
|
4338
|
+
source: string;
|
|
4339
|
+
directory?: string | undefined;
|
|
4340
|
+
} | undefined;
|
|
4341
|
+
} & {
|
|
4342
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
4343
|
+
})[];
|
|
4344
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4345
|
+
} | {
|
|
4346
|
+
pages: (string | ({
|
|
4366
4347
|
group: string;
|
|
4367
|
-
pages: any[];
|
|
4368
4348
|
icon?: string | {
|
|
4369
4349
|
name: string;
|
|
4370
4350
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -4375,10 +4355,18 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4375
4355
|
tag?: string | undefined;
|
|
4376
4356
|
hidden?: boolean | undefined;
|
|
4377
4357
|
root?: string | undefined;
|
|
4378
|
-
}
|
|
4379
|
-
|
|
4380
|
-
|
|
4381
|
-
|
|
4358
|
+
} & {
|
|
4359
|
+
openapi?: string | string[] | {
|
|
4360
|
+
source: string;
|
|
4361
|
+
directory?: string | undefined;
|
|
4362
|
+
} | undefined;
|
|
4363
|
+
asyncapi?: string | string[] | {
|
|
4364
|
+
source: string;
|
|
4365
|
+
directory?: string | undefined;
|
|
4366
|
+
} | undefined;
|
|
4367
|
+
} & {
|
|
4368
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
4369
|
+
}))[];
|
|
4382
4370
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4383
4371
|
};
|
|
4384
4372
|
background?: {
|
|
@@ -4675,12 +4663,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4675
4663
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4676
4664
|
} | {
|
|
4677
4665
|
groups: ({
|
|
4678
|
-
openapi: string | string[] | {
|
|
4679
|
-
source: string;
|
|
4680
|
-
directory?: string | undefined;
|
|
4681
|
-
};
|
|
4682
4666
|
group: string;
|
|
4683
|
-
pages: any[];
|
|
4684
4667
|
icon?: string | {
|
|
4685
4668
|
name: string;
|
|
4686
4669
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -4691,26 +4674,22 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4691
4674
|
tag?: string | undefined;
|
|
4692
4675
|
hidden?: boolean | undefined;
|
|
4693
4676
|
root?: string | undefined;
|
|
4694
|
-
}
|
|
4695
|
-
|
|
4696
|
-
pages: any[];
|
|
4697
|
-
asyncapi: string | string[] | {
|
|
4677
|
+
} & {
|
|
4678
|
+
openapi?: string | string[] | {
|
|
4698
4679
|
source: string;
|
|
4699
4680
|
directory?: string | undefined;
|
|
4700
|
-
};
|
|
4701
|
-
icon?: string | {
|
|
4702
|
-
name: string;
|
|
4703
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4704
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
4705
4681
|
} | undefined;
|
|
4706
|
-
|
|
4707
|
-
|
|
4708
|
-
|
|
4709
|
-
|
|
4710
|
-
|
|
4711
|
-
|
|
4682
|
+
asyncapi?: string | string[] | {
|
|
4683
|
+
source: string;
|
|
4684
|
+
directory?: string | undefined;
|
|
4685
|
+
} | undefined;
|
|
4686
|
+
} & {
|
|
4687
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
4688
|
+
})[];
|
|
4689
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4690
|
+
} | {
|
|
4691
|
+
pages: (string | ({
|
|
4712
4692
|
group: string;
|
|
4713
|
-
pages: any[];
|
|
4714
4693
|
icon?: string | {
|
|
4715
4694
|
name: string;
|
|
4716
4695
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -4721,10 +4700,18 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4721
4700
|
tag?: string | undefined;
|
|
4722
4701
|
hidden?: boolean | undefined;
|
|
4723
4702
|
root?: string | undefined;
|
|
4724
|
-
}
|
|
4725
|
-
|
|
4726
|
-
|
|
4727
|
-
|
|
4703
|
+
} & {
|
|
4704
|
+
openapi?: string | string[] | {
|
|
4705
|
+
source: string;
|
|
4706
|
+
directory?: string | undefined;
|
|
4707
|
+
} | undefined;
|
|
4708
|
+
asyncapi?: string | string[] | {
|
|
4709
|
+
source: string;
|
|
4710
|
+
directory?: string | undefined;
|
|
4711
|
+
} | undefined;
|
|
4712
|
+
} & {
|
|
4713
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
4714
|
+
}))[];
|
|
4728
4715
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4729
4716
|
};
|
|
4730
4717
|
background?: {
|
|
@@ -5021,12 +5008,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5021
5008
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5022
5009
|
} | {
|
|
5023
5010
|
groups: ({
|
|
5024
|
-
openapi: string | string[] | {
|
|
5025
|
-
source: string;
|
|
5026
|
-
directory?: string | undefined;
|
|
5027
|
-
};
|
|
5028
5011
|
group: string;
|
|
5029
|
-
pages: any[];
|
|
5030
5012
|
icon?: string | {
|
|
5031
5013
|
name: string;
|
|
5032
5014
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -5037,26 +5019,22 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5037
5019
|
tag?: string | undefined;
|
|
5038
5020
|
hidden?: boolean | undefined;
|
|
5039
5021
|
root?: string | undefined;
|
|
5040
|
-
}
|
|
5041
|
-
|
|
5042
|
-
pages: any[];
|
|
5043
|
-
asyncapi: string | string[] | {
|
|
5022
|
+
} & {
|
|
5023
|
+
openapi?: string | string[] | {
|
|
5044
5024
|
source: string;
|
|
5045
5025
|
directory?: string | undefined;
|
|
5046
|
-
};
|
|
5047
|
-
icon?: string | {
|
|
5048
|
-
name: string;
|
|
5049
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5050
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
5051
5026
|
} | undefined;
|
|
5052
|
-
|
|
5053
|
-
|
|
5054
|
-
|
|
5055
|
-
|
|
5056
|
-
|
|
5057
|
-
|
|
5027
|
+
asyncapi?: string | string[] | {
|
|
5028
|
+
source: string;
|
|
5029
|
+
directory?: string | undefined;
|
|
5030
|
+
} | undefined;
|
|
5031
|
+
} & {
|
|
5032
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
5033
|
+
})[];
|
|
5034
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5035
|
+
} | {
|
|
5036
|
+
pages: (string | ({
|
|
5058
5037
|
group: string;
|
|
5059
|
-
pages: any[];
|
|
5060
5038
|
icon?: string | {
|
|
5061
5039
|
name: string;
|
|
5062
5040
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -5067,10 +5045,18 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5067
5045
|
tag?: string | undefined;
|
|
5068
5046
|
hidden?: boolean | undefined;
|
|
5069
5047
|
root?: string | undefined;
|
|
5070
|
-
}
|
|
5071
|
-
|
|
5072
|
-
|
|
5073
|
-
|
|
5048
|
+
} & {
|
|
5049
|
+
openapi?: string | string[] | {
|
|
5050
|
+
source: string;
|
|
5051
|
+
directory?: string | undefined;
|
|
5052
|
+
} | undefined;
|
|
5053
|
+
asyncapi?: string | string[] | {
|
|
5054
|
+
source: string;
|
|
5055
|
+
directory?: string | undefined;
|
|
5056
|
+
} | undefined;
|
|
5057
|
+
} & {
|
|
5058
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
5059
|
+
}))[];
|
|
5074
5060
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5075
5061
|
};
|
|
5076
5062
|
background?: {
|