@mintlify/validation 0.1.785 → 0.1.787
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/mint-config/schemas/v2/index.d.ts +453 -453
- package/dist/mint-config/schemas/v2/properties/contextual.d.ts +10 -11
- package/dist/mint-config/schemas/v2/properties/contextual.js +2 -20
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +568 -4
- package/dist/mint-config/schemas/v2/properties/navigation/pages.d.ts +284 -2
- package/dist/mint-config/schemas/v2/properties/reusable/page.d.ts +424 -1
- package/dist/mint-config/schemas/v2/properties/reusable/page.js +2 -0
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +45 -45
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +45 -45
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +45 -45
- package/dist/mint-config/schemas/v2/themes/luma.d.ts +45 -45
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +45 -45
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +45 -45
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +45 -45
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +7 -7
- package/dist/mint-config/schemas/v2/themes/sequoia.d.ts +45 -45
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +45 -45
- package/dist/mint-config/validateConfig.d.ts +351 -351
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/deployment/deploymentEntitlements.d.ts +1 -1
- package/dist/types/deployment/deploymentEntitlements.js +1 -0
- package/package.json +3 -3
|
@@ -762,6 +762,25 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
762
762
|
trailingSlash?: boolean | undefined;
|
|
763
763
|
} | undefined;
|
|
764
764
|
description?: string | undefined;
|
|
765
|
+
contextual?: {
|
|
766
|
+
options: ({
|
|
767
|
+
href: string | {
|
|
768
|
+
base: string;
|
|
769
|
+
query?: {
|
|
770
|
+
value: string;
|
|
771
|
+
key: string;
|
|
772
|
+
}[] | undefined;
|
|
773
|
+
};
|
|
774
|
+
title: string;
|
|
775
|
+
description: string;
|
|
776
|
+
icon?: string | {
|
|
777
|
+
name: string;
|
|
778
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
779
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
780
|
+
} | undefined;
|
|
781
|
+
} | "copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp")[];
|
|
782
|
+
display?: "header" | "toc" | undefined;
|
|
783
|
+
} | undefined;
|
|
765
784
|
banner?: {
|
|
766
785
|
content: string;
|
|
767
786
|
type?: "info" | "warning" | "critical" | undefined;
|
|
@@ -860,25 +879,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
860
879
|
redirect?: boolean | undefined;
|
|
861
880
|
};
|
|
862
881
|
} | undefined;
|
|
863
|
-
contextual?: {
|
|
864
|
-
options: ("copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp" | {
|
|
865
|
-
href: string | {
|
|
866
|
-
base: string;
|
|
867
|
-
query?: {
|
|
868
|
-
value: string;
|
|
869
|
-
key: string;
|
|
870
|
-
}[] | undefined;
|
|
871
|
-
};
|
|
872
|
-
title: string;
|
|
873
|
-
description: string;
|
|
874
|
-
icon?: string | {
|
|
875
|
-
name: string;
|
|
876
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
877
|
-
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
878
|
-
} | undefined;
|
|
879
|
-
})[];
|
|
880
|
-
display?: "header" | "toc" | undefined;
|
|
881
|
-
} | undefined;
|
|
882
882
|
thumbnails?: {
|
|
883
883
|
background?: string | undefined;
|
|
884
884
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
@@ -1154,6 +1154,25 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1154
1154
|
trailingSlash?: boolean | undefined;
|
|
1155
1155
|
} | undefined;
|
|
1156
1156
|
description?: string | undefined;
|
|
1157
|
+
contextual?: {
|
|
1158
|
+
options: ({
|
|
1159
|
+
href: string | {
|
|
1160
|
+
base: string;
|
|
1161
|
+
query?: {
|
|
1162
|
+
value: string;
|
|
1163
|
+
key: string;
|
|
1164
|
+
}[] | undefined;
|
|
1165
|
+
};
|
|
1166
|
+
title: string;
|
|
1167
|
+
description: string;
|
|
1168
|
+
icon?: string | {
|
|
1169
|
+
name: string;
|
|
1170
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1171
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
1172
|
+
} | undefined;
|
|
1173
|
+
} | "copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp")[];
|
|
1174
|
+
display?: "header" | "toc" | undefined;
|
|
1175
|
+
} | undefined;
|
|
1157
1176
|
banner?: {
|
|
1158
1177
|
content: string;
|
|
1159
1178
|
type?: "info" | "warning" | "critical" | undefined;
|
|
@@ -1252,25 +1271,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1252
1271
|
redirect?: boolean | undefined;
|
|
1253
1272
|
};
|
|
1254
1273
|
} | undefined;
|
|
1255
|
-
contextual?: {
|
|
1256
|
-
options: ("copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp" | {
|
|
1257
|
-
href: string | {
|
|
1258
|
-
base: string;
|
|
1259
|
-
query?: {
|
|
1260
|
-
value: string;
|
|
1261
|
-
key: string;
|
|
1262
|
-
}[] | undefined;
|
|
1263
|
-
};
|
|
1264
|
-
title: string;
|
|
1265
|
-
description: string;
|
|
1266
|
-
icon?: string | {
|
|
1267
|
-
name: string;
|
|
1268
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1269
|
-
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
1270
|
-
} | undefined;
|
|
1271
|
-
})[];
|
|
1272
|
-
display?: "header" | "toc" | undefined;
|
|
1273
|
-
} | undefined;
|
|
1274
1274
|
thumbnails?: {
|
|
1275
1275
|
background?: string | undefined;
|
|
1276
1276
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
@@ -1546,6 +1546,25 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1546
1546
|
trailingSlash?: boolean | undefined;
|
|
1547
1547
|
} | undefined;
|
|
1548
1548
|
description?: string | undefined;
|
|
1549
|
+
contextual?: {
|
|
1550
|
+
options: ({
|
|
1551
|
+
href: string | {
|
|
1552
|
+
base: string;
|
|
1553
|
+
query?: {
|
|
1554
|
+
value: string;
|
|
1555
|
+
key: string;
|
|
1556
|
+
}[] | undefined;
|
|
1557
|
+
};
|
|
1558
|
+
title: string;
|
|
1559
|
+
description: string;
|
|
1560
|
+
icon?: string | {
|
|
1561
|
+
name: string;
|
|
1562
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1563
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
1564
|
+
} | undefined;
|
|
1565
|
+
} | "copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp")[];
|
|
1566
|
+
display?: "header" | "toc" | undefined;
|
|
1567
|
+
} | undefined;
|
|
1549
1568
|
banner?: {
|
|
1550
1569
|
content: string;
|
|
1551
1570
|
type?: "info" | "warning" | "critical" | undefined;
|
|
@@ -1644,25 +1663,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1644
1663
|
redirect?: boolean | undefined;
|
|
1645
1664
|
};
|
|
1646
1665
|
} | undefined;
|
|
1647
|
-
contextual?: {
|
|
1648
|
-
options: ("copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp" | {
|
|
1649
|
-
href: string | {
|
|
1650
|
-
base: string;
|
|
1651
|
-
query?: {
|
|
1652
|
-
value: string;
|
|
1653
|
-
key: string;
|
|
1654
|
-
}[] | undefined;
|
|
1655
|
-
};
|
|
1656
|
-
title: string;
|
|
1657
|
-
description: string;
|
|
1658
|
-
icon?: string | {
|
|
1659
|
-
name: string;
|
|
1660
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1661
|
-
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
1662
|
-
} | undefined;
|
|
1663
|
-
})[];
|
|
1664
|
-
display?: "header" | "toc" | undefined;
|
|
1665
|
-
} | undefined;
|
|
1666
1666
|
thumbnails?: {
|
|
1667
1667
|
background?: string | undefined;
|
|
1668
1668
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
@@ -1938,6 +1938,25 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1938
1938
|
trailingSlash?: boolean | undefined;
|
|
1939
1939
|
} | undefined;
|
|
1940
1940
|
description?: string | undefined;
|
|
1941
|
+
contextual?: {
|
|
1942
|
+
options: ({
|
|
1943
|
+
href: string | {
|
|
1944
|
+
base: string;
|
|
1945
|
+
query?: {
|
|
1946
|
+
value: string;
|
|
1947
|
+
key: string;
|
|
1948
|
+
}[] | undefined;
|
|
1949
|
+
};
|
|
1950
|
+
title: string;
|
|
1951
|
+
description: string;
|
|
1952
|
+
icon?: string | {
|
|
1953
|
+
name: string;
|
|
1954
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1955
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
1956
|
+
} | undefined;
|
|
1957
|
+
} | "copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp")[];
|
|
1958
|
+
display?: "header" | "toc" | undefined;
|
|
1959
|
+
} | undefined;
|
|
1941
1960
|
banner?: {
|
|
1942
1961
|
content: string;
|
|
1943
1962
|
type?: "info" | "warning" | "critical" | undefined;
|
|
@@ -2036,25 +2055,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2036
2055
|
redirect?: boolean | undefined;
|
|
2037
2056
|
};
|
|
2038
2057
|
} | undefined;
|
|
2039
|
-
contextual?: {
|
|
2040
|
-
options: ("copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp" | {
|
|
2041
|
-
href: string | {
|
|
2042
|
-
base: string;
|
|
2043
|
-
query?: {
|
|
2044
|
-
value: string;
|
|
2045
|
-
key: string;
|
|
2046
|
-
}[] | undefined;
|
|
2047
|
-
};
|
|
2048
|
-
title: string;
|
|
2049
|
-
description: string;
|
|
2050
|
-
icon?: string | {
|
|
2051
|
-
name: string;
|
|
2052
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2053
|
-
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
2054
|
-
} | undefined;
|
|
2055
|
-
})[];
|
|
2056
|
-
display?: "header" | "toc" | undefined;
|
|
2057
|
-
} | undefined;
|
|
2058
2058
|
thumbnails?: {
|
|
2059
2059
|
background?: string | undefined;
|
|
2060
2060
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
@@ -2330,6 +2330,25 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2330
2330
|
trailingSlash?: boolean | undefined;
|
|
2331
2331
|
} | undefined;
|
|
2332
2332
|
description?: string | undefined;
|
|
2333
|
+
contextual?: {
|
|
2334
|
+
options: ({
|
|
2335
|
+
href: string | {
|
|
2336
|
+
base: string;
|
|
2337
|
+
query?: {
|
|
2338
|
+
value: string;
|
|
2339
|
+
key: string;
|
|
2340
|
+
}[] | undefined;
|
|
2341
|
+
};
|
|
2342
|
+
title: string;
|
|
2343
|
+
description: string;
|
|
2344
|
+
icon?: string | {
|
|
2345
|
+
name: string;
|
|
2346
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2347
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
2348
|
+
} | undefined;
|
|
2349
|
+
} | "copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp")[];
|
|
2350
|
+
display?: "header" | "toc" | undefined;
|
|
2351
|
+
} | undefined;
|
|
2333
2352
|
banner?: {
|
|
2334
2353
|
content: string;
|
|
2335
2354
|
type?: "info" | "warning" | "critical" | undefined;
|
|
@@ -2428,25 +2447,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2428
2447
|
redirect?: boolean | undefined;
|
|
2429
2448
|
};
|
|
2430
2449
|
} | undefined;
|
|
2431
|
-
contextual?: {
|
|
2432
|
-
options: ("copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp" | {
|
|
2433
|
-
href: string | {
|
|
2434
|
-
base: string;
|
|
2435
|
-
query?: {
|
|
2436
|
-
value: string;
|
|
2437
|
-
key: string;
|
|
2438
|
-
}[] | undefined;
|
|
2439
|
-
};
|
|
2440
|
-
title: string;
|
|
2441
|
-
description: string;
|
|
2442
|
-
icon?: string | {
|
|
2443
|
-
name: string;
|
|
2444
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2445
|
-
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
2446
|
-
} | undefined;
|
|
2447
|
-
})[];
|
|
2448
|
-
display?: "header" | "toc" | undefined;
|
|
2449
|
-
} | undefined;
|
|
2450
2450
|
thumbnails?: {
|
|
2451
2451
|
background?: string | undefined;
|
|
2452
2452
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
@@ -2722,6 +2722,25 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2722
2722
|
trailingSlash?: boolean | undefined;
|
|
2723
2723
|
} | undefined;
|
|
2724
2724
|
description?: string | undefined;
|
|
2725
|
+
contextual?: {
|
|
2726
|
+
options: ({
|
|
2727
|
+
href: string | {
|
|
2728
|
+
base: string;
|
|
2729
|
+
query?: {
|
|
2730
|
+
value: string;
|
|
2731
|
+
key: string;
|
|
2732
|
+
}[] | undefined;
|
|
2733
|
+
};
|
|
2734
|
+
title: string;
|
|
2735
|
+
description: string;
|
|
2736
|
+
icon?: string | {
|
|
2737
|
+
name: string;
|
|
2738
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2739
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
2740
|
+
} | undefined;
|
|
2741
|
+
} | "copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp")[];
|
|
2742
|
+
display?: "header" | "toc" | undefined;
|
|
2743
|
+
} | undefined;
|
|
2725
2744
|
banner?: {
|
|
2726
2745
|
content: string;
|
|
2727
2746
|
type?: "info" | "warning" | "critical" | undefined;
|
|
@@ -2820,25 +2839,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2820
2839
|
redirect?: boolean | undefined;
|
|
2821
2840
|
};
|
|
2822
2841
|
} | undefined;
|
|
2823
|
-
contextual?: {
|
|
2824
|
-
options: ("copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp" | {
|
|
2825
|
-
href: string | {
|
|
2826
|
-
base: string;
|
|
2827
|
-
query?: {
|
|
2828
|
-
value: string;
|
|
2829
|
-
key: string;
|
|
2830
|
-
}[] | undefined;
|
|
2831
|
-
};
|
|
2832
|
-
title: string;
|
|
2833
|
-
description: string;
|
|
2834
|
-
icon?: string | {
|
|
2835
|
-
name: string;
|
|
2836
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2837
|
-
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
2838
|
-
} | undefined;
|
|
2839
|
-
})[];
|
|
2840
|
-
display?: "header" | "toc" | undefined;
|
|
2841
|
-
} | undefined;
|
|
2842
2842
|
thumbnails?: {
|
|
2843
2843
|
background?: string | undefined;
|
|
2844
2844
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
@@ -3114,6 +3114,25 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3114
3114
|
trailingSlash?: boolean | undefined;
|
|
3115
3115
|
} | undefined;
|
|
3116
3116
|
description?: string | undefined;
|
|
3117
|
+
contextual?: {
|
|
3118
|
+
options: ({
|
|
3119
|
+
href: string | {
|
|
3120
|
+
base: string;
|
|
3121
|
+
query?: {
|
|
3122
|
+
value: string;
|
|
3123
|
+
key: string;
|
|
3124
|
+
}[] | undefined;
|
|
3125
|
+
};
|
|
3126
|
+
title: string;
|
|
3127
|
+
description: string;
|
|
3128
|
+
icon?: string | {
|
|
3129
|
+
name: string;
|
|
3130
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3131
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
3132
|
+
} | undefined;
|
|
3133
|
+
} | "copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp")[];
|
|
3134
|
+
display?: "header" | "toc" | undefined;
|
|
3135
|
+
} | undefined;
|
|
3117
3136
|
banner?: {
|
|
3118
3137
|
content: string;
|
|
3119
3138
|
type?: "info" | "warning" | "critical" | undefined;
|
|
@@ -3212,25 +3231,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3212
3231
|
redirect?: boolean | undefined;
|
|
3213
3232
|
};
|
|
3214
3233
|
} | undefined;
|
|
3215
|
-
contextual?: {
|
|
3216
|
-
options: ("copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp" | {
|
|
3217
|
-
href: string | {
|
|
3218
|
-
base: string;
|
|
3219
|
-
query?: {
|
|
3220
|
-
value: string;
|
|
3221
|
-
key: string;
|
|
3222
|
-
}[] | undefined;
|
|
3223
|
-
};
|
|
3224
|
-
title: string;
|
|
3225
|
-
description: string;
|
|
3226
|
-
icon?: string | {
|
|
3227
|
-
name: string;
|
|
3228
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3229
|
-
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
3230
|
-
} | undefined;
|
|
3231
|
-
})[];
|
|
3232
|
-
display?: "header" | "toc" | undefined;
|
|
3233
|
-
} | undefined;
|
|
3234
3234
|
thumbnails?: {
|
|
3235
3235
|
background?: string | undefined;
|
|
3236
3236
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
@@ -3506,6 +3506,25 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3506
3506
|
trailingSlash?: boolean | undefined;
|
|
3507
3507
|
} | undefined;
|
|
3508
3508
|
description?: string | undefined;
|
|
3509
|
+
contextual?: {
|
|
3510
|
+
options: ({
|
|
3511
|
+
href: string | {
|
|
3512
|
+
base: string;
|
|
3513
|
+
query?: {
|
|
3514
|
+
value: string;
|
|
3515
|
+
key: string;
|
|
3516
|
+
}[] | undefined;
|
|
3517
|
+
};
|
|
3518
|
+
title: string;
|
|
3519
|
+
description: string;
|
|
3520
|
+
icon?: string | {
|
|
3521
|
+
name: string;
|
|
3522
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3523
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
3524
|
+
} | undefined;
|
|
3525
|
+
} | "copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp")[];
|
|
3526
|
+
display?: "header" | "toc" | undefined;
|
|
3527
|
+
} | undefined;
|
|
3509
3528
|
banner?: {
|
|
3510
3529
|
content: string;
|
|
3511
3530
|
type?: "info" | "warning" | "critical" | undefined;
|
|
@@ -3604,25 +3623,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3604
3623
|
redirect?: boolean | undefined;
|
|
3605
3624
|
};
|
|
3606
3625
|
} | undefined;
|
|
3607
|
-
contextual?: {
|
|
3608
|
-
options: ("copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp" | {
|
|
3609
|
-
href: string | {
|
|
3610
|
-
base: string;
|
|
3611
|
-
query?: {
|
|
3612
|
-
value: string;
|
|
3613
|
-
key: string;
|
|
3614
|
-
}[] | undefined;
|
|
3615
|
-
};
|
|
3616
|
-
title: string;
|
|
3617
|
-
description: string;
|
|
3618
|
-
icon?: string | {
|
|
3619
|
-
name: string;
|
|
3620
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3621
|
-
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
3622
|
-
} | undefined;
|
|
3623
|
-
})[];
|
|
3624
|
-
display?: "header" | "toc" | undefined;
|
|
3625
|
-
} | undefined;
|
|
3626
3626
|
thumbnails?: {
|
|
3627
3627
|
background?: string | undefined;
|
|
3628
3628
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
@@ -3898,6 +3898,25 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3898
3898
|
trailingSlash?: boolean | undefined;
|
|
3899
3899
|
} | undefined;
|
|
3900
3900
|
description?: string | undefined;
|
|
3901
|
+
contextual?: {
|
|
3902
|
+
options: ({
|
|
3903
|
+
href: string | {
|
|
3904
|
+
base: string;
|
|
3905
|
+
query?: {
|
|
3906
|
+
value: string;
|
|
3907
|
+
key: string;
|
|
3908
|
+
}[] | undefined;
|
|
3909
|
+
};
|
|
3910
|
+
title: string;
|
|
3911
|
+
description: string;
|
|
3912
|
+
icon?: string | {
|
|
3913
|
+
name: string;
|
|
3914
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3915
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
3916
|
+
} | undefined;
|
|
3917
|
+
} | "copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp")[];
|
|
3918
|
+
display?: "header" | "toc" | undefined;
|
|
3919
|
+
} | undefined;
|
|
3901
3920
|
banner?: {
|
|
3902
3921
|
content: string;
|
|
3903
3922
|
type?: "info" | "warning" | "critical" | undefined;
|
|
@@ -3996,25 +4015,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3996
4015
|
redirect?: boolean | undefined;
|
|
3997
4016
|
};
|
|
3998
4017
|
} | undefined;
|
|
3999
|
-
contextual?: {
|
|
4000
|
-
options: ("copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp" | {
|
|
4001
|
-
href: string | {
|
|
4002
|
-
base: string;
|
|
4003
|
-
query?: {
|
|
4004
|
-
value: string;
|
|
4005
|
-
key: string;
|
|
4006
|
-
}[] | undefined;
|
|
4007
|
-
};
|
|
4008
|
-
title: string;
|
|
4009
|
-
description: string;
|
|
4010
|
-
icon?: string | {
|
|
4011
|
-
name: string;
|
|
4012
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4013
|
-
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
4014
|
-
} | undefined;
|
|
4015
|
-
})[];
|
|
4016
|
-
display?: "header" | "toc" | undefined;
|
|
4017
|
-
} | undefined;
|
|
4018
4018
|
thumbnails?: {
|
|
4019
4019
|
background?: string | undefined;
|
|
4020
4020
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
@@ -4293,6 +4293,25 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4293
4293
|
trailingSlash?: boolean | undefined;
|
|
4294
4294
|
} | undefined;
|
|
4295
4295
|
description?: string | undefined;
|
|
4296
|
+
contextual?: {
|
|
4297
|
+
options: ({
|
|
4298
|
+
href: string | {
|
|
4299
|
+
base: string;
|
|
4300
|
+
query?: {
|
|
4301
|
+
value: string;
|
|
4302
|
+
key: string;
|
|
4303
|
+
}[] | undefined;
|
|
4304
|
+
};
|
|
4305
|
+
title: string;
|
|
4306
|
+
description: string;
|
|
4307
|
+
icon?: string | {
|
|
4308
|
+
name: string;
|
|
4309
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4310
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
4311
|
+
} | undefined;
|
|
4312
|
+
} | "copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp")[];
|
|
4313
|
+
display: "header" | "toc";
|
|
4314
|
+
} | undefined;
|
|
4296
4315
|
banner?: {
|
|
4297
4316
|
content: string;
|
|
4298
4317
|
type?: "info" | "warning" | "critical" | undefined;
|
|
@@ -4391,25 +4410,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4391
4410
|
description?: string | undefined;
|
|
4392
4411
|
};
|
|
4393
4412
|
} | undefined;
|
|
4394
|
-
contextual?: {
|
|
4395
|
-
options: ("copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp" | {
|
|
4396
|
-
href: string | {
|
|
4397
|
-
base: string;
|
|
4398
|
-
query?: {
|
|
4399
|
-
value: string;
|
|
4400
|
-
key: string;
|
|
4401
|
-
}[] | undefined;
|
|
4402
|
-
};
|
|
4403
|
-
title: string;
|
|
4404
|
-
description: string;
|
|
4405
|
-
icon?: string | {
|
|
4406
|
-
name: string;
|
|
4407
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4408
|
-
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
4409
|
-
} | undefined;
|
|
4410
|
-
})[];
|
|
4411
|
-
display: "header" | "toc";
|
|
4412
|
-
} | undefined;
|
|
4413
4413
|
thumbnails?: {
|
|
4414
4414
|
background?: string | undefined;
|
|
4415
4415
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
@@ -4685,6 +4685,25 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4685
4685
|
trailingSlash?: boolean | undefined;
|
|
4686
4686
|
} | undefined;
|
|
4687
4687
|
description?: string | undefined;
|
|
4688
|
+
contextual?: {
|
|
4689
|
+
options: ({
|
|
4690
|
+
href: string | {
|
|
4691
|
+
base: string;
|
|
4692
|
+
query?: {
|
|
4693
|
+
value: string;
|
|
4694
|
+
key: string;
|
|
4695
|
+
}[] | undefined;
|
|
4696
|
+
};
|
|
4697
|
+
title: string;
|
|
4698
|
+
description: string;
|
|
4699
|
+
icon?: string | {
|
|
4700
|
+
name: string;
|
|
4701
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4702
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
4703
|
+
} | undefined;
|
|
4704
|
+
} | "copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp")[];
|
|
4705
|
+
display: "header" | "toc";
|
|
4706
|
+
} | undefined;
|
|
4688
4707
|
banner?: {
|
|
4689
4708
|
content: string;
|
|
4690
4709
|
type?: "info" | "warning" | "critical" | undefined;
|
|
@@ -4773,34 +4792,15 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4773
4792
|
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";
|
|
4774
4793
|
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";
|
|
4775
4794
|
} | undefined;
|
|
4776
|
-
} | undefined;
|
|
4777
|
-
latex?: boolean | undefined;
|
|
4778
|
-
} | undefined;
|
|
4779
|
-
errors?: {
|
|
4780
|
-
'404': {
|
|
4781
|
-
redirect: boolean;
|
|
4782
|
-
title?: string | undefined;
|
|
4783
|
-
description?: string | undefined;
|
|
4784
|
-
};
|
|
4785
|
-
} | undefined;
|
|
4786
|
-
contextual?: {
|
|
4787
|
-
options: ("copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp" | {
|
|
4788
|
-
href: string | {
|
|
4789
|
-
base: string;
|
|
4790
|
-
query?: {
|
|
4791
|
-
value: string;
|
|
4792
|
-
key: string;
|
|
4793
|
-
}[] | undefined;
|
|
4794
|
-
};
|
|
4795
|
-
title: string;
|
|
4796
|
-
description: string;
|
|
4797
|
-
icon?: string | {
|
|
4798
|
-
name: string;
|
|
4799
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4800
|
-
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
4801
|
-
} | undefined;
|
|
4802
|
-
})[];
|
|
4803
|
-
display: "header" | "toc";
|
|
4795
|
+
} | undefined;
|
|
4796
|
+
latex?: boolean | undefined;
|
|
4797
|
+
} | undefined;
|
|
4798
|
+
errors?: {
|
|
4799
|
+
'404': {
|
|
4800
|
+
redirect: boolean;
|
|
4801
|
+
title?: string | undefined;
|
|
4802
|
+
description?: string | undefined;
|
|
4803
|
+
};
|
|
4804
4804
|
} | undefined;
|
|
4805
4805
|
thumbnails?: {
|
|
4806
4806
|
background?: string | undefined;
|
|
@@ -5077,6 +5077,25 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5077
5077
|
trailingSlash?: boolean | undefined;
|
|
5078
5078
|
} | undefined;
|
|
5079
5079
|
description?: string | undefined;
|
|
5080
|
+
contextual?: {
|
|
5081
|
+
options: ({
|
|
5082
|
+
href: string | {
|
|
5083
|
+
base: string;
|
|
5084
|
+
query?: {
|
|
5085
|
+
value: string;
|
|
5086
|
+
key: string;
|
|
5087
|
+
}[] | undefined;
|
|
5088
|
+
};
|
|
5089
|
+
title: string;
|
|
5090
|
+
description: string;
|
|
5091
|
+
icon?: string | {
|
|
5092
|
+
name: string;
|
|
5093
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5094
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
5095
|
+
} | undefined;
|
|
5096
|
+
} | "copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp")[];
|
|
5097
|
+
display: "header" | "toc";
|
|
5098
|
+
} | undefined;
|
|
5080
5099
|
banner?: {
|
|
5081
5100
|
content: string;
|
|
5082
5101
|
type?: "info" | "warning" | "critical" | undefined;
|
|
@@ -5175,25 +5194,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5175
5194
|
description?: string | undefined;
|
|
5176
5195
|
};
|
|
5177
5196
|
} | undefined;
|
|
5178
|
-
contextual?: {
|
|
5179
|
-
options: ("copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp" | {
|
|
5180
|
-
href: string | {
|
|
5181
|
-
base: string;
|
|
5182
|
-
query?: {
|
|
5183
|
-
value: string;
|
|
5184
|
-
key: string;
|
|
5185
|
-
}[] | undefined;
|
|
5186
|
-
};
|
|
5187
|
-
title: string;
|
|
5188
|
-
description: string;
|
|
5189
|
-
icon?: string | {
|
|
5190
|
-
name: string;
|
|
5191
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5192
|
-
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
5193
|
-
} | undefined;
|
|
5194
|
-
})[];
|
|
5195
|
-
display: "header" | "toc";
|
|
5196
|
-
} | undefined;
|
|
5197
5197
|
thumbnails?: {
|
|
5198
5198
|
background?: string | undefined;
|
|
5199
5199
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
@@ -5469,6 +5469,25 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5469
5469
|
trailingSlash?: boolean | undefined;
|
|
5470
5470
|
} | undefined;
|
|
5471
5471
|
description?: string | undefined;
|
|
5472
|
+
contextual?: {
|
|
5473
|
+
options: ({
|
|
5474
|
+
href: string | {
|
|
5475
|
+
base: string;
|
|
5476
|
+
query?: {
|
|
5477
|
+
value: string;
|
|
5478
|
+
key: string;
|
|
5479
|
+
}[] | undefined;
|
|
5480
|
+
};
|
|
5481
|
+
title: string;
|
|
5482
|
+
description: string;
|
|
5483
|
+
icon?: string | {
|
|
5484
|
+
name: string;
|
|
5485
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5486
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
5487
|
+
} | undefined;
|
|
5488
|
+
} | "copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp")[];
|
|
5489
|
+
display: "header" | "toc";
|
|
5490
|
+
} | undefined;
|
|
5472
5491
|
banner?: {
|
|
5473
5492
|
content: string;
|
|
5474
5493
|
type?: "info" | "warning" | "critical" | undefined;
|
|
@@ -5567,25 +5586,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5567
5586
|
description?: string | undefined;
|
|
5568
5587
|
};
|
|
5569
5588
|
} | undefined;
|
|
5570
|
-
contextual?: {
|
|
5571
|
-
options: ("copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp" | {
|
|
5572
|
-
href: string | {
|
|
5573
|
-
base: string;
|
|
5574
|
-
query?: {
|
|
5575
|
-
value: string;
|
|
5576
|
-
key: string;
|
|
5577
|
-
}[] | undefined;
|
|
5578
|
-
};
|
|
5579
|
-
title: string;
|
|
5580
|
-
description: string;
|
|
5581
|
-
icon?: string | {
|
|
5582
|
-
name: string;
|
|
5583
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5584
|
-
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
5585
|
-
} | undefined;
|
|
5586
|
-
})[];
|
|
5587
|
-
display: "header" | "toc";
|
|
5588
|
-
} | undefined;
|
|
5589
5589
|
thumbnails?: {
|
|
5590
5590
|
background?: string | undefined;
|
|
5591
5591
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
@@ -5861,6 +5861,25 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5861
5861
|
trailingSlash?: boolean | undefined;
|
|
5862
5862
|
} | undefined;
|
|
5863
5863
|
description?: string | undefined;
|
|
5864
|
+
contextual?: {
|
|
5865
|
+
options: ({
|
|
5866
|
+
href: string | {
|
|
5867
|
+
base: string;
|
|
5868
|
+
query?: {
|
|
5869
|
+
value: string;
|
|
5870
|
+
key: string;
|
|
5871
|
+
}[] | undefined;
|
|
5872
|
+
};
|
|
5873
|
+
title: string;
|
|
5874
|
+
description: string;
|
|
5875
|
+
icon?: string | {
|
|
5876
|
+
name: string;
|
|
5877
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5878
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
5879
|
+
} | undefined;
|
|
5880
|
+
} | "copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp")[];
|
|
5881
|
+
display: "header" | "toc";
|
|
5882
|
+
} | undefined;
|
|
5864
5883
|
banner?: {
|
|
5865
5884
|
content: string;
|
|
5866
5885
|
type?: "info" | "warning" | "critical" | undefined;
|
|
@@ -5959,25 +5978,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5959
5978
|
description?: string | undefined;
|
|
5960
5979
|
};
|
|
5961
5980
|
} | undefined;
|
|
5962
|
-
contextual?: {
|
|
5963
|
-
options: ("copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp" | {
|
|
5964
|
-
href: string | {
|
|
5965
|
-
base: string;
|
|
5966
|
-
query?: {
|
|
5967
|
-
value: string;
|
|
5968
|
-
key: string;
|
|
5969
|
-
}[] | undefined;
|
|
5970
|
-
};
|
|
5971
|
-
title: string;
|
|
5972
|
-
description: string;
|
|
5973
|
-
icon?: string | {
|
|
5974
|
-
name: string;
|
|
5975
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5976
|
-
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
5977
|
-
} | undefined;
|
|
5978
|
-
})[];
|
|
5979
|
-
display: "header" | "toc";
|
|
5980
|
-
} | undefined;
|
|
5981
5981
|
thumbnails?: {
|
|
5982
5982
|
background?: string | undefined;
|
|
5983
5983
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
@@ -6253,6 +6253,25 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
6253
6253
|
trailingSlash?: boolean | undefined;
|
|
6254
6254
|
} | undefined;
|
|
6255
6255
|
description?: string | undefined;
|
|
6256
|
+
contextual?: {
|
|
6257
|
+
options: ({
|
|
6258
|
+
href: string | {
|
|
6259
|
+
base: string;
|
|
6260
|
+
query?: {
|
|
6261
|
+
value: string;
|
|
6262
|
+
key: string;
|
|
6263
|
+
}[] | undefined;
|
|
6264
|
+
};
|
|
6265
|
+
title: string;
|
|
6266
|
+
description: string;
|
|
6267
|
+
icon?: string | {
|
|
6268
|
+
name: string;
|
|
6269
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6270
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
6271
|
+
} | undefined;
|
|
6272
|
+
} | "copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp")[];
|
|
6273
|
+
display: "header" | "toc";
|
|
6274
|
+
} | undefined;
|
|
6256
6275
|
banner?: {
|
|
6257
6276
|
content: string;
|
|
6258
6277
|
type?: "info" | "warning" | "critical" | undefined;
|
|
@@ -6351,25 +6370,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
6351
6370
|
description?: string | undefined;
|
|
6352
6371
|
};
|
|
6353
6372
|
} | undefined;
|
|
6354
|
-
contextual?: {
|
|
6355
|
-
options: ("copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp" | {
|
|
6356
|
-
href: string | {
|
|
6357
|
-
base: string;
|
|
6358
|
-
query?: {
|
|
6359
|
-
value: string;
|
|
6360
|
-
key: string;
|
|
6361
|
-
}[] | undefined;
|
|
6362
|
-
};
|
|
6363
|
-
title: string;
|
|
6364
|
-
description: string;
|
|
6365
|
-
icon?: string | {
|
|
6366
|
-
name: string;
|
|
6367
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6368
|
-
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
6369
|
-
} | undefined;
|
|
6370
|
-
})[];
|
|
6371
|
-
display: "header" | "toc";
|
|
6372
|
-
} | undefined;
|
|
6373
6373
|
thumbnails?: {
|
|
6374
6374
|
background?: string | undefined;
|
|
6375
6375
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
@@ -6645,6 +6645,25 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
6645
6645
|
trailingSlash?: boolean | undefined;
|
|
6646
6646
|
} | undefined;
|
|
6647
6647
|
description?: string | undefined;
|
|
6648
|
+
contextual?: {
|
|
6649
|
+
options: ({
|
|
6650
|
+
href: string | {
|
|
6651
|
+
base: string;
|
|
6652
|
+
query?: {
|
|
6653
|
+
value: string;
|
|
6654
|
+
key: string;
|
|
6655
|
+
}[] | undefined;
|
|
6656
|
+
};
|
|
6657
|
+
title: string;
|
|
6658
|
+
description: string;
|
|
6659
|
+
icon?: string | {
|
|
6660
|
+
name: string;
|
|
6661
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6662
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
6663
|
+
} | undefined;
|
|
6664
|
+
} | "copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp")[];
|
|
6665
|
+
display: "header" | "toc";
|
|
6666
|
+
} | undefined;
|
|
6648
6667
|
banner?: {
|
|
6649
6668
|
content: string;
|
|
6650
6669
|
type?: "info" | "warning" | "critical" | undefined;
|
|
@@ -6743,25 +6762,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
6743
6762
|
description?: string | undefined;
|
|
6744
6763
|
};
|
|
6745
6764
|
} | undefined;
|
|
6746
|
-
contextual?: {
|
|
6747
|
-
options: ("copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp" | {
|
|
6748
|
-
href: string | {
|
|
6749
|
-
base: string;
|
|
6750
|
-
query?: {
|
|
6751
|
-
value: string;
|
|
6752
|
-
key: string;
|
|
6753
|
-
}[] | undefined;
|
|
6754
|
-
};
|
|
6755
|
-
title: string;
|
|
6756
|
-
description: string;
|
|
6757
|
-
icon?: string | {
|
|
6758
|
-
name: string;
|
|
6759
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6760
|
-
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
6761
|
-
} | undefined;
|
|
6762
|
-
})[];
|
|
6763
|
-
display: "header" | "toc";
|
|
6764
|
-
} | undefined;
|
|
6765
6765
|
thumbnails?: {
|
|
6766
6766
|
background?: string | undefined;
|
|
6767
6767
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
@@ -7037,6 +7037,25 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
7037
7037
|
trailingSlash?: boolean | undefined;
|
|
7038
7038
|
} | undefined;
|
|
7039
7039
|
description?: string | undefined;
|
|
7040
|
+
contextual?: {
|
|
7041
|
+
options: ({
|
|
7042
|
+
href: string | {
|
|
7043
|
+
base: string;
|
|
7044
|
+
query?: {
|
|
7045
|
+
value: string;
|
|
7046
|
+
key: string;
|
|
7047
|
+
}[] | undefined;
|
|
7048
|
+
};
|
|
7049
|
+
title: string;
|
|
7050
|
+
description: string;
|
|
7051
|
+
icon?: string | {
|
|
7052
|
+
name: string;
|
|
7053
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7054
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
7055
|
+
} | undefined;
|
|
7056
|
+
} | "copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp")[];
|
|
7057
|
+
display: "header" | "toc";
|
|
7058
|
+
} | undefined;
|
|
7040
7059
|
banner?: {
|
|
7041
7060
|
content: string;
|
|
7042
7061
|
type?: "info" | "warning" | "critical" | undefined;
|
|
@@ -7135,25 +7154,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
7135
7154
|
description?: string | undefined;
|
|
7136
7155
|
};
|
|
7137
7156
|
} | undefined;
|
|
7138
|
-
contextual?: {
|
|
7139
|
-
options: ("copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp" | {
|
|
7140
|
-
href: string | {
|
|
7141
|
-
base: string;
|
|
7142
|
-
query?: {
|
|
7143
|
-
value: string;
|
|
7144
|
-
key: string;
|
|
7145
|
-
}[] | undefined;
|
|
7146
|
-
};
|
|
7147
|
-
title: string;
|
|
7148
|
-
description: string;
|
|
7149
|
-
icon?: string | {
|
|
7150
|
-
name: string;
|
|
7151
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7152
|
-
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
7153
|
-
} | undefined;
|
|
7154
|
-
})[];
|
|
7155
|
-
display: "header" | "toc";
|
|
7156
|
-
} | undefined;
|
|
7157
7157
|
thumbnails?: {
|
|
7158
7158
|
background?: string | undefined;
|
|
7159
7159
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
@@ -7429,6 +7429,25 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
7429
7429
|
trailingSlash?: boolean | undefined;
|
|
7430
7430
|
} | undefined;
|
|
7431
7431
|
description?: string | undefined;
|
|
7432
|
+
contextual?: {
|
|
7433
|
+
options: ({
|
|
7434
|
+
href: string | {
|
|
7435
|
+
base: string;
|
|
7436
|
+
query?: {
|
|
7437
|
+
value: string;
|
|
7438
|
+
key: string;
|
|
7439
|
+
}[] | undefined;
|
|
7440
|
+
};
|
|
7441
|
+
title: string;
|
|
7442
|
+
description: string;
|
|
7443
|
+
icon?: string | {
|
|
7444
|
+
name: string;
|
|
7445
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7446
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
7447
|
+
} | undefined;
|
|
7448
|
+
} | "copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp")[];
|
|
7449
|
+
display: "header" | "toc";
|
|
7450
|
+
} | undefined;
|
|
7432
7451
|
banner?: {
|
|
7433
7452
|
content: string;
|
|
7434
7453
|
type?: "info" | "warning" | "critical" | undefined;
|
|
@@ -7527,25 +7546,6 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
7527
7546
|
description?: string | undefined;
|
|
7528
7547
|
};
|
|
7529
7548
|
} | undefined;
|
|
7530
|
-
contextual?: {
|
|
7531
|
-
options: ("copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp" | {
|
|
7532
|
-
href: string | {
|
|
7533
|
-
base: string;
|
|
7534
|
-
query?: {
|
|
7535
|
-
value: string;
|
|
7536
|
-
key: string;
|
|
7537
|
-
}[] | undefined;
|
|
7538
|
-
};
|
|
7539
|
-
title: string;
|
|
7540
|
-
description: string;
|
|
7541
|
-
icon?: string | {
|
|
7542
|
-
name: string;
|
|
7543
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7544
|
-
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
7545
|
-
} | undefined;
|
|
7546
|
-
})[];
|
|
7547
|
-
display: "header" | "toc";
|
|
7548
|
-
} | undefined;
|
|
7549
7549
|
thumbnails?: {
|
|
7550
7550
|
background?: string | undefined;
|
|
7551
7551
|
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|