@mintlify/validation 0.1.530 → 0.1.532
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/chat-config/index.d.ts +67 -67
- package/dist/mint-config/schemas/v1/apiReference.d.ts +4 -4
- package/dist/mint-config/schemas/v1/config.d.ts +81 -81
- package/dist/mint-config/schemas/v1/font.d.ts +20 -20
- package/dist/mint-config/schemas/v1/footer.d.ts +5 -5
- package/dist/mint-config/schemas/v1/navigation.d.ts +2 -2
- package/dist/mint-config/schemas/v1/tabs.d.ts +2 -2
- package/dist/mint-config/schemas/v2/index.d.ts +2978 -4567
- package/dist/mint-config/schemas/v2/properties/api.d.ts +28 -28
- package/dist/mint-config/schemas/v2/properties/appearance.d.ts +2 -2
- package/dist/mint-config/schemas/v2/properties/background.d.ts +5 -5
- package/dist/mint-config/schemas/v2/properties/contextual.d.ts +16 -64
- package/dist/mint-config/schemas/v2/properties/errors.d.ts +2 -2
- package/dist/mint-config/schemas/v2/properties/feedback.d.ts +2 -2
- package/dist/mint-config/schemas/v2/properties/fonts/index.d.ts +24 -24
- package/dist/mint-config/schemas/v2/properties/footer.d.ts +2 -2
- package/dist/mint-config/schemas/v2/properties/integrations.d.ts +22 -22
- package/dist/mint-config/schemas/v2/properties/navbar.d.ts +9 -9
- package/dist/mint-config/schemas/v2/properties/navigation/anchors.d.ts +4 -3
- package/dist/mint-config/schemas/v2/properties/navigation/dropdown.d.ts +4 -3
- package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +186 -204
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +157 -170
- package/dist/mint-config/schemas/v2/properties/navigation/languages.d.ts +4 -3
- package/dist/mint-config/schemas/v2/properties/navigation/menu.d.ts +4 -3
- package/dist/mint-config/schemas/v2/properties/navigation/products.d.ts +4 -3
- package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +4 -3
- package/dist/mint-config/schemas/v2/properties/navigation/version.d.ts +3 -2
- package/dist/mint-config/schemas/v2/properties/reusable/page.d.ts +26 -26
- package/dist/mint-config/schemas/v2/properties/styling.d.ts +10 -10
- package/dist/mint-config/schemas/v2/properties/thumbnails.d.ts +2 -2
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +421 -648
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +421 -648
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +421 -648
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +421 -648
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +421 -648
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +421 -648
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +181 -230
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +421 -648
- package/dist/mint-config/validateConfig.d.ts +1753 -2997
- 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/dist/types/deployment/index.d.ts +2 -1
- package/dist/types/deployment/trieve.d.ts +4 -4
- package/dist/types/deployment/trieve.js +1 -0
- package/package.json +3 -3
|
@@ -14,12 +14,13 @@ export declare const baseLanguageSchema: z.ZodObject<{
|
|
|
14
14
|
hidden?: boolean | undefined;
|
|
15
15
|
}>;
|
|
16
16
|
export type BaseLanguageSchema = z.infer<typeof baseLanguageSchema>;
|
|
17
|
-
export declare const nonRecursiveLanguageSchema: z.ZodObject<{
|
|
17
|
+
export declare const nonRecursiveLanguageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
18
|
+
language: z.ZodEnum<["en", "cn", "zh", "zh-Hans", "zh-Hant", "es", "fr", "fr-CA", "fr-ca", "ja", "jp", "ja-jp", "pt", "pt-BR", "de", "ko", "it", "ru", "ro", "cs", "id", "ar", "tr", "hi", "sv", "no", "lv", "nl", "uk", "vi"]>;
|
|
18
19
|
default: z.ZodOptional<z.ZodBoolean>;
|
|
19
20
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
20
|
-
|
|
21
|
+
}, {
|
|
21
22
|
href: z.ZodString;
|
|
22
|
-
}
|
|
23
|
+
}>, "strip", z.ZodTypeAny, {
|
|
23
24
|
href: string;
|
|
24
25
|
language: "id" | "en" | "cn" | "zh" | "zh-Hans" | "zh-Hant" | "es" | "fr" | "fr-CA" | "fr-ca" | "ja" | "jp" | "ja-jp" | "pt" | "pt-BR" | "de" | "ko" | "it" | "ru" | "ro" | "cs" | "ar" | "tr" | "hi" | "sv" | "no" | "lv" | "nl" | "uk" | "vi";
|
|
25
26
|
default?: boolean | undefined;
|
|
@@ -37,7 +37,8 @@ export declare const baseMenuItemSchema: z.ZodObject<{
|
|
|
37
37
|
hidden?: boolean | undefined;
|
|
38
38
|
}>;
|
|
39
39
|
export type BaseMenuItemSchema = z.infer<typeof baseMenuItemSchema>;
|
|
40
|
-
export declare const nonRecursiveMenuItemSchema: z.ZodObject<{
|
|
40
|
+
export declare const nonRecursiveMenuItemSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
41
|
+
item: z.ZodString;
|
|
41
42
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
42
43
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
43
44
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -53,9 +54,9 @@ export declare const nonRecursiveMenuItemSchema: z.ZodObject<{
|
|
|
53
54
|
}>]>>;
|
|
54
55
|
description: z.ZodOptional<z.ZodString>;
|
|
55
56
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
56
|
-
|
|
57
|
+
}, {
|
|
57
58
|
href: z.ZodString;
|
|
58
|
-
}
|
|
59
|
+
}>, "strip", z.ZodTypeAny, {
|
|
59
60
|
href: string;
|
|
60
61
|
item: string;
|
|
61
62
|
icon?: string | {
|
|
@@ -62,7 +62,8 @@ export declare const decoratedProductSchema: z.ZodType<ProductNavigation<'decora
|
|
|
62
62
|
export declare const productsSchema: z.ZodArray<z.ZodType<ProductNavigation<"default">, z.ZodTypeDef, ProductNavigation<"default">>, "many">;
|
|
63
63
|
export declare const decoratedProductsSchema: z.ZodArray<z.ZodType<ProductNavigation<"decorated">, z.ZodTypeDef, ProductNavigation<"decorated">>, "many">;
|
|
64
64
|
export type BaseProductSchema = z.infer<typeof baseProductSchema>;
|
|
65
|
-
export declare const nonRecursiveProductSchema: z.ZodObject<{
|
|
65
|
+
export declare const nonRecursiveProductSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
66
|
+
product: z.ZodString;
|
|
66
67
|
name: z.ZodOptional<z.ZodString>;
|
|
67
68
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
68
69
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
@@ -89,9 +90,9 @@ export declare const nonRecursiveProductSchema: z.ZodObject<{
|
|
|
89
90
|
}>>;
|
|
90
91
|
description: z.ZodOptional<z.ZodString>;
|
|
91
92
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
92
|
-
|
|
93
|
+
}, {
|
|
93
94
|
href: z.ZodString;
|
|
94
|
-
}
|
|
95
|
+
}>, "strip", z.ZodTypeAny, {
|
|
95
96
|
href: string;
|
|
96
97
|
product: string;
|
|
97
98
|
name?: string | undefined;
|
|
@@ -34,7 +34,8 @@ export declare const baseTabSchema: z.ZodObject<{
|
|
|
34
34
|
hidden?: boolean | undefined;
|
|
35
35
|
}>;
|
|
36
36
|
export type BaseTabSchema = z.infer<typeof baseTabSchema>;
|
|
37
|
-
export declare const nonRecursiveTabSchema: z.ZodObject<{
|
|
37
|
+
export declare const nonRecursiveTabSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
38
|
+
tab: z.ZodString;
|
|
38
39
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
39
40
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
40
41
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -49,9 +50,9 @@ export declare const nonRecursiveTabSchema: z.ZodObject<{
|
|
|
49
50
|
library?: "fontawesome" | "lucide" | undefined;
|
|
50
51
|
}>]>>;
|
|
51
52
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
52
|
-
|
|
53
|
+
}, {
|
|
53
54
|
href: z.ZodString;
|
|
54
|
-
}
|
|
55
|
+
}>, "strip", z.ZodTypeAny, {
|
|
55
56
|
href: string;
|
|
56
57
|
tab: string;
|
|
57
58
|
icon?: string | {
|
|
@@ -14,12 +14,13 @@ export declare const baseVersionSchema: z.ZodObject<{
|
|
|
14
14
|
hidden?: boolean | undefined;
|
|
15
15
|
}>;
|
|
16
16
|
export type BaseVersionSchema = z.infer<typeof baseVersionSchema>;
|
|
17
|
-
export declare const nonRecursiveVersionSchema: z.ZodObject<{
|
|
17
|
+
export declare const nonRecursiveVersionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
18
18
|
version: z.ZodString;
|
|
19
19
|
default: z.ZodOptional<z.ZodBoolean>;
|
|
20
20
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
21
|
+
}, {
|
|
21
22
|
href: z.ZodString;
|
|
22
|
-
}
|
|
23
|
+
}>, "strip", z.ZodTypeAny, {
|
|
23
24
|
version: string;
|
|
24
25
|
href: string;
|
|
25
26
|
default?: boolean | undefined;
|
|
@@ -41,62 +41,62 @@ export declare const decoratedPageSchema: z.ZodObject<{
|
|
|
41
41
|
}, "strip", z.ZodTypeAny, {
|
|
42
42
|
href: string;
|
|
43
43
|
title: string;
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
44
|
+
url?: string | undefined;
|
|
45
|
+
icon?: string | {
|
|
46
|
+
name: string;
|
|
47
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
48
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
49
|
+
} | undefined;
|
|
50
|
+
version?: string | undefined;
|
|
47
51
|
openapi?: string | undefined;
|
|
52
|
+
auth?: string | undefined;
|
|
53
|
+
mode?: string | undefined;
|
|
54
|
+
public?: boolean | undefined;
|
|
55
|
+
api?: string | undefined;
|
|
48
56
|
asyncapi?: string | undefined;
|
|
57
|
+
description?: string | undefined;
|
|
58
|
+
sidebarTitle?: string | undefined;
|
|
49
59
|
contentType?: string | undefined;
|
|
50
60
|
authMethod?: string | undefined;
|
|
51
|
-
auth?: string | undefined;
|
|
52
|
-
version?: string | undefined;
|
|
53
|
-
mode?: string | undefined;
|
|
54
61
|
hideFooterPagination?: boolean | undefined;
|
|
55
62
|
authors?: unknown;
|
|
56
63
|
lastUpdatedDate?: string | undefined;
|
|
57
64
|
createdDate?: string | undefined;
|
|
58
65
|
'openapi-schema'?: string | undefined;
|
|
59
|
-
icon?: string | {
|
|
60
|
-
name: string;
|
|
61
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
62
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
63
|
-
} | undefined;
|
|
64
66
|
tag?: string | undefined;
|
|
65
|
-
url?: string | undefined;
|
|
66
67
|
hideApiMarker?: boolean | undefined;
|
|
67
68
|
noindex?: boolean | undefined;
|
|
68
69
|
isPublic?: boolean | undefined;
|
|
69
|
-
public?: boolean | undefined;
|
|
70
70
|
deprecated?: boolean | undefined;
|
|
71
71
|
}, {
|
|
72
72
|
href: string;
|
|
73
73
|
title: string;
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
74
|
+
url?: string | undefined;
|
|
75
|
+
icon?: string | {
|
|
76
|
+
name: string;
|
|
77
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
78
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
79
|
+
} | undefined;
|
|
80
|
+
version?: string | undefined;
|
|
77
81
|
openapi?: string | undefined;
|
|
82
|
+
auth?: string | undefined;
|
|
83
|
+
mode?: string | undefined;
|
|
84
|
+
public?: boolean | undefined;
|
|
85
|
+
api?: string | undefined;
|
|
78
86
|
asyncapi?: string | undefined;
|
|
87
|
+
description?: string | undefined;
|
|
88
|
+
sidebarTitle?: string | undefined;
|
|
79
89
|
contentType?: string | undefined;
|
|
80
90
|
authMethod?: string | undefined;
|
|
81
|
-
auth?: string | undefined;
|
|
82
|
-
version?: string | undefined;
|
|
83
|
-
mode?: string | undefined;
|
|
84
91
|
hideFooterPagination?: boolean | undefined;
|
|
85
92
|
authors?: unknown;
|
|
86
93
|
lastUpdatedDate?: string | undefined;
|
|
87
94
|
createdDate?: string | undefined;
|
|
88
95
|
'openapi-schema'?: string | undefined;
|
|
89
|
-
icon?: string | {
|
|
90
|
-
name: string;
|
|
91
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
92
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
93
|
-
} | undefined;
|
|
94
96
|
tag?: string | undefined;
|
|
95
|
-
url?: string | undefined;
|
|
96
97
|
hideApiMarker?: boolean | undefined;
|
|
97
98
|
noindex?: boolean | undefined;
|
|
98
99
|
isPublic?: boolean | undefined;
|
|
99
|
-
public?: boolean | undefined;
|
|
100
100
|
deprecated?: boolean | undefined;
|
|
101
101
|
}>;
|
|
102
102
|
export type DecoratedPageConfig = z.infer<typeof decoratedPageSchema>;
|
|
@@ -20,45 +20,45 @@ export declare const stylingSchema: z.ZodObject<{
|
|
|
20
20
|
custom?: string[] | undefined;
|
|
21
21
|
}>>;
|
|
22
22
|
}, "strip", z.ZodTypeAny, {
|
|
23
|
+
languages?: {
|
|
24
|
+
custom?: string[] | undefined;
|
|
25
|
+
} | undefined;
|
|
23
26
|
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" | {
|
|
24
27
|
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";
|
|
25
28
|
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";
|
|
26
29
|
} | undefined;
|
|
30
|
+
}, {
|
|
27
31
|
languages?: {
|
|
28
32
|
custom?: string[] | undefined;
|
|
29
33
|
} | undefined;
|
|
30
|
-
}, {
|
|
31
34
|
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" | {
|
|
32
35
|
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";
|
|
33
36
|
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";
|
|
34
37
|
} | undefined;
|
|
35
|
-
languages?: {
|
|
36
|
-
custom?: string[] | undefined;
|
|
37
|
-
} | undefined;
|
|
38
38
|
}>]>;
|
|
39
39
|
latex: z.ZodOptional<z.ZodBoolean>;
|
|
40
40
|
}, "strip", z.ZodTypeAny, {
|
|
41
41
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
42
42
|
codeblocks?: "dark" | "system" | {
|
|
43
|
+
languages?: {
|
|
44
|
+
custom?: string[] | undefined;
|
|
45
|
+
} | undefined;
|
|
43
46
|
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" | {
|
|
44
47
|
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";
|
|
45
48
|
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";
|
|
46
49
|
} | undefined;
|
|
47
|
-
languages?: {
|
|
48
|
-
custom?: string[] | undefined;
|
|
49
|
-
} | undefined;
|
|
50
50
|
} | undefined;
|
|
51
51
|
latex?: boolean | undefined;
|
|
52
52
|
}, {
|
|
53
53
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
54
54
|
codeblocks?: "dark" | "system" | {
|
|
55
|
+
languages?: {
|
|
56
|
+
custom?: string[] | undefined;
|
|
57
|
+
} | undefined;
|
|
55
58
|
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" | {
|
|
56
59
|
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";
|
|
57
60
|
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";
|
|
58
61
|
} | undefined;
|
|
59
|
-
languages?: {
|
|
60
|
-
custom?: string[] | undefined;
|
|
61
|
-
} | undefined;
|
|
62
62
|
} | undefined;
|
|
63
63
|
latex?: boolean | undefined;
|
|
64
64
|
}>;
|
|
@@ -14,14 +14,14 @@ export declare const thumbnailsSchema: z.ZodObject<{
|
|
|
14
14
|
family: string;
|
|
15
15
|
}>>;
|
|
16
16
|
}, "strip", z.ZodTypeAny, {
|
|
17
|
-
appearance?: ThumbnailAppearance | undefined;
|
|
18
17
|
background?: string | undefined;
|
|
18
|
+
appearance?: ThumbnailAppearance | undefined;
|
|
19
19
|
fonts?: {
|
|
20
20
|
family: string;
|
|
21
21
|
} | undefined;
|
|
22
22
|
}, {
|
|
23
|
-
appearance?: ThumbnailAppearance | undefined;
|
|
24
23
|
background?: string | undefined;
|
|
24
|
+
appearance?: ThumbnailAppearance | undefined;
|
|
25
25
|
fonts?: {
|
|
26
26
|
family: string;
|
|
27
27
|
} | undefined;
|