@mintlify/validation 0.1.585 → 0.1.587
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/index.js +2 -1
- package/dist/mint-config/schemas/v2/index.d.ts +3384 -1895
- package/dist/mint-config/schemas/v2/index.js +2 -0
- package/dist/mint-config/schemas/v2/properties/contextual.d.ts +12 -6
- package/dist/mint-config/schemas/v2/properties/contextual.js +7 -0
- 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 +362 -429
- package/dist/mint-config/schemas/v2/properties/navigation/index.js +1 -1
- package/dist/mint-config/schemas/v2/properties/navigation/pages.d.ts +177 -4
- package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +8 -0
- package/dist/mint-config/schemas/v2/properties/navigation/tabs.js +2 -0
- 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 +152 -239
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +152 -239
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +152 -239
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +152 -239
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +152 -239
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +152 -239
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +100 -187
- package/dist/mint-config/schemas/v2/themes/sequoia.d.ts +2187 -0
- package/dist/mint-config/schemas/v2/themes/sequoia.js +4 -0
- package/dist/mint-config/schemas/v2/themes/themes.d.ts +2 -2
- package/dist/mint-config/schemas/v2/themes/themes.js +10 -1
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +152 -239
- package/dist/mint-config/upgrades/convertMintDecoratedNavToDocsDecoratedNav.js +7 -3
- package/dist/mint-config/validateConfig.d.ts +1072 -380
- 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?: {
|
|
@@ -810,7 +809,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
810
809
|
};
|
|
811
810
|
} | undefined;
|
|
812
811
|
contextual?: {
|
|
813
|
-
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
812
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
814
813
|
href: string | {
|
|
815
814
|
base: string;
|
|
816
815
|
query?: {
|
|
@@ -826,6 +825,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
826
825
|
library?: "fontawesome" | "lucide" | undefined;
|
|
827
826
|
} | undefined;
|
|
828
827
|
})[];
|
|
828
|
+
display?: "header" | "toc" | undefined;
|
|
829
829
|
} | undefined;
|
|
830
830
|
thumbnails?: {
|
|
831
831
|
background?: string | undefined;
|
|
@@ -865,10 +865,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
865
865
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
866
866
|
} | {
|
|
867
867
|
groups: ({
|
|
868
|
-
openapi: string | string[] | {
|
|
869
|
-
source: string;
|
|
870
|
-
directory?: string | undefined;
|
|
871
|
-
};
|
|
872
868
|
group: string;
|
|
873
869
|
icon?: string | {
|
|
874
870
|
name: string;
|
|
@@ -877,28 +873,24 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
877
873
|
} | undefined;
|
|
878
874
|
expanded?: boolean | undefined;
|
|
879
875
|
public?: boolean | undefined;
|
|
880
|
-
pages?: any[] | undefined;
|
|
881
876
|
tag?: string | undefined;
|
|
882
877
|
hidden?: boolean | undefined;
|
|
883
878
|
root?: string | undefined;
|
|
884
|
-
}
|
|
885
|
-
|
|
886
|
-
asyncapi: string | string[] | {
|
|
879
|
+
} & {
|
|
880
|
+
openapi?: string | string[] | {
|
|
887
881
|
source: string;
|
|
888
882
|
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
883
|
} | undefined;
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
}
|
|
884
|
+
asyncapi?: string | string[] | {
|
|
885
|
+
source: string;
|
|
886
|
+
directory?: string | undefined;
|
|
887
|
+
} | undefined;
|
|
888
|
+
} & {
|
|
889
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
890
|
+
})[];
|
|
891
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
892
|
+
} | {
|
|
893
|
+
pages: (string | ({
|
|
902
894
|
group: string;
|
|
903
895
|
icon?: string | {
|
|
904
896
|
name: string;
|
|
@@ -907,14 +899,21 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
907
899
|
} | undefined;
|
|
908
900
|
expanded?: boolean | undefined;
|
|
909
901
|
public?: boolean | undefined;
|
|
910
|
-
pages?: any[] | undefined;
|
|
911
902
|
tag?: string | undefined;
|
|
912
903
|
hidden?: boolean | undefined;
|
|
913
904
|
root?: string | undefined;
|
|
914
|
-
}
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
905
|
+
} & {
|
|
906
|
+
openapi?: string | string[] | {
|
|
907
|
+
source: string;
|
|
908
|
+
directory?: string | undefined;
|
|
909
|
+
} | undefined;
|
|
910
|
+
asyncapi?: string | string[] | {
|
|
911
|
+
source: string;
|
|
912
|
+
directory?: string | undefined;
|
|
913
|
+
} | undefined;
|
|
914
|
+
} & {
|
|
915
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
916
|
+
}))[];
|
|
918
917
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
919
918
|
};
|
|
920
919
|
background?: {
|
|
@@ -1156,7 +1155,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1156
1155
|
};
|
|
1157
1156
|
} | undefined;
|
|
1158
1157
|
contextual?: {
|
|
1159
|
-
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
1158
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
1160
1159
|
href: string | {
|
|
1161
1160
|
base: string;
|
|
1162
1161
|
query?: {
|
|
@@ -1172,6 +1171,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1172
1171
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1173
1172
|
} | undefined;
|
|
1174
1173
|
})[];
|
|
1174
|
+
display?: "header" | "toc" | undefined;
|
|
1175
1175
|
} | undefined;
|
|
1176
1176
|
thumbnails?: {
|
|
1177
1177
|
background?: string | undefined;
|
|
@@ -1211,10 +1211,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1211
1211
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1212
1212
|
} | {
|
|
1213
1213
|
groups: ({
|
|
1214
|
-
openapi: string | string[] | {
|
|
1215
|
-
source: string;
|
|
1216
|
-
directory?: string | undefined;
|
|
1217
|
-
};
|
|
1218
1214
|
group: string;
|
|
1219
1215
|
icon?: string | {
|
|
1220
1216
|
name: string;
|
|
@@ -1223,28 +1219,24 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1223
1219
|
} | undefined;
|
|
1224
1220
|
expanded?: boolean | undefined;
|
|
1225
1221
|
public?: boolean | undefined;
|
|
1226
|
-
pages?: any[] | undefined;
|
|
1227
1222
|
tag?: string | undefined;
|
|
1228
1223
|
hidden?: boolean | undefined;
|
|
1229
1224
|
root?: string | undefined;
|
|
1230
|
-
}
|
|
1231
|
-
|
|
1232
|
-
asyncapi: string | string[] | {
|
|
1225
|
+
} & {
|
|
1226
|
+
openapi?: string | string[] | {
|
|
1233
1227
|
source: string;
|
|
1234
1228
|
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
1229
|
} | undefined;
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
}
|
|
1230
|
+
asyncapi?: string | string[] | {
|
|
1231
|
+
source: string;
|
|
1232
|
+
directory?: string | undefined;
|
|
1233
|
+
} | undefined;
|
|
1234
|
+
} & {
|
|
1235
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1236
|
+
})[];
|
|
1237
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1238
|
+
} | {
|
|
1239
|
+
pages: (string | ({
|
|
1248
1240
|
group: string;
|
|
1249
1241
|
icon?: string | {
|
|
1250
1242
|
name: string;
|
|
@@ -1253,14 +1245,21 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1253
1245
|
} | undefined;
|
|
1254
1246
|
expanded?: boolean | undefined;
|
|
1255
1247
|
public?: boolean | undefined;
|
|
1256
|
-
pages?: any[] | undefined;
|
|
1257
1248
|
tag?: string | undefined;
|
|
1258
1249
|
hidden?: boolean | undefined;
|
|
1259
1250
|
root?: string | undefined;
|
|
1260
|
-
}
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1251
|
+
} & {
|
|
1252
|
+
openapi?: string | string[] | {
|
|
1253
|
+
source: string;
|
|
1254
|
+
directory?: string | undefined;
|
|
1255
|
+
} | undefined;
|
|
1256
|
+
asyncapi?: string | string[] | {
|
|
1257
|
+
source: string;
|
|
1258
|
+
directory?: string | undefined;
|
|
1259
|
+
} | undefined;
|
|
1260
|
+
} & {
|
|
1261
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1262
|
+
}))[];
|
|
1264
1263
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1265
1264
|
};
|
|
1266
1265
|
background?: {
|
|
@@ -1502,7 +1501,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1502
1501
|
};
|
|
1503
1502
|
} | undefined;
|
|
1504
1503
|
contextual?: {
|
|
1505
|
-
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
1504
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
1506
1505
|
href: string | {
|
|
1507
1506
|
base: string;
|
|
1508
1507
|
query?: {
|
|
@@ -1518,6 +1517,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1518
1517
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1519
1518
|
} | undefined;
|
|
1520
1519
|
})[];
|
|
1520
|
+
display?: "header" | "toc" | undefined;
|
|
1521
1521
|
} | undefined;
|
|
1522
1522
|
thumbnails?: {
|
|
1523
1523
|
background?: string | undefined;
|
|
@@ -1557,10 +1557,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1557
1557
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1558
1558
|
} | {
|
|
1559
1559
|
groups: ({
|
|
1560
|
-
openapi: string | string[] | {
|
|
1561
|
-
source: string;
|
|
1562
|
-
directory?: string | undefined;
|
|
1563
|
-
};
|
|
1564
1560
|
group: string;
|
|
1565
1561
|
icon?: string | {
|
|
1566
1562
|
name: string;
|
|
@@ -1569,28 +1565,24 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1569
1565
|
} | undefined;
|
|
1570
1566
|
expanded?: boolean | undefined;
|
|
1571
1567
|
public?: boolean | undefined;
|
|
1572
|
-
pages?: any[] | undefined;
|
|
1573
1568
|
tag?: string | undefined;
|
|
1574
1569
|
hidden?: boolean | undefined;
|
|
1575
1570
|
root?: string | undefined;
|
|
1576
|
-
}
|
|
1577
|
-
|
|
1578
|
-
asyncapi: string | string[] | {
|
|
1571
|
+
} & {
|
|
1572
|
+
openapi?: string | string[] | {
|
|
1579
1573
|
source: string;
|
|
1580
1574
|
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
1575
|
} | undefined;
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
}
|
|
1576
|
+
asyncapi?: string | string[] | {
|
|
1577
|
+
source: string;
|
|
1578
|
+
directory?: string | undefined;
|
|
1579
|
+
} | undefined;
|
|
1580
|
+
} & {
|
|
1581
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1582
|
+
})[];
|
|
1583
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1584
|
+
} | {
|
|
1585
|
+
pages: (string | ({
|
|
1594
1586
|
group: string;
|
|
1595
1587
|
icon?: string | {
|
|
1596
1588
|
name: string;
|
|
@@ -1599,14 +1591,21 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1599
1591
|
} | undefined;
|
|
1600
1592
|
expanded?: boolean | undefined;
|
|
1601
1593
|
public?: boolean | undefined;
|
|
1602
|
-
pages?: any[] | undefined;
|
|
1603
1594
|
tag?: string | undefined;
|
|
1604
1595
|
hidden?: boolean | undefined;
|
|
1605
1596
|
root?: string | undefined;
|
|
1606
|
-
}
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1597
|
+
} & {
|
|
1598
|
+
openapi?: string | string[] | {
|
|
1599
|
+
source: string;
|
|
1600
|
+
directory?: string | undefined;
|
|
1601
|
+
} | undefined;
|
|
1602
|
+
asyncapi?: string | string[] | {
|
|
1603
|
+
source: string;
|
|
1604
|
+
directory?: string | undefined;
|
|
1605
|
+
} | undefined;
|
|
1606
|
+
} & {
|
|
1607
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1608
|
+
}))[];
|
|
1610
1609
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1611
1610
|
};
|
|
1612
1611
|
background?: {
|
|
@@ -1848,7 +1847,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1848
1847
|
};
|
|
1849
1848
|
} | undefined;
|
|
1850
1849
|
contextual?: {
|
|
1851
|
-
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
1850
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
1852
1851
|
href: string | {
|
|
1853
1852
|
base: string;
|
|
1854
1853
|
query?: {
|
|
@@ -1864,6 +1863,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1864
1863
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1865
1864
|
} | undefined;
|
|
1866
1865
|
})[];
|
|
1866
|
+
display?: "header" | "toc" | undefined;
|
|
1867
1867
|
} | undefined;
|
|
1868
1868
|
thumbnails?: {
|
|
1869
1869
|
background?: string | undefined;
|
|
@@ -1903,10 +1903,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1903
1903
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1904
1904
|
} | {
|
|
1905
1905
|
groups: ({
|
|
1906
|
-
openapi: string | string[] | {
|
|
1907
|
-
source: string;
|
|
1908
|
-
directory?: string | undefined;
|
|
1909
|
-
};
|
|
1910
1906
|
group: string;
|
|
1911
1907
|
icon?: string | {
|
|
1912
1908
|
name: string;
|
|
@@ -1915,28 +1911,24 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1915
1911
|
} | undefined;
|
|
1916
1912
|
expanded?: boolean | undefined;
|
|
1917
1913
|
public?: boolean | undefined;
|
|
1918
|
-
pages?: any[] | undefined;
|
|
1919
1914
|
tag?: string | undefined;
|
|
1920
1915
|
hidden?: boolean | undefined;
|
|
1921
1916
|
root?: string | undefined;
|
|
1922
|
-
}
|
|
1923
|
-
|
|
1924
|
-
asyncapi: string | string[] | {
|
|
1917
|
+
} & {
|
|
1918
|
+
openapi?: string | string[] | {
|
|
1925
1919
|
source: string;
|
|
1926
1920
|
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
1921
|
} | undefined;
|
|
1933
|
-
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
}
|
|
1922
|
+
asyncapi?: string | string[] | {
|
|
1923
|
+
source: string;
|
|
1924
|
+
directory?: string | undefined;
|
|
1925
|
+
} | undefined;
|
|
1926
|
+
} & {
|
|
1927
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1928
|
+
})[];
|
|
1929
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1930
|
+
} | {
|
|
1931
|
+
pages: (string | ({
|
|
1940
1932
|
group: string;
|
|
1941
1933
|
icon?: string | {
|
|
1942
1934
|
name: string;
|
|
@@ -1945,14 +1937,21 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1945
1937
|
} | undefined;
|
|
1946
1938
|
expanded?: boolean | undefined;
|
|
1947
1939
|
public?: boolean | undefined;
|
|
1948
|
-
pages?: any[] | undefined;
|
|
1949
1940
|
tag?: string | undefined;
|
|
1950
1941
|
hidden?: boolean | undefined;
|
|
1951
1942
|
root?: string | undefined;
|
|
1952
|
-
}
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1943
|
+
} & {
|
|
1944
|
+
openapi?: string | string[] | {
|
|
1945
|
+
source: string;
|
|
1946
|
+
directory?: string | undefined;
|
|
1947
|
+
} | undefined;
|
|
1948
|
+
asyncapi?: string | string[] | {
|
|
1949
|
+
source: string;
|
|
1950
|
+
directory?: string | undefined;
|
|
1951
|
+
} | undefined;
|
|
1952
|
+
} & {
|
|
1953
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1954
|
+
}))[];
|
|
1956
1955
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1957
1956
|
};
|
|
1958
1957
|
background?: {
|
|
@@ -2194,7 +2193,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2194
2193
|
};
|
|
2195
2194
|
} | undefined;
|
|
2196
2195
|
contextual?: {
|
|
2197
|
-
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
2196
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
2198
2197
|
href: string | {
|
|
2199
2198
|
base: string;
|
|
2200
2199
|
query?: {
|
|
@@ -2210,6 +2209,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2210
2209
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2211
2210
|
} | undefined;
|
|
2212
2211
|
})[];
|
|
2212
|
+
display?: "header" | "toc" | undefined;
|
|
2213
2213
|
} | undefined;
|
|
2214
2214
|
thumbnails?: {
|
|
2215
2215
|
background?: string | undefined;
|
|
@@ -2249,10 +2249,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2249
2249
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2250
2250
|
} | {
|
|
2251
2251
|
groups: ({
|
|
2252
|
-
openapi: string | string[] | {
|
|
2253
|
-
source: string;
|
|
2254
|
-
directory?: string | undefined;
|
|
2255
|
-
};
|
|
2256
2252
|
group: string;
|
|
2257
2253
|
icon?: string | {
|
|
2258
2254
|
name: string;
|
|
@@ -2261,28 +2257,24 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2261
2257
|
} | undefined;
|
|
2262
2258
|
expanded?: boolean | undefined;
|
|
2263
2259
|
public?: boolean | undefined;
|
|
2264
|
-
pages?: any[] | undefined;
|
|
2265
2260
|
tag?: string | undefined;
|
|
2266
2261
|
hidden?: boolean | undefined;
|
|
2267
2262
|
root?: string | undefined;
|
|
2268
|
-
}
|
|
2269
|
-
|
|
2270
|
-
asyncapi: string | string[] | {
|
|
2263
|
+
} & {
|
|
2264
|
+
openapi?: string | string[] | {
|
|
2271
2265
|
source: string;
|
|
2272
2266
|
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
2267
|
} | undefined;
|
|
2279
|
-
|
|
2280
|
-
|
|
2281
|
-
|
|
2282
|
-
|
|
2283
|
-
|
|
2284
|
-
|
|
2285
|
-
}
|
|
2268
|
+
asyncapi?: string | string[] | {
|
|
2269
|
+
source: string;
|
|
2270
|
+
directory?: string | undefined;
|
|
2271
|
+
} | undefined;
|
|
2272
|
+
} & {
|
|
2273
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
2274
|
+
})[];
|
|
2275
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2276
|
+
} | {
|
|
2277
|
+
pages: (string | ({
|
|
2286
2278
|
group: string;
|
|
2287
2279
|
icon?: string | {
|
|
2288
2280
|
name: string;
|
|
@@ -2291,14 +2283,21 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2291
2283
|
} | undefined;
|
|
2292
2284
|
expanded?: boolean | undefined;
|
|
2293
2285
|
public?: boolean | undefined;
|
|
2294
|
-
pages?: any[] | undefined;
|
|
2295
2286
|
tag?: string | undefined;
|
|
2296
2287
|
hidden?: boolean | undefined;
|
|
2297
2288
|
root?: string | undefined;
|
|
2298
|
-
}
|
|
2299
|
-
|
|
2300
|
-
|
|
2301
|
-
|
|
2289
|
+
} & {
|
|
2290
|
+
openapi?: string | string[] | {
|
|
2291
|
+
source: string;
|
|
2292
|
+
directory?: string | undefined;
|
|
2293
|
+
} | undefined;
|
|
2294
|
+
asyncapi?: string | string[] | {
|
|
2295
|
+
source: string;
|
|
2296
|
+
directory?: string | undefined;
|
|
2297
|
+
} | undefined;
|
|
2298
|
+
} & {
|
|
2299
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
2300
|
+
}))[];
|
|
2302
2301
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2303
2302
|
};
|
|
2304
2303
|
background?: {
|
|
@@ -2540,7 +2539,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2540
2539
|
};
|
|
2541
2540
|
} | undefined;
|
|
2542
2541
|
contextual?: {
|
|
2543
|
-
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
2542
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
2544
2543
|
href: string | {
|
|
2545
2544
|
base: string;
|
|
2546
2545
|
query?: {
|
|
@@ -2556,6 +2555,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2556
2555
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2557
2556
|
} | undefined;
|
|
2558
2557
|
})[];
|
|
2558
|
+
display?: "header" | "toc" | undefined;
|
|
2559
2559
|
} | undefined;
|
|
2560
2560
|
thumbnails?: {
|
|
2561
2561
|
background?: string | undefined;
|
|
@@ -2569,7 +2569,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2569
2569
|
} | undefined;
|
|
2570
2570
|
} | {
|
|
2571
2571
|
name: string;
|
|
2572
|
-
theme: "
|
|
2572
|
+
theme: "sequoia";
|
|
2573
2573
|
colors: {
|
|
2574
2574
|
primary: string;
|
|
2575
2575
|
light?: string | undefined;
|
|
@@ -2595,10 +2595,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2595
2595
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2596
2596
|
} | {
|
|
2597
2597
|
groups: ({
|
|
2598
|
-
openapi: string | string[] | {
|
|
2599
|
-
source: string;
|
|
2600
|
-
directory?: string | undefined;
|
|
2601
|
-
};
|
|
2602
2598
|
group: string;
|
|
2603
2599
|
icon?: string | {
|
|
2604
2600
|
name: string;
|
|
@@ -2607,28 +2603,24 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2607
2603
|
} | undefined;
|
|
2608
2604
|
expanded?: boolean | undefined;
|
|
2609
2605
|
public?: boolean | undefined;
|
|
2610
|
-
pages?: any[] | undefined;
|
|
2611
2606
|
tag?: string | undefined;
|
|
2612
2607
|
hidden?: boolean | undefined;
|
|
2613
2608
|
root?: string | undefined;
|
|
2614
|
-
}
|
|
2615
|
-
|
|
2616
|
-
asyncapi: string | string[] | {
|
|
2609
|
+
} & {
|
|
2610
|
+
openapi?: string | string[] | {
|
|
2617
2611
|
source: string;
|
|
2618
2612
|
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
2613
|
} | undefined;
|
|
2625
|
-
|
|
2626
|
-
|
|
2627
|
-
|
|
2628
|
-
|
|
2629
|
-
|
|
2630
|
-
|
|
2631
|
-
}
|
|
2614
|
+
asyncapi?: string | string[] | {
|
|
2615
|
+
source: string;
|
|
2616
|
+
directory?: string | undefined;
|
|
2617
|
+
} | undefined;
|
|
2618
|
+
} & {
|
|
2619
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
2620
|
+
})[];
|
|
2621
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2622
|
+
} | {
|
|
2623
|
+
pages: (string | ({
|
|
2632
2624
|
group: string;
|
|
2633
2625
|
icon?: string | {
|
|
2634
2626
|
name: string;
|
|
@@ -2637,14 +2629,21 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2637
2629
|
} | undefined;
|
|
2638
2630
|
expanded?: boolean | undefined;
|
|
2639
2631
|
public?: boolean | undefined;
|
|
2640
|
-
pages?: any[] | undefined;
|
|
2641
2632
|
tag?: string | undefined;
|
|
2642
2633
|
hidden?: boolean | undefined;
|
|
2643
2634
|
root?: string | undefined;
|
|
2644
|
-
}
|
|
2645
|
-
|
|
2646
|
-
|
|
2647
|
-
|
|
2635
|
+
} & {
|
|
2636
|
+
openapi?: string | string[] | {
|
|
2637
|
+
source: string;
|
|
2638
|
+
directory?: string | undefined;
|
|
2639
|
+
} | undefined;
|
|
2640
|
+
asyncapi?: string | string[] | {
|
|
2641
|
+
source: string;
|
|
2642
|
+
directory?: string | undefined;
|
|
2643
|
+
} | undefined;
|
|
2644
|
+
} & {
|
|
2645
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
2646
|
+
}))[];
|
|
2648
2647
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2649
2648
|
};
|
|
2650
2649
|
background?: {
|
|
@@ -2886,7 +2885,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2886
2885
|
};
|
|
2887
2886
|
} | undefined;
|
|
2888
2887
|
contextual?: {
|
|
2889
|
-
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
2888
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
2890
2889
|
href: string | {
|
|
2891
2890
|
base: string;
|
|
2892
2891
|
query?: {
|
|
@@ -2902,6 +2901,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2902
2901
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2903
2902
|
} | undefined;
|
|
2904
2903
|
})[];
|
|
2904
|
+
display?: "header" | "toc" | undefined;
|
|
2905
2905
|
} | undefined;
|
|
2906
2906
|
thumbnails?: {
|
|
2907
2907
|
background?: string | undefined;
|
|
@@ -2913,16 +2913,708 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2913
2913
|
interaction?: {
|
|
2914
2914
|
drilldown?: boolean | undefined;
|
|
2915
2915
|
} | undefined;
|
|
2916
|
-
}
|
|
2917
|
-
|
|
2918
|
-
|
|
2919
|
-
|
|
2920
|
-
|
|
2921
|
-
|
|
2922
|
-
|
|
2923
|
-
|
|
2924
|
-
|
|
2925
|
-
|
|
2916
|
+
} | {
|
|
2917
|
+
name: string;
|
|
2918
|
+
theme: "willow";
|
|
2919
|
+
colors: {
|
|
2920
|
+
primary: string;
|
|
2921
|
+
light?: string | undefined;
|
|
2922
|
+
dark?: string | undefined;
|
|
2923
|
+
};
|
|
2924
|
+
navigation: {
|
|
2925
|
+
products: import("./schemas/v2/properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
2926
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2927
|
+
} | {
|
|
2928
|
+
languages: import("./schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
2929
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2930
|
+
} | {
|
|
2931
|
+
versions: import("./schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
2932
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2933
|
+
} | {
|
|
2934
|
+
tabs: import("./schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
2935
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2936
|
+
} | {
|
|
2937
|
+
dropdowns: import("./schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
2938
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2939
|
+
} | {
|
|
2940
|
+
anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
2941
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2942
|
+
} | {
|
|
2943
|
+
groups: ({
|
|
2944
|
+
group: string;
|
|
2945
|
+
icon?: string | {
|
|
2946
|
+
name: string;
|
|
2947
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2948
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2949
|
+
} | undefined;
|
|
2950
|
+
expanded?: boolean | undefined;
|
|
2951
|
+
public?: boolean | undefined;
|
|
2952
|
+
tag?: string | undefined;
|
|
2953
|
+
hidden?: boolean | undefined;
|
|
2954
|
+
root?: string | undefined;
|
|
2955
|
+
} & {
|
|
2956
|
+
openapi?: string | string[] | {
|
|
2957
|
+
source: string;
|
|
2958
|
+
directory?: string | undefined;
|
|
2959
|
+
} | undefined;
|
|
2960
|
+
asyncapi?: string | string[] | {
|
|
2961
|
+
source: string;
|
|
2962
|
+
directory?: string | undefined;
|
|
2963
|
+
} | undefined;
|
|
2964
|
+
} & {
|
|
2965
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
2966
|
+
})[];
|
|
2967
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2968
|
+
} | {
|
|
2969
|
+
pages: (string | ({
|
|
2970
|
+
group: string;
|
|
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
|
+
} | undefined;
|
|
2976
|
+
expanded?: boolean | undefined;
|
|
2977
|
+
public?: boolean | undefined;
|
|
2978
|
+
tag?: string | undefined;
|
|
2979
|
+
hidden?: boolean | undefined;
|
|
2980
|
+
root?: string | undefined;
|
|
2981
|
+
} & {
|
|
2982
|
+
openapi?: string | string[] | {
|
|
2983
|
+
source: string;
|
|
2984
|
+
directory?: string | undefined;
|
|
2985
|
+
} | undefined;
|
|
2986
|
+
asyncapi?: string | string[] | {
|
|
2987
|
+
source: string;
|
|
2988
|
+
directory?: string | undefined;
|
|
2989
|
+
} | undefined;
|
|
2990
|
+
} & {
|
|
2991
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
2992
|
+
}))[];
|
|
2993
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2994
|
+
};
|
|
2995
|
+
background?: {
|
|
2996
|
+
color?: {
|
|
2997
|
+
light?: string | undefined;
|
|
2998
|
+
dark?: string | undefined;
|
|
2999
|
+
} | undefined;
|
|
3000
|
+
image?: string | {
|
|
3001
|
+
light: string;
|
|
3002
|
+
dark: string;
|
|
3003
|
+
} | undefined;
|
|
3004
|
+
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
3005
|
+
} | undefined;
|
|
3006
|
+
public?: boolean | undefined;
|
|
3007
|
+
$schema?: string | undefined;
|
|
3008
|
+
logo?: string | {
|
|
3009
|
+
light: string;
|
|
3010
|
+
dark: string;
|
|
3011
|
+
href?: string | undefined;
|
|
3012
|
+
} | undefined;
|
|
3013
|
+
favicon?: string | {
|
|
3014
|
+
light: string;
|
|
3015
|
+
dark: string;
|
|
3016
|
+
} | undefined;
|
|
3017
|
+
api?: {
|
|
3018
|
+
params?: {
|
|
3019
|
+
expanded?: "all" | "closed" | undefined;
|
|
3020
|
+
} | undefined;
|
|
3021
|
+
openapi?: string | string[] | {
|
|
3022
|
+
source: string;
|
|
3023
|
+
directory?: string | undefined;
|
|
3024
|
+
} | undefined;
|
|
3025
|
+
playground?: {
|
|
3026
|
+
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
3027
|
+
proxy?: boolean | undefined;
|
|
3028
|
+
} | undefined;
|
|
3029
|
+
asyncapi?: string | string[] | {
|
|
3030
|
+
source: string;
|
|
3031
|
+
directory?: string | undefined;
|
|
3032
|
+
} | undefined;
|
|
3033
|
+
examples?: {
|
|
3034
|
+
languages?: string[] | undefined;
|
|
3035
|
+
defaults?: "all" | "required" | undefined;
|
|
3036
|
+
prefill?: boolean | undefined;
|
|
3037
|
+
autogenerate?: boolean | undefined;
|
|
3038
|
+
} | undefined;
|
|
3039
|
+
mdx?: {
|
|
3040
|
+
server?: string | string[] | undefined;
|
|
3041
|
+
auth?: {
|
|
3042
|
+
name?: string | undefined;
|
|
3043
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
3044
|
+
} | undefined;
|
|
3045
|
+
} | undefined;
|
|
3046
|
+
} | undefined;
|
|
3047
|
+
metadata?: {
|
|
3048
|
+
timestamp?: boolean | undefined;
|
|
3049
|
+
} | undefined;
|
|
3050
|
+
footer?: {
|
|
3051
|
+
links?: {
|
|
3052
|
+
items: {
|
|
3053
|
+
href: string;
|
|
3054
|
+
label: string;
|
|
3055
|
+
}[];
|
|
3056
|
+
header?: string | undefined;
|
|
3057
|
+
}[] | undefined;
|
|
3058
|
+
socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast", string>> | undefined;
|
|
3059
|
+
} | undefined;
|
|
3060
|
+
integrations?: {
|
|
3061
|
+
amplitude?: {
|
|
3062
|
+
apiKey: string;
|
|
3063
|
+
} | undefined;
|
|
3064
|
+
clarity?: {
|
|
3065
|
+
projectId: string;
|
|
3066
|
+
} | undefined;
|
|
3067
|
+
clearbit?: {
|
|
3068
|
+
publicApiKey: string;
|
|
3069
|
+
} | undefined;
|
|
3070
|
+
fathom?: {
|
|
3071
|
+
siteId: string;
|
|
3072
|
+
} | undefined;
|
|
3073
|
+
ga4?: {
|
|
3074
|
+
measurementId: string;
|
|
3075
|
+
} | undefined;
|
|
3076
|
+
gtm?: {
|
|
3077
|
+
tagId: string;
|
|
3078
|
+
} | undefined;
|
|
3079
|
+
heap?: {
|
|
3080
|
+
appId: string;
|
|
3081
|
+
} | undefined;
|
|
3082
|
+
hightouch?: {
|
|
3083
|
+
writeKey: string;
|
|
3084
|
+
apiHost?: string | undefined;
|
|
3085
|
+
} | undefined;
|
|
3086
|
+
hotjar?: {
|
|
3087
|
+
hjid: string;
|
|
3088
|
+
hjsv: string;
|
|
3089
|
+
} | undefined;
|
|
3090
|
+
koala?: {
|
|
3091
|
+
publicApiKey: string;
|
|
3092
|
+
} | undefined;
|
|
3093
|
+
logrocket?: {
|
|
3094
|
+
appId: string;
|
|
3095
|
+
} | undefined;
|
|
3096
|
+
mixpanel?: {
|
|
3097
|
+
projectToken: string;
|
|
3098
|
+
} | undefined;
|
|
3099
|
+
pirsch?: {
|
|
3100
|
+
id: string;
|
|
3101
|
+
} | undefined;
|
|
3102
|
+
posthog?: {
|
|
3103
|
+
apiKey: string;
|
|
3104
|
+
apiHost?: string | undefined;
|
|
3105
|
+
} | undefined;
|
|
3106
|
+
plausible?: {
|
|
3107
|
+
domain: string;
|
|
3108
|
+
server?: string | undefined;
|
|
3109
|
+
} | undefined;
|
|
3110
|
+
segment?: {
|
|
3111
|
+
key: string;
|
|
3112
|
+
} | undefined;
|
|
3113
|
+
intercom?: {
|
|
3114
|
+
appId: string;
|
|
3115
|
+
} | undefined;
|
|
3116
|
+
frontchat?: {
|
|
3117
|
+
snippetId: string;
|
|
3118
|
+
} | undefined;
|
|
3119
|
+
telemetry?: {
|
|
3120
|
+
enabled?: boolean | undefined;
|
|
3121
|
+
} | undefined;
|
|
3122
|
+
cookies?: {
|
|
3123
|
+
value?: string | undefined;
|
|
3124
|
+
key?: string | undefined;
|
|
3125
|
+
} | undefined;
|
|
3126
|
+
} | undefined;
|
|
3127
|
+
search?: {
|
|
3128
|
+
prompt?: string | undefined;
|
|
3129
|
+
} | undefined;
|
|
3130
|
+
redirects?: {
|
|
3131
|
+
source: string;
|
|
3132
|
+
destination: string;
|
|
3133
|
+
permanent?: boolean | undefined;
|
|
3134
|
+
}[] | undefined;
|
|
3135
|
+
seo?: {
|
|
3136
|
+
metatags?: Record<string, string> | undefined;
|
|
3137
|
+
indexing?: "all" | "navigable" | undefined;
|
|
3138
|
+
} | undefined;
|
|
3139
|
+
description?: string | undefined;
|
|
3140
|
+
banner?: {
|
|
3141
|
+
content: string;
|
|
3142
|
+
dismissible?: boolean | undefined;
|
|
3143
|
+
} | undefined;
|
|
3144
|
+
appearance?: {
|
|
3145
|
+
strict?: boolean | undefined;
|
|
3146
|
+
default?: "light" | "dark" | "system" | undefined;
|
|
3147
|
+
} | undefined;
|
|
3148
|
+
fonts?: {
|
|
3149
|
+
family: string;
|
|
3150
|
+
source?: string | undefined;
|
|
3151
|
+
weight?: number | undefined;
|
|
3152
|
+
format?: "woff" | "woff2" | undefined;
|
|
3153
|
+
} | {
|
|
3154
|
+
body?: {
|
|
3155
|
+
family: string;
|
|
3156
|
+
source?: string | undefined;
|
|
3157
|
+
weight?: number | undefined;
|
|
3158
|
+
format?: "woff" | "woff2" | undefined;
|
|
3159
|
+
} | undefined;
|
|
3160
|
+
heading?: {
|
|
3161
|
+
family: string;
|
|
3162
|
+
source?: string | undefined;
|
|
3163
|
+
weight?: number | undefined;
|
|
3164
|
+
format?: "woff" | "woff2" | undefined;
|
|
3165
|
+
} | undefined;
|
|
3166
|
+
} | undefined;
|
|
3167
|
+
navbar?: {
|
|
3168
|
+
primary?: {
|
|
3169
|
+
type: "button";
|
|
3170
|
+
href: string;
|
|
3171
|
+
label: string;
|
|
3172
|
+
} | {
|
|
3173
|
+
type: "github";
|
|
3174
|
+
href: string;
|
|
3175
|
+
label?: string | undefined;
|
|
3176
|
+
} | {
|
|
3177
|
+
type: "discord";
|
|
3178
|
+
href: string;
|
|
3179
|
+
label?: string | undefined;
|
|
3180
|
+
} | undefined;
|
|
3181
|
+
links?: ({
|
|
3182
|
+
href: string;
|
|
3183
|
+
label: string;
|
|
3184
|
+
type?: string | undefined;
|
|
3185
|
+
icon?: string | {
|
|
3186
|
+
name: string;
|
|
3187
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3188
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3189
|
+
} | undefined;
|
|
3190
|
+
} | {
|
|
3191
|
+
type: "github";
|
|
3192
|
+
href: string;
|
|
3193
|
+
icon?: string | {
|
|
3194
|
+
name: string;
|
|
3195
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3196
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3197
|
+
} | undefined;
|
|
3198
|
+
label?: string | undefined;
|
|
3199
|
+
} | {
|
|
3200
|
+
type: "discord";
|
|
3201
|
+
href: string;
|
|
3202
|
+
icon?: string | {
|
|
3203
|
+
name: string;
|
|
3204
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3205
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3206
|
+
} | undefined;
|
|
3207
|
+
label?: string | undefined;
|
|
3208
|
+
})[] | undefined;
|
|
3209
|
+
} | undefined;
|
|
3210
|
+
icons?: {
|
|
3211
|
+
library: "fontawesome" | "lucide";
|
|
3212
|
+
} | undefined;
|
|
3213
|
+
styling?: {
|
|
3214
|
+
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
3215
|
+
codeblocks?: "dark" | "system" | {
|
|
3216
|
+
languages?: {
|
|
3217
|
+
custom?: string[] | undefined;
|
|
3218
|
+
} | undefined;
|
|
3219
|
+
theme?: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables" | {
|
|
3220
|
+
light: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
|
|
3221
|
+
dark: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
|
|
3222
|
+
} | undefined;
|
|
3223
|
+
} | undefined;
|
|
3224
|
+
latex?: boolean | undefined;
|
|
3225
|
+
} | undefined;
|
|
3226
|
+
errors?: {
|
|
3227
|
+
'404': {
|
|
3228
|
+
title?: string | undefined;
|
|
3229
|
+
description?: string | undefined;
|
|
3230
|
+
redirect?: boolean | undefined;
|
|
3231
|
+
};
|
|
3232
|
+
} | undefined;
|
|
3233
|
+
contextual?: {
|
|
3234
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
3235
|
+
href: string | {
|
|
3236
|
+
base: string;
|
|
3237
|
+
query?: {
|
|
3238
|
+
value: string;
|
|
3239
|
+
key: string;
|
|
3240
|
+
}[] | undefined;
|
|
3241
|
+
};
|
|
3242
|
+
title: string;
|
|
3243
|
+
description: string;
|
|
3244
|
+
icon?: string | {
|
|
3245
|
+
name: string;
|
|
3246
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3247
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3248
|
+
} | undefined;
|
|
3249
|
+
})[];
|
|
3250
|
+
display?: "header" | "toc" | undefined;
|
|
3251
|
+
} | undefined;
|
|
3252
|
+
thumbnails?: {
|
|
3253
|
+
background?: string | undefined;
|
|
3254
|
+
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
3255
|
+
fonts?: {
|
|
3256
|
+
family: string;
|
|
3257
|
+
} | undefined;
|
|
3258
|
+
} | undefined;
|
|
3259
|
+
interaction?: {
|
|
3260
|
+
drilldown?: boolean | undefined;
|
|
3261
|
+
} | undefined;
|
|
3262
|
+
}> | {
|
|
3263
|
+
warnings: z.ZodIssue[];
|
|
3264
|
+
success: true;
|
|
3265
|
+
data: {
|
|
3266
|
+
name: string;
|
|
3267
|
+
$schema: string;
|
|
3268
|
+
theme: "almond";
|
|
3269
|
+
colors: {
|
|
3270
|
+
primary: string;
|
|
3271
|
+
light?: string | undefined;
|
|
3272
|
+
dark?: string | undefined;
|
|
3273
|
+
};
|
|
3274
|
+
navigation: {
|
|
3275
|
+
products: import("./schemas/v2/properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
3276
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3277
|
+
} | {
|
|
3278
|
+
languages: import("./schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
3279
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3280
|
+
} | {
|
|
3281
|
+
versions: import("./schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
3282
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3283
|
+
} | {
|
|
3284
|
+
tabs: import("./schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
3285
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3286
|
+
} | {
|
|
3287
|
+
dropdowns: import("./schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
3288
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3289
|
+
} | {
|
|
3290
|
+
anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
3291
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3292
|
+
} | {
|
|
3293
|
+
groups: ({
|
|
3294
|
+
group: string;
|
|
3295
|
+
icon?: string | {
|
|
3296
|
+
name: string;
|
|
3297
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3298
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3299
|
+
} | undefined;
|
|
3300
|
+
expanded?: boolean | undefined;
|
|
3301
|
+
public?: boolean | undefined;
|
|
3302
|
+
tag?: string | undefined;
|
|
3303
|
+
hidden?: boolean | undefined;
|
|
3304
|
+
root?: string | undefined;
|
|
3305
|
+
} & {
|
|
3306
|
+
openapi?: string | string[] | {
|
|
3307
|
+
source: string;
|
|
3308
|
+
directory?: string | undefined;
|
|
3309
|
+
} | undefined;
|
|
3310
|
+
asyncapi?: string | string[] | {
|
|
3311
|
+
source: string;
|
|
3312
|
+
directory?: string | undefined;
|
|
3313
|
+
} | undefined;
|
|
3314
|
+
} & {
|
|
3315
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
3316
|
+
})[];
|
|
3317
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3318
|
+
} | {
|
|
3319
|
+
pages: (string | ({
|
|
3320
|
+
group: string;
|
|
3321
|
+
icon?: string | {
|
|
3322
|
+
name: string;
|
|
3323
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3324
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3325
|
+
} | undefined;
|
|
3326
|
+
expanded?: boolean | undefined;
|
|
3327
|
+
public?: boolean | undefined;
|
|
3328
|
+
tag?: string | undefined;
|
|
3329
|
+
hidden?: boolean | undefined;
|
|
3330
|
+
root?: string | undefined;
|
|
3331
|
+
} & {
|
|
3332
|
+
openapi?: string | string[] | {
|
|
3333
|
+
source: string;
|
|
3334
|
+
directory?: string | undefined;
|
|
3335
|
+
} | undefined;
|
|
3336
|
+
asyncapi?: string | string[] | {
|
|
3337
|
+
source: string;
|
|
3338
|
+
directory?: string | undefined;
|
|
3339
|
+
} | undefined;
|
|
3340
|
+
} & {
|
|
3341
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
3342
|
+
}))[];
|
|
3343
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3344
|
+
};
|
|
3345
|
+
background?: {
|
|
3346
|
+
color?: {
|
|
3347
|
+
light?: string | undefined;
|
|
3348
|
+
dark?: string | undefined;
|
|
3349
|
+
} | undefined;
|
|
3350
|
+
image?: string | {
|
|
3351
|
+
light: string;
|
|
3352
|
+
dark: string;
|
|
3353
|
+
} | undefined;
|
|
3354
|
+
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
3355
|
+
} | undefined;
|
|
3356
|
+
public?: boolean | undefined;
|
|
3357
|
+
logo?: string | {
|
|
3358
|
+
light: string;
|
|
3359
|
+
dark: string;
|
|
3360
|
+
href?: string | undefined;
|
|
3361
|
+
} | undefined;
|
|
3362
|
+
favicon?: string | {
|
|
3363
|
+
light: string;
|
|
3364
|
+
dark: string;
|
|
3365
|
+
} | undefined;
|
|
3366
|
+
api?: {
|
|
3367
|
+
params?: {
|
|
3368
|
+
expanded?: "all" | "closed" | undefined;
|
|
3369
|
+
} | undefined;
|
|
3370
|
+
openapi?: string | string[] | {
|
|
3371
|
+
source: string;
|
|
3372
|
+
directory?: string | undefined;
|
|
3373
|
+
} | undefined;
|
|
3374
|
+
playground?: {
|
|
3375
|
+
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
3376
|
+
proxy?: boolean | undefined;
|
|
3377
|
+
} | undefined;
|
|
3378
|
+
asyncapi?: string | string[] | {
|
|
3379
|
+
source: string;
|
|
3380
|
+
directory?: string | undefined;
|
|
3381
|
+
} | undefined;
|
|
3382
|
+
examples?: {
|
|
3383
|
+
languages?: string[] | undefined;
|
|
3384
|
+
defaults?: "all" | "required" | undefined;
|
|
3385
|
+
prefill?: boolean | undefined;
|
|
3386
|
+
autogenerate?: boolean | undefined;
|
|
3387
|
+
} | undefined;
|
|
3388
|
+
mdx?: {
|
|
3389
|
+
server?: string | string[] | undefined;
|
|
3390
|
+
auth?: {
|
|
3391
|
+
name?: string | undefined;
|
|
3392
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
3393
|
+
} | undefined;
|
|
3394
|
+
} | undefined;
|
|
3395
|
+
} | undefined;
|
|
3396
|
+
metadata?: {
|
|
3397
|
+
timestamp: boolean;
|
|
3398
|
+
} | undefined;
|
|
3399
|
+
footer?: {
|
|
3400
|
+
links?: {
|
|
3401
|
+
items: {
|
|
3402
|
+
href: string;
|
|
3403
|
+
label: string;
|
|
3404
|
+
}[];
|
|
3405
|
+
header?: string | undefined;
|
|
3406
|
+
}[] | undefined;
|
|
3407
|
+
socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast", string>> | undefined;
|
|
3408
|
+
} | undefined;
|
|
3409
|
+
integrations?: {
|
|
3410
|
+
amplitude?: {
|
|
3411
|
+
apiKey: string;
|
|
3412
|
+
} | undefined;
|
|
3413
|
+
clarity?: {
|
|
3414
|
+
projectId: string;
|
|
3415
|
+
} | undefined;
|
|
3416
|
+
clearbit?: {
|
|
3417
|
+
publicApiKey: string;
|
|
3418
|
+
} | undefined;
|
|
3419
|
+
fathom?: {
|
|
3420
|
+
siteId: string;
|
|
3421
|
+
} | undefined;
|
|
3422
|
+
ga4?: {
|
|
3423
|
+
measurementId: string;
|
|
3424
|
+
} | undefined;
|
|
3425
|
+
gtm?: {
|
|
3426
|
+
tagId: string;
|
|
3427
|
+
} | undefined;
|
|
3428
|
+
heap?: {
|
|
3429
|
+
appId: string;
|
|
3430
|
+
} | undefined;
|
|
3431
|
+
hightouch?: {
|
|
3432
|
+
writeKey: string;
|
|
3433
|
+
apiHost?: string | undefined;
|
|
3434
|
+
} | undefined;
|
|
3435
|
+
hotjar?: {
|
|
3436
|
+
hjid: string;
|
|
3437
|
+
hjsv: string;
|
|
3438
|
+
} | undefined;
|
|
3439
|
+
koala?: {
|
|
3440
|
+
publicApiKey: string;
|
|
3441
|
+
} | undefined;
|
|
3442
|
+
logrocket?: {
|
|
3443
|
+
appId: string;
|
|
3444
|
+
} | undefined;
|
|
3445
|
+
mixpanel?: {
|
|
3446
|
+
projectToken: string;
|
|
3447
|
+
} | undefined;
|
|
3448
|
+
pirsch?: {
|
|
3449
|
+
id: string;
|
|
3450
|
+
} | undefined;
|
|
3451
|
+
posthog?: {
|
|
3452
|
+
apiKey: string;
|
|
3453
|
+
apiHost?: string | undefined;
|
|
3454
|
+
} | undefined;
|
|
3455
|
+
plausible?: {
|
|
3456
|
+
domain: string;
|
|
3457
|
+
server?: string | undefined;
|
|
3458
|
+
} | undefined;
|
|
3459
|
+
segment?: {
|
|
3460
|
+
key: string;
|
|
3461
|
+
} | undefined;
|
|
3462
|
+
intercom?: {
|
|
3463
|
+
appId: string;
|
|
3464
|
+
} | undefined;
|
|
3465
|
+
frontchat?: {
|
|
3466
|
+
snippetId: string;
|
|
3467
|
+
} | undefined;
|
|
3468
|
+
telemetry?: {
|
|
3469
|
+
enabled?: boolean | undefined;
|
|
3470
|
+
} | undefined;
|
|
3471
|
+
cookies?: {
|
|
3472
|
+
value?: string | undefined;
|
|
3473
|
+
key?: string | undefined;
|
|
3474
|
+
} | undefined;
|
|
3475
|
+
} | undefined;
|
|
3476
|
+
search?: {
|
|
3477
|
+
prompt?: string | undefined;
|
|
3478
|
+
} | undefined;
|
|
3479
|
+
redirects?: {
|
|
3480
|
+
source: string;
|
|
3481
|
+
destination: string;
|
|
3482
|
+
permanent?: boolean | undefined;
|
|
3483
|
+
}[] | undefined;
|
|
3484
|
+
seo?: {
|
|
3485
|
+
metatags?: Record<string, string> | undefined;
|
|
3486
|
+
indexing?: "all" | "navigable" | undefined;
|
|
3487
|
+
} | undefined;
|
|
3488
|
+
description?: string | undefined;
|
|
3489
|
+
banner?: {
|
|
3490
|
+
content: string;
|
|
3491
|
+
dismissible?: boolean | undefined;
|
|
3492
|
+
} | undefined;
|
|
3493
|
+
appearance?: {
|
|
3494
|
+
strict?: boolean | undefined;
|
|
3495
|
+
default?: "light" | "dark" | "system" | undefined;
|
|
3496
|
+
} | undefined;
|
|
3497
|
+
fonts?: {
|
|
3498
|
+
family: string;
|
|
3499
|
+
source?: string | undefined;
|
|
3500
|
+
weight?: number | undefined;
|
|
3501
|
+
format?: "woff" | "woff2" | undefined;
|
|
3502
|
+
} | {
|
|
3503
|
+
body?: {
|
|
3504
|
+
family: string;
|
|
3505
|
+
source?: string | undefined;
|
|
3506
|
+
weight?: number | undefined;
|
|
3507
|
+
format?: "woff" | "woff2" | undefined;
|
|
3508
|
+
} | undefined;
|
|
3509
|
+
heading?: {
|
|
3510
|
+
family: string;
|
|
3511
|
+
source?: string | undefined;
|
|
3512
|
+
weight?: number | undefined;
|
|
3513
|
+
format?: "woff" | "woff2" | undefined;
|
|
3514
|
+
} | undefined;
|
|
3515
|
+
} | undefined;
|
|
3516
|
+
navbar?: {
|
|
3517
|
+
primary?: {
|
|
3518
|
+
type: "button";
|
|
3519
|
+
href: string;
|
|
3520
|
+
label: string;
|
|
3521
|
+
} | {
|
|
3522
|
+
type: "github";
|
|
3523
|
+
href: string;
|
|
3524
|
+
label?: string | undefined;
|
|
3525
|
+
} | {
|
|
3526
|
+
type: "discord";
|
|
3527
|
+
href: string;
|
|
3528
|
+
label?: string | undefined;
|
|
3529
|
+
} | undefined;
|
|
3530
|
+
links?: ({
|
|
3531
|
+
href: string;
|
|
3532
|
+
label: string;
|
|
3533
|
+
type?: string | undefined;
|
|
3534
|
+
icon?: string | {
|
|
3535
|
+
name: string;
|
|
3536
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3537
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3538
|
+
} | undefined;
|
|
3539
|
+
} | {
|
|
3540
|
+
type: "github";
|
|
3541
|
+
href: string;
|
|
3542
|
+
icon?: string | {
|
|
3543
|
+
name: string;
|
|
3544
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3545
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3546
|
+
} | undefined;
|
|
3547
|
+
label?: string | undefined;
|
|
3548
|
+
} | {
|
|
3549
|
+
type: "discord";
|
|
3550
|
+
href: string;
|
|
3551
|
+
icon?: string | {
|
|
3552
|
+
name: string;
|
|
3553
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3554
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3555
|
+
} | undefined;
|
|
3556
|
+
label?: string | undefined;
|
|
3557
|
+
})[] | undefined;
|
|
3558
|
+
} | undefined;
|
|
3559
|
+
icons?: {
|
|
3560
|
+
library: "fontawesome" | "lucide";
|
|
3561
|
+
} | undefined;
|
|
3562
|
+
styling?: {
|
|
3563
|
+
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
3564
|
+
codeblocks?: "dark" | "system" | {
|
|
3565
|
+
languages?: {
|
|
3566
|
+
custom?: string[] | undefined;
|
|
3567
|
+
} | undefined;
|
|
3568
|
+
theme?: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables" | {
|
|
3569
|
+
light: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
|
|
3570
|
+
dark: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
|
|
3571
|
+
} | undefined;
|
|
3572
|
+
} | undefined;
|
|
3573
|
+
latex?: boolean | undefined;
|
|
3574
|
+
} | undefined;
|
|
3575
|
+
errors?: {
|
|
3576
|
+
'404': {
|
|
3577
|
+
redirect: boolean;
|
|
3578
|
+
title?: string | undefined;
|
|
3579
|
+
description?: string | undefined;
|
|
3580
|
+
};
|
|
3581
|
+
} | undefined;
|
|
3582
|
+
contextual?: {
|
|
3583
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
3584
|
+
href: string | {
|
|
3585
|
+
base: string;
|
|
3586
|
+
query?: {
|
|
3587
|
+
value: string;
|
|
3588
|
+
key: string;
|
|
3589
|
+
}[] | undefined;
|
|
3590
|
+
};
|
|
3591
|
+
title: string;
|
|
3592
|
+
description: string;
|
|
3593
|
+
icon?: string | {
|
|
3594
|
+
name: string;
|
|
3595
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3596
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3597
|
+
} | undefined;
|
|
3598
|
+
})[];
|
|
3599
|
+
display: "header" | "toc";
|
|
3600
|
+
} | undefined;
|
|
3601
|
+
thumbnails?: {
|
|
3602
|
+
background?: string | undefined;
|
|
3603
|
+
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
3604
|
+
fonts?: {
|
|
3605
|
+
family: string;
|
|
3606
|
+
} | undefined;
|
|
3607
|
+
} | undefined;
|
|
3608
|
+
interaction?: {
|
|
3609
|
+
drilldown?: boolean | undefined;
|
|
3610
|
+
} | undefined;
|
|
3611
|
+
} | {
|
|
3612
|
+
name: string;
|
|
3613
|
+
$schema: string;
|
|
3614
|
+
theme: "aspen";
|
|
3615
|
+
colors: {
|
|
3616
|
+
primary: string;
|
|
3617
|
+
light?: string | undefined;
|
|
2926
3618
|
dark?: string | undefined;
|
|
2927
3619
|
};
|
|
2928
3620
|
navigation: {
|
|
@@ -2945,12 +3637,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2945
3637
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2946
3638
|
} | {
|
|
2947
3639
|
groups: ({
|
|
2948
|
-
openapi: string | string[] | {
|
|
2949
|
-
source: string;
|
|
2950
|
-
directory?: string | undefined;
|
|
2951
|
-
};
|
|
2952
3640
|
group: string;
|
|
2953
|
-
pages: any[];
|
|
2954
3641
|
icon?: string | {
|
|
2955
3642
|
name: string;
|
|
2956
3643
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -2961,26 +3648,22 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2961
3648
|
tag?: string | undefined;
|
|
2962
3649
|
hidden?: boolean | undefined;
|
|
2963
3650
|
root?: string | undefined;
|
|
2964
|
-
}
|
|
2965
|
-
|
|
2966
|
-
pages: any[];
|
|
2967
|
-
asyncapi: string | string[] | {
|
|
3651
|
+
} & {
|
|
3652
|
+
openapi?: string | string[] | {
|
|
2968
3653
|
source: string;
|
|
2969
3654
|
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
3655
|
} | undefined;
|
|
2976
|
-
|
|
2977
|
-
|
|
2978
|
-
|
|
2979
|
-
|
|
2980
|
-
|
|
2981
|
-
|
|
3656
|
+
asyncapi?: string | string[] | {
|
|
3657
|
+
source: string;
|
|
3658
|
+
directory?: string | undefined;
|
|
3659
|
+
} | undefined;
|
|
3660
|
+
} & {
|
|
3661
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
3662
|
+
})[];
|
|
3663
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3664
|
+
} | {
|
|
3665
|
+
pages: (string | ({
|
|
2982
3666
|
group: string;
|
|
2983
|
-
pages: any[];
|
|
2984
3667
|
icon?: string | {
|
|
2985
3668
|
name: string;
|
|
2986
3669
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -2991,10 +3674,18 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2991
3674
|
tag?: string | undefined;
|
|
2992
3675
|
hidden?: boolean | undefined;
|
|
2993
3676
|
root?: string | undefined;
|
|
2994
|
-
}
|
|
2995
|
-
|
|
2996
|
-
|
|
2997
|
-
|
|
3677
|
+
} & {
|
|
3678
|
+
openapi?: string | string[] | {
|
|
3679
|
+
source: string;
|
|
3680
|
+
directory?: string | undefined;
|
|
3681
|
+
} | undefined;
|
|
3682
|
+
asyncapi?: string | string[] | {
|
|
3683
|
+
source: string;
|
|
3684
|
+
directory?: string | undefined;
|
|
3685
|
+
} | undefined;
|
|
3686
|
+
} & {
|
|
3687
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
3688
|
+
}))[];
|
|
2998
3689
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2999
3690
|
};
|
|
3000
3691
|
background?: {
|
|
@@ -3235,7 +3926,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3235
3926
|
};
|
|
3236
3927
|
} | undefined;
|
|
3237
3928
|
contextual?: {
|
|
3238
|
-
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
3929
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
3239
3930
|
href: string | {
|
|
3240
3931
|
base: string;
|
|
3241
3932
|
query?: {
|
|
@@ -3251,6 +3942,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3251
3942
|
library?: "fontawesome" | "lucide" | undefined;
|
|
3252
3943
|
} | undefined;
|
|
3253
3944
|
})[];
|
|
3945
|
+
display: "header" | "toc";
|
|
3254
3946
|
} | undefined;
|
|
3255
3947
|
thumbnails?: {
|
|
3256
3948
|
background?: string | undefined;
|
|
@@ -3265,7 +3957,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3265
3957
|
} | {
|
|
3266
3958
|
name: string;
|
|
3267
3959
|
$schema: string;
|
|
3268
|
-
theme: "
|
|
3960
|
+
theme: "linden";
|
|
3269
3961
|
colors: {
|
|
3270
3962
|
primary: string;
|
|
3271
3963
|
light?: string | undefined;
|
|
@@ -3291,12 +3983,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3291
3983
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3292
3984
|
} | {
|
|
3293
3985
|
groups: ({
|
|
3294
|
-
openapi: string | string[] | {
|
|
3295
|
-
source: string;
|
|
3296
|
-
directory?: string | undefined;
|
|
3297
|
-
};
|
|
3298
3986
|
group: string;
|
|
3299
|
-
pages: any[];
|
|
3300
3987
|
icon?: string | {
|
|
3301
3988
|
name: string;
|
|
3302
3989
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -3307,26 +3994,22 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3307
3994
|
tag?: string | undefined;
|
|
3308
3995
|
hidden?: boolean | undefined;
|
|
3309
3996
|
root?: string | undefined;
|
|
3310
|
-
}
|
|
3311
|
-
|
|
3312
|
-
pages: any[];
|
|
3313
|
-
asyncapi: string | string[] | {
|
|
3997
|
+
} & {
|
|
3998
|
+
openapi?: string | string[] | {
|
|
3314
3999
|
source: string;
|
|
3315
4000
|
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
4001
|
} | undefined;
|
|
3322
|
-
|
|
3323
|
-
|
|
3324
|
-
|
|
3325
|
-
|
|
3326
|
-
|
|
3327
|
-
|
|
4002
|
+
asyncapi?: string | string[] | {
|
|
4003
|
+
source: string;
|
|
4004
|
+
directory?: string | undefined;
|
|
4005
|
+
} | undefined;
|
|
4006
|
+
} & {
|
|
4007
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
4008
|
+
})[];
|
|
4009
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4010
|
+
} | {
|
|
4011
|
+
pages: (string | ({
|
|
3328
4012
|
group: string;
|
|
3329
|
-
pages: any[];
|
|
3330
4013
|
icon?: string | {
|
|
3331
4014
|
name: string;
|
|
3332
4015
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -3337,10 +4020,18 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3337
4020
|
tag?: string | undefined;
|
|
3338
4021
|
hidden?: boolean | undefined;
|
|
3339
4022
|
root?: string | undefined;
|
|
3340
|
-
}
|
|
3341
|
-
|
|
3342
|
-
|
|
3343
|
-
|
|
4023
|
+
} & {
|
|
4024
|
+
openapi?: string | string[] | {
|
|
4025
|
+
source: string;
|
|
4026
|
+
directory?: string | undefined;
|
|
4027
|
+
} | undefined;
|
|
4028
|
+
asyncapi?: string | string[] | {
|
|
4029
|
+
source: string;
|
|
4030
|
+
directory?: string | undefined;
|
|
4031
|
+
} | undefined;
|
|
4032
|
+
} & {
|
|
4033
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
4034
|
+
}))[];
|
|
3344
4035
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3345
4036
|
};
|
|
3346
4037
|
background?: {
|
|
@@ -3581,7 +4272,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3581
4272
|
};
|
|
3582
4273
|
} | undefined;
|
|
3583
4274
|
contextual?: {
|
|
3584
|
-
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
4275
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
3585
4276
|
href: string | {
|
|
3586
4277
|
base: string;
|
|
3587
4278
|
query?: {
|
|
@@ -3597,6 +4288,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3597
4288
|
library?: "fontawesome" | "lucide" | undefined;
|
|
3598
4289
|
} | undefined;
|
|
3599
4290
|
})[];
|
|
4291
|
+
display: "header" | "toc";
|
|
3600
4292
|
} | undefined;
|
|
3601
4293
|
thumbnails?: {
|
|
3602
4294
|
background?: string | undefined;
|
|
@@ -3611,7 +4303,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3611
4303
|
} | {
|
|
3612
4304
|
name: string;
|
|
3613
4305
|
$schema: string;
|
|
3614
|
-
theme: "
|
|
4306
|
+
theme: "maple";
|
|
3615
4307
|
colors: {
|
|
3616
4308
|
primary: string;
|
|
3617
4309
|
light?: string | undefined;
|
|
@@ -3637,12 +4329,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3637
4329
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3638
4330
|
} | {
|
|
3639
4331
|
groups: ({
|
|
3640
|
-
openapi: string | string[] | {
|
|
3641
|
-
source: string;
|
|
3642
|
-
directory?: string | undefined;
|
|
3643
|
-
};
|
|
3644
4332
|
group: string;
|
|
3645
|
-
pages: any[];
|
|
3646
4333
|
icon?: string | {
|
|
3647
4334
|
name: string;
|
|
3648
4335
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -3653,26 +4340,22 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3653
4340
|
tag?: string | undefined;
|
|
3654
4341
|
hidden?: boolean | undefined;
|
|
3655
4342
|
root?: string | undefined;
|
|
3656
|
-
}
|
|
3657
|
-
|
|
3658
|
-
pages: any[];
|
|
3659
|
-
asyncapi: string | string[] | {
|
|
4343
|
+
} & {
|
|
4344
|
+
openapi?: string | string[] | {
|
|
3660
4345
|
source: string;
|
|
3661
4346
|
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
4347
|
} | undefined;
|
|
3668
|
-
|
|
3669
|
-
|
|
3670
|
-
|
|
3671
|
-
|
|
3672
|
-
|
|
3673
|
-
|
|
4348
|
+
asyncapi?: string | string[] | {
|
|
4349
|
+
source: string;
|
|
4350
|
+
directory?: string | undefined;
|
|
4351
|
+
} | undefined;
|
|
4352
|
+
} & {
|
|
4353
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
4354
|
+
})[];
|
|
4355
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4356
|
+
} | {
|
|
4357
|
+
pages: (string | ({
|
|
3674
4358
|
group: string;
|
|
3675
|
-
pages: any[];
|
|
3676
4359
|
icon?: string | {
|
|
3677
4360
|
name: string;
|
|
3678
4361
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -3683,10 +4366,18 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3683
4366
|
tag?: string | undefined;
|
|
3684
4367
|
hidden?: boolean | undefined;
|
|
3685
4368
|
root?: string | undefined;
|
|
3686
|
-
}
|
|
3687
|
-
|
|
3688
|
-
|
|
3689
|
-
|
|
4369
|
+
} & {
|
|
4370
|
+
openapi?: string | string[] | {
|
|
4371
|
+
source: string;
|
|
4372
|
+
directory?: string | undefined;
|
|
4373
|
+
} | undefined;
|
|
4374
|
+
asyncapi?: string | string[] | {
|
|
4375
|
+
source: string;
|
|
4376
|
+
directory?: string | undefined;
|
|
4377
|
+
} | undefined;
|
|
4378
|
+
} & {
|
|
4379
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
4380
|
+
}))[];
|
|
3690
4381
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3691
4382
|
};
|
|
3692
4383
|
background?: {
|
|
@@ -3927,7 +4618,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3927
4618
|
};
|
|
3928
4619
|
} | undefined;
|
|
3929
4620
|
contextual?: {
|
|
3930
|
-
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
4621
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
3931
4622
|
href: string | {
|
|
3932
4623
|
base: string;
|
|
3933
4624
|
query?: {
|
|
@@ -3943,6 +4634,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3943
4634
|
library?: "fontawesome" | "lucide" | undefined;
|
|
3944
4635
|
} | undefined;
|
|
3945
4636
|
})[];
|
|
4637
|
+
display: "header" | "toc";
|
|
3946
4638
|
} | undefined;
|
|
3947
4639
|
thumbnails?: {
|
|
3948
4640
|
background?: string | undefined;
|
|
@@ -3957,7 +4649,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3957
4649
|
} | {
|
|
3958
4650
|
name: string;
|
|
3959
4651
|
$schema: string;
|
|
3960
|
-
theme: "
|
|
4652
|
+
theme: "mint";
|
|
3961
4653
|
colors: {
|
|
3962
4654
|
primary: string;
|
|
3963
4655
|
light?: string | undefined;
|
|
@@ -3983,12 +4675,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3983
4675
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3984
4676
|
} | {
|
|
3985
4677
|
groups: ({
|
|
3986
|
-
openapi: string | string[] | {
|
|
3987
|
-
source: string;
|
|
3988
|
-
directory?: string | undefined;
|
|
3989
|
-
};
|
|
3990
4678
|
group: string;
|
|
3991
|
-
pages: any[];
|
|
3992
4679
|
icon?: string | {
|
|
3993
4680
|
name: string;
|
|
3994
4681
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -3999,26 +4686,22 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3999
4686
|
tag?: string | undefined;
|
|
4000
4687
|
hidden?: boolean | undefined;
|
|
4001
4688
|
root?: string | undefined;
|
|
4002
|
-
}
|
|
4003
|
-
|
|
4004
|
-
pages: any[];
|
|
4005
|
-
asyncapi: string | string[] | {
|
|
4689
|
+
} & {
|
|
4690
|
+
openapi?: string | string[] | {
|
|
4006
4691
|
source: string;
|
|
4007
4692
|
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
4693
|
} | undefined;
|
|
4014
|
-
|
|
4015
|
-
|
|
4016
|
-
|
|
4017
|
-
|
|
4018
|
-
|
|
4019
|
-
|
|
4694
|
+
asyncapi?: string | string[] | {
|
|
4695
|
+
source: string;
|
|
4696
|
+
directory?: string | undefined;
|
|
4697
|
+
} | undefined;
|
|
4698
|
+
} & {
|
|
4699
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
4700
|
+
})[];
|
|
4701
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4702
|
+
} | {
|
|
4703
|
+
pages: (string | ({
|
|
4020
4704
|
group: string;
|
|
4021
|
-
pages: any[];
|
|
4022
4705
|
icon?: string | {
|
|
4023
4706
|
name: string;
|
|
4024
4707
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -4029,10 +4712,18 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4029
4712
|
tag?: string | undefined;
|
|
4030
4713
|
hidden?: boolean | undefined;
|
|
4031
4714
|
root?: string | undefined;
|
|
4032
|
-
}
|
|
4033
|
-
|
|
4034
|
-
|
|
4035
|
-
|
|
4715
|
+
} & {
|
|
4716
|
+
openapi?: string | string[] | {
|
|
4717
|
+
source: string;
|
|
4718
|
+
directory?: string | undefined;
|
|
4719
|
+
} | undefined;
|
|
4720
|
+
asyncapi?: string | string[] | {
|
|
4721
|
+
source: string;
|
|
4722
|
+
directory?: string | undefined;
|
|
4723
|
+
} | undefined;
|
|
4724
|
+
} & {
|
|
4725
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
4726
|
+
}))[];
|
|
4036
4727
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4037
4728
|
};
|
|
4038
4729
|
background?: {
|
|
@@ -4273,7 +4964,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4273
4964
|
};
|
|
4274
4965
|
} | undefined;
|
|
4275
4966
|
contextual?: {
|
|
4276
|
-
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
4967
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
4277
4968
|
href: string | {
|
|
4278
4969
|
base: string;
|
|
4279
4970
|
query?: {
|
|
@@ -4289,6 +4980,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4289
4980
|
library?: "fontawesome" | "lucide" | undefined;
|
|
4290
4981
|
} | undefined;
|
|
4291
4982
|
})[];
|
|
4983
|
+
display: "header" | "toc";
|
|
4292
4984
|
} | undefined;
|
|
4293
4985
|
thumbnails?: {
|
|
4294
4986
|
background?: string | undefined;
|
|
@@ -4303,7 +4995,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4303
4995
|
} | {
|
|
4304
4996
|
name: string;
|
|
4305
4997
|
$schema: string;
|
|
4306
|
-
theme: "
|
|
4998
|
+
theme: "palm";
|
|
4307
4999
|
colors: {
|
|
4308
5000
|
primary: string;
|
|
4309
5001
|
light?: string | undefined;
|
|
@@ -4329,12 +5021,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4329
5021
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4330
5022
|
} | {
|
|
4331
5023
|
groups: ({
|
|
4332
|
-
openapi: string | string[] | {
|
|
4333
|
-
source: string;
|
|
4334
|
-
directory?: string | undefined;
|
|
4335
|
-
};
|
|
4336
5024
|
group: string;
|
|
4337
|
-
pages: any[];
|
|
4338
5025
|
icon?: string | {
|
|
4339
5026
|
name: string;
|
|
4340
5027
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -4345,26 +5032,22 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4345
5032
|
tag?: string | undefined;
|
|
4346
5033
|
hidden?: boolean | undefined;
|
|
4347
5034
|
root?: string | undefined;
|
|
4348
|
-
}
|
|
4349
|
-
|
|
4350
|
-
pages: any[];
|
|
4351
|
-
asyncapi: string | string[] | {
|
|
5035
|
+
} & {
|
|
5036
|
+
openapi?: string | string[] | {
|
|
4352
5037
|
source: string;
|
|
4353
5038
|
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
5039
|
} | undefined;
|
|
4360
|
-
|
|
4361
|
-
|
|
4362
|
-
|
|
4363
|
-
|
|
4364
|
-
|
|
4365
|
-
|
|
5040
|
+
asyncapi?: string | string[] | {
|
|
5041
|
+
source: string;
|
|
5042
|
+
directory?: string | undefined;
|
|
5043
|
+
} | undefined;
|
|
5044
|
+
} & {
|
|
5045
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
5046
|
+
})[];
|
|
5047
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5048
|
+
} | {
|
|
5049
|
+
pages: (string | ({
|
|
4366
5050
|
group: string;
|
|
4367
|
-
pages: any[];
|
|
4368
5051
|
icon?: string | {
|
|
4369
5052
|
name: string;
|
|
4370
5053
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -4375,10 +5058,18 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4375
5058
|
tag?: string | undefined;
|
|
4376
5059
|
hidden?: boolean | undefined;
|
|
4377
5060
|
root?: string | undefined;
|
|
4378
|
-
}
|
|
4379
|
-
|
|
4380
|
-
|
|
4381
|
-
|
|
5061
|
+
} & {
|
|
5062
|
+
openapi?: string | string[] | {
|
|
5063
|
+
source: string;
|
|
5064
|
+
directory?: string | undefined;
|
|
5065
|
+
} | undefined;
|
|
5066
|
+
asyncapi?: string | string[] | {
|
|
5067
|
+
source: string;
|
|
5068
|
+
directory?: string | undefined;
|
|
5069
|
+
} | undefined;
|
|
5070
|
+
} & {
|
|
5071
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
5072
|
+
}))[];
|
|
4382
5073
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4383
5074
|
};
|
|
4384
5075
|
background?: {
|
|
@@ -4619,7 +5310,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4619
5310
|
};
|
|
4620
5311
|
} | undefined;
|
|
4621
5312
|
contextual?: {
|
|
4622
|
-
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
5313
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
4623
5314
|
href: string | {
|
|
4624
5315
|
base: string;
|
|
4625
5316
|
query?: {
|
|
@@ -4635,6 +5326,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4635
5326
|
library?: "fontawesome" | "lucide" | undefined;
|
|
4636
5327
|
} | undefined;
|
|
4637
5328
|
})[];
|
|
5329
|
+
display: "header" | "toc";
|
|
4638
5330
|
} | undefined;
|
|
4639
5331
|
thumbnails?: {
|
|
4640
5332
|
background?: string | undefined;
|
|
@@ -4649,7 +5341,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4649
5341
|
} | {
|
|
4650
5342
|
name: string;
|
|
4651
5343
|
$schema: string;
|
|
4652
|
-
theme: "
|
|
5344
|
+
theme: "sequoia";
|
|
4653
5345
|
colors: {
|
|
4654
5346
|
primary: string;
|
|
4655
5347
|
light?: string | undefined;
|
|
@@ -4675,12 +5367,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4675
5367
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4676
5368
|
} | {
|
|
4677
5369
|
groups: ({
|
|
4678
|
-
openapi: string | string[] | {
|
|
4679
|
-
source: string;
|
|
4680
|
-
directory?: string | undefined;
|
|
4681
|
-
};
|
|
4682
5370
|
group: string;
|
|
4683
|
-
pages: any[];
|
|
4684
5371
|
icon?: string | {
|
|
4685
5372
|
name: string;
|
|
4686
5373
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -4691,26 +5378,22 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4691
5378
|
tag?: string | undefined;
|
|
4692
5379
|
hidden?: boolean | undefined;
|
|
4693
5380
|
root?: string | undefined;
|
|
4694
|
-
}
|
|
4695
|
-
|
|
4696
|
-
pages: any[];
|
|
4697
|
-
asyncapi: string | string[] | {
|
|
5381
|
+
} & {
|
|
5382
|
+
openapi?: string | string[] | {
|
|
4698
5383
|
source: string;
|
|
4699
5384
|
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
5385
|
} | undefined;
|
|
4706
|
-
|
|
4707
|
-
|
|
4708
|
-
|
|
4709
|
-
|
|
4710
|
-
|
|
4711
|
-
|
|
5386
|
+
asyncapi?: string | string[] | {
|
|
5387
|
+
source: string;
|
|
5388
|
+
directory?: string | undefined;
|
|
5389
|
+
} | undefined;
|
|
5390
|
+
} & {
|
|
5391
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
5392
|
+
})[];
|
|
5393
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5394
|
+
} | {
|
|
5395
|
+
pages: (string | ({
|
|
4712
5396
|
group: string;
|
|
4713
|
-
pages: any[];
|
|
4714
5397
|
icon?: string | {
|
|
4715
5398
|
name: string;
|
|
4716
5399
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -4721,10 +5404,18 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4721
5404
|
tag?: string | undefined;
|
|
4722
5405
|
hidden?: boolean | undefined;
|
|
4723
5406
|
root?: string | undefined;
|
|
4724
|
-
}
|
|
4725
|
-
|
|
4726
|
-
|
|
4727
|
-
|
|
5407
|
+
} & {
|
|
5408
|
+
openapi?: string | string[] | {
|
|
5409
|
+
source: string;
|
|
5410
|
+
directory?: string | undefined;
|
|
5411
|
+
} | undefined;
|
|
5412
|
+
asyncapi?: string | string[] | {
|
|
5413
|
+
source: string;
|
|
5414
|
+
directory?: string | undefined;
|
|
5415
|
+
} | undefined;
|
|
5416
|
+
} & {
|
|
5417
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
5418
|
+
}))[];
|
|
4728
5419
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4729
5420
|
};
|
|
4730
5421
|
background?: {
|
|
@@ -4965,7 +5656,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4965
5656
|
};
|
|
4966
5657
|
} | undefined;
|
|
4967
5658
|
contextual?: {
|
|
4968
|
-
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
5659
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
4969
5660
|
href: string | {
|
|
4970
5661
|
base: string;
|
|
4971
5662
|
query?: {
|
|
@@ -4981,6 +5672,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4981
5672
|
library?: "fontawesome" | "lucide" | undefined;
|
|
4982
5673
|
} | undefined;
|
|
4983
5674
|
})[];
|
|
5675
|
+
display: "header" | "toc";
|
|
4984
5676
|
} | undefined;
|
|
4985
5677
|
thumbnails?: {
|
|
4986
5678
|
background?: string | undefined;
|
|
@@ -5021,12 +5713,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5021
5713
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5022
5714
|
} | {
|
|
5023
5715
|
groups: ({
|
|
5024
|
-
openapi: string | string[] | {
|
|
5025
|
-
source: string;
|
|
5026
|
-
directory?: string | undefined;
|
|
5027
|
-
};
|
|
5028
5716
|
group: string;
|
|
5029
|
-
pages: any[];
|
|
5030
5717
|
icon?: string | {
|
|
5031
5718
|
name: string;
|
|
5032
5719
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -5037,26 +5724,22 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5037
5724
|
tag?: string | undefined;
|
|
5038
5725
|
hidden?: boolean | undefined;
|
|
5039
5726
|
root?: string | undefined;
|
|
5040
|
-
}
|
|
5041
|
-
|
|
5042
|
-
pages: any[];
|
|
5043
|
-
asyncapi: string | string[] | {
|
|
5727
|
+
} & {
|
|
5728
|
+
openapi?: string | string[] | {
|
|
5044
5729
|
source: string;
|
|
5045
5730
|
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
5731
|
} | undefined;
|
|
5052
|
-
|
|
5053
|
-
|
|
5054
|
-
|
|
5055
|
-
|
|
5056
|
-
|
|
5057
|
-
|
|
5732
|
+
asyncapi?: string | string[] | {
|
|
5733
|
+
source: string;
|
|
5734
|
+
directory?: string | undefined;
|
|
5735
|
+
} | undefined;
|
|
5736
|
+
} & {
|
|
5737
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
5738
|
+
})[];
|
|
5739
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5740
|
+
} | {
|
|
5741
|
+
pages: (string | ({
|
|
5058
5742
|
group: string;
|
|
5059
|
-
pages: any[];
|
|
5060
5743
|
icon?: string | {
|
|
5061
5744
|
name: string;
|
|
5062
5745
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -5067,10 +5750,18 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5067
5750
|
tag?: string | undefined;
|
|
5068
5751
|
hidden?: boolean | undefined;
|
|
5069
5752
|
root?: string | undefined;
|
|
5070
|
-
}
|
|
5071
|
-
|
|
5072
|
-
|
|
5073
|
-
|
|
5753
|
+
} & {
|
|
5754
|
+
openapi?: string | string[] | {
|
|
5755
|
+
source: string;
|
|
5756
|
+
directory?: string | undefined;
|
|
5757
|
+
} | undefined;
|
|
5758
|
+
asyncapi?: string | string[] | {
|
|
5759
|
+
source: string;
|
|
5760
|
+
directory?: string | undefined;
|
|
5761
|
+
} | undefined;
|
|
5762
|
+
} & {
|
|
5763
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
5764
|
+
}))[];
|
|
5074
5765
|
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5075
5766
|
};
|
|
5076
5767
|
background?: {
|
|
@@ -5311,7 +6002,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5311
6002
|
};
|
|
5312
6003
|
} | undefined;
|
|
5313
6004
|
contextual?: {
|
|
5314
|
-
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
6005
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
5315
6006
|
href: string | {
|
|
5316
6007
|
base: string;
|
|
5317
6008
|
query?: {
|
|
@@ -5327,6 +6018,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5327
6018
|
library?: "fontawesome" | "lucide" | undefined;
|
|
5328
6019
|
} | undefined;
|
|
5329
6020
|
})[];
|
|
6021
|
+
display: "header" | "toc";
|
|
5330
6022
|
} | undefined;
|
|
5331
6023
|
thumbnails?: {
|
|
5332
6024
|
background?: string | undefined;
|