@mintlify/validation 0.1.352 → 0.1.353
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 +1730 -0
- package/dist/mint-config/schemas/v2/index.js +2 -0
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +1732 -0
- package/dist/mint-config/schemas/v2/themes/almond.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 -1
- package/dist/mint-config/validateConfig.d.ts +655 -9
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -478,7 +478,7 @@ export declare function validateMintConfig(value: unknown): z.SafeParseError<{
|
|
|
478
478
|
};
|
|
479
479
|
export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
480
480
|
name: string;
|
|
481
|
-
theme: "
|
|
481
|
+
theme: "almond";
|
|
482
482
|
colors: {
|
|
483
483
|
primary: string;
|
|
484
484
|
light?: string | undefined;
|
|
@@ -801,7 +801,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
801
801
|
} | undefined;
|
|
802
802
|
} | {
|
|
803
803
|
name: string;
|
|
804
|
-
theme: "
|
|
804
|
+
theme: "linden";
|
|
805
805
|
colors: {
|
|
806
806
|
primary: string;
|
|
807
807
|
light?: string | undefined;
|
|
@@ -1124,7 +1124,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1124
1124
|
} | undefined;
|
|
1125
1125
|
} | {
|
|
1126
1126
|
name: string;
|
|
1127
|
-
theme: "
|
|
1127
|
+
theme: "maple";
|
|
1128
1128
|
colors: {
|
|
1129
1129
|
primary: string;
|
|
1130
1130
|
light?: string | undefined;
|
|
@@ -1447,7 +1447,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1447
1447
|
} | undefined;
|
|
1448
1448
|
} | {
|
|
1449
1449
|
name: string;
|
|
1450
|
-
theme: "
|
|
1450
|
+
theme: "mint";
|
|
1451
1451
|
colors: {
|
|
1452
1452
|
primary: string;
|
|
1453
1453
|
light?: string | undefined;
|
|
@@ -1770,7 +1770,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1770
1770
|
} | undefined;
|
|
1771
1771
|
} | {
|
|
1772
1772
|
name: string;
|
|
1773
|
-
theme: "
|
|
1773
|
+
theme: "palm";
|
|
1774
1774
|
colors: {
|
|
1775
1775
|
primary: string;
|
|
1776
1776
|
light?: string | undefined;
|
|
@@ -2091,10 +2091,656 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2091
2091
|
contextual?: {
|
|
2092
2092
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
2093
2093
|
} | undefined;
|
|
2094
|
-
}
|
|
2095
|
-
|
|
2096
|
-
|
|
2097
|
-
|
|
2094
|
+
} | {
|
|
2095
|
+
name: string;
|
|
2096
|
+
theme: "willow";
|
|
2097
|
+
colors: {
|
|
2098
|
+
primary: string;
|
|
2099
|
+
light?: string | undefined;
|
|
2100
|
+
dark?: string | undefined;
|
|
2101
|
+
};
|
|
2102
|
+
navigation: ({
|
|
2103
|
+
languages: import("./schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
2104
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2105
|
+
} | {
|
|
2106
|
+
versions: import("./schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
2107
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2108
|
+
} | {
|
|
2109
|
+
tabs: import("./schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
2110
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2111
|
+
} | {
|
|
2112
|
+
dropdowns: import("./schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
2113
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2114
|
+
} | {
|
|
2115
|
+
anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
2116
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2117
|
+
} | {
|
|
2118
|
+
groups: ({
|
|
2119
|
+
openapi: (string | string[] | {
|
|
2120
|
+
source: string;
|
|
2121
|
+
directory?: string | undefined;
|
|
2122
|
+
}) & (string | string[] | {
|
|
2123
|
+
source: string;
|
|
2124
|
+
directory?: string | undefined;
|
|
2125
|
+
} | undefined);
|
|
2126
|
+
group: string;
|
|
2127
|
+
icon?: string | {
|
|
2128
|
+
name: string;
|
|
2129
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2130
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2131
|
+
} | undefined;
|
|
2132
|
+
hidden?: boolean | undefined;
|
|
2133
|
+
root?: string | undefined;
|
|
2134
|
+
} | {
|
|
2135
|
+
group: string;
|
|
2136
|
+
asyncapi: (string | string[] | {
|
|
2137
|
+
source: string;
|
|
2138
|
+
directory?: string | undefined;
|
|
2139
|
+
}) & (string | string[] | {
|
|
2140
|
+
source: string;
|
|
2141
|
+
directory?: string | undefined;
|
|
2142
|
+
} | undefined);
|
|
2143
|
+
icon?: string | {
|
|
2144
|
+
name: string;
|
|
2145
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2146
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2147
|
+
} | undefined;
|
|
2148
|
+
hidden?: boolean | undefined;
|
|
2149
|
+
root?: string | undefined;
|
|
2150
|
+
} | {
|
|
2151
|
+
group: string;
|
|
2152
|
+
pages: any[];
|
|
2153
|
+
icon?: string | {
|
|
2154
|
+
name: string;
|
|
2155
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2156
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2157
|
+
} | undefined;
|
|
2158
|
+
hidden?: boolean | undefined;
|
|
2159
|
+
root?: string | undefined;
|
|
2160
|
+
})[];
|
|
2161
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2162
|
+
} | {
|
|
2163
|
+
pages: any[];
|
|
2164
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2165
|
+
}) & ({
|
|
2166
|
+
languages: import("./schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
2167
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2168
|
+
} | {
|
|
2169
|
+
versions: import("./schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
2170
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2171
|
+
} | {
|
|
2172
|
+
tabs: import("./schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
2173
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2174
|
+
} | {
|
|
2175
|
+
dropdowns: import("./schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
2176
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2177
|
+
} | {
|
|
2178
|
+
anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
2179
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2180
|
+
} | {
|
|
2181
|
+
groups: ({
|
|
2182
|
+
openapi: (string | string[] | {
|
|
2183
|
+
source: string;
|
|
2184
|
+
directory?: string | undefined;
|
|
2185
|
+
}) & (string | string[] | {
|
|
2186
|
+
source: string;
|
|
2187
|
+
directory?: string | undefined;
|
|
2188
|
+
} | undefined);
|
|
2189
|
+
group: string;
|
|
2190
|
+
icon?: string | {
|
|
2191
|
+
name: string;
|
|
2192
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2193
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2194
|
+
} | undefined;
|
|
2195
|
+
hidden?: boolean | undefined;
|
|
2196
|
+
root?: string | undefined;
|
|
2197
|
+
} | {
|
|
2198
|
+
group: string;
|
|
2199
|
+
asyncapi: (string | string[] | {
|
|
2200
|
+
source: string;
|
|
2201
|
+
directory?: string | undefined;
|
|
2202
|
+
}) & (string | string[] | {
|
|
2203
|
+
source: string;
|
|
2204
|
+
directory?: string | undefined;
|
|
2205
|
+
} | undefined);
|
|
2206
|
+
icon?: string | {
|
|
2207
|
+
name: string;
|
|
2208
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2209
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2210
|
+
} | undefined;
|
|
2211
|
+
hidden?: boolean | undefined;
|
|
2212
|
+
root?: string | undefined;
|
|
2213
|
+
} | {
|
|
2214
|
+
group: string;
|
|
2215
|
+
pages: any[];
|
|
2216
|
+
icon?: string | {
|
|
2217
|
+
name: string;
|
|
2218
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2219
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2220
|
+
} | undefined;
|
|
2221
|
+
hidden?: boolean | undefined;
|
|
2222
|
+
root?: string | undefined;
|
|
2223
|
+
})[];
|
|
2224
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2225
|
+
} | {
|
|
2226
|
+
pages: any[];
|
|
2227
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2228
|
+
} | undefined);
|
|
2229
|
+
$schema?: string | undefined;
|
|
2230
|
+
description?: string | undefined;
|
|
2231
|
+
logo?: string | {
|
|
2232
|
+
light: string;
|
|
2233
|
+
dark: string;
|
|
2234
|
+
href?: string | undefined;
|
|
2235
|
+
} | undefined;
|
|
2236
|
+
favicon?: string | {
|
|
2237
|
+
light: string;
|
|
2238
|
+
dark: string;
|
|
2239
|
+
} | undefined;
|
|
2240
|
+
api?: {
|
|
2241
|
+
openapi?: string | string[] | {
|
|
2242
|
+
source: string;
|
|
2243
|
+
directory?: string | undefined;
|
|
2244
|
+
} | undefined;
|
|
2245
|
+
asyncapi?: string | string[] | {
|
|
2246
|
+
source: string;
|
|
2247
|
+
directory?: string | undefined;
|
|
2248
|
+
} | undefined;
|
|
2249
|
+
playground?: {
|
|
2250
|
+
display?: "simple" | "none" | "interactive" | undefined;
|
|
2251
|
+
proxy?: boolean | undefined;
|
|
2252
|
+
} | undefined;
|
|
2253
|
+
examples?: {
|
|
2254
|
+
defaults?: "all" | "required" | undefined;
|
|
2255
|
+
languages?: string[] | undefined;
|
|
2256
|
+
} | undefined;
|
|
2257
|
+
mdx?: {
|
|
2258
|
+
auth?: {
|
|
2259
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
2260
|
+
name?: string | undefined;
|
|
2261
|
+
} | undefined;
|
|
2262
|
+
server?: string | string[] | undefined;
|
|
2263
|
+
} | undefined;
|
|
2264
|
+
} | undefined;
|
|
2265
|
+
appearance?: {
|
|
2266
|
+
default?: "light" | "dark" | "system" | undefined;
|
|
2267
|
+
strict?: boolean | undefined;
|
|
2268
|
+
} | undefined;
|
|
2269
|
+
background?: {
|
|
2270
|
+
image?: string | {
|
|
2271
|
+
light: string;
|
|
2272
|
+
dark: string;
|
|
2273
|
+
} | undefined;
|
|
2274
|
+
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
2275
|
+
color?: {
|
|
2276
|
+
light?: string | undefined;
|
|
2277
|
+
dark?: string | undefined;
|
|
2278
|
+
} | undefined;
|
|
2279
|
+
} | undefined;
|
|
2280
|
+
navbar?: {
|
|
2281
|
+
links?: {
|
|
2282
|
+
href: string;
|
|
2283
|
+
label: string;
|
|
2284
|
+
}[] | undefined;
|
|
2285
|
+
primary?: {
|
|
2286
|
+
type: "button";
|
|
2287
|
+
href: string;
|
|
2288
|
+
label: string;
|
|
2289
|
+
} | {
|
|
2290
|
+
type: "github";
|
|
2291
|
+
href: string;
|
|
2292
|
+
} | undefined;
|
|
2293
|
+
} | undefined;
|
|
2294
|
+
footer?: {
|
|
2295
|
+
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;
|
|
2296
|
+
links?: {
|
|
2297
|
+
items: {
|
|
2298
|
+
href: string;
|
|
2299
|
+
label: string;
|
|
2300
|
+
}[];
|
|
2301
|
+
header?: string | undefined;
|
|
2302
|
+
}[] | undefined;
|
|
2303
|
+
} | undefined;
|
|
2304
|
+
search?: {
|
|
2305
|
+
prompt?: string | undefined;
|
|
2306
|
+
} | undefined;
|
|
2307
|
+
seo?: {
|
|
2308
|
+
metatags?: Record<string, string> | undefined;
|
|
2309
|
+
indexing?: "all" | "navigable" | undefined;
|
|
2310
|
+
} | undefined;
|
|
2311
|
+
fonts?: {
|
|
2312
|
+
family: string;
|
|
2313
|
+
weight?: number | undefined;
|
|
2314
|
+
source?: string | undefined;
|
|
2315
|
+
format?: "woff" | "woff2" | undefined;
|
|
2316
|
+
} | {
|
|
2317
|
+
heading?: {
|
|
2318
|
+
family: string;
|
|
2319
|
+
weight?: number | undefined;
|
|
2320
|
+
source?: string | undefined;
|
|
2321
|
+
format?: "woff" | "woff2" | undefined;
|
|
2322
|
+
} | undefined;
|
|
2323
|
+
body?: {
|
|
2324
|
+
family: string;
|
|
2325
|
+
weight?: number | undefined;
|
|
2326
|
+
source?: string | undefined;
|
|
2327
|
+
format?: "woff" | "woff2" | undefined;
|
|
2328
|
+
} | undefined;
|
|
2329
|
+
} | undefined;
|
|
2330
|
+
icons?: {
|
|
2331
|
+
library: "fontawesome" | "lucide";
|
|
2332
|
+
} | undefined;
|
|
2333
|
+
styling?: {
|
|
2334
|
+
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
2335
|
+
codeblocks?: "dark" | "system" | undefined;
|
|
2336
|
+
} | undefined;
|
|
2337
|
+
redirects?: {
|
|
2338
|
+
source: string;
|
|
2339
|
+
destination: string;
|
|
2340
|
+
permanent?: boolean | undefined;
|
|
2341
|
+
}[] | undefined;
|
|
2342
|
+
integrations?: {
|
|
2343
|
+
amplitude?: {
|
|
2344
|
+
apiKey: string;
|
|
2345
|
+
} | undefined;
|
|
2346
|
+
clearbit?: {
|
|
2347
|
+
publicApiKey: string;
|
|
2348
|
+
} | undefined;
|
|
2349
|
+
fathom?: {
|
|
2350
|
+
siteId: string;
|
|
2351
|
+
} | undefined;
|
|
2352
|
+
frontchat?: {
|
|
2353
|
+
snippetId: string;
|
|
2354
|
+
} | undefined;
|
|
2355
|
+
ga4?: {
|
|
2356
|
+
measurementId: string;
|
|
2357
|
+
} | undefined;
|
|
2358
|
+
gtm?: {
|
|
2359
|
+
tagId: string;
|
|
2360
|
+
} | undefined;
|
|
2361
|
+
heap?: {
|
|
2362
|
+
appId: string;
|
|
2363
|
+
} | undefined;
|
|
2364
|
+
hotjar?: {
|
|
2365
|
+
hjid: string;
|
|
2366
|
+
hjsv: string;
|
|
2367
|
+
} | undefined;
|
|
2368
|
+
intercom?: {
|
|
2369
|
+
appId: string;
|
|
2370
|
+
} | undefined;
|
|
2371
|
+
koala?: {
|
|
2372
|
+
publicApiKey: string;
|
|
2373
|
+
} | undefined;
|
|
2374
|
+
logrocket?: {
|
|
2375
|
+
appId: string;
|
|
2376
|
+
} | undefined;
|
|
2377
|
+
mixpanel?: {
|
|
2378
|
+
projectToken: string;
|
|
2379
|
+
} | undefined;
|
|
2380
|
+
osano?: {
|
|
2381
|
+
scriptSource: string;
|
|
2382
|
+
} | undefined;
|
|
2383
|
+
pirsch?: {
|
|
2384
|
+
id: string;
|
|
2385
|
+
} | undefined;
|
|
2386
|
+
posthog?: {
|
|
2387
|
+
apiKey: string;
|
|
2388
|
+
apiHost?: string | undefined;
|
|
2389
|
+
} | undefined;
|
|
2390
|
+
plausible?: {
|
|
2391
|
+
domain: string;
|
|
2392
|
+
server?: string | undefined;
|
|
2393
|
+
} | undefined;
|
|
2394
|
+
segment?: {
|
|
2395
|
+
key: string;
|
|
2396
|
+
} | undefined;
|
|
2397
|
+
telemetry?: {
|
|
2398
|
+
enabled?: boolean | undefined;
|
|
2399
|
+
} | undefined;
|
|
2400
|
+
cookies?: {
|
|
2401
|
+
key?: string | undefined;
|
|
2402
|
+
value?: string | undefined;
|
|
2403
|
+
} | undefined;
|
|
2404
|
+
} | undefined;
|
|
2405
|
+
banner?: {
|
|
2406
|
+
content: string;
|
|
2407
|
+
dismissible?: boolean | undefined;
|
|
2408
|
+
} | undefined;
|
|
2409
|
+
errors?: {
|
|
2410
|
+
'404': {
|
|
2411
|
+
redirect?: boolean | undefined;
|
|
2412
|
+
};
|
|
2413
|
+
} | undefined;
|
|
2414
|
+
contextual?: {
|
|
2415
|
+
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
2416
|
+
} | undefined;
|
|
2417
|
+
}> | {
|
|
2418
|
+
warnings: z.ZodIssue[];
|
|
2419
|
+
success: true;
|
|
2420
|
+
data: {
|
|
2421
|
+
name: string;
|
|
2422
|
+
$schema: string;
|
|
2423
|
+
theme: "almond";
|
|
2424
|
+
colors: {
|
|
2425
|
+
primary: string;
|
|
2426
|
+
light?: string | undefined;
|
|
2427
|
+
dark?: string | undefined;
|
|
2428
|
+
};
|
|
2429
|
+
navigation: ({
|
|
2430
|
+
languages: import("./schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
2431
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2432
|
+
} | {
|
|
2433
|
+
versions: import("./schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
2434
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2435
|
+
} | {
|
|
2436
|
+
tabs: import("./schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
2437
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2438
|
+
} | {
|
|
2439
|
+
dropdowns: import("./schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
2440
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2441
|
+
} | {
|
|
2442
|
+
anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
2443
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2444
|
+
} | {
|
|
2445
|
+
groups: ({
|
|
2446
|
+
openapi: (string | string[] | {
|
|
2447
|
+
source: string;
|
|
2448
|
+
directory?: string | undefined;
|
|
2449
|
+
}) & (string | string[] | {
|
|
2450
|
+
source: string;
|
|
2451
|
+
directory?: string | undefined;
|
|
2452
|
+
} | undefined);
|
|
2453
|
+
group: string;
|
|
2454
|
+
icon?: string | {
|
|
2455
|
+
name: string;
|
|
2456
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2457
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2458
|
+
} | undefined;
|
|
2459
|
+
hidden?: boolean | undefined;
|
|
2460
|
+
root?: string | undefined;
|
|
2461
|
+
} | {
|
|
2462
|
+
group: string;
|
|
2463
|
+
asyncapi: (string | string[] | {
|
|
2464
|
+
source: string;
|
|
2465
|
+
directory?: string | undefined;
|
|
2466
|
+
}) & (string | string[] | {
|
|
2467
|
+
source: string;
|
|
2468
|
+
directory?: string | undefined;
|
|
2469
|
+
} | undefined);
|
|
2470
|
+
icon?: string | {
|
|
2471
|
+
name: string;
|
|
2472
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2473
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2474
|
+
} | undefined;
|
|
2475
|
+
hidden?: boolean | undefined;
|
|
2476
|
+
root?: string | undefined;
|
|
2477
|
+
} | {
|
|
2478
|
+
group: string;
|
|
2479
|
+
pages: any[];
|
|
2480
|
+
icon?: string | {
|
|
2481
|
+
name: string;
|
|
2482
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2483
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2484
|
+
} | undefined;
|
|
2485
|
+
hidden?: boolean | undefined;
|
|
2486
|
+
root?: string | undefined;
|
|
2487
|
+
})[];
|
|
2488
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2489
|
+
} | {
|
|
2490
|
+
pages: any[];
|
|
2491
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2492
|
+
}) & ({
|
|
2493
|
+
languages: import("./schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
2494
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2495
|
+
} | {
|
|
2496
|
+
versions: import("./schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
2497
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2498
|
+
} | {
|
|
2499
|
+
tabs: import("./schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
2500
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2501
|
+
} | {
|
|
2502
|
+
dropdowns: import("./schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
2503
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2504
|
+
} | {
|
|
2505
|
+
anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
2506
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2507
|
+
} | {
|
|
2508
|
+
groups: ({
|
|
2509
|
+
openapi: (string | string[] | {
|
|
2510
|
+
source: string;
|
|
2511
|
+
directory?: string | undefined;
|
|
2512
|
+
}) & (string | string[] | {
|
|
2513
|
+
source: string;
|
|
2514
|
+
directory?: string | undefined;
|
|
2515
|
+
} | undefined);
|
|
2516
|
+
group: string;
|
|
2517
|
+
icon?: string | {
|
|
2518
|
+
name: string;
|
|
2519
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2520
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2521
|
+
} | undefined;
|
|
2522
|
+
hidden?: boolean | undefined;
|
|
2523
|
+
root?: string | undefined;
|
|
2524
|
+
} | {
|
|
2525
|
+
group: string;
|
|
2526
|
+
asyncapi: (string | string[] | {
|
|
2527
|
+
source: string;
|
|
2528
|
+
directory?: string | undefined;
|
|
2529
|
+
}) & (string | string[] | {
|
|
2530
|
+
source: string;
|
|
2531
|
+
directory?: string | undefined;
|
|
2532
|
+
} | undefined);
|
|
2533
|
+
icon?: string | {
|
|
2534
|
+
name: string;
|
|
2535
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2536
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2537
|
+
} | undefined;
|
|
2538
|
+
hidden?: boolean | undefined;
|
|
2539
|
+
root?: string | undefined;
|
|
2540
|
+
} | {
|
|
2541
|
+
group: string;
|
|
2542
|
+
pages: any[];
|
|
2543
|
+
icon?: string | {
|
|
2544
|
+
name: string;
|
|
2545
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2546
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2547
|
+
} | undefined;
|
|
2548
|
+
hidden?: boolean | undefined;
|
|
2549
|
+
root?: string | undefined;
|
|
2550
|
+
})[];
|
|
2551
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2552
|
+
} | {
|
|
2553
|
+
pages: any[];
|
|
2554
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2555
|
+
} | undefined);
|
|
2556
|
+
description?: string | undefined;
|
|
2557
|
+
logo?: string | {
|
|
2558
|
+
light: string;
|
|
2559
|
+
dark: string;
|
|
2560
|
+
href?: string | undefined;
|
|
2561
|
+
} | undefined;
|
|
2562
|
+
favicon?: string | {
|
|
2563
|
+
light: string;
|
|
2564
|
+
dark: string;
|
|
2565
|
+
} | undefined;
|
|
2566
|
+
api?: {
|
|
2567
|
+
openapi?: string | string[] | {
|
|
2568
|
+
source: string;
|
|
2569
|
+
directory?: string | undefined;
|
|
2570
|
+
} | undefined;
|
|
2571
|
+
asyncapi?: string | string[] | {
|
|
2572
|
+
source: string;
|
|
2573
|
+
directory?: string | undefined;
|
|
2574
|
+
} | undefined;
|
|
2575
|
+
playground?: {
|
|
2576
|
+
display?: "simple" | "none" | "interactive" | undefined;
|
|
2577
|
+
proxy?: boolean | undefined;
|
|
2578
|
+
} | undefined;
|
|
2579
|
+
examples?: {
|
|
2580
|
+
defaults?: "all" | "required" | undefined;
|
|
2581
|
+
languages?: string[] | undefined;
|
|
2582
|
+
} | undefined;
|
|
2583
|
+
mdx?: {
|
|
2584
|
+
auth?: {
|
|
2585
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
2586
|
+
name?: string | undefined;
|
|
2587
|
+
} | undefined;
|
|
2588
|
+
server?: string | string[] | undefined;
|
|
2589
|
+
} | undefined;
|
|
2590
|
+
} | undefined;
|
|
2591
|
+
appearance?: {
|
|
2592
|
+
default?: "light" | "dark" | "system" | undefined;
|
|
2593
|
+
strict?: boolean | undefined;
|
|
2594
|
+
} | undefined;
|
|
2595
|
+
background?: {
|
|
2596
|
+
image?: string | {
|
|
2597
|
+
light: string;
|
|
2598
|
+
dark: string;
|
|
2599
|
+
} | undefined;
|
|
2600
|
+
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
2601
|
+
color?: {
|
|
2602
|
+
light?: string | undefined;
|
|
2603
|
+
dark?: string | undefined;
|
|
2604
|
+
} | undefined;
|
|
2605
|
+
} | undefined;
|
|
2606
|
+
navbar?: {
|
|
2607
|
+
links?: {
|
|
2608
|
+
href: string;
|
|
2609
|
+
label: string;
|
|
2610
|
+
}[] | undefined;
|
|
2611
|
+
primary?: {
|
|
2612
|
+
type: "button";
|
|
2613
|
+
href: string;
|
|
2614
|
+
label: string;
|
|
2615
|
+
} | {
|
|
2616
|
+
type: "github";
|
|
2617
|
+
href: string;
|
|
2618
|
+
} | undefined;
|
|
2619
|
+
} | undefined;
|
|
2620
|
+
footer?: {
|
|
2621
|
+
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;
|
|
2622
|
+
links?: {
|
|
2623
|
+
items: {
|
|
2624
|
+
href: string;
|
|
2625
|
+
label: string;
|
|
2626
|
+
}[];
|
|
2627
|
+
header?: string | undefined;
|
|
2628
|
+
}[] | undefined;
|
|
2629
|
+
} | undefined;
|
|
2630
|
+
search?: {
|
|
2631
|
+
prompt?: string | undefined;
|
|
2632
|
+
} | undefined;
|
|
2633
|
+
seo?: {
|
|
2634
|
+
metatags?: Record<string, string> | undefined;
|
|
2635
|
+
indexing?: "all" | "navigable" | undefined;
|
|
2636
|
+
} | undefined;
|
|
2637
|
+
fonts?: {
|
|
2638
|
+
family: string;
|
|
2639
|
+
weight?: number | undefined;
|
|
2640
|
+
source?: string | undefined;
|
|
2641
|
+
format?: "woff" | "woff2" | undefined;
|
|
2642
|
+
} | {
|
|
2643
|
+
heading?: {
|
|
2644
|
+
family: string;
|
|
2645
|
+
weight?: number | undefined;
|
|
2646
|
+
source?: string | undefined;
|
|
2647
|
+
format?: "woff" | "woff2" | undefined;
|
|
2648
|
+
} | undefined;
|
|
2649
|
+
body?: {
|
|
2650
|
+
family: string;
|
|
2651
|
+
weight?: number | undefined;
|
|
2652
|
+
source?: string | undefined;
|
|
2653
|
+
format?: "woff" | "woff2" | undefined;
|
|
2654
|
+
} | undefined;
|
|
2655
|
+
} | undefined;
|
|
2656
|
+
icons?: {
|
|
2657
|
+
library: "fontawesome" | "lucide";
|
|
2658
|
+
} | undefined;
|
|
2659
|
+
styling?: {
|
|
2660
|
+
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
2661
|
+
codeblocks?: "dark" | "system" | undefined;
|
|
2662
|
+
} | undefined;
|
|
2663
|
+
redirects?: {
|
|
2664
|
+
source: string;
|
|
2665
|
+
destination: string;
|
|
2666
|
+
permanent?: boolean | undefined;
|
|
2667
|
+
}[] | undefined;
|
|
2668
|
+
integrations?: {
|
|
2669
|
+
amplitude?: {
|
|
2670
|
+
apiKey: string;
|
|
2671
|
+
} | undefined;
|
|
2672
|
+
clearbit?: {
|
|
2673
|
+
publicApiKey: string;
|
|
2674
|
+
} | undefined;
|
|
2675
|
+
fathom?: {
|
|
2676
|
+
siteId: string;
|
|
2677
|
+
} | undefined;
|
|
2678
|
+
frontchat?: {
|
|
2679
|
+
snippetId: string;
|
|
2680
|
+
} | undefined;
|
|
2681
|
+
ga4?: {
|
|
2682
|
+
measurementId: string;
|
|
2683
|
+
} | undefined;
|
|
2684
|
+
gtm?: {
|
|
2685
|
+
tagId: string;
|
|
2686
|
+
} | undefined;
|
|
2687
|
+
heap?: {
|
|
2688
|
+
appId: string;
|
|
2689
|
+
} | undefined;
|
|
2690
|
+
hotjar?: {
|
|
2691
|
+
hjid: string;
|
|
2692
|
+
hjsv: string;
|
|
2693
|
+
} | undefined;
|
|
2694
|
+
intercom?: {
|
|
2695
|
+
appId: string;
|
|
2696
|
+
} | undefined;
|
|
2697
|
+
koala?: {
|
|
2698
|
+
publicApiKey: string;
|
|
2699
|
+
} | undefined;
|
|
2700
|
+
logrocket?: {
|
|
2701
|
+
appId: string;
|
|
2702
|
+
} | undefined;
|
|
2703
|
+
mixpanel?: {
|
|
2704
|
+
projectToken: string;
|
|
2705
|
+
} | undefined;
|
|
2706
|
+
osano?: {
|
|
2707
|
+
scriptSource: string;
|
|
2708
|
+
} | undefined;
|
|
2709
|
+
pirsch?: {
|
|
2710
|
+
id: string;
|
|
2711
|
+
} | undefined;
|
|
2712
|
+
posthog?: {
|
|
2713
|
+
apiKey: string;
|
|
2714
|
+
apiHost?: string | undefined;
|
|
2715
|
+
} | undefined;
|
|
2716
|
+
plausible?: {
|
|
2717
|
+
domain: string;
|
|
2718
|
+
server?: string | undefined;
|
|
2719
|
+
} | undefined;
|
|
2720
|
+
segment?: {
|
|
2721
|
+
key: string;
|
|
2722
|
+
} | undefined;
|
|
2723
|
+
telemetry?: {
|
|
2724
|
+
enabled?: boolean | undefined;
|
|
2725
|
+
} | undefined;
|
|
2726
|
+
cookies?: {
|
|
2727
|
+
key?: string | undefined;
|
|
2728
|
+
value?: string | undefined;
|
|
2729
|
+
} | undefined;
|
|
2730
|
+
} | undefined;
|
|
2731
|
+
banner?: {
|
|
2732
|
+
content: string;
|
|
2733
|
+
dismissible?: boolean | undefined;
|
|
2734
|
+
} | undefined;
|
|
2735
|
+
errors?: {
|
|
2736
|
+
'404': {
|
|
2737
|
+
redirect: boolean;
|
|
2738
|
+
};
|
|
2739
|
+
} | undefined;
|
|
2740
|
+
contextual?: {
|
|
2741
|
+
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
2742
|
+
} | undefined;
|
|
2743
|
+
} | {
|
|
2098
2744
|
name: string;
|
|
2099
2745
|
$schema: string;
|
|
2100
2746
|
theme: "linden";
|