@mintlify/validation 0.1.603 → 0.1.604
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 +2198 -3
- package/dist/mint-config/schemas/v2/index.js +2 -0
- package/dist/mint-config/schemas/v2/themes/luma.d.ts +2197 -0
- package/dist/mint-config/schemas/v2/themes/luma.js +4 -0
- package/dist/mint-config/schemas/v2/themes/themes.d.ts +2 -2
- package/dist/mint-config/schemas/v2/themes/themes.js +1 -0
- package/dist/mint-config/validateConfig.d.ts +859 -163
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -16865,6 +16865,2201 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16865
16865
|
timestamp?: boolean | undefined;
|
|
16866
16866
|
}>>>;
|
|
16867
16867
|
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
16868
|
+
theme: z.ZodLiteral<"luma">;
|
|
16869
|
+
}, "strip", z.ZodTypeAny, {
|
|
16870
|
+
name: string;
|
|
16871
|
+
$schema: string;
|
|
16872
|
+
theme: "luma";
|
|
16873
|
+
colors: {
|
|
16874
|
+
primary: string;
|
|
16875
|
+
light?: string | undefined;
|
|
16876
|
+
dark?: string | undefined;
|
|
16877
|
+
};
|
|
16878
|
+
navigation: {
|
|
16879
|
+
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
16880
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
16881
|
+
} | {
|
|
16882
|
+
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
16883
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
16884
|
+
} | {
|
|
16885
|
+
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
16886
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
16887
|
+
} | {
|
|
16888
|
+
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
16889
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
16890
|
+
} | {
|
|
16891
|
+
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
16892
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
16893
|
+
} | {
|
|
16894
|
+
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
16895
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
16896
|
+
} | {
|
|
16897
|
+
groups: ({
|
|
16898
|
+
group: string;
|
|
16899
|
+
icon?: string | {
|
|
16900
|
+
name: string;
|
|
16901
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
16902
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
16903
|
+
} | undefined;
|
|
16904
|
+
expanded?: boolean | undefined;
|
|
16905
|
+
public?: boolean | undefined;
|
|
16906
|
+
tag?: string | undefined;
|
|
16907
|
+
hidden?: boolean | undefined;
|
|
16908
|
+
root?: string | undefined;
|
|
16909
|
+
} & {
|
|
16910
|
+
openapi?: string | string[] | {
|
|
16911
|
+
source: string;
|
|
16912
|
+
directory?: string | undefined;
|
|
16913
|
+
} | undefined;
|
|
16914
|
+
asyncapi?: string | string[] | {
|
|
16915
|
+
source: string;
|
|
16916
|
+
directory?: string | undefined;
|
|
16917
|
+
} | undefined;
|
|
16918
|
+
} & {
|
|
16919
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
16920
|
+
})[];
|
|
16921
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
16922
|
+
} | {
|
|
16923
|
+
pages: (string | ({
|
|
16924
|
+
group: string;
|
|
16925
|
+
icon?: string | {
|
|
16926
|
+
name: string;
|
|
16927
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
16928
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
16929
|
+
} | undefined;
|
|
16930
|
+
expanded?: boolean | undefined;
|
|
16931
|
+
public?: boolean | undefined;
|
|
16932
|
+
tag?: string | undefined;
|
|
16933
|
+
hidden?: boolean | undefined;
|
|
16934
|
+
root?: string | undefined;
|
|
16935
|
+
} & {
|
|
16936
|
+
openapi?: string | string[] | {
|
|
16937
|
+
source: string;
|
|
16938
|
+
directory?: string | undefined;
|
|
16939
|
+
} | undefined;
|
|
16940
|
+
asyncapi?: string | string[] | {
|
|
16941
|
+
source: string;
|
|
16942
|
+
directory?: string | undefined;
|
|
16943
|
+
} | undefined;
|
|
16944
|
+
} & {
|
|
16945
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
16946
|
+
}))[];
|
|
16947
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
16948
|
+
};
|
|
16949
|
+
background?: {
|
|
16950
|
+
color?: {
|
|
16951
|
+
light?: string | undefined;
|
|
16952
|
+
dark?: string | undefined;
|
|
16953
|
+
} | undefined;
|
|
16954
|
+
image?: string | {
|
|
16955
|
+
light: string;
|
|
16956
|
+
dark: string;
|
|
16957
|
+
} | undefined;
|
|
16958
|
+
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
16959
|
+
} | undefined;
|
|
16960
|
+
public?: boolean | undefined;
|
|
16961
|
+
logo?: string | {
|
|
16962
|
+
light: string;
|
|
16963
|
+
dark: string;
|
|
16964
|
+
href?: string | undefined;
|
|
16965
|
+
} | undefined;
|
|
16966
|
+
favicon?: string | {
|
|
16967
|
+
light: string;
|
|
16968
|
+
dark: string;
|
|
16969
|
+
} | undefined;
|
|
16970
|
+
api?: {
|
|
16971
|
+
params?: {
|
|
16972
|
+
expanded?: "all" | "closed" | undefined;
|
|
16973
|
+
} | undefined;
|
|
16974
|
+
openapi?: string | string[] | {
|
|
16975
|
+
source: string;
|
|
16976
|
+
directory?: string | undefined;
|
|
16977
|
+
} | undefined;
|
|
16978
|
+
playground?: {
|
|
16979
|
+
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
16980
|
+
proxy?: boolean | undefined;
|
|
16981
|
+
} | undefined;
|
|
16982
|
+
asyncapi?: string | string[] | {
|
|
16983
|
+
source: string;
|
|
16984
|
+
directory?: string | undefined;
|
|
16985
|
+
} | undefined;
|
|
16986
|
+
examples?: {
|
|
16987
|
+
languages?: string[] | undefined;
|
|
16988
|
+
defaults?: "all" | "required" | undefined;
|
|
16989
|
+
prefill?: boolean | undefined;
|
|
16990
|
+
autogenerate?: boolean | undefined;
|
|
16991
|
+
} | undefined;
|
|
16992
|
+
mdx?: {
|
|
16993
|
+
server?: string | string[] | undefined;
|
|
16994
|
+
auth?: {
|
|
16995
|
+
name?: string | undefined;
|
|
16996
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
16997
|
+
} | undefined;
|
|
16998
|
+
} | undefined;
|
|
16999
|
+
} | undefined;
|
|
17000
|
+
metadata?: {
|
|
17001
|
+
timestamp: boolean;
|
|
17002
|
+
} | undefined;
|
|
17003
|
+
footer?: {
|
|
17004
|
+
links?: {
|
|
17005
|
+
items: {
|
|
17006
|
+
href: string;
|
|
17007
|
+
label: string;
|
|
17008
|
+
}[];
|
|
17009
|
+
header?: string | undefined;
|
|
17010
|
+
}[] | undefined;
|
|
17011
|
+
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;
|
|
17012
|
+
} | undefined;
|
|
17013
|
+
integrations?: {
|
|
17014
|
+
amplitude?: {
|
|
17015
|
+
apiKey: string;
|
|
17016
|
+
} | undefined;
|
|
17017
|
+
clarity?: {
|
|
17018
|
+
projectId: string;
|
|
17019
|
+
} | undefined;
|
|
17020
|
+
clearbit?: {
|
|
17021
|
+
publicApiKey: string;
|
|
17022
|
+
} | undefined;
|
|
17023
|
+
fathom?: {
|
|
17024
|
+
siteId: string;
|
|
17025
|
+
} | undefined;
|
|
17026
|
+
ga4?: {
|
|
17027
|
+
measurementId: string;
|
|
17028
|
+
} | undefined;
|
|
17029
|
+
gtm?: {
|
|
17030
|
+
tagId: string;
|
|
17031
|
+
} | undefined;
|
|
17032
|
+
heap?: {
|
|
17033
|
+
appId: string;
|
|
17034
|
+
} | undefined;
|
|
17035
|
+
hightouch?: {
|
|
17036
|
+
writeKey: string;
|
|
17037
|
+
apiHost?: string | undefined;
|
|
17038
|
+
} | undefined;
|
|
17039
|
+
hotjar?: {
|
|
17040
|
+
hjid: string;
|
|
17041
|
+
hjsv: string;
|
|
17042
|
+
} | undefined;
|
|
17043
|
+
koala?: {
|
|
17044
|
+
publicApiKey: string;
|
|
17045
|
+
} | undefined;
|
|
17046
|
+
logrocket?: {
|
|
17047
|
+
appId: string;
|
|
17048
|
+
} | undefined;
|
|
17049
|
+
mixpanel?: {
|
|
17050
|
+
projectToken: string;
|
|
17051
|
+
} | undefined;
|
|
17052
|
+
pirsch?: {
|
|
17053
|
+
id: string;
|
|
17054
|
+
} | undefined;
|
|
17055
|
+
posthog?: {
|
|
17056
|
+
apiKey: string;
|
|
17057
|
+
apiHost?: string | undefined;
|
|
17058
|
+
sessionRecording?: boolean | undefined;
|
|
17059
|
+
} | undefined;
|
|
17060
|
+
plausible?: {
|
|
17061
|
+
domain: string;
|
|
17062
|
+
server?: string | undefined;
|
|
17063
|
+
} | undefined;
|
|
17064
|
+
segment?: {
|
|
17065
|
+
key: string;
|
|
17066
|
+
} | undefined;
|
|
17067
|
+
intercom?: {
|
|
17068
|
+
appId: string;
|
|
17069
|
+
} | undefined;
|
|
17070
|
+
frontchat?: {
|
|
17071
|
+
snippetId: string;
|
|
17072
|
+
} | undefined;
|
|
17073
|
+
telemetry?: {
|
|
17074
|
+
enabled?: boolean | undefined;
|
|
17075
|
+
} | undefined;
|
|
17076
|
+
cookies?: {
|
|
17077
|
+
value?: string | undefined;
|
|
17078
|
+
key?: string | undefined;
|
|
17079
|
+
} | undefined;
|
|
17080
|
+
} | undefined;
|
|
17081
|
+
search?: {
|
|
17082
|
+
prompt?: string | undefined;
|
|
17083
|
+
} | undefined;
|
|
17084
|
+
redirects?: {
|
|
17085
|
+
source: string;
|
|
17086
|
+
destination: string;
|
|
17087
|
+
permanent?: boolean | undefined;
|
|
17088
|
+
}[] | undefined;
|
|
17089
|
+
seo?: {
|
|
17090
|
+
metatags?: Record<string, string> | undefined;
|
|
17091
|
+
indexing?: "all" | "navigable" | undefined;
|
|
17092
|
+
} | undefined;
|
|
17093
|
+
description?: string | undefined;
|
|
17094
|
+
banner?: {
|
|
17095
|
+
content: string;
|
|
17096
|
+
dismissible?: boolean | undefined;
|
|
17097
|
+
} | undefined;
|
|
17098
|
+
appearance?: {
|
|
17099
|
+
strict?: boolean | undefined;
|
|
17100
|
+
default?: "light" | "dark" | "system" | undefined;
|
|
17101
|
+
} | undefined;
|
|
17102
|
+
fonts?: {
|
|
17103
|
+
family: string;
|
|
17104
|
+
source?: string | undefined;
|
|
17105
|
+
weight?: number | undefined;
|
|
17106
|
+
format?: "woff" | "woff2" | undefined;
|
|
17107
|
+
} | {
|
|
17108
|
+
body?: {
|
|
17109
|
+
family: string;
|
|
17110
|
+
source?: string | undefined;
|
|
17111
|
+
weight?: number | undefined;
|
|
17112
|
+
format?: "woff" | "woff2" | undefined;
|
|
17113
|
+
} | undefined;
|
|
17114
|
+
heading?: {
|
|
17115
|
+
family: string;
|
|
17116
|
+
source?: string | undefined;
|
|
17117
|
+
weight?: number | undefined;
|
|
17118
|
+
format?: "woff" | "woff2" | undefined;
|
|
17119
|
+
} | undefined;
|
|
17120
|
+
} | undefined;
|
|
17121
|
+
navbar?: {
|
|
17122
|
+
primary?: {
|
|
17123
|
+
type: "button";
|
|
17124
|
+
href: string;
|
|
17125
|
+
label: string;
|
|
17126
|
+
} | {
|
|
17127
|
+
type: "github";
|
|
17128
|
+
href: string;
|
|
17129
|
+
label?: string | undefined;
|
|
17130
|
+
} | {
|
|
17131
|
+
type: "discord";
|
|
17132
|
+
href: string;
|
|
17133
|
+
label?: string | undefined;
|
|
17134
|
+
} | undefined;
|
|
17135
|
+
links?: ({
|
|
17136
|
+
href: string;
|
|
17137
|
+
label: string;
|
|
17138
|
+
type?: string | undefined;
|
|
17139
|
+
icon?: string | {
|
|
17140
|
+
name: string;
|
|
17141
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17142
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17143
|
+
} | undefined;
|
|
17144
|
+
} | {
|
|
17145
|
+
type: "github";
|
|
17146
|
+
href: string;
|
|
17147
|
+
icon?: string | {
|
|
17148
|
+
name: string;
|
|
17149
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17150
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17151
|
+
} | undefined;
|
|
17152
|
+
label?: string | undefined;
|
|
17153
|
+
} | {
|
|
17154
|
+
type: "discord";
|
|
17155
|
+
href: string;
|
|
17156
|
+
icon?: string | {
|
|
17157
|
+
name: string;
|
|
17158
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17159
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17160
|
+
} | undefined;
|
|
17161
|
+
label?: string | undefined;
|
|
17162
|
+
})[] | undefined;
|
|
17163
|
+
} | undefined;
|
|
17164
|
+
icons?: {
|
|
17165
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
17166
|
+
} | undefined;
|
|
17167
|
+
styling?: {
|
|
17168
|
+
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
17169
|
+
codeblocks?: "dark" | "system" | {
|
|
17170
|
+
languages?: {
|
|
17171
|
+
custom?: string[] | undefined;
|
|
17172
|
+
} | undefined;
|
|
17173
|
+
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" | {
|
|
17174
|
+
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";
|
|
17175
|
+
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";
|
|
17176
|
+
} | undefined;
|
|
17177
|
+
} | undefined;
|
|
17178
|
+
latex?: boolean | undefined;
|
|
17179
|
+
} | undefined;
|
|
17180
|
+
errors?: {
|
|
17181
|
+
'404': {
|
|
17182
|
+
redirect: boolean;
|
|
17183
|
+
title?: string | undefined;
|
|
17184
|
+
description?: string | undefined;
|
|
17185
|
+
};
|
|
17186
|
+
} | undefined;
|
|
17187
|
+
contextual?: {
|
|
17188
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
17189
|
+
href: string | {
|
|
17190
|
+
base: string;
|
|
17191
|
+
query?: {
|
|
17192
|
+
value: string;
|
|
17193
|
+
key: string;
|
|
17194
|
+
}[] | undefined;
|
|
17195
|
+
};
|
|
17196
|
+
title: string;
|
|
17197
|
+
description: string;
|
|
17198
|
+
icon?: string | {
|
|
17199
|
+
name: string;
|
|
17200
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17201
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17202
|
+
} | undefined;
|
|
17203
|
+
})[];
|
|
17204
|
+
display: "header" | "toc";
|
|
17205
|
+
} | undefined;
|
|
17206
|
+
thumbnails?: {
|
|
17207
|
+
background?: string | undefined;
|
|
17208
|
+
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
17209
|
+
fonts?: {
|
|
17210
|
+
family: string;
|
|
17211
|
+
} | undefined;
|
|
17212
|
+
} | undefined;
|
|
17213
|
+
interaction?: {
|
|
17214
|
+
drilldown?: boolean | undefined;
|
|
17215
|
+
} | undefined;
|
|
17216
|
+
variables?: Record<string, string> | undefined;
|
|
17217
|
+
}, {
|
|
17218
|
+
name: string;
|
|
17219
|
+
theme: "luma";
|
|
17220
|
+
colors: {
|
|
17221
|
+
primary: string;
|
|
17222
|
+
light?: string | undefined;
|
|
17223
|
+
dark?: string | undefined;
|
|
17224
|
+
};
|
|
17225
|
+
navigation: {
|
|
17226
|
+
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
17227
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
17228
|
+
} | {
|
|
17229
|
+
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
17230
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
17231
|
+
} | {
|
|
17232
|
+
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
17233
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
17234
|
+
} | {
|
|
17235
|
+
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
17236
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
17237
|
+
} | {
|
|
17238
|
+
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
17239
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
17240
|
+
} | {
|
|
17241
|
+
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
17242
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
17243
|
+
} | {
|
|
17244
|
+
groups: ({
|
|
17245
|
+
group: string;
|
|
17246
|
+
icon?: string | {
|
|
17247
|
+
name: string;
|
|
17248
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17249
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17250
|
+
} | undefined;
|
|
17251
|
+
expanded?: boolean | undefined;
|
|
17252
|
+
public?: boolean | undefined;
|
|
17253
|
+
tag?: string | undefined;
|
|
17254
|
+
hidden?: boolean | undefined;
|
|
17255
|
+
root?: string | undefined;
|
|
17256
|
+
} & {
|
|
17257
|
+
openapi?: string | string[] | {
|
|
17258
|
+
source: string;
|
|
17259
|
+
directory?: string | undefined;
|
|
17260
|
+
} | undefined;
|
|
17261
|
+
asyncapi?: string | string[] | {
|
|
17262
|
+
source: string;
|
|
17263
|
+
directory?: string | undefined;
|
|
17264
|
+
} | undefined;
|
|
17265
|
+
} & {
|
|
17266
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
17267
|
+
})[];
|
|
17268
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
17269
|
+
} | {
|
|
17270
|
+
pages: (string | ({
|
|
17271
|
+
group: string;
|
|
17272
|
+
icon?: string | {
|
|
17273
|
+
name: string;
|
|
17274
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17275
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17276
|
+
} | undefined;
|
|
17277
|
+
expanded?: boolean | undefined;
|
|
17278
|
+
public?: boolean | undefined;
|
|
17279
|
+
tag?: string | undefined;
|
|
17280
|
+
hidden?: boolean | undefined;
|
|
17281
|
+
root?: string | undefined;
|
|
17282
|
+
} & {
|
|
17283
|
+
openapi?: string | string[] | {
|
|
17284
|
+
source: string;
|
|
17285
|
+
directory?: string | undefined;
|
|
17286
|
+
} | undefined;
|
|
17287
|
+
asyncapi?: string | string[] | {
|
|
17288
|
+
source: string;
|
|
17289
|
+
directory?: string | undefined;
|
|
17290
|
+
} | undefined;
|
|
17291
|
+
} & {
|
|
17292
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
17293
|
+
}))[];
|
|
17294
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
17295
|
+
};
|
|
17296
|
+
background?: {
|
|
17297
|
+
color?: {
|
|
17298
|
+
light?: string | undefined;
|
|
17299
|
+
dark?: string | undefined;
|
|
17300
|
+
} | undefined;
|
|
17301
|
+
image?: string | {
|
|
17302
|
+
light: string;
|
|
17303
|
+
dark: string;
|
|
17304
|
+
} | undefined;
|
|
17305
|
+
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
17306
|
+
} | undefined;
|
|
17307
|
+
public?: boolean | undefined;
|
|
17308
|
+
$schema?: string | undefined;
|
|
17309
|
+
logo?: string | {
|
|
17310
|
+
light: string;
|
|
17311
|
+
dark: string;
|
|
17312
|
+
href?: string | undefined;
|
|
17313
|
+
} | undefined;
|
|
17314
|
+
favicon?: string | {
|
|
17315
|
+
light: string;
|
|
17316
|
+
dark: string;
|
|
17317
|
+
} | undefined;
|
|
17318
|
+
api?: {
|
|
17319
|
+
params?: {
|
|
17320
|
+
expanded?: "all" | "closed" | undefined;
|
|
17321
|
+
} | undefined;
|
|
17322
|
+
openapi?: string | string[] | {
|
|
17323
|
+
source: string;
|
|
17324
|
+
directory?: string | undefined;
|
|
17325
|
+
} | undefined;
|
|
17326
|
+
playground?: {
|
|
17327
|
+
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
17328
|
+
proxy?: boolean | undefined;
|
|
17329
|
+
} | undefined;
|
|
17330
|
+
asyncapi?: string | string[] | {
|
|
17331
|
+
source: string;
|
|
17332
|
+
directory?: string | undefined;
|
|
17333
|
+
} | undefined;
|
|
17334
|
+
examples?: {
|
|
17335
|
+
languages?: string[] | undefined;
|
|
17336
|
+
defaults?: "all" | "required" | undefined;
|
|
17337
|
+
prefill?: boolean | undefined;
|
|
17338
|
+
autogenerate?: boolean | undefined;
|
|
17339
|
+
} | undefined;
|
|
17340
|
+
mdx?: {
|
|
17341
|
+
server?: string | string[] | undefined;
|
|
17342
|
+
auth?: {
|
|
17343
|
+
name?: string | undefined;
|
|
17344
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
17345
|
+
} | undefined;
|
|
17346
|
+
} | undefined;
|
|
17347
|
+
} | undefined;
|
|
17348
|
+
metadata?: {
|
|
17349
|
+
timestamp?: boolean | undefined;
|
|
17350
|
+
} | undefined;
|
|
17351
|
+
footer?: {
|
|
17352
|
+
links?: {
|
|
17353
|
+
items: {
|
|
17354
|
+
href: string;
|
|
17355
|
+
label: string;
|
|
17356
|
+
}[];
|
|
17357
|
+
header?: string | undefined;
|
|
17358
|
+
}[] | undefined;
|
|
17359
|
+
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;
|
|
17360
|
+
} | undefined;
|
|
17361
|
+
integrations?: {
|
|
17362
|
+
amplitude?: {
|
|
17363
|
+
apiKey: string;
|
|
17364
|
+
} | undefined;
|
|
17365
|
+
clarity?: {
|
|
17366
|
+
projectId: string;
|
|
17367
|
+
} | undefined;
|
|
17368
|
+
clearbit?: {
|
|
17369
|
+
publicApiKey: string;
|
|
17370
|
+
} | undefined;
|
|
17371
|
+
fathom?: {
|
|
17372
|
+
siteId: string;
|
|
17373
|
+
} | undefined;
|
|
17374
|
+
ga4?: {
|
|
17375
|
+
measurementId: string;
|
|
17376
|
+
} | undefined;
|
|
17377
|
+
gtm?: {
|
|
17378
|
+
tagId: string;
|
|
17379
|
+
} | undefined;
|
|
17380
|
+
heap?: {
|
|
17381
|
+
appId: string;
|
|
17382
|
+
} | undefined;
|
|
17383
|
+
hightouch?: {
|
|
17384
|
+
writeKey: string;
|
|
17385
|
+
apiHost?: string | undefined;
|
|
17386
|
+
} | undefined;
|
|
17387
|
+
hotjar?: {
|
|
17388
|
+
hjid: string;
|
|
17389
|
+
hjsv: string;
|
|
17390
|
+
} | undefined;
|
|
17391
|
+
koala?: {
|
|
17392
|
+
publicApiKey: string;
|
|
17393
|
+
} | undefined;
|
|
17394
|
+
logrocket?: {
|
|
17395
|
+
appId: string;
|
|
17396
|
+
} | undefined;
|
|
17397
|
+
mixpanel?: {
|
|
17398
|
+
projectToken: string;
|
|
17399
|
+
} | undefined;
|
|
17400
|
+
pirsch?: {
|
|
17401
|
+
id: string;
|
|
17402
|
+
} | undefined;
|
|
17403
|
+
posthog?: {
|
|
17404
|
+
apiKey: string;
|
|
17405
|
+
apiHost?: string | undefined;
|
|
17406
|
+
sessionRecording?: boolean | undefined;
|
|
17407
|
+
} | undefined;
|
|
17408
|
+
plausible?: {
|
|
17409
|
+
domain: string;
|
|
17410
|
+
server?: string | undefined;
|
|
17411
|
+
} | undefined;
|
|
17412
|
+
segment?: {
|
|
17413
|
+
key: string;
|
|
17414
|
+
} | undefined;
|
|
17415
|
+
intercom?: {
|
|
17416
|
+
appId: string;
|
|
17417
|
+
} | undefined;
|
|
17418
|
+
frontchat?: {
|
|
17419
|
+
snippetId: string;
|
|
17420
|
+
} | undefined;
|
|
17421
|
+
telemetry?: {
|
|
17422
|
+
enabled?: boolean | undefined;
|
|
17423
|
+
} | undefined;
|
|
17424
|
+
cookies?: {
|
|
17425
|
+
value?: string | undefined;
|
|
17426
|
+
key?: string | undefined;
|
|
17427
|
+
} | undefined;
|
|
17428
|
+
} | undefined;
|
|
17429
|
+
search?: {
|
|
17430
|
+
prompt?: string | undefined;
|
|
17431
|
+
} | undefined;
|
|
17432
|
+
redirects?: {
|
|
17433
|
+
source: string;
|
|
17434
|
+
destination: string;
|
|
17435
|
+
permanent?: boolean | undefined;
|
|
17436
|
+
}[] | undefined;
|
|
17437
|
+
seo?: {
|
|
17438
|
+
metatags?: Record<string, string> | undefined;
|
|
17439
|
+
indexing?: "all" | "navigable" | undefined;
|
|
17440
|
+
} | undefined;
|
|
17441
|
+
description?: string | undefined;
|
|
17442
|
+
banner?: {
|
|
17443
|
+
content: string;
|
|
17444
|
+
dismissible?: boolean | undefined;
|
|
17445
|
+
} | undefined;
|
|
17446
|
+
appearance?: {
|
|
17447
|
+
strict?: boolean | undefined;
|
|
17448
|
+
default?: "light" | "dark" | "system" | undefined;
|
|
17449
|
+
} | undefined;
|
|
17450
|
+
fonts?: {
|
|
17451
|
+
family: string;
|
|
17452
|
+
source?: string | undefined;
|
|
17453
|
+
weight?: number | undefined;
|
|
17454
|
+
format?: "woff" | "woff2" | undefined;
|
|
17455
|
+
} | {
|
|
17456
|
+
body?: {
|
|
17457
|
+
family: string;
|
|
17458
|
+
source?: string | undefined;
|
|
17459
|
+
weight?: number | undefined;
|
|
17460
|
+
format?: "woff" | "woff2" | undefined;
|
|
17461
|
+
} | undefined;
|
|
17462
|
+
heading?: {
|
|
17463
|
+
family: string;
|
|
17464
|
+
source?: string | undefined;
|
|
17465
|
+
weight?: number | undefined;
|
|
17466
|
+
format?: "woff" | "woff2" | undefined;
|
|
17467
|
+
} | undefined;
|
|
17468
|
+
} | undefined;
|
|
17469
|
+
navbar?: {
|
|
17470
|
+
primary?: {
|
|
17471
|
+
type: "button";
|
|
17472
|
+
href: string;
|
|
17473
|
+
label: string;
|
|
17474
|
+
} | {
|
|
17475
|
+
type: "github";
|
|
17476
|
+
href: string;
|
|
17477
|
+
label?: string | undefined;
|
|
17478
|
+
} | {
|
|
17479
|
+
type: "discord";
|
|
17480
|
+
href: string;
|
|
17481
|
+
label?: string | undefined;
|
|
17482
|
+
} | undefined;
|
|
17483
|
+
links?: ({
|
|
17484
|
+
href: string;
|
|
17485
|
+
label: string;
|
|
17486
|
+
type?: string | undefined;
|
|
17487
|
+
icon?: string | {
|
|
17488
|
+
name: string;
|
|
17489
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17490
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17491
|
+
} | undefined;
|
|
17492
|
+
} | {
|
|
17493
|
+
type: "github";
|
|
17494
|
+
href: string;
|
|
17495
|
+
icon?: string | {
|
|
17496
|
+
name: string;
|
|
17497
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17498
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17499
|
+
} | undefined;
|
|
17500
|
+
label?: string | undefined;
|
|
17501
|
+
} | {
|
|
17502
|
+
type: "discord";
|
|
17503
|
+
href: string;
|
|
17504
|
+
icon?: string | {
|
|
17505
|
+
name: string;
|
|
17506
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17507
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17508
|
+
} | undefined;
|
|
17509
|
+
label?: string | undefined;
|
|
17510
|
+
})[] | undefined;
|
|
17511
|
+
} | undefined;
|
|
17512
|
+
icons?: {
|
|
17513
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
17514
|
+
} | undefined;
|
|
17515
|
+
styling?: {
|
|
17516
|
+
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
17517
|
+
codeblocks?: "dark" | "system" | {
|
|
17518
|
+
languages?: {
|
|
17519
|
+
custom?: string[] | undefined;
|
|
17520
|
+
} | undefined;
|
|
17521
|
+
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" | {
|
|
17522
|
+
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";
|
|
17523
|
+
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";
|
|
17524
|
+
} | undefined;
|
|
17525
|
+
} | undefined;
|
|
17526
|
+
latex?: boolean | undefined;
|
|
17527
|
+
} | undefined;
|
|
17528
|
+
errors?: {
|
|
17529
|
+
'404': {
|
|
17530
|
+
title?: string | undefined;
|
|
17531
|
+
description?: string | undefined;
|
|
17532
|
+
redirect?: boolean | undefined;
|
|
17533
|
+
};
|
|
17534
|
+
} | undefined;
|
|
17535
|
+
contextual?: {
|
|
17536
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
17537
|
+
href: string | {
|
|
17538
|
+
base: string;
|
|
17539
|
+
query?: {
|
|
17540
|
+
value: string;
|
|
17541
|
+
key: string;
|
|
17542
|
+
}[] | undefined;
|
|
17543
|
+
};
|
|
17544
|
+
title: string;
|
|
17545
|
+
description: string;
|
|
17546
|
+
icon?: string | {
|
|
17547
|
+
name: string;
|
|
17548
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17549
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17550
|
+
} | undefined;
|
|
17551
|
+
})[];
|
|
17552
|
+
display?: "header" | "toc" | undefined;
|
|
17553
|
+
} | undefined;
|
|
17554
|
+
thumbnails?: {
|
|
17555
|
+
background?: string | undefined;
|
|
17556
|
+
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
17557
|
+
fonts?: {
|
|
17558
|
+
family: string;
|
|
17559
|
+
} | undefined;
|
|
17560
|
+
} | undefined;
|
|
17561
|
+
interaction?: {
|
|
17562
|
+
drilldown?: boolean | undefined;
|
|
17563
|
+
} | undefined;
|
|
17564
|
+
variables?: Record<string, string> | undefined;
|
|
17565
|
+
}>, z.ZodObject<{
|
|
17566
|
+
$schema: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
17567
|
+
name: z.ZodString;
|
|
17568
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
17569
|
+
description: z.ZodOptional<z.ZodString>;
|
|
17570
|
+
colors: z.ZodObject<{
|
|
17571
|
+
primary: z.ZodString;
|
|
17572
|
+
light: z.ZodOptional<z.ZodString>;
|
|
17573
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
17574
|
+
}, "strict", z.ZodTypeAny, {
|
|
17575
|
+
primary: string;
|
|
17576
|
+
light?: string | undefined;
|
|
17577
|
+
dark?: string | undefined;
|
|
17578
|
+
}, {
|
|
17579
|
+
primary: string;
|
|
17580
|
+
light?: string | undefined;
|
|
17581
|
+
dark?: string | undefined;
|
|
17582
|
+
}>;
|
|
17583
|
+
logo: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
17584
|
+
light: z.ZodString;
|
|
17585
|
+
dark: z.ZodString;
|
|
17586
|
+
href: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
17587
|
+
}, "strip", z.ZodTypeAny, {
|
|
17588
|
+
light: string;
|
|
17589
|
+
dark: string;
|
|
17590
|
+
href?: string | undefined;
|
|
17591
|
+
}, {
|
|
17592
|
+
light: string;
|
|
17593
|
+
dark: string;
|
|
17594
|
+
href?: string | undefined;
|
|
17595
|
+
}>]>>;
|
|
17596
|
+
favicon: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
17597
|
+
light: z.ZodString;
|
|
17598
|
+
dark: z.ZodString;
|
|
17599
|
+
}, "strip", z.ZodTypeAny, {
|
|
17600
|
+
light: string;
|
|
17601
|
+
dark: string;
|
|
17602
|
+
}, {
|
|
17603
|
+
light: string;
|
|
17604
|
+
dark: string;
|
|
17605
|
+
}>]>>;
|
|
17606
|
+
api: z.ZodOptional<z.ZodObject<{
|
|
17607
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
17608
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
17609
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
17610
|
+
}, "strict", z.ZodTypeAny, {
|
|
17611
|
+
source: string;
|
|
17612
|
+
directory?: string | undefined;
|
|
17613
|
+
}, {
|
|
17614
|
+
source: string;
|
|
17615
|
+
directory?: string | undefined;
|
|
17616
|
+
}>]>>;
|
|
17617
|
+
asyncapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
17618
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
17619
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
17620
|
+
}, "strict", z.ZodTypeAny, {
|
|
17621
|
+
source: string;
|
|
17622
|
+
directory?: string | undefined;
|
|
17623
|
+
}, {
|
|
17624
|
+
source: string;
|
|
17625
|
+
directory?: string | undefined;
|
|
17626
|
+
}>]>>;
|
|
17627
|
+
params: z.ZodOptional<z.ZodObject<{
|
|
17628
|
+
expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
|
|
17629
|
+
}, "strip", z.ZodTypeAny, {
|
|
17630
|
+
expanded?: "all" | "closed" | undefined;
|
|
17631
|
+
}, {
|
|
17632
|
+
expanded?: "all" | "closed" | undefined;
|
|
17633
|
+
}>>;
|
|
17634
|
+
playground: z.ZodOptional<z.ZodObject<{
|
|
17635
|
+
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
17636
|
+
proxy: z.ZodOptional<z.ZodBoolean>;
|
|
17637
|
+
}, "strip", z.ZodTypeAny, {
|
|
17638
|
+
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
17639
|
+
proxy?: boolean | undefined;
|
|
17640
|
+
}, {
|
|
17641
|
+
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
17642
|
+
proxy?: boolean | undefined;
|
|
17643
|
+
}>>;
|
|
17644
|
+
examples: z.ZodOptional<z.ZodObject<{
|
|
17645
|
+
defaults: z.ZodOptional<z.ZodEnum<["required", "all"]>>;
|
|
17646
|
+
languages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
17647
|
+
prefill: z.ZodOptional<z.ZodBoolean>;
|
|
17648
|
+
autogenerate: z.ZodOptional<z.ZodBoolean>;
|
|
17649
|
+
}, "strip", z.ZodTypeAny, {
|
|
17650
|
+
languages?: string[] | undefined;
|
|
17651
|
+
defaults?: "all" | "required" | undefined;
|
|
17652
|
+
prefill?: boolean | undefined;
|
|
17653
|
+
autogenerate?: boolean | undefined;
|
|
17654
|
+
}, {
|
|
17655
|
+
languages?: string[] | undefined;
|
|
17656
|
+
defaults?: "all" | "required" | undefined;
|
|
17657
|
+
prefill?: boolean | undefined;
|
|
17658
|
+
autogenerate?: boolean | undefined;
|
|
17659
|
+
}>>;
|
|
17660
|
+
mdx: z.ZodOptional<z.ZodObject<{
|
|
17661
|
+
auth: z.ZodOptional<z.ZodObject<{
|
|
17662
|
+
method: z.ZodOptional<z.ZodEnum<["bearer", "basic", "key", "cobo"]>>;
|
|
17663
|
+
name: z.ZodOptional<z.ZodString>;
|
|
17664
|
+
}, "strip", z.ZodTypeAny, {
|
|
17665
|
+
name?: string | undefined;
|
|
17666
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
17667
|
+
}, {
|
|
17668
|
+
name?: string | undefined;
|
|
17669
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
17670
|
+
}>>;
|
|
17671
|
+
server: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
17672
|
+
}, "strip", z.ZodTypeAny, {
|
|
17673
|
+
server?: string | string[] | undefined;
|
|
17674
|
+
auth?: {
|
|
17675
|
+
name?: string | undefined;
|
|
17676
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
17677
|
+
} | undefined;
|
|
17678
|
+
}, {
|
|
17679
|
+
server?: string | string[] | undefined;
|
|
17680
|
+
auth?: {
|
|
17681
|
+
name?: string | undefined;
|
|
17682
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
17683
|
+
} | undefined;
|
|
17684
|
+
}>>;
|
|
17685
|
+
}, "strip", z.ZodTypeAny, {
|
|
17686
|
+
params?: {
|
|
17687
|
+
expanded?: "all" | "closed" | undefined;
|
|
17688
|
+
} | undefined;
|
|
17689
|
+
openapi?: string | string[] | {
|
|
17690
|
+
source: string;
|
|
17691
|
+
directory?: string | undefined;
|
|
17692
|
+
} | undefined;
|
|
17693
|
+
playground?: {
|
|
17694
|
+
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
17695
|
+
proxy?: boolean | undefined;
|
|
17696
|
+
} | undefined;
|
|
17697
|
+
asyncapi?: string | string[] | {
|
|
17698
|
+
source: string;
|
|
17699
|
+
directory?: string | undefined;
|
|
17700
|
+
} | undefined;
|
|
17701
|
+
examples?: {
|
|
17702
|
+
languages?: string[] | undefined;
|
|
17703
|
+
defaults?: "all" | "required" | undefined;
|
|
17704
|
+
prefill?: boolean | undefined;
|
|
17705
|
+
autogenerate?: boolean | undefined;
|
|
17706
|
+
} | undefined;
|
|
17707
|
+
mdx?: {
|
|
17708
|
+
server?: string | string[] | undefined;
|
|
17709
|
+
auth?: {
|
|
17710
|
+
name?: string | undefined;
|
|
17711
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
17712
|
+
} | undefined;
|
|
17713
|
+
} | undefined;
|
|
17714
|
+
}, {
|
|
17715
|
+
params?: {
|
|
17716
|
+
expanded?: "all" | "closed" | undefined;
|
|
17717
|
+
} | undefined;
|
|
17718
|
+
openapi?: string | string[] | {
|
|
17719
|
+
source: string;
|
|
17720
|
+
directory?: string | undefined;
|
|
17721
|
+
} | undefined;
|
|
17722
|
+
playground?: {
|
|
17723
|
+
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
17724
|
+
proxy?: boolean | undefined;
|
|
17725
|
+
} | undefined;
|
|
17726
|
+
asyncapi?: string | string[] | {
|
|
17727
|
+
source: string;
|
|
17728
|
+
directory?: string | undefined;
|
|
17729
|
+
} | undefined;
|
|
17730
|
+
examples?: {
|
|
17731
|
+
languages?: string[] | undefined;
|
|
17732
|
+
defaults?: "all" | "required" | undefined;
|
|
17733
|
+
prefill?: boolean | undefined;
|
|
17734
|
+
autogenerate?: boolean | undefined;
|
|
17735
|
+
} | undefined;
|
|
17736
|
+
mdx?: {
|
|
17737
|
+
server?: string | string[] | undefined;
|
|
17738
|
+
auth?: {
|
|
17739
|
+
name?: string | undefined;
|
|
17740
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
17741
|
+
} | undefined;
|
|
17742
|
+
} | undefined;
|
|
17743
|
+
}>>;
|
|
17744
|
+
appearance: z.ZodOptional<z.ZodObject<{
|
|
17745
|
+
default: z.ZodOptional<z.ZodEnum<["system", "light", "dark"]>>;
|
|
17746
|
+
strict: z.ZodOptional<z.ZodBoolean>;
|
|
17747
|
+
}, "strip", z.ZodTypeAny, {
|
|
17748
|
+
strict?: boolean | undefined;
|
|
17749
|
+
default?: "light" | "dark" | "system" | undefined;
|
|
17750
|
+
}, {
|
|
17751
|
+
strict?: boolean | undefined;
|
|
17752
|
+
default?: "light" | "dark" | "system" | undefined;
|
|
17753
|
+
}>>;
|
|
17754
|
+
background: z.ZodOptional<z.ZodObject<{
|
|
17755
|
+
image: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
17756
|
+
light: z.ZodString;
|
|
17757
|
+
dark: z.ZodString;
|
|
17758
|
+
}, "strip", z.ZodTypeAny, {
|
|
17759
|
+
light: string;
|
|
17760
|
+
dark: string;
|
|
17761
|
+
}, {
|
|
17762
|
+
light: string;
|
|
17763
|
+
dark: string;
|
|
17764
|
+
}>]>>;
|
|
17765
|
+
decoration: z.ZodOptional<z.ZodEnum<["gradient", "grid", "windows"]>>;
|
|
17766
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
17767
|
+
light: z.ZodOptional<z.ZodString>;
|
|
17768
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
17769
|
+
}, "strict", z.ZodTypeAny, {
|
|
17770
|
+
light?: string | undefined;
|
|
17771
|
+
dark?: string | undefined;
|
|
17772
|
+
}, {
|
|
17773
|
+
light?: string | undefined;
|
|
17774
|
+
dark?: string | undefined;
|
|
17775
|
+
}>>;
|
|
17776
|
+
}, "strip", z.ZodTypeAny, {
|
|
17777
|
+
color?: {
|
|
17778
|
+
light?: string | undefined;
|
|
17779
|
+
dark?: string | undefined;
|
|
17780
|
+
} | undefined;
|
|
17781
|
+
image?: string | {
|
|
17782
|
+
light: string;
|
|
17783
|
+
dark: string;
|
|
17784
|
+
} | undefined;
|
|
17785
|
+
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
17786
|
+
}, {
|
|
17787
|
+
color?: {
|
|
17788
|
+
light?: string | undefined;
|
|
17789
|
+
dark?: string | undefined;
|
|
17790
|
+
} | undefined;
|
|
17791
|
+
image?: string | {
|
|
17792
|
+
light: string;
|
|
17793
|
+
dark: string;
|
|
17794
|
+
} | undefined;
|
|
17795
|
+
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
17796
|
+
}>>;
|
|
17797
|
+
navbar: z.ZodOptional<z.ZodObject<{
|
|
17798
|
+
links: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
17799
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
17800
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
17801
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
17802
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
17803
|
+
}, "strip", z.ZodTypeAny, {
|
|
17804
|
+
name: string;
|
|
17805
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17806
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17807
|
+
}, {
|
|
17808
|
+
name: string;
|
|
17809
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17810
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17811
|
+
}>]>>;
|
|
17812
|
+
href: z.ZodEffects<z.ZodString, string, string>;
|
|
17813
|
+
}, {
|
|
17814
|
+
label: z.ZodOptional<z.ZodString>;
|
|
17815
|
+
type: z.ZodLiteral<"github">;
|
|
17816
|
+
}>, "strip", z.ZodTypeAny, {
|
|
17817
|
+
type: "github";
|
|
17818
|
+
href: string;
|
|
17819
|
+
icon?: string | {
|
|
17820
|
+
name: string;
|
|
17821
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17822
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17823
|
+
} | undefined;
|
|
17824
|
+
label?: string | undefined;
|
|
17825
|
+
}, {
|
|
17826
|
+
type: "github";
|
|
17827
|
+
href: string;
|
|
17828
|
+
icon?: string | {
|
|
17829
|
+
name: string;
|
|
17830
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17831
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17832
|
+
} | undefined;
|
|
17833
|
+
label?: string | undefined;
|
|
17834
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
17835
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
17836
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
17837
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
17838
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
17839
|
+
}, "strip", z.ZodTypeAny, {
|
|
17840
|
+
name: string;
|
|
17841
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17842
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17843
|
+
}, {
|
|
17844
|
+
name: string;
|
|
17845
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17846
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17847
|
+
}>]>>;
|
|
17848
|
+
href: z.ZodEffects<z.ZodString, string, string>;
|
|
17849
|
+
}, {
|
|
17850
|
+
label: z.ZodOptional<z.ZodString>;
|
|
17851
|
+
type: z.ZodLiteral<"discord">;
|
|
17852
|
+
}>, "strip", z.ZodTypeAny, {
|
|
17853
|
+
type: "discord";
|
|
17854
|
+
href: string;
|
|
17855
|
+
icon?: string | {
|
|
17856
|
+
name: string;
|
|
17857
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17858
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17859
|
+
} | undefined;
|
|
17860
|
+
label?: string | undefined;
|
|
17861
|
+
}, {
|
|
17862
|
+
type: "discord";
|
|
17863
|
+
href: string;
|
|
17864
|
+
icon?: string | {
|
|
17865
|
+
name: string;
|
|
17866
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17867
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17868
|
+
} | undefined;
|
|
17869
|
+
label?: string | undefined;
|
|
17870
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
17871
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
17872
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
17873
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
17874
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
17875
|
+
}, "strip", z.ZodTypeAny, {
|
|
17876
|
+
name: string;
|
|
17877
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17878
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17879
|
+
}, {
|
|
17880
|
+
name: string;
|
|
17881
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17882
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17883
|
+
}>]>>;
|
|
17884
|
+
href: z.ZodEffects<z.ZodString, string, string>;
|
|
17885
|
+
}, {
|
|
17886
|
+
label: z.ZodString;
|
|
17887
|
+
type: z.ZodOptional<z.ZodString>;
|
|
17888
|
+
}>, "strip", z.ZodTypeAny, {
|
|
17889
|
+
href: string;
|
|
17890
|
+
label: string;
|
|
17891
|
+
type?: string | undefined;
|
|
17892
|
+
icon?: string | {
|
|
17893
|
+
name: string;
|
|
17894
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17895
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17896
|
+
} | undefined;
|
|
17897
|
+
}, {
|
|
17898
|
+
href: string;
|
|
17899
|
+
label: string;
|
|
17900
|
+
type?: string | undefined;
|
|
17901
|
+
icon?: string | {
|
|
17902
|
+
name: string;
|
|
17903
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17904
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17905
|
+
} | undefined;
|
|
17906
|
+
}>]>, "many">>;
|
|
17907
|
+
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
17908
|
+
type: z.ZodLiteral<"button">;
|
|
17909
|
+
label: z.ZodString;
|
|
17910
|
+
href: z.ZodEffects<z.ZodString, string, string>;
|
|
17911
|
+
}, "strip", z.ZodTypeAny, {
|
|
17912
|
+
type: "button";
|
|
17913
|
+
href: string;
|
|
17914
|
+
label: string;
|
|
17915
|
+
}, {
|
|
17916
|
+
type: "button";
|
|
17917
|
+
href: string;
|
|
17918
|
+
label: string;
|
|
17919
|
+
}>, z.ZodObject<{
|
|
17920
|
+
type: z.ZodLiteral<"github">;
|
|
17921
|
+
label: z.ZodOptional<z.ZodString>;
|
|
17922
|
+
href: z.ZodEffects<z.ZodString, string, string>;
|
|
17923
|
+
}, "strip", z.ZodTypeAny, {
|
|
17924
|
+
type: "github";
|
|
17925
|
+
href: string;
|
|
17926
|
+
label?: string | undefined;
|
|
17927
|
+
}, {
|
|
17928
|
+
type: "github";
|
|
17929
|
+
href: string;
|
|
17930
|
+
label?: string | undefined;
|
|
17931
|
+
}>, z.ZodObject<{
|
|
17932
|
+
type: z.ZodLiteral<"discord">;
|
|
17933
|
+
label: z.ZodOptional<z.ZodString>;
|
|
17934
|
+
href: z.ZodEffects<z.ZodString, string, string>;
|
|
17935
|
+
}, "strip", z.ZodTypeAny, {
|
|
17936
|
+
type: "discord";
|
|
17937
|
+
href: string;
|
|
17938
|
+
label?: string | undefined;
|
|
17939
|
+
}, {
|
|
17940
|
+
type: "discord";
|
|
17941
|
+
href: string;
|
|
17942
|
+
label?: string | undefined;
|
|
17943
|
+
}>]>>;
|
|
17944
|
+
}, "strip", z.ZodTypeAny, {
|
|
17945
|
+
primary?: {
|
|
17946
|
+
type: "button";
|
|
17947
|
+
href: string;
|
|
17948
|
+
label: string;
|
|
17949
|
+
} | {
|
|
17950
|
+
type: "github";
|
|
17951
|
+
href: string;
|
|
17952
|
+
label?: string | undefined;
|
|
17953
|
+
} | {
|
|
17954
|
+
type: "discord";
|
|
17955
|
+
href: string;
|
|
17956
|
+
label?: string | undefined;
|
|
17957
|
+
} | undefined;
|
|
17958
|
+
links?: ({
|
|
17959
|
+
href: string;
|
|
17960
|
+
label: string;
|
|
17961
|
+
type?: string | undefined;
|
|
17962
|
+
icon?: string | {
|
|
17963
|
+
name: string;
|
|
17964
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17965
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17966
|
+
} | undefined;
|
|
17967
|
+
} | {
|
|
17968
|
+
type: "github";
|
|
17969
|
+
href: string;
|
|
17970
|
+
icon?: string | {
|
|
17971
|
+
name: string;
|
|
17972
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17973
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17974
|
+
} | undefined;
|
|
17975
|
+
label?: string | undefined;
|
|
17976
|
+
} | {
|
|
17977
|
+
type: "discord";
|
|
17978
|
+
href: string;
|
|
17979
|
+
icon?: string | {
|
|
17980
|
+
name: string;
|
|
17981
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17982
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17983
|
+
} | undefined;
|
|
17984
|
+
label?: string | undefined;
|
|
17985
|
+
})[] | undefined;
|
|
17986
|
+
}, {
|
|
17987
|
+
primary?: {
|
|
17988
|
+
type: "button";
|
|
17989
|
+
href: string;
|
|
17990
|
+
label: string;
|
|
17991
|
+
} | {
|
|
17992
|
+
type: "github";
|
|
17993
|
+
href: string;
|
|
17994
|
+
label?: string | undefined;
|
|
17995
|
+
} | {
|
|
17996
|
+
type: "discord";
|
|
17997
|
+
href: string;
|
|
17998
|
+
label?: string | undefined;
|
|
17999
|
+
} | undefined;
|
|
18000
|
+
links?: ({
|
|
18001
|
+
href: string;
|
|
18002
|
+
label: string;
|
|
18003
|
+
type?: string | undefined;
|
|
18004
|
+
icon?: string | {
|
|
18005
|
+
name: string;
|
|
18006
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
18007
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
18008
|
+
} | undefined;
|
|
18009
|
+
} | {
|
|
18010
|
+
type: "github";
|
|
18011
|
+
href: string;
|
|
18012
|
+
icon?: string | {
|
|
18013
|
+
name: string;
|
|
18014
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
18015
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
18016
|
+
} | undefined;
|
|
18017
|
+
label?: string | undefined;
|
|
18018
|
+
} | {
|
|
18019
|
+
type: "discord";
|
|
18020
|
+
href: string;
|
|
18021
|
+
icon?: string | {
|
|
18022
|
+
name: string;
|
|
18023
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
18024
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
18025
|
+
} | undefined;
|
|
18026
|
+
label?: string | undefined;
|
|
18027
|
+
})[] | undefined;
|
|
18028
|
+
}>>;
|
|
18029
|
+
navigation: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
18030
|
+
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
18031
|
+
}, {
|
|
18032
|
+
products: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").ProductNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").ProductNavigation<"default">>, "many">;
|
|
18033
|
+
}>, "strip", z.ZodTypeAny, {
|
|
18034
|
+
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
18035
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18036
|
+
}, {
|
|
18037
|
+
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
18038
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18039
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
18040
|
+
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
18041
|
+
}, {
|
|
18042
|
+
languages: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">>, "many">;
|
|
18043
|
+
}>, "strip", z.ZodTypeAny, {
|
|
18044
|
+
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
18045
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18046
|
+
}, {
|
|
18047
|
+
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
18048
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18049
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
18050
|
+
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
18051
|
+
}, {
|
|
18052
|
+
versions: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").VersionNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").VersionNavigation<"default">>, "many">;
|
|
18053
|
+
}>, "strip", z.ZodTypeAny, {
|
|
18054
|
+
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
18055
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18056
|
+
}, {
|
|
18057
|
+
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
18058
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18059
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
18060
|
+
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
18061
|
+
}, {
|
|
18062
|
+
tabs: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").TabNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").TabNavigation<"default">>, "many">;
|
|
18063
|
+
}>, "strip", z.ZodTypeAny, {
|
|
18064
|
+
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
18065
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18066
|
+
}, {
|
|
18067
|
+
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
18068
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18069
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
18070
|
+
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
18071
|
+
}, {
|
|
18072
|
+
dropdowns: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">>, "many">;
|
|
18073
|
+
}>, "strip", z.ZodTypeAny, {
|
|
18074
|
+
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
18075
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18076
|
+
}, {
|
|
18077
|
+
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
18078
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18079
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
18080
|
+
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
18081
|
+
}, {
|
|
18082
|
+
anchors: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">>, "many">;
|
|
18083
|
+
}>, "strip", z.ZodTypeAny, {
|
|
18084
|
+
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
18085
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18086
|
+
}, {
|
|
18087
|
+
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
18088
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18089
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
18090
|
+
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
18091
|
+
}, {
|
|
18092
|
+
groups: z.ZodArray<z.ZodType<{
|
|
18093
|
+
group: string;
|
|
18094
|
+
icon?: string | {
|
|
18095
|
+
name: string;
|
|
18096
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
18097
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
18098
|
+
} | undefined;
|
|
18099
|
+
expanded?: boolean | undefined;
|
|
18100
|
+
public?: boolean | undefined;
|
|
18101
|
+
tag?: string | undefined;
|
|
18102
|
+
hidden?: boolean | undefined;
|
|
18103
|
+
root?: string | undefined;
|
|
18104
|
+
} & {
|
|
18105
|
+
openapi?: string | string[] | {
|
|
18106
|
+
source: string;
|
|
18107
|
+
directory?: string | undefined;
|
|
18108
|
+
} | undefined;
|
|
18109
|
+
asyncapi?: string | string[] | {
|
|
18110
|
+
source: string;
|
|
18111
|
+
directory?: string | undefined;
|
|
18112
|
+
} | undefined;
|
|
18113
|
+
} & {
|
|
18114
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
18115
|
+
}, z.ZodTypeDef, {
|
|
18116
|
+
group: string;
|
|
18117
|
+
icon?: string | {
|
|
18118
|
+
name: string;
|
|
18119
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
18120
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
18121
|
+
} | undefined;
|
|
18122
|
+
expanded?: boolean | undefined;
|
|
18123
|
+
public?: boolean | undefined;
|
|
18124
|
+
tag?: string | undefined;
|
|
18125
|
+
hidden?: boolean | undefined;
|
|
18126
|
+
root?: string | undefined;
|
|
18127
|
+
} & {
|
|
18128
|
+
openapi?: string | string[] | {
|
|
18129
|
+
source: string;
|
|
18130
|
+
directory?: string | undefined;
|
|
18131
|
+
} | undefined;
|
|
18132
|
+
asyncapi?: string | string[] | {
|
|
18133
|
+
source: string;
|
|
18134
|
+
directory?: string | undefined;
|
|
18135
|
+
} | undefined;
|
|
18136
|
+
} & {
|
|
18137
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
18138
|
+
}>, "many">;
|
|
18139
|
+
}>, "strip", z.ZodTypeAny, {
|
|
18140
|
+
groups: ({
|
|
18141
|
+
group: string;
|
|
18142
|
+
icon?: string | {
|
|
18143
|
+
name: string;
|
|
18144
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
18145
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
18146
|
+
} | undefined;
|
|
18147
|
+
expanded?: boolean | undefined;
|
|
18148
|
+
public?: boolean | undefined;
|
|
18149
|
+
tag?: string | undefined;
|
|
18150
|
+
hidden?: boolean | undefined;
|
|
18151
|
+
root?: string | undefined;
|
|
18152
|
+
} & {
|
|
18153
|
+
openapi?: string | string[] | {
|
|
18154
|
+
source: string;
|
|
18155
|
+
directory?: string | undefined;
|
|
18156
|
+
} | undefined;
|
|
18157
|
+
asyncapi?: string | string[] | {
|
|
18158
|
+
source: string;
|
|
18159
|
+
directory?: string | undefined;
|
|
18160
|
+
} | undefined;
|
|
18161
|
+
} & {
|
|
18162
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
18163
|
+
})[];
|
|
18164
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18165
|
+
}, {
|
|
18166
|
+
groups: ({
|
|
18167
|
+
group: string;
|
|
18168
|
+
icon?: string | {
|
|
18169
|
+
name: string;
|
|
18170
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
18171
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
18172
|
+
} | undefined;
|
|
18173
|
+
expanded?: boolean | undefined;
|
|
18174
|
+
public?: boolean | undefined;
|
|
18175
|
+
tag?: string | undefined;
|
|
18176
|
+
hidden?: boolean | undefined;
|
|
18177
|
+
root?: string | undefined;
|
|
18178
|
+
} & {
|
|
18179
|
+
openapi?: string | string[] | {
|
|
18180
|
+
source: string;
|
|
18181
|
+
directory?: string | undefined;
|
|
18182
|
+
} | undefined;
|
|
18183
|
+
asyncapi?: string | string[] | {
|
|
18184
|
+
source: string;
|
|
18185
|
+
directory?: string | undefined;
|
|
18186
|
+
} | undefined;
|
|
18187
|
+
} & {
|
|
18188
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
18189
|
+
})[];
|
|
18190
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18191
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
18192
|
+
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
18193
|
+
}, {
|
|
18194
|
+
pages: z.ZodArray<z.ZodType<string | ({
|
|
18195
|
+
group: string;
|
|
18196
|
+
icon?: string | {
|
|
18197
|
+
name: string;
|
|
18198
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
18199
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
18200
|
+
} | undefined;
|
|
18201
|
+
expanded?: boolean | undefined;
|
|
18202
|
+
public?: boolean | undefined;
|
|
18203
|
+
tag?: string | undefined;
|
|
18204
|
+
hidden?: boolean | undefined;
|
|
18205
|
+
root?: string | undefined;
|
|
18206
|
+
} & {
|
|
18207
|
+
openapi?: string | string[] | {
|
|
18208
|
+
source: string;
|
|
18209
|
+
directory?: string | undefined;
|
|
18210
|
+
} | undefined;
|
|
18211
|
+
asyncapi?: string | string[] | {
|
|
18212
|
+
source: string;
|
|
18213
|
+
directory?: string | undefined;
|
|
18214
|
+
} | undefined;
|
|
18215
|
+
} & {
|
|
18216
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
18217
|
+
}), z.ZodTypeDef, string | ({
|
|
18218
|
+
group: string;
|
|
18219
|
+
icon?: string | {
|
|
18220
|
+
name: string;
|
|
18221
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
18222
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
18223
|
+
} | undefined;
|
|
18224
|
+
expanded?: boolean | undefined;
|
|
18225
|
+
public?: boolean | undefined;
|
|
18226
|
+
tag?: string | undefined;
|
|
18227
|
+
hidden?: boolean | undefined;
|
|
18228
|
+
root?: string | undefined;
|
|
18229
|
+
} & {
|
|
18230
|
+
openapi?: string | string[] | {
|
|
18231
|
+
source: string;
|
|
18232
|
+
directory?: string | undefined;
|
|
18233
|
+
} | undefined;
|
|
18234
|
+
asyncapi?: string | string[] | {
|
|
18235
|
+
source: string;
|
|
18236
|
+
directory?: string | undefined;
|
|
18237
|
+
} | undefined;
|
|
18238
|
+
} & {
|
|
18239
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
18240
|
+
})>, "many">;
|
|
18241
|
+
}>, "strip", z.ZodTypeAny, {
|
|
18242
|
+
pages: (string | ({
|
|
18243
|
+
group: string;
|
|
18244
|
+
icon?: string | {
|
|
18245
|
+
name: string;
|
|
18246
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
18247
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
18248
|
+
} | undefined;
|
|
18249
|
+
expanded?: boolean | undefined;
|
|
18250
|
+
public?: boolean | undefined;
|
|
18251
|
+
tag?: string | undefined;
|
|
18252
|
+
hidden?: boolean | undefined;
|
|
18253
|
+
root?: string | undefined;
|
|
18254
|
+
} & {
|
|
18255
|
+
openapi?: string | string[] | {
|
|
18256
|
+
source: string;
|
|
18257
|
+
directory?: string | undefined;
|
|
18258
|
+
} | undefined;
|
|
18259
|
+
asyncapi?: string | string[] | {
|
|
18260
|
+
source: string;
|
|
18261
|
+
directory?: string | undefined;
|
|
18262
|
+
} | undefined;
|
|
18263
|
+
} & {
|
|
18264
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
18265
|
+
}))[];
|
|
18266
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18267
|
+
}, {
|
|
18268
|
+
pages: (string | ({
|
|
18269
|
+
group: string;
|
|
18270
|
+
icon?: string | {
|
|
18271
|
+
name: string;
|
|
18272
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
18273
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
18274
|
+
} | undefined;
|
|
18275
|
+
expanded?: boolean | undefined;
|
|
18276
|
+
public?: boolean | undefined;
|
|
18277
|
+
tag?: string | undefined;
|
|
18278
|
+
hidden?: boolean | undefined;
|
|
18279
|
+
root?: string | undefined;
|
|
18280
|
+
} & {
|
|
18281
|
+
openapi?: string | string[] | {
|
|
18282
|
+
source: string;
|
|
18283
|
+
directory?: string | undefined;
|
|
18284
|
+
} | undefined;
|
|
18285
|
+
asyncapi?: string | string[] | {
|
|
18286
|
+
source: string;
|
|
18287
|
+
directory?: string | undefined;
|
|
18288
|
+
} | undefined;
|
|
18289
|
+
} & {
|
|
18290
|
+
pages?: import("./properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
18291
|
+
}))[];
|
|
18292
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
18293
|
+
}>]>;
|
|
18294
|
+
footer: z.ZodOptional<z.ZodObject<{
|
|
18295
|
+
socials: z.ZodOptional<z.ZodRecord<z.ZodEnum<["x", "website", "facebook", "youtube", "discord", "slack", "github", "linkedin", "instagram", "hacker-news", "medium", "telegram", "twitter", "x-twitter", "earth-americas", "bluesky", "threads", "reddit", "podcast"]>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>>;
|
|
18296
|
+
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
18297
|
+
header: z.ZodOptional<z.ZodString>;
|
|
18298
|
+
items: z.ZodArray<z.ZodObject<{
|
|
18299
|
+
label: z.ZodString;
|
|
18300
|
+
href: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
18301
|
+
}, "strip", z.ZodTypeAny, {
|
|
18302
|
+
href: string;
|
|
18303
|
+
label: string;
|
|
18304
|
+
}, {
|
|
18305
|
+
href: string;
|
|
18306
|
+
label: string;
|
|
18307
|
+
}>, "many">;
|
|
18308
|
+
}, "strip", z.ZodTypeAny, {
|
|
18309
|
+
items: {
|
|
18310
|
+
href: string;
|
|
18311
|
+
label: string;
|
|
18312
|
+
}[];
|
|
18313
|
+
header?: string | undefined;
|
|
18314
|
+
}, {
|
|
18315
|
+
items: {
|
|
18316
|
+
href: string;
|
|
18317
|
+
label: string;
|
|
18318
|
+
}[];
|
|
18319
|
+
header?: string | undefined;
|
|
18320
|
+
}>, "many">>;
|
|
18321
|
+
}, "strip", z.ZodTypeAny, {
|
|
18322
|
+
links?: {
|
|
18323
|
+
items: {
|
|
18324
|
+
href: string;
|
|
18325
|
+
label: string;
|
|
18326
|
+
}[];
|
|
18327
|
+
header?: string | undefined;
|
|
18328
|
+
}[] | undefined;
|
|
18329
|
+
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;
|
|
18330
|
+
}, {
|
|
18331
|
+
links?: {
|
|
18332
|
+
items: {
|
|
18333
|
+
href: string;
|
|
18334
|
+
label: string;
|
|
18335
|
+
}[];
|
|
18336
|
+
header?: string | undefined;
|
|
18337
|
+
}[] | undefined;
|
|
18338
|
+
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;
|
|
18339
|
+
}>>;
|
|
18340
|
+
search: z.ZodOptional<z.ZodObject<{
|
|
18341
|
+
prompt: z.ZodOptional<z.ZodString>;
|
|
18342
|
+
}, "strip", z.ZodTypeAny, {
|
|
18343
|
+
prompt?: string | undefined;
|
|
18344
|
+
}, {
|
|
18345
|
+
prompt?: string | undefined;
|
|
18346
|
+
}>>;
|
|
18347
|
+
seo: z.ZodOptional<z.ZodObject<{
|
|
18348
|
+
metatags: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
18349
|
+
indexing: z.ZodOptional<z.ZodEnum<["navigable", "all"]>>;
|
|
18350
|
+
}, "strip", z.ZodTypeAny, {
|
|
18351
|
+
metatags?: Record<string, string> | undefined;
|
|
18352
|
+
indexing?: "all" | "navigable" | undefined;
|
|
18353
|
+
}, {
|
|
18354
|
+
metatags?: Record<string, string> | undefined;
|
|
18355
|
+
indexing?: "all" | "navigable" | undefined;
|
|
18356
|
+
}>>;
|
|
18357
|
+
fonts: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
18358
|
+
family: z.ZodString;
|
|
18359
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
18360
|
+
source: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
18361
|
+
format: z.ZodOptional<z.ZodEnum<["woff", "woff2"]>>;
|
|
18362
|
+
}, "strip", z.ZodTypeAny, {
|
|
18363
|
+
family: string;
|
|
18364
|
+
source?: string | undefined;
|
|
18365
|
+
weight?: number | undefined;
|
|
18366
|
+
format?: "woff" | "woff2" | undefined;
|
|
18367
|
+
}, {
|
|
18368
|
+
family: string;
|
|
18369
|
+
source?: string | undefined;
|
|
18370
|
+
weight?: number | undefined;
|
|
18371
|
+
format?: "woff" | "woff2" | undefined;
|
|
18372
|
+
}>, {
|
|
18373
|
+
family: string;
|
|
18374
|
+
source?: string | undefined;
|
|
18375
|
+
weight?: number | undefined;
|
|
18376
|
+
format?: "woff" | "woff2" | undefined;
|
|
18377
|
+
}, {
|
|
18378
|
+
family: string;
|
|
18379
|
+
source?: string | undefined;
|
|
18380
|
+
weight?: number | undefined;
|
|
18381
|
+
format?: "woff" | "woff2" | undefined;
|
|
18382
|
+
}>, z.ZodObject<{
|
|
18383
|
+
heading: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
18384
|
+
family: z.ZodString;
|
|
18385
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
18386
|
+
source: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
18387
|
+
format: z.ZodOptional<z.ZodEnum<["woff", "woff2"]>>;
|
|
18388
|
+
}, "strip", z.ZodTypeAny, {
|
|
18389
|
+
family: string;
|
|
18390
|
+
source?: string | undefined;
|
|
18391
|
+
weight?: number | undefined;
|
|
18392
|
+
format?: "woff" | "woff2" | undefined;
|
|
18393
|
+
}, {
|
|
18394
|
+
family: string;
|
|
18395
|
+
source?: string | undefined;
|
|
18396
|
+
weight?: number | undefined;
|
|
18397
|
+
format?: "woff" | "woff2" | undefined;
|
|
18398
|
+
}>, {
|
|
18399
|
+
family: string;
|
|
18400
|
+
source?: string | undefined;
|
|
18401
|
+
weight?: number | undefined;
|
|
18402
|
+
format?: "woff" | "woff2" | undefined;
|
|
18403
|
+
}, {
|
|
18404
|
+
family: string;
|
|
18405
|
+
source?: string | undefined;
|
|
18406
|
+
weight?: number | undefined;
|
|
18407
|
+
format?: "woff" | "woff2" | undefined;
|
|
18408
|
+
}>>;
|
|
18409
|
+
body: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
18410
|
+
family: z.ZodString;
|
|
18411
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
18412
|
+
source: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
18413
|
+
format: z.ZodOptional<z.ZodEnum<["woff", "woff2"]>>;
|
|
18414
|
+
}, "strip", z.ZodTypeAny, {
|
|
18415
|
+
family: string;
|
|
18416
|
+
source?: string | undefined;
|
|
18417
|
+
weight?: number | undefined;
|
|
18418
|
+
format?: "woff" | "woff2" | undefined;
|
|
18419
|
+
}, {
|
|
18420
|
+
family: string;
|
|
18421
|
+
source?: string | undefined;
|
|
18422
|
+
weight?: number | undefined;
|
|
18423
|
+
format?: "woff" | "woff2" | undefined;
|
|
18424
|
+
}>, {
|
|
18425
|
+
family: string;
|
|
18426
|
+
source?: string | undefined;
|
|
18427
|
+
weight?: number | undefined;
|
|
18428
|
+
format?: "woff" | "woff2" | undefined;
|
|
18429
|
+
}, {
|
|
18430
|
+
family: string;
|
|
18431
|
+
source?: string | undefined;
|
|
18432
|
+
weight?: number | undefined;
|
|
18433
|
+
format?: "woff" | "woff2" | undefined;
|
|
18434
|
+
}>>;
|
|
18435
|
+
}, "strict", z.ZodTypeAny, {
|
|
18436
|
+
body?: {
|
|
18437
|
+
family: string;
|
|
18438
|
+
source?: string | undefined;
|
|
18439
|
+
weight?: number | undefined;
|
|
18440
|
+
format?: "woff" | "woff2" | undefined;
|
|
18441
|
+
} | undefined;
|
|
18442
|
+
heading?: {
|
|
18443
|
+
family: string;
|
|
18444
|
+
source?: string | undefined;
|
|
18445
|
+
weight?: number | undefined;
|
|
18446
|
+
format?: "woff" | "woff2" | undefined;
|
|
18447
|
+
} | undefined;
|
|
18448
|
+
}, {
|
|
18449
|
+
body?: {
|
|
18450
|
+
family: string;
|
|
18451
|
+
source?: string | undefined;
|
|
18452
|
+
weight?: number | undefined;
|
|
18453
|
+
format?: "woff" | "woff2" | undefined;
|
|
18454
|
+
} | undefined;
|
|
18455
|
+
heading?: {
|
|
18456
|
+
family: string;
|
|
18457
|
+
source?: string | undefined;
|
|
18458
|
+
weight?: number | undefined;
|
|
18459
|
+
format?: "woff" | "woff2" | undefined;
|
|
18460
|
+
} | undefined;
|
|
18461
|
+
}>]>>;
|
|
18462
|
+
icons: z.ZodOptional<z.ZodObject<{
|
|
18463
|
+
library: z.ZodEnum<["fontawesome", "lucide", "tabler"]>;
|
|
18464
|
+
}, "strip", z.ZodTypeAny, {
|
|
18465
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
18466
|
+
}, {
|
|
18467
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
18468
|
+
}>>;
|
|
18469
|
+
styling: z.ZodOptional<z.ZodObject<{
|
|
18470
|
+
eyebrows: z.ZodOptional<z.ZodEnum<["section", "breadcrumbs"]>>;
|
|
18471
|
+
codeblocks: z.ZodUnion<[z.ZodOptional<z.ZodEnum<["system", "dark"]>>, z.ZodObject<{
|
|
18472
|
+
theme: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["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"]>, z.ZodObject<{
|
|
18473
|
+
light: z.ZodEnum<["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"]>;
|
|
18474
|
+
dark: z.ZodEnum<["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"]>;
|
|
18475
|
+
}, "strip", z.ZodTypeAny, {
|
|
18476
|
+
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";
|
|
18477
|
+
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";
|
|
18478
|
+
}, {
|
|
18479
|
+
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";
|
|
18480
|
+
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";
|
|
18481
|
+
}>]>>;
|
|
18482
|
+
languages: z.ZodOptional<z.ZodObject<{
|
|
18483
|
+
custom: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
18484
|
+
}, "strip", z.ZodTypeAny, {
|
|
18485
|
+
custom?: string[] | undefined;
|
|
18486
|
+
}, {
|
|
18487
|
+
custom?: string[] | undefined;
|
|
18488
|
+
}>>;
|
|
18489
|
+
}, "strip", z.ZodTypeAny, {
|
|
18490
|
+
languages?: {
|
|
18491
|
+
custom?: string[] | undefined;
|
|
18492
|
+
} | undefined;
|
|
18493
|
+
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" | {
|
|
18494
|
+
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";
|
|
18495
|
+
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";
|
|
18496
|
+
} | undefined;
|
|
18497
|
+
}, {
|
|
18498
|
+
languages?: {
|
|
18499
|
+
custom?: string[] | undefined;
|
|
18500
|
+
} | undefined;
|
|
18501
|
+
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" | {
|
|
18502
|
+
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";
|
|
18503
|
+
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";
|
|
18504
|
+
} | undefined;
|
|
18505
|
+
}>]>;
|
|
18506
|
+
latex: z.ZodOptional<z.ZodBoolean>;
|
|
18507
|
+
}, "strip", z.ZodTypeAny, {
|
|
18508
|
+
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
18509
|
+
codeblocks?: "dark" | "system" | {
|
|
18510
|
+
languages?: {
|
|
18511
|
+
custom?: string[] | undefined;
|
|
18512
|
+
} | undefined;
|
|
18513
|
+
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" | {
|
|
18514
|
+
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";
|
|
18515
|
+
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";
|
|
18516
|
+
} | undefined;
|
|
18517
|
+
} | undefined;
|
|
18518
|
+
latex?: boolean | undefined;
|
|
18519
|
+
}, {
|
|
18520
|
+
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
18521
|
+
codeblocks?: "dark" | "system" | {
|
|
18522
|
+
languages?: {
|
|
18523
|
+
custom?: string[] | undefined;
|
|
18524
|
+
} | undefined;
|
|
18525
|
+
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" | {
|
|
18526
|
+
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";
|
|
18527
|
+
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";
|
|
18528
|
+
} | undefined;
|
|
18529
|
+
} | undefined;
|
|
18530
|
+
latex?: boolean | undefined;
|
|
18531
|
+
}>>;
|
|
18532
|
+
redirects: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
18533
|
+
source: z.ZodString;
|
|
18534
|
+
destination: z.ZodString;
|
|
18535
|
+
permanent: z.ZodOptional<z.ZodBoolean>;
|
|
18536
|
+
}, "strip", z.ZodTypeAny, {
|
|
18537
|
+
source: string;
|
|
18538
|
+
destination: string;
|
|
18539
|
+
permanent?: boolean | undefined;
|
|
18540
|
+
}, {
|
|
18541
|
+
source: string;
|
|
18542
|
+
destination: string;
|
|
18543
|
+
permanent?: boolean | undefined;
|
|
18544
|
+
}>, "many">, {
|
|
18545
|
+
source: string;
|
|
18546
|
+
destination: string;
|
|
18547
|
+
permanent?: boolean | undefined;
|
|
18548
|
+
}[], {
|
|
18549
|
+
source: string;
|
|
18550
|
+
destination: string;
|
|
18551
|
+
permanent?: boolean | undefined;
|
|
18552
|
+
}[]>>;
|
|
18553
|
+
integrations: z.ZodOptional<z.ZodObject<{
|
|
18554
|
+
amplitude: z.ZodOptional<z.ZodObject<{
|
|
18555
|
+
apiKey: z.ZodString;
|
|
18556
|
+
}, "strip", z.ZodTypeAny, {
|
|
18557
|
+
apiKey: string;
|
|
18558
|
+
}, {
|
|
18559
|
+
apiKey: string;
|
|
18560
|
+
}>>;
|
|
18561
|
+
clarity: z.ZodOptional<z.ZodObject<{
|
|
18562
|
+
projectId: z.ZodString;
|
|
18563
|
+
}, "strip", z.ZodTypeAny, {
|
|
18564
|
+
projectId: string;
|
|
18565
|
+
}, {
|
|
18566
|
+
projectId: string;
|
|
18567
|
+
}>>;
|
|
18568
|
+
clearbit: z.ZodOptional<z.ZodObject<{
|
|
18569
|
+
publicApiKey: z.ZodString;
|
|
18570
|
+
}, "strip", z.ZodTypeAny, {
|
|
18571
|
+
publicApiKey: string;
|
|
18572
|
+
}, {
|
|
18573
|
+
publicApiKey: string;
|
|
18574
|
+
}>>;
|
|
18575
|
+
fathom: z.ZodOptional<z.ZodObject<{
|
|
18576
|
+
siteId: z.ZodString;
|
|
18577
|
+
}, "strip", z.ZodTypeAny, {
|
|
18578
|
+
siteId: string;
|
|
18579
|
+
}, {
|
|
18580
|
+
siteId: string;
|
|
18581
|
+
}>>;
|
|
18582
|
+
frontchat: z.ZodOptional<z.ZodObject<{
|
|
18583
|
+
snippetId: z.ZodString;
|
|
18584
|
+
}, "strip", z.ZodTypeAny, {
|
|
18585
|
+
snippetId: string;
|
|
18586
|
+
}, {
|
|
18587
|
+
snippetId: string;
|
|
18588
|
+
}>>;
|
|
18589
|
+
ga4: z.ZodOptional<z.ZodObject<{
|
|
18590
|
+
measurementId: z.ZodString;
|
|
18591
|
+
}, "strip", z.ZodTypeAny, {
|
|
18592
|
+
measurementId: string;
|
|
18593
|
+
}, {
|
|
18594
|
+
measurementId: string;
|
|
18595
|
+
}>>;
|
|
18596
|
+
gtm: z.ZodOptional<z.ZodObject<{
|
|
18597
|
+
tagId: z.ZodString;
|
|
18598
|
+
}, "strip", z.ZodTypeAny, {
|
|
18599
|
+
tagId: string;
|
|
18600
|
+
}, {
|
|
18601
|
+
tagId: string;
|
|
18602
|
+
}>>;
|
|
18603
|
+
heap: z.ZodOptional<z.ZodObject<{
|
|
18604
|
+
appId: z.ZodString;
|
|
18605
|
+
}, "strip", z.ZodTypeAny, {
|
|
18606
|
+
appId: string;
|
|
18607
|
+
}, {
|
|
18608
|
+
appId: string;
|
|
18609
|
+
}>>;
|
|
18610
|
+
hightouch: z.ZodOptional<z.ZodObject<{
|
|
18611
|
+
writeKey: z.ZodString;
|
|
18612
|
+
apiHost: z.ZodOptional<z.ZodString>;
|
|
18613
|
+
}, "strip", z.ZodTypeAny, {
|
|
18614
|
+
writeKey: string;
|
|
18615
|
+
apiHost?: string | undefined;
|
|
18616
|
+
}, {
|
|
18617
|
+
writeKey: string;
|
|
18618
|
+
apiHost?: string | undefined;
|
|
18619
|
+
}>>;
|
|
18620
|
+
hotjar: z.ZodOptional<z.ZodObject<{
|
|
18621
|
+
hjid: z.ZodString;
|
|
18622
|
+
hjsv: z.ZodString;
|
|
18623
|
+
}, "strip", z.ZodTypeAny, {
|
|
18624
|
+
hjid: string;
|
|
18625
|
+
hjsv: string;
|
|
18626
|
+
}, {
|
|
18627
|
+
hjid: string;
|
|
18628
|
+
hjsv: string;
|
|
18629
|
+
}>>;
|
|
18630
|
+
intercom: z.ZodOptional<z.ZodObject<{
|
|
18631
|
+
appId: z.ZodString;
|
|
18632
|
+
}, "strip", z.ZodTypeAny, {
|
|
18633
|
+
appId: string;
|
|
18634
|
+
}, {
|
|
18635
|
+
appId: string;
|
|
18636
|
+
}>>;
|
|
18637
|
+
koala: z.ZodOptional<z.ZodObject<{
|
|
18638
|
+
publicApiKey: z.ZodString;
|
|
18639
|
+
}, "strip", z.ZodTypeAny, {
|
|
18640
|
+
publicApiKey: string;
|
|
18641
|
+
}, {
|
|
18642
|
+
publicApiKey: string;
|
|
18643
|
+
}>>;
|
|
18644
|
+
logrocket: z.ZodOptional<z.ZodObject<{
|
|
18645
|
+
appId: z.ZodString;
|
|
18646
|
+
}, "strip", z.ZodTypeAny, {
|
|
18647
|
+
appId: string;
|
|
18648
|
+
}, {
|
|
18649
|
+
appId: string;
|
|
18650
|
+
}>>;
|
|
18651
|
+
mixpanel: z.ZodOptional<z.ZodObject<{
|
|
18652
|
+
projectToken: z.ZodString;
|
|
18653
|
+
}, "strip", z.ZodTypeAny, {
|
|
18654
|
+
projectToken: string;
|
|
18655
|
+
}, {
|
|
18656
|
+
projectToken: string;
|
|
18657
|
+
}>>;
|
|
18658
|
+
pirsch: z.ZodOptional<z.ZodObject<{
|
|
18659
|
+
id: z.ZodString;
|
|
18660
|
+
}, "strip", z.ZodTypeAny, {
|
|
18661
|
+
id: string;
|
|
18662
|
+
}, {
|
|
18663
|
+
id: string;
|
|
18664
|
+
}>>;
|
|
18665
|
+
posthog: z.ZodOptional<z.ZodObject<{
|
|
18666
|
+
apiKey: z.ZodString;
|
|
18667
|
+
apiHost: z.ZodOptional<z.ZodString>;
|
|
18668
|
+
sessionRecording: z.ZodOptional<z.ZodBoolean>;
|
|
18669
|
+
}, "strip", z.ZodTypeAny, {
|
|
18670
|
+
apiKey: string;
|
|
18671
|
+
apiHost?: string | undefined;
|
|
18672
|
+
sessionRecording?: boolean | undefined;
|
|
18673
|
+
}, {
|
|
18674
|
+
apiKey: string;
|
|
18675
|
+
apiHost?: string | undefined;
|
|
18676
|
+
sessionRecording?: boolean | undefined;
|
|
18677
|
+
}>>;
|
|
18678
|
+
plausible: z.ZodOptional<z.ZodObject<{
|
|
18679
|
+
domain: z.ZodEffects<z.ZodString, string, string>;
|
|
18680
|
+
server: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
18681
|
+
}, "strip", z.ZodTypeAny, {
|
|
18682
|
+
domain: string;
|
|
18683
|
+
server?: string | undefined;
|
|
18684
|
+
}, {
|
|
18685
|
+
domain: string;
|
|
18686
|
+
server?: string | undefined;
|
|
18687
|
+
}>>;
|
|
18688
|
+
segment: z.ZodOptional<z.ZodObject<{
|
|
18689
|
+
key: z.ZodString;
|
|
18690
|
+
}, "strip", z.ZodTypeAny, {
|
|
18691
|
+
key: string;
|
|
18692
|
+
}, {
|
|
18693
|
+
key: string;
|
|
18694
|
+
}>>;
|
|
18695
|
+
telemetry: z.ZodOptional<z.ZodObject<{
|
|
18696
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
18697
|
+
}, "strip", z.ZodTypeAny, {
|
|
18698
|
+
enabled?: boolean | undefined;
|
|
18699
|
+
}, {
|
|
18700
|
+
enabled?: boolean | undefined;
|
|
18701
|
+
}>>;
|
|
18702
|
+
cookies: z.ZodOptional<z.ZodObject<{
|
|
18703
|
+
key: z.ZodOptional<z.ZodString>;
|
|
18704
|
+
value: z.ZodOptional<z.ZodString>;
|
|
18705
|
+
}, "strip", z.ZodTypeAny, {
|
|
18706
|
+
value?: string | undefined;
|
|
18707
|
+
key?: string | undefined;
|
|
18708
|
+
}, {
|
|
18709
|
+
value?: string | undefined;
|
|
18710
|
+
key?: string | undefined;
|
|
18711
|
+
}>>;
|
|
18712
|
+
}, "strict", z.ZodTypeAny, {
|
|
18713
|
+
amplitude?: {
|
|
18714
|
+
apiKey: string;
|
|
18715
|
+
} | undefined;
|
|
18716
|
+
clarity?: {
|
|
18717
|
+
projectId: string;
|
|
18718
|
+
} | undefined;
|
|
18719
|
+
clearbit?: {
|
|
18720
|
+
publicApiKey: string;
|
|
18721
|
+
} | undefined;
|
|
18722
|
+
fathom?: {
|
|
18723
|
+
siteId: string;
|
|
18724
|
+
} | undefined;
|
|
18725
|
+
ga4?: {
|
|
18726
|
+
measurementId: string;
|
|
18727
|
+
} | undefined;
|
|
18728
|
+
gtm?: {
|
|
18729
|
+
tagId: string;
|
|
18730
|
+
} | undefined;
|
|
18731
|
+
heap?: {
|
|
18732
|
+
appId: string;
|
|
18733
|
+
} | undefined;
|
|
18734
|
+
hightouch?: {
|
|
18735
|
+
writeKey: string;
|
|
18736
|
+
apiHost?: string | undefined;
|
|
18737
|
+
} | undefined;
|
|
18738
|
+
hotjar?: {
|
|
18739
|
+
hjid: string;
|
|
18740
|
+
hjsv: string;
|
|
18741
|
+
} | undefined;
|
|
18742
|
+
koala?: {
|
|
18743
|
+
publicApiKey: string;
|
|
18744
|
+
} | undefined;
|
|
18745
|
+
logrocket?: {
|
|
18746
|
+
appId: string;
|
|
18747
|
+
} | undefined;
|
|
18748
|
+
mixpanel?: {
|
|
18749
|
+
projectToken: string;
|
|
18750
|
+
} | undefined;
|
|
18751
|
+
pirsch?: {
|
|
18752
|
+
id: string;
|
|
18753
|
+
} | undefined;
|
|
18754
|
+
posthog?: {
|
|
18755
|
+
apiKey: string;
|
|
18756
|
+
apiHost?: string | undefined;
|
|
18757
|
+
sessionRecording?: boolean | undefined;
|
|
18758
|
+
} | undefined;
|
|
18759
|
+
plausible?: {
|
|
18760
|
+
domain: string;
|
|
18761
|
+
server?: string | undefined;
|
|
18762
|
+
} | undefined;
|
|
18763
|
+
segment?: {
|
|
18764
|
+
key: string;
|
|
18765
|
+
} | undefined;
|
|
18766
|
+
intercom?: {
|
|
18767
|
+
appId: string;
|
|
18768
|
+
} | undefined;
|
|
18769
|
+
frontchat?: {
|
|
18770
|
+
snippetId: string;
|
|
18771
|
+
} | undefined;
|
|
18772
|
+
telemetry?: {
|
|
18773
|
+
enabled?: boolean | undefined;
|
|
18774
|
+
} | undefined;
|
|
18775
|
+
cookies?: {
|
|
18776
|
+
value?: string | undefined;
|
|
18777
|
+
key?: string | undefined;
|
|
18778
|
+
} | undefined;
|
|
18779
|
+
}, {
|
|
18780
|
+
amplitude?: {
|
|
18781
|
+
apiKey: string;
|
|
18782
|
+
} | undefined;
|
|
18783
|
+
clarity?: {
|
|
18784
|
+
projectId: string;
|
|
18785
|
+
} | undefined;
|
|
18786
|
+
clearbit?: {
|
|
18787
|
+
publicApiKey: string;
|
|
18788
|
+
} | undefined;
|
|
18789
|
+
fathom?: {
|
|
18790
|
+
siteId: string;
|
|
18791
|
+
} | undefined;
|
|
18792
|
+
ga4?: {
|
|
18793
|
+
measurementId: string;
|
|
18794
|
+
} | undefined;
|
|
18795
|
+
gtm?: {
|
|
18796
|
+
tagId: string;
|
|
18797
|
+
} | undefined;
|
|
18798
|
+
heap?: {
|
|
18799
|
+
appId: string;
|
|
18800
|
+
} | undefined;
|
|
18801
|
+
hightouch?: {
|
|
18802
|
+
writeKey: string;
|
|
18803
|
+
apiHost?: string | undefined;
|
|
18804
|
+
} | undefined;
|
|
18805
|
+
hotjar?: {
|
|
18806
|
+
hjid: string;
|
|
18807
|
+
hjsv: string;
|
|
18808
|
+
} | undefined;
|
|
18809
|
+
koala?: {
|
|
18810
|
+
publicApiKey: string;
|
|
18811
|
+
} | undefined;
|
|
18812
|
+
logrocket?: {
|
|
18813
|
+
appId: string;
|
|
18814
|
+
} | undefined;
|
|
18815
|
+
mixpanel?: {
|
|
18816
|
+
projectToken: string;
|
|
18817
|
+
} | undefined;
|
|
18818
|
+
pirsch?: {
|
|
18819
|
+
id: string;
|
|
18820
|
+
} | undefined;
|
|
18821
|
+
posthog?: {
|
|
18822
|
+
apiKey: string;
|
|
18823
|
+
apiHost?: string | undefined;
|
|
18824
|
+
sessionRecording?: boolean | undefined;
|
|
18825
|
+
} | undefined;
|
|
18826
|
+
plausible?: {
|
|
18827
|
+
domain: string;
|
|
18828
|
+
server?: string | undefined;
|
|
18829
|
+
} | undefined;
|
|
18830
|
+
segment?: {
|
|
18831
|
+
key: string;
|
|
18832
|
+
} | undefined;
|
|
18833
|
+
intercom?: {
|
|
18834
|
+
appId: string;
|
|
18835
|
+
} | undefined;
|
|
18836
|
+
frontchat?: {
|
|
18837
|
+
snippetId: string;
|
|
18838
|
+
} | undefined;
|
|
18839
|
+
telemetry?: {
|
|
18840
|
+
enabled?: boolean | undefined;
|
|
18841
|
+
} | undefined;
|
|
18842
|
+
cookies?: {
|
|
18843
|
+
value?: string | undefined;
|
|
18844
|
+
key?: string | undefined;
|
|
18845
|
+
} | undefined;
|
|
18846
|
+
}>>;
|
|
18847
|
+
banner: z.ZodOptional<z.ZodObject<{
|
|
18848
|
+
content: z.ZodString;
|
|
18849
|
+
dismissible: z.ZodOptional<z.ZodBoolean>;
|
|
18850
|
+
}, "strip", z.ZodTypeAny, {
|
|
18851
|
+
content: string;
|
|
18852
|
+
dismissible?: boolean | undefined;
|
|
18853
|
+
}, {
|
|
18854
|
+
content: string;
|
|
18855
|
+
dismissible?: boolean | undefined;
|
|
18856
|
+
}>>;
|
|
18857
|
+
errors: z.ZodOptional<z.ZodObject<{
|
|
18858
|
+
'404': z.ZodObject<{
|
|
18859
|
+
redirect: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
18860
|
+
title: z.ZodOptional<z.ZodString>;
|
|
18861
|
+
description: z.ZodOptional<z.ZodString>;
|
|
18862
|
+
}, "strip", z.ZodTypeAny, {
|
|
18863
|
+
redirect: boolean;
|
|
18864
|
+
title?: string | undefined;
|
|
18865
|
+
description?: string | undefined;
|
|
18866
|
+
}, {
|
|
18867
|
+
title?: string | undefined;
|
|
18868
|
+
description?: string | undefined;
|
|
18869
|
+
redirect?: boolean | undefined;
|
|
18870
|
+
}>;
|
|
18871
|
+
}, "strip", z.ZodTypeAny, {
|
|
18872
|
+
'404': {
|
|
18873
|
+
redirect: boolean;
|
|
18874
|
+
title?: string | undefined;
|
|
18875
|
+
description?: string | undefined;
|
|
18876
|
+
};
|
|
18877
|
+
}, {
|
|
18878
|
+
'404': {
|
|
18879
|
+
title?: string | undefined;
|
|
18880
|
+
description?: string | undefined;
|
|
18881
|
+
redirect?: boolean | undefined;
|
|
18882
|
+
};
|
|
18883
|
+
}>>;
|
|
18884
|
+
contextual: z.ZodOptional<z.ZodObject<{
|
|
18885
|
+
options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["assistant", "copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "add-mcp", "cursor", "vscode"]>, z.ZodObject<{
|
|
18886
|
+
title: z.ZodString;
|
|
18887
|
+
description: z.ZodString;
|
|
18888
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
18889
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
18890
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
18891
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
18892
|
+
}, "strip", z.ZodTypeAny, {
|
|
18893
|
+
name: string;
|
|
18894
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
18895
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
18896
|
+
}, {
|
|
18897
|
+
name: string;
|
|
18898
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
18899
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
18900
|
+
}>]>>;
|
|
18901
|
+
href: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
18902
|
+
base: z.ZodString;
|
|
18903
|
+
query: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
18904
|
+
key: z.ZodString;
|
|
18905
|
+
value: z.ZodString;
|
|
18906
|
+
}, "strip", z.ZodTypeAny, {
|
|
18907
|
+
value: string;
|
|
18908
|
+
key: string;
|
|
18909
|
+
}, {
|
|
18910
|
+
value: string;
|
|
18911
|
+
key: string;
|
|
18912
|
+
}>, "many">>;
|
|
18913
|
+
}, "strip", z.ZodTypeAny, {
|
|
18914
|
+
base: string;
|
|
18915
|
+
query?: {
|
|
18916
|
+
value: string;
|
|
18917
|
+
key: string;
|
|
18918
|
+
}[] | undefined;
|
|
18919
|
+
}, {
|
|
18920
|
+
base: string;
|
|
18921
|
+
query?: {
|
|
18922
|
+
value: string;
|
|
18923
|
+
key: string;
|
|
18924
|
+
}[] | undefined;
|
|
18925
|
+
}>]>;
|
|
18926
|
+
}, "strip", z.ZodTypeAny, {
|
|
18927
|
+
href: string | {
|
|
18928
|
+
base: string;
|
|
18929
|
+
query?: {
|
|
18930
|
+
value: string;
|
|
18931
|
+
key: string;
|
|
18932
|
+
}[] | undefined;
|
|
18933
|
+
};
|
|
18934
|
+
title: string;
|
|
18935
|
+
description: string;
|
|
18936
|
+
icon?: string | {
|
|
18937
|
+
name: string;
|
|
18938
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
18939
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
18940
|
+
} | undefined;
|
|
18941
|
+
}, {
|
|
18942
|
+
href: string | {
|
|
18943
|
+
base: string;
|
|
18944
|
+
query?: {
|
|
18945
|
+
value: string;
|
|
18946
|
+
key: string;
|
|
18947
|
+
}[] | undefined;
|
|
18948
|
+
};
|
|
18949
|
+
title: string;
|
|
18950
|
+
description: string;
|
|
18951
|
+
icon?: string | {
|
|
18952
|
+
name: string;
|
|
18953
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
18954
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
18955
|
+
} | undefined;
|
|
18956
|
+
}>]>, "many">, ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
18957
|
+
href: string | {
|
|
18958
|
+
base: string;
|
|
18959
|
+
query?: {
|
|
18960
|
+
value: string;
|
|
18961
|
+
key: string;
|
|
18962
|
+
}[] | undefined;
|
|
18963
|
+
};
|
|
18964
|
+
title: string;
|
|
18965
|
+
description: string;
|
|
18966
|
+
icon?: string | {
|
|
18967
|
+
name: string;
|
|
18968
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
18969
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
18970
|
+
} | undefined;
|
|
18971
|
+
})[], ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
18972
|
+
href: string | {
|
|
18973
|
+
base: string;
|
|
18974
|
+
query?: {
|
|
18975
|
+
value: string;
|
|
18976
|
+
key: string;
|
|
18977
|
+
}[] | undefined;
|
|
18978
|
+
};
|
|
18979
|
+
title: string;
|
|
18980
|
+
description: string;
|
|
18981
|
+
icon?: string | {
|
|
18982
|
+
name: string;
|
|
18983
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
18984
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
18985
|
+
} | undefined;
|
|
18986
|
+
})[]>;
|
|
18987
|
+
display: z.ZodDefault<z.ZodOptional<z.ZodEnum<["header", "toc"]>>>;
|
|
18988
|
+
}, "strip", z.ZodTypeAny, {
|
|
18989
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
18990
|
+
href: string | {
|
|
18991
|
+
base: string;
|
|
18992
|
+
query?: {
|
|
18993
|
+
value: string;
|
|
18994
|
+
key: string;
|
|
18995
|
+
}[] | undefined;
|
|
18996
|
+
};
|
|
18997
|
+
title: string;
|
|
18998
|
+
description: string;
|
|
18999
|
+
icon?: string | {
|
|
19000
|
+
name: string;
|
|
19001
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
19002
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
19003
|
+
} | undefined;
|
|
19004
|
+
})[];
|
|
19005
|
+
display: "header" | "toc";
|
|
19006
|
+
}, {
|
|
19007
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
19008
|
+
href: string | {
|
|
19009
|
+
base: string;
|
|
19010
|
+
query?: {
|
|
19011
|
+
value: string;
|
|
19012
|
+
key: string;
|
|
19013
|
+
}[] | undefined;
|
|
19014
|
+
};
|
|
19015
|
+
title: string;
|
|
19016
|
+
description: string;
|
|
19017
|
+
icon?: string | {
|
|
19018
|
+
name: string;
|
|
19019
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
19020
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
19021
|
+
} | undefined;
|
|
19022
|
+
})[];
|
|
19023
|
+
display?: "header" | "toc" | undefined;
|
|
19024
|
+
}>>;
|
|
19025
|
+
thumbnails: z.ZodOptional<z.ZodObject<{
|
|
19026
|
+
appearance: z.ZodOptional<z.ZodEnum<[import("./properties/thumbnails.js").ThumbnailAppearance.Light, import("./properties/thumbnails.js").ThumbnailAppearance.Dark]>>;
|
|
19027
|
+
background: z.ZodOptional<z.ZodString>;
|
|
19028
|
+
fonts: z.ZodOptional<z.ZodObject<{
|
|
19029
|
+
family: z.ZodString;
|
|
19030
|
+
}, "strip", z.ZodTypeAny, {
|
|
19031
|
+
family: string;
|
|
19032
|
+
}, {
|
|
19033
|
+
family: string;
|
|
19034
|
+
}>>;
|
|
19035
|
+
}, "strip", z.ZodTypeAny, {
|
|
19036
|
+
background?: string | undefined;
|
|
19037
|
+
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
19038
|
+
fonts?: {
|
|
19039
|
+
family: string;
|
|
19040
|
+
} | undefined;
|
|
19041
|
+
}, {
|
|
19042
|
+
background?: string | undefined;
|
|
19043
|
+
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
19044
|
+
fonts?: {
|
|
19045
|
+
family: string;
|
|
19046
|
+
} | undefined;
|
|
19047
|
+
}>>;
|
|
19048
|
+
interaction: z.ZodOptional<z.ZodObject<{
|
|
19049
|
+
drilldown: z.ZodOptional<z.ZodBoolean>;
|
|
19050
|
+
}, "strip", z.ZodTypeAny, {
|
|
19051
|
+
drilldown?: boolean | undefined;
|
|
19052
|
+
}, {
|
|
19053
|
+
drilldown?: boolean | undefined;
|
|
19054
|
+
}>>;
|
|
19055
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
19056
|
+
timestamp: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
19057
|
+
}, "strip", z.ZodTypeAny, {
|
|
19058
|
+
timestamp: boolean;
|
|
19059
|
+
}, {
|
|
19060
|
+
timestamp?: boolean | undefined;
|
|
19061
|
+
}>>>;
|
|
19062
|
+
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
16868
19063
|
theme: z.ZodLiteral<"sequoia">;
|
|
16869
19064
|
}, "strip", z.ZodTypeAny, {
|
|
16870
19065
|
name: string;
|
|
@@ -19061,11 +21256,11 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
19061
21256
|
timestamp?: boolean | undefined;
|
|
19062
21257
|
}>>>;
|
|
19063
21258
|
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
19064
|
-
theme: z.ZodEnum<["mint", "maple", "palm", "willow", "linden", "almond", "aspen", "sequoia"]>;
|
|
21259
|
+
theme: z.ZodEnum<["mint", "maple", "palm", "willow", "linden", "almond", "aspen", "luma", "sequoia"]>;
|
|
19065
21260
|
}, "strip", z.ZodTypeAny, {
|
|
19066
21261
|
name: string;
|
|
19067
21262
|
$schema: string;
|
|
19068
|
-
theme: "mint" | "maple" | "palm" | "willow" | "linden" | "almond" | "aspen" | "sequoia";
|
|
21263
|
+
theme: "mint" | "maple" | "palm" | "willow" | "linden" | "almond" | "aspen" | "luma" | "sequoia";
|
|
19069
21264
|
colors: {
|
|
19070
21265
|
primary: string;
|
|
19071
21266
|
light?: string | undefined;
|
|
@@ -19412,7 +21607,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
19412
21607
|
variables?: Record<string, string> | undefined;
|
|
19413
21608
|
}, {
|
|
19414
21609
|
name: string;
|
|
19415
|
-
theme: "mint" | "maple" | "palm" | "willow" | "linden" | "almond" | "aspen" | "sequoia";
|
|
21610
|
+
theme: "mint" | "maple" | "palm" | "willow" | "linden" | "almond" | "aspen" | "luma" | "sequoia";
|
|
19416
21611
|
colors: {
|
|
19417
21612
|
primary: string;
|
|
19418
21613
|
light?: string | undefined;
|