@mintlify/validation 0.1.602 → 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 +3 -3
|
@@ -1537,7 +1537,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1537
1537
|
variables?: Record<string, string> | undefined;
|
|
1538
1538
|
} | {
|
|
1539
1539
|
name: string;
|
|
1540
|
-
theme: "
|
|
1540
|
+
theme: "luma";
|
|
1541
1541
|
colors: {
|
|
1542
1542
|
primary: string;
|
|
1543
1543
|
light?: string | undefined;
|
|
@@ -1885,7 +1885,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1885
1885
|
variables?: Record<string, string> | undefined;
|
|
1886
1886
|
} | {
|
|
1887
1887
|
name: string;
|
|
1888
|
-
theme: "
|
|
1888
|
+
theme: "maple";
|
|
1889
1889
|
colors: {
|
|
1890
1890
|
primary: string;
|
|
1891
1891
|
light?: string | undefined;
|
|
@@ -2233,7 +2233,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2233
2233
|
variables?: Record<string, string> | undefined;
|
|
2234
2234
|
} | {
|
|
2235
2235
|
name: string;
|
|
2236
|
-
theme: "
|
|
2236
|
+
theme: "mint";
|
|
2237
2237
|
colors: {
|
|
2238
2238
|
primary: string;
|
|
2239
2239
|
light?: string | undefined;
|
|
@@ -2581,7 +2581,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2581
2581
|
variables?: Record<string, string> | undefined;
|
|
2582
2582
|
} | {
|
|
2583
2583
|
name: string;
|
|
2584
|
-
theme: "
|
|
2584
|
+
theme: "palm";
|
|
2585
2585
|
colors: {
|
|
2586
2586
|
primary: string;
|
|
2587
2587
|
light?: string | undefined;
|
|
@@ -2929,7 +2929,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2929
2929
|
variables?: Record<string, string> | undefined;
|
|
2930
2930
|
} | {
|
|
2931
2931
|
name: string;
|
|
2932
|
-
theme: "
|
|
2932
|
+
theme: "sequoia";
|
|
2933
2933
|
colors: {
|
|
2934
2934
|
primary: string;
|
|
2935
2935
|
light?: string | undefined;
|
|
@@ -3275,176 +3275,872 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3275
3275
|
drilldown?: boolean | undefined;
|
|
3276
3276
|
} | undefined;
|
|
3277
3277
|
variables?: Record<string, string> | undefined;
|
|
3278
|
-
}
|
|
3279
|
-
|
|
3280
|
-
|
|
3281
|
-
|
|
3282
|
-
|
|
3283
|
-
|
|
3284
|
-
|
|
3285
|
-
|
|
3286
|
-
|
|
3287
|
-
|
|
3288
|
-
|
|
3289
|
-
|
|
3290
|
-
|
|
3291
|
-
|
|
3292
|
-
|
|
3293
|
-
|
|
3294
|
-
|
|
3295
|
-
|
|
3296
|
-
|
|
3297
|
-
|
|
3298
|
-
|
|
3299
|
-
|
|
3300
|
-
|
|
3301
|
-
|
|
3302
|
-
|
|
3303
|
-
|
|
3304
|
-
|
|
3305
|
-
|
|
3306
|
-
|
|
3307
|
-
|
|
3308
|
-
|
|
3309
|
-
|
|
3310
|
-
|
|
3311
|
-
icon?: string | {
|
|
3312
|
-
name: string;
|
|
3313
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3314
|
-
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
3315
|
-
} | undefined;
|
|
3316
|
-
expanded?: boolean | undefined;
|
|
3317
|
-
public?: boolean | undefined;
|
|
3318
|
-
tag?: string | undefined;
|
|
3319
|
-
hidden?: boolean | undefined;
|
|
3320
|
-
root?: string | undefined;
|
|
3321
|
-
} & {
|
|
3322
|
-
openapi?: string | string[] | {
|
|
3323
|
-
source: string;
|
|
3324
|
-
directory?: string | undefined;
|
|
3325
|
-
} | undefined;
|
|
3326
|
-
asyncapi?: string | string[] | {
|
|
3327
|
-
source: string;
|
|
3328
|
-
directory?: string | undefined;
|
|
3329
|
-
} | undefined;
|
|
3330
|
-
} & {
|
|
3331
|
-
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
3332
|
-
})[];
|
|
3333
|
-
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3334
|
-
} | {
|
|
3335
|
-
pages: (string | ({
|
|
3336
|
-
group: string;
|
|
3337
|
-
icon?: string | {
|
|
3338
|
-
name: string;
|
|
3339
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3340
|
-
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
3341
|
-
} | undefined;
|
|
3342
|
-
expanded?: boolean | undefined;
|
|
3343
|
-
public?: boolean | undefined;
|
|
3344
|
-
tag?: string | undefined;
|
|
3345
|
-
hidden?: boolean | undefined;
|
|
3346
|
-
root?: string | undefined;
|
|
3347
|
-
} & {
|
|
3348
|
-
openapi?: string | string[] | {
|
|
3349
|
-
source: string;
|
|
3350
|
-
directory?: string | undefined;
|
|
3351
|
-
} | undefined;
|
|
3352
|
-
asyncapi?: string | string[] | {
|
|
3353
|
-
source: string;
|
|
3354
|
-
directory?: string | undefined;
|
|
3355
|
-
} | undefined;
|
|
3356
|
-
} & {
|
|
3357
|
-
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
3358
|
-
}))[];
|
|
3359
|
-
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3360
|
-
};
|
|
3361
|
-
background?: {
|
|
3362
|
-
color?: {
|
|
3363
|
-
light?: string | undefined;
|
|
3364
|
-
dark?: string | undefined;
|
|
3365
|
-
} | undefined;
|
|
3366
|
-
image?: string | {
|
|
3367
|
-
light: string;
|
|
3368
|
-
dark: string;
|
|
3369
|
-
} | undefined;
|
|
3370
|
-
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
3371
|
-
} | undefined;
|
|
3372
|
-
public?: boolean | undefined;
|
|
3373
|
-
logo?: string | {
|
|
3374
|
-
light: string;
|
|
3375
|
-
dark: string;
|
|
3376
|
-
href?: string | undefined;
|
|
3377
|
-
} | undefined;
|
|
3378
|
-
favicon?: string | {
|
|
3379
|
-
light: string;
|
|
3380
|
-
dark: string;
|
|
3381
|
-
} | undefined;
|
|
3382
|
-
api?: {
|
|
3383
|
-
params?: {
|
|
3384
|
-
expanded?: "all" | "closed" | undefined;
|
|
3278
|
+
} | {
|
|
3279
|
+
name: string;
|
|
3280
|
+
theme: "willow";
|
|
3281
|
+
colors: {
|
|
3282
|
+
primary: string;
|
|
3283
|
+
light?: string | undefined;
|
|
3284
|
+
dark?: string | undefined;
|
|
3285
|
+
};
|
|
3286
|
+
navigation: {
|
|
3287
|
+
products: import("./schemas/v2/properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
3288
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3289
|
+
} | {
|
|
3290
|
+
languages: import("./schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
3291
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3292
|
+
} | {
|
|
3293
|
+
versions: import("./schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
3294
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3295
|
+
} | {
|
|
3296
|
+
tabs: import("./schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
3297
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3298
|
+
} | {
|
|
3299
|
+
dropdowns: import("./schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
3300
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3301
|
+
} | {
|
|
3302
|
+
anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
3303
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3304
|
+
} | {
|
|
3305
|
+
groups: ({
|
|
3306
|
+
group: string;
|
|
3307
|
+
icon?: string | {
|
|
3308
|
+
name: string;
|
|
3309
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3310
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
3385
3311
|
} | undefined;
|
|
3312
|
+
expanded?: boolean | undefined;
|
|
3313
|
+
public?: boolean | undefined;
|
|
3314
|
+
tag?: string | undefined;
|
|
3315
|
+
hidden?: boolean | undefined;
|
|
3316
|
+
root?: string | undefined;
|
|
3317
|
+
} & {
|
|
3386
3318
|
openapi?: string | string[] | {
|
|
3387
3319
|
source: string;
|
|
3388
3320
|
directory?: string | undefined;
|
|
3389
3321
|
} | undefined;
|
|
3390
|
-
playground?: {
|
|
3391
|
-
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
3392
|
-
proxy?: boolean | undefined;
|
|
3393
|
-
} | undefined;
|
|
3394
3322
|
asyncapi?: string | string[] | {
|
|
3395
3323
|
source: string;
|
|
3396
3324
|
directory?: string | undefined;
|
|
3397
3325
|
} | undefined;
|
|
3398
|
-
|
|
3399
|
-
|
|
3400
|
-
|
|
3401
|
-
|
|
3402
|
-
|
|
3326
|
+
} & {
|
|
3327
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
3328
|
+
})[];
|
|
3329
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3330
|
+
} | {
|
|
3331
|
+
pages: (string | ({
|
|
3332
|
+
group: string;
|
|
3333
|
+
icon?: string | {
|
|
3334
|
+
name: string;
|
|
3335
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3336
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
3403
3337
|
} | undefined;
|
|
3404
|
-
|
|
3405
|
-
|
|
3406
|
-
|
|
3407
|
-
|
|
3408
|
-
|
|
3409
|
-
|
|
3338
|
+
expanded?: boolean | undefined;
|
|
3339
|
+
public?: boolean | undefined;
|
|
3340
|
+
tag?: string | undefined;
|
|
3341
|
+
hidden?: boolean | undefined;
|
|
3342
|
+
root?: string | undefined;
|
|
3343
|
+
} & {
|
|
3344
|
+
openapi?: string | string[] | {
|
|
3345
|
+
source: string;
|
|
3346
|
+
directory?: string | undefined;
|
|
3347
|
+
} | undefined;
|
|
3348
|
+
asyncapi?: string | string[] | {
|
|
3349
|
+
source: string;
|
|
3350
|
+
directory?: string | undefined;
|
|
3410
3351
|
} | undefined;
|
|
3352
|
+
} & {
|
|
3353
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
3354
|
+
}))[];
|
|
3355
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3356
|
+
};
|
|
3357
|
+
background?: {
|
|
3358
|
+
color?: {
|
|
3359
|
+
light?: string | undefined;
|
|
3360
|
+
dark?: string | undefined;
|
|
3411
3361
|
} | undefined;
|
|
3412
|
-
|
|
3413
|
-
|
|
3362
|
+
image?: string | {
|
|
3363
|
+
light: string;
|
|
3364
|
+
dark: string;
|
|
3414
3365
|
} | undefined;
|
|
3415
|
-
|
|
3416
|
-
|
|
3417
|
-
|
|
3418
|
-
|
|
3419
|
-
|
|
3420
|
-
|
|
3421
|
-
|
|
3422
|
-
|
|
3423
|
-
|
|
3366
|
+
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
3367
|
+
} | undefined;
|
|
3368
|
+
public?: boolean | undefined;
|
|
3369
|
+
$schema?: string | undefined;
|
|
3370
|
+
logo?: string | {
|
|
3371
|
+
light: string;
|
|
3372
|
+
dark: string;
|
|
3373
|
+
href?: string | undefined;
|
|
3374
|
+
} | undefined;
|
|
3375
|
+
favicon?: string | {
|
|
3376
|
+
light: string;
|
|
3377
|
+
dark: string;
|
|
3378
|
+
} | undefined;
|
|
3379
|
+
api?: {
|
|
3380
|
+
params?: {
|
|
3381
|
+
expanded?: "all" | "closed" | undefined;
|
|
3424
3382
|
} | undefined;
|
|
3425
|
-
|
|
3426
|
-
|
|
3427
|
-
|
|
3428
|
-
|
|
3429
|
-
|
|
3430
|
-
|
|
3431
|
-
|
|
3432
|
-
|
|
3433
|
-
|
|
3434
|
-
|
|
3435
|
-
|
|
3436
|
-
|
|
3437
|
-
|
|
3438
|
-
|
|
3439
|
-
|
|
3440
|
-
|
|
3441
|
-
|
|
3442
|
-
|
|
3443
|
-
|
|
3444
|
-
|
|
3445
|
-
|
|
3446
|
-
|
|
3447
|
-
|
|
3383
|
+
openapi?: string | string[] | {
|
|
3384
|
+
source: string;
|
|
3385
|
+
directory?: string | undefined;
|
|
3386
|
+
} | undefined;
|
|
3387
|
+
playground?: {
|
|
3388
|
+
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
3389
|
+
proxy?: boolean | undefined;
|
|
3390
|
+
} | undefined;
|
|
3391
|
+
asyncapi?: string | string[] | {
|
|
3392
|
+
source: string;
|
|
3393
|
+
directory?: string | undefined;
|
|
3394
|
+
} | undefined;
|
|
3395
|
+
examples?: {
|
|
3396
|
+
languages?: string[] | undefined;
|
|
3397
|
+
defaults?: "all" | "required" | undefined;
|
|
3398
|
+
prefill?: boolean | undefined;
|
|
3399
|
+
autogenerate?: boolean | undefined;
|
|
3400
|
+
} | undefined;
|
|
3401
|
+
mdx?: {
|
|
3402
|
+
server?: string | string[] | undefined;
|
|
3403
|
+
auth?: {
|
|
3404
|
+
name?: string | undefined;
|
|
3405
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
3406
|
+
} | undefined;
|
|
3407
|
+
} | undefined;
|
|
3408
|
+
} | undefined;
|
|
3409
|
+
metadata?: {
|
|
3410
|
+
timestamp?: boolean | undefined;
|
|
3411
|
+
} | undefined;
|
|
3412
|
+
footer?: {
|
|
3413
|
+
links?: {
|
|
3414
|
+
items: {
|
|
3415
|
+
href: string;
|
|
3416
|
+
label: string;
|
|
3417
|
+
}[];
|
|
3418
|
+
header?: string | undefined;
|
|
3419
|
+
}[] | undefined;
|
|
3420
|
+
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;
|
|
3421
|
+
} | undefined;
|
|
3422
|
+
integrations?: {
|
|
3423
|
+
amplitude?: {
|
|
3424
|
+
apiKey: string;
|
|
3425
|
+
} | undefined;
|
|
3426
|
+
clarity?: {
|
|
3427
|
+
projectId: string;
|
|
3428
|
+
} | undefined;
|
|
3429
|
+
clearbit?: {
|
|
3430
|
+
publicApiKey: string;
|
|
3431
|
+
} | undefined;
|
|
3432
|
+
fathom?: {
|
|
3433
|
+
siteId: string;
|
|
3434
|
+
} | undefined;
|
|
3435
|
+
ga4?: {
|
|
3436
|
+
measurementId: string;
|
|
3437
|
+
} | undefined;
|
|
3438
|
+
gtm?: {
|
|
3439
|
+
tagId: string;
|
|
3440
|
+
} | undefined;
|
|
3441
|
+
heap?: {
|
|
3442
|
+
appId: string;
|
|
3443
|
+
} | undefined;
|
|
3444
|
+
hightouch?: {
|
|
3445
|
+
writeKey: string;
|
|
3446
|
+
apiHost?: string | undefined;
|
|
3447
|
+
} | undefined;
|
|
3448
|
+
hotjar?: {
|
|
3449
|
+
hjid: string;
|
|
3450
|
+
hjsv: string;
|
|
3451
|
+
} | undefined;
|
|
3452
|
+
koala?: {
|
|
3453
|
+
publicApiKey: string;
|
|
3454
|
+
} | undefined;
|
|
3455
|
+
logrocket?: {
|
|
3456
|
+
appId: string;
|
|
3457
|
+
} | undefined;
|
|
3458
|
+
mixpanel?: {
|
|
3459
|
+
projectToken: string;
|
|
3460
|
+
} | undefined;
|
|
3461
|
+
pirsch?: {
|
|
3462
|
+
id: string;
|
|
3463
|
+
} | undefined;
|
|
3464
|
+
posthog?: {
|
|
3465
|
+
apiKey: string;
|
|
3466
|
+
apiHost?: string | undefined;
|
|
3467
|
+
sessionRecording?: boolean | undefined;
|
|
3468
|
+
} | undefined;
|
|
3469
|
+
plausible?: {
|
|
3470
|
+
domain: string;
|
|
3471
|
+
server?: string | undefined;
|
|
3472
|
+
} | undefined;
|
|
3473
|
+
segment?: {
|
|
3474
|
+
key: string;
|
|
3475
|
+
} | undefined;
|
|
3476
|
+
intercom?: {
|
|
3477
|
+
appId: string;
|
|
3478
|
+
} | undefined;
|
|
3479
|
+
frontchat?: {
|
|
3480
|
+
snippetId: string;
|
|
3481
|
+
} | undefined;
|
|
3482
|
+
telemetry?: {
|
|
3483
|
+
enabled?: boolean | undefined;
|
|
3484
|
+
} | undefined;
|
|
3485
|
+
cookies?: {
|
|
3486
|
+
value?: string | undefined;
|
|
3487
|
+
key?: string | undefined;
|
|
3488
|
+
} | undefined;
|
|
3489
|
+
} | undefined;
|
|
3490
|
+
search?: {
|
|
3491
|
+
prompt?: string | undefined;
|
|
3492
|
+
} | undefined;
|
|
3493
|
+
redirects?: {
|
|
3494
|
+
source: string;
|
|
3495
|
+
destination: string;
|
|
3496
|
+
permanent?: boolean | undefined;
|
|
3497
|
+
}[] | undefined;
|
|
3498
|
+
seo?: {
|
|
3499
|
+
metatags?: Record<string, string> | undefined;
|
|
3500
|
+
indexing?: "all" | "navigable" | undefined;
|
|
3501
|
+
} | undefined;
|
|
3502
|
+
description?: string | undefined;
|
|
3503
|
+
banner?: {
|
|
3504
|
+
content: string;
|
|
3505
|
+
dismissible?: boolean | undefined;
|
|
3506
|
+
} | undefined;
|
|
3507
|
+
appearance?: {
|
|
3508
|
+
strict?: boolean | undefined;
|
|
3509
|
+
default?: "light" | "dark" | "system" | undefined;
|
|
3510
|
+
} | undefined;
|
|
3511
|
+
fonts?: {
|
|
3512
|
+
family: string;
|
|
3513
|
+
source?: string | undefined;
|
|
3514
|
+
weight?: number | undefined;
|
|
3515
|
+
format?: "woff" | "woff2" | undefined;
|
|
3516
|
+
} | {
|
|
3517
|
+
body?: {
|
|
3518
|
+
family: string;
|
|
3519
|
+
source?: string | undefined;
|
|
3520
|
+
weight?: number | undefined;
|
|
3521
|
+
format?: "woff" | "woff2" | undefined;
|
|
3522
|
+
} | undefined;
|
|
3523
|
+
heading?: {
|
|
3524
|
+
family: string;
|
|
3525
|
+
source?: string | undefined;
|
|
3526
|
+
weight?: number | undefined;
|
|
3527
|
+
format?: "woff" | "woff2" | undefined;
|
|
3528
|
+
} | undefined;
|
|
3529
|
+
} | undefined;
|
|
3530
|
+
navbar?: {
|
|
3531
|
+
primary?: {
|
|
3532
|
+
type: "button";
|
|
3533
|
+
href: string;
|
|
3534
|
+
label: string;
|
|
3535
|
+
} | {
|
|
3536
|
+
type: "github";
|
|
3537
|
+
href: string;
|
|
3538
|
+
label?: string | undefined;
|
|
3539
|
+
} | {
|
|
3540
|
+
type: "discord";
|
|
3541
|
+
href: string;
|
|
3542
|
+
label?: string | undefined;
|
|
3543
|
+
} | undefined;
|
|
3544
|
+
links?: ({
|
|
3545
|
+
href: string;
|
|
3546
|
+
label: string;
|
|
3547
|
+
type?: string | undefined;
|
|
3548
|
+
icon?: string | {
|
|
3549
|
+
name: string;
|
|
3550
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3551
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
3552
|
+
} | undefined;
|
|
3553
|
+
} | {
|
|
3554
|
+
type: "github";
|
|
3555
|
+
href: string;
|
|
3556
|
+
icon?: string | {
|
|
3557
|
+
name: string;
|
|
3558
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3559
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
3560
|
+
} | undefined;
|
|
3561
|
+
label?: string | undefined;
|
|
3562
|
+
} | {
|
|
3563
|
+
type: "discord";
|
|
3564
|
+
href: string;
|
|
3565
|
+
icon?: string | {
|
|
3566
|
+
name: string;
|
|
3567
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3568
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
3569
|
+
} | undefined;
|
|
3570
|
+
label?: string | undefined;
|
|
3571
|
+
})[] | undefined;
|
|
3572
|
+
} | undefined;
|
|
3573
|
+
icons?: {
|
|
3574
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
3575
|
+
} | undefined;
|
|
3576
|
+
styling?: {
|
|
3577
|
+
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
3578
|
+
codeblocks?: "dark" | "system" | {
|
|
3579
|
+
languages?: {
|
|
3580
|
+
custom?: string[] | undefined;
|
|
3581
|
+
} | undefined;
|
|
3582
|
+
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" | {
|
|
3583
|
+
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";
|
|
3584
|
+
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";
|
|
3585
|
+
} | undefined;
|
|
3586
|
+
} | undefined;
|
|
3587
|
+
latex?: boolean | undefined;
|
|
3588
|
+
} | undefined;
|
|
3589
|
+
errors?: {
|
|
3590
|
+
'404': {
|
|
3591
|
+
title?: string | undefined;
|
|
3592
|
+
description?: string | undefined;
|
|
3593
|
+
redirect?: boolean | undefined;
|
|
3594
|
+
};
|
|
3595
|
+
} | undefined;
|
|
3596
|
+
contextual?: {
|
|
3597
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
3598
|
+
href: string | {
|
|
3599
|
+
base: string;
|
|
3600
|
+
query?: {
|
|
3601
|
+
value: string;
|
|
3602
|
+
key: string;
|
|
3603
|
+
}[] | undefined;
|
|
3604
|
+
};
|
|
3605
|
+
title: string;
|
|
3606
|
+
description: string;
|
|
3607
|
+
icon?: string | {
|
|
3608
|
+
name: string;
|
|
3609
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3610
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
3611
|
+
} | undefined;
|
|
3612
|
+
})[];
|
|
3613
|
+
display?: "header" | "toc" | undefined;
|
|
3614
|
+
} | undefined;
|
|
3615
|
+
thumbnails?: {
|
|
3616
|
+
background?: string | undefined;
|
|
3617
|
+
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
3618
|
+
fonts?: {
|
|
3619
|
+
family: string;
|
|
3620
|
+
} | undefined;
|
|
3621
|
+
} | undefined;
|
|
3622
|
+
interaction?: {
|
|
3623
|
+
drilldown?: boolean | undefined;
|
|
3624
|
+
} | undefined;
|
|
3625
|
+
variables?: Record<string, string> | undefined;
|
|
3626
|
+
}> | {
|
|
3627
|
+
warnings: z.ZodIssue[];
|
|
3628
|
+
success: true;
|
|
3629
|
+
data: {
|
|
3630
|
+
name: string;
|
|
3631
|
+
$schema: string;
|
|
3632
|
+
theme: "almond";
|
|
3633
|
+
colors: {
|
|
3634
|
+
primary: string;
|
|
3635
|
+
light?: string | undefined;
|
|
3636
|
+
dark?: string | undefined;
|
|
3637
|
+
};
|
|
3638
|
+
navigation: {
|
|
3639
|
+
products: import("./schemas/v2/properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
3640
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3641
|
+
} | {
|
|
3642
|
+
languages: import("./schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
3643
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3644
|
+
} | {
|
|
3645
|
+
versions: import("./schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
3646
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3647
|
+
} | {
|
|
3648
|
+
tabs: import("./schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
3649
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3650
|
+
} | {
|
|
3651
|
+
dropdowns: import("./schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
3652
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3653
|
+
} | {
|
|
3654
|
+
anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
3655
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3656
|
+
} | {
|
|
3657
|
+
groups: ({
|
|
3658
|
+
group: string;
|
|
3659
|
+
icon?: string | {
|
|
3660
|
+
name: string;
|
|
3661
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3662
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
3663
|
+
} | undefined;
|
|
3664
|
+
expanded?: boolean | undefined;
|
|
3665
|
+
public?: boolean | undefined;
|
|
3666
|
+
tag?: string | undefined;
|
|
3667
|
+
hidden?: boolean | undefined;
|
|
3668
|
+
root?: string | undefined;
|
|
3669
|
+
} & {
|
|
3670
|
+
openapi?: string | string[] | {
|
|
3671
|
+
source: string;
|
|
3672
|
+
directory?: string | undefined;
|
|
3673
|
+
} | undefined;
|
|
3674
|
+
asyncapi?: string | string[] | {
|
|
3675
|
+
source: string;
|
|
3676
|
+
directory?: string | undefined;
|
|
3677
|
+
} | undefined;
|
|
3678
|
+
} & {
|
|
3679
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
3680
|
+
})[];
|
|
3681
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3682
|
+
} | {
|
|
3683
|
+
pages: (string | ({
|
|
3684
|
+
group: string;
|
|
3685
|
+
icon?: string | {
|
|
3686
|
+
name: string;
|
|
3687
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3688
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
3689
|
+
} | undefined;
|
|
3690
|
+
expanded?: boolean | undefined;
|
|
3691
|
+
public?: boolean | undefined;
|
|
3692
|
+
tag?: string | undefined;
|
|
3693
|
+
hidden?: boolean | undefined;
|
|
3694
|
+
root?: string | undefined;
|
|
3695
|
+
} & {
|
|
3696
|
+
openapi?: string | string[] | {
|
|
3697
|
+
source: string;
|
|
3698
|
+
directory?: string | undefined;
|
|
3699
|
+
} | undefined;
|
|
3700
|
+
asyncapi?: string | string[] | {
|
|
3701
|
+
source: string;
|
|
3702
|
+
directory?: string | undefined;
|
|
3703
|
+
} | undefined;
|
|
3704
|
+
} & {
|
|
3705
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
3706
|
+
}))[];
|
|
3707
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3708
|
+
};
|
|
3709
|
+
background?: {
|
|
3710
|
+
color?: {
|
|
3711
|
+
light?: string | undefined;
|
|
3712
|
+
dark?: string | undefined;
|
|
3713
|
+
} | undefined;
|
|
3714
|
+
image?: string | {
|
|
3715
|
+
light: string;
|
|
3716
|
+
dark: string;
|
|
3717
|
+
} | undefined;
|
|
3718
|
+
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
3719
|
+
} | undefined;
|
|
3720
|
+
public?: boolean | undefined;
|
|
3721
|
+
logo?: string | {
|
|
3722
|
+
light: string;
|
|
3723
|
+
dark: string;
|
|
3724
|
+
href?: string | undefined;
|
|
3725
|
+
} | undefined;
|
|
3726
|
+
favicon?: string | {
|
|
3727
|
+
light: string;
|
|
3728
|
+
dark: string;
|
|
3729
|
+
} | undefined;
|
|
3730
|
+
api?: {
|
|
3731
|
+
params?: {
|
|
3732
|
+
expanded?: "all" | "closed" | undefined;
|
|
3733
|
+
} | undefined;
|
|
3734
|
+
openapi?: string | string[] | {
|
|
3735
|
+
source: string;
|
|
3736
|
+
directory?: string | undefined;
|
|
3737
|
+
} | undefined;
|
|
3738
|
+
playground?: {
|
|
3739
|
+
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
3740
|
+
proxy?: boolean | undefined;
|
|
3741
|
+
} | undefined;
|
|
3742
|
+
asyncapi?: string | string[] | {
|
|
3743
|
+
source: string;
|
|
3744
|
+
directory?: string | undefined;
|
|
3745
|
+
} | undefined;
|
|
3746
|
+
examples?: {
|
|
3747
|
+
languages?: string[] | undefined;
|
|
3748
|
+
defaults?: "all" | "required" | undefined;
|
|
3749
|
+
prefill?: boolean | undefined;
|
|
3750
|
+
autogenerate?: boolean | undefined;
|
|
3751
|
+
} | undefined;
|
|
3752
|
+
mdx?: {
|
|
3753
|
+
server?: string | string[] | undefined;
|
|
3754
|
+
auth?: {
|
|
3755
|
+
name?: string | undefined;
|
|
3756
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
3757
|
+
} | undefined;
|
|
3758
|
+
} | undefined;
|
|
3759
|
+
} | undefined;
|
|
3760
|
+
metadata?: {
|
|
3761
|
+
timestamp: boolean;
|
|
3762
|
+
} | undefined;
|
|
3763
|
+
footer?: {
|
|
3764
|
+
links?: {
|
|
3765
|
+
items: {
|
|
3766
|
+
href: string;
|
|
3767
|
+
label: string;
|
|
3768
|
+
}[];
|
|
3769
|
+
header?: string | undefined;
|
|
3770
|
+
}[] | undefined;
|
|
3771
|
+
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;
|
|
3772
|
+
} | undefined;
|
|
3773
|
+
integrations?: {
|
|
3774
|
+
amplitude?: {
|
|
3775
|
+
apiKey: string;
|
|
3776
|
+
} | undefined;
|
|
3777
|
+
clarity?: {
|
|
3778
|
+
projectId: string;
|
|
3779
|
+
} | undefined;
|
|
3780
|
+
clearbit?: {
|
|
3781
|
+
publicApiKey: string;
|
|
3782
|
+
} | undefined;
|
|
3783
|
+
fathom?: {
|
|
3784
|
+
siteId: string;
|
|
3785
|
+
} | undefined;
|
|
3786
|
+
ga4?: {
|
|
3787
|
+
measurementId: string;
|
|
3788
|
+
} | undefined;
|
|
3789
|
+
gtm?: {
|
|
3790
|
+
tagId: string;
|
|
3791
|
+
} | undefined;
|
|
3792
|
+
heap?: {
|
|
3793
|
+
appId: string;
|
|
3794
|
+
} | undefined;
|
|
3795
|
+
hightouch?: {
|
|
3796
|
+
writeKey: string;
|
|
3797
|
+
apiHost?: string | undefined;
|
|
3798
|
+
} | undefined;
|
|
3799
|
+
hotjar?: {
|
|
3800
|
+
hjid: string;
|
|
3801
|
+
hjsv: string;
|
|
3802
|
+
} | undefined;
|
|
3803
|
+
koala?: {
|
|
3804
|
+
publicApiKey: string;
|
|
3805
|
+
} | undefined;
|
|
3806
|
+
logrocket?: {
|
|
3807
|
+
appId: string;
|
|
3808
|
+
} | undefined;
|
|
3809
|
+
mixpanel?: {
|
|
3810
|
+
projectToken: string;
|
|
3811
|
+
} | undefined;
|
|
3812
|
+
pirsch?: {
|
|
3813
|
+
id: string;
|
|
3814
|
+
} | undefined;
|
|
3815
|
+
posthog?: {
|
|
3816
|
+
apiKey: string;
|
|
3817
|
+
apiHost?: string | undefined;
|
|
3818
|
+
sessionRecording?: boolean | undefined;
|
|
3819
|
+
} | undefined;
|
|
3820
|
+
plausible?: {
|
|
3821
|
+
domain: string;
|
|
3822
|
+
server?: string | undefined;
|
|
3823
|
+
} | undefined;
|
|
3824
|
+
segment?: {
|
|
3825
|
+
key: string;
|
|
3826
|
+
} | undefined;
|
|
3827
|
+
intercom?: {
|
|
3828
|
+
appId: string;
|
|
3829
|
+
} | undefined;
|
|
3830
|
+
frontchat?: {
|
|
3831
|
+
snippetId: string;
|
|
3832
|
+
} | undefined;
|
|
3833
|
+
telemetry?: {
|
|
3834
|
+
enabled?: boolean | undefined;
|
|
3835
|
+
} | undefined;
|
|
3836
|
+
cookies?: {
|
|
3837
|
+
value?: string | undefined;
|
|
3838
|
+
key?: string | undefined;
|
|
3839
|
+
} | undefined;
|
|
3840
|
+
} | undefined;
|
|
3841
|
+
search?: {
|
|
3842
|
+
prompt?: string | undefined;
|
|
3843
|
+
} | undefined;
|
|
3844
|
+
redirects?: {
|
|
3845
|
+
source: string;
|
|
3846
|
+
destination: string;
|
|
3847
|
+
permanent?: boolean | undefined;
|
|
3848
|
+
}[] | undefined;
|
|
3849
|
+
seo?: {
|
|
3850
|
+
metatags?: Record<string, string> | undefined;
|
|
3851
|
+
indexing?: "all" | "navigable" | undefined;
|
|
3852
|
+
} | undefined;
|
|
3853
|
+
description?: string | undefined;
|
|
3854
|
+
banner?: {
|
|
3855
|
+
content: string;
|
|
3856
|
+
dismissible?: boolean | undefined;
|
|
3857
|
+
} | undefined;
|
|
3858
|
+
appearance?: {
|
|
3859
|
+
strict?: boolean | undefined;
|
|
3860
|
+
default?: "light" | "dark" | "system" | undefined;
|
|
3861
|
+
} | undefined;
|
|
3862
|
+
fonts?: {
|
|
3863
|
+
family: string;
|
|
3864
|
+
source?: string | undefined;
|
|
3865
|
+
weight?: number | undefined;
|
|
3866
|
+
format?: "woff" | "woff2" | undefined;
|
|
3867
|
+
} | {
|
|
3868
|
+
body?: {
|
|
3869
|
+
family: string;
|
|
3870
|
+
source?: string | undefined;
|
|
3871
|
+
weight?: number | undefined;
|
|
3872
|
+
format?: "woff" | "woff2" | undefined;
|
|
3873
|
+
} | undefined;
|
|
3874
|
+
heading?: {
|
|
3875
|
+
family: string;
|
|
3876
|
+
source?: string | undefined;
|
|
3877
|
+
weight?: number | undefined;
|
|
3878
|
+
format?: "woff" | "woff2" | undefined;
|
|
3879
|
+
} | undefined;
|
|
3880
|
+
} | undefined;
|
|
3881
|
+
navbar?: {
|
|
3882
|
+
primary?: {
|
|
3883
|
+
type: "button";
|
|
3884
|
+
href: string;
|
|
3885
|
+
label: string;
|
|
3886
|
+
} | {
|
|
3887
|
+
type: "github";
|
|
3888
|
+
href: string;
|
|
3889
|
+
label?: string | undefined;
|
|
3890
|
+
} | {
|
|
3891
|
+
type: "discord";
|
|
3892
|
+
href: string;
|
|
3893
|
+
label?: string | undefined;
|
|
3894
|
+
} | undefined;
|
|
3895
|
+
links?: ({
|
|
3896
|
+
href: string;
|
|
3897
|
+
label: string;
|
|
3898
|
+
type?: string | undefined;
|
|
3899
|
+
icon?: string | {
|
|
3900
|
+
name: string;
|
|
3901
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3902
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
3903
|
+
} | undefined;
|
|
3904
|
+
} | {
|
|
3905
|
+
type: "github";
|
|
3906
|
+
href: string;
|
|
3907
|
+
icon?: string | {
|
|
3908
|
+
name: string;
|
|
3909
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3910
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
3911
|
+
} | undefined;
|
|
3912
|
+
label?: string | undefined;
|
|
3913
|
+
} | {
|
|
3914
|
+
type: "discord";
|
|
3915
|
+
href: string;
|
|
3916
|
+
icon?: string | {
|
|
3917
|
+
name: string;
|
|
3918
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3919
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
3920
|
+
} | undefined;
|
|
3921
|
+
label?: string | undefined;
|
|
3922
|
+
})[] | undefined;
|
|
3923
|
+
} | undefined;
|
|
3924
|
+
icons?: {
|
|
3925
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
3926
|
+
} | undefined;
|
|
3927
|
+
styling?: {
|
|
3928
|
+
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
3929
|
+
codeblocks?: "dark" | "system" | {
|
|
3930
|
+
languages?: {
|
|
3931
|
+
custom?: string[] | undefined;
|
|
3932
|
+
} | undefined;
|
|
3933
|
+
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" | {
|
|
3934
|
+
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";
|
|
3935
|
+
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";
|
|
3936
|
+
} | undefined;
|
|
3937
|
+
} | undefined;
|
|
3938
|
+
latex?: boolean | undefined;
|
|
3939
|
+
} | undefined;
|
|
3940
|
+
errors?: {
|
|
3941
|
+
'404': {
|
|
3942
|
+
redirect: boolean;
|
|
3943
|
+
title?: string | undefined;
|
|
3944
|
+
description?: string | undefined;
|
|
3945
|
+
};
|
|
3946
|
+
} | undefined;
|
|
3947
|
+
contextual?: {
|
|
3948
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
3949
|
+
href: string | {
|
|
3950
|
+
base: string;
|
|
3951
|
+
query?: {
|
|
3952
|
+
value: string;
|
|
3953
|
+
key: string;
|
|
3954
|
+
}[] | undefined;
|
|
3955
|
+
};
|
|
3956
|
+
title: string;
|
|
3957
|
+
description: string;
|
|
3958
|
+
icon?: string | {
|
|
3959
|
+
name: string;
|
|
3960
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3961
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
3962
|
+
} | undefined;
|
|
3963
|
+
})[];
|
|
3964
|
+
display: "header" | "toc";
|
|
3965
|
+
} | undefined;
|
|
3966
|
+
thumbnails?: {
|
|
3967
|
+
background?: string | undefined;
|
|
3968
|
+
appearance?: import("../index.js").ThumbnailAppearance | undefined;
|
|
3969
|
+
fonts?: {
|
|
3970
|
+
family: string;
|
|
3971
|
+
} | undefined;
|
|
3972
|
+
} | undefined;
|
|
3973
|
+
interaction?: {
|
|
3974
|
+
drilldown?: boolean | undefined;
|
|
3975
|
+
} | undefined;
|
|
3976
|
+
variables?: Record<string, string> | undefined;
|
|
3977
|
+
} | {
|
|
3978
|
+
name: string;
|
|
3979
|
+
$schema: string;
|
|
3980
|
+
theme: "aspen";
|
|
3981
|
+
colors: {
|
|
3982
|
+
primary: string;
|
|
3983
|
+
light?: string | undefined;
|
|
3984
|
+
dark?: string | undefined;
|
|
3985
|
+
};
|
|
3986
|
+
navigation: {
|
|
3987
|
+
products: import("./schemas/v2/properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
3988
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3989
|
+
} | {
|
|
3990
|
+
languages: import("./schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
3991
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3992
|
+
} | {
|
|
3993
|
+
versions: import("./schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
3994
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3995
|
+
} | {
|
|
3996
|
+
tabs: import("./schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
3997
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3998
|
+
} | {
|
|
3999
|
+
dropdowns: import("./schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
4000
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4001
|
+
} | {
|
|
4002
|
+
anchors: import("./schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
4003
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4004
|
+
} | {
|
|
4005
|
+
groups: ({
|
|
4006
|
+
group: string;
|
|
4007
|
+
icon?: string | {
|
|
4008
|
+
name: string;
|
|
4009
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4010
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
4011
|
+
} | undefined;
|
|
4012
|
+
expanded?: boolean | undefined;
|
|
4013
|
+
public?: boolean | undefined;
|
|
4014
|
+
tag?: string | undefined;
|
|
4015
|
+
hidden?: boolean | undefined;
|
|
4016
|
+
root?: string | undefined;
|
|
4017
|
+
} & {
|
|
4018
|
+
openapi?: string | string[] | {
|
|
4019
|
+
source: string;
|
|
4020
|
+
directory?: string | undefined;
|
|
4021
|
+
} | undefined;
|
|
4022
|
+
asyncapi?: string | string[] | {
|
|
4023
|
+
source: string;
|
|
4024
|
+
directory?: string | undefined;
|
|
4025
|
+
} | undefined;
|
|
4026
|
+
} & {
|
|
4027
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
4028
|
+
})[];
|
|
4029
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4030
|
+
} | {
|
|
4031
|
+
pages: (string | ({
|
|
4032
|
+
group: string;
|
|
4033
|
+
icon?: string | {
|
|
4034
|
+
name: string;
|
|
4035
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4036
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
4037
|
+
} | undefined;
|
|
4038
|
+
expanded?: boolean | undefined;
|
|
4039
|
+
public?: boolean | undefined;
|
|
4040
|
+
tag?: string | undefined;
|
|
4041
|
+
hidden?: boolean | undefined;
|
|
4042
|
+
root?: string | undefined;
|
|
4043
|
+
} & {
|
|
4044
|
+
openapi?: string | string[] | {
|
|
4045
|
+
source: string;
|
|
4046
|
+
directory?: string | undefined;
|
|
4047
|
+
} | undefined;
|
|
4048
|
+
asyncapi?: string | string[] | {
|
|
4049
|
+
source: string;
|
|
4050
|
+
directory?: string | undefined;
|
|
4051
|
+
} | undefined;
|
|
4052
|
+
} & {
|
|
4053
|
+
pages?: import("./schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
4054
|
+
}))[];
|
|
4055
|
+
global?: import("./schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4056
|
+
};
|
|
4057
|
+
background?: {
|
|
4058
|
+
color?: {
|
|
4059
|
+
light?: string | undefined;
|
|
4060
|
+
dark?: string | undefined;
|
|
4061
|
+
} | undefined;
|
|
4062
|
+
image?: string | {
|
|
4063
|
+
light: string;
|
|
4064
|
+
dark: string;
|
|
4065
|
+
} | undefined;
|
|
4066
|
+
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
4067
|
+
} | undefined;
|
|
4068
|
+
public?: boolean | undefined;
|
|
4069
|
+
logo?: string | {
|
|
4070
|
+
light: string;
|
|
4071
|
+
dark: string;
|
|
4072
|
+
href?: string | undefined;
|
|
4073
|
+
} | undefined;
|
|
4074
|
+
favicon?: string | {
|
|
4075
|
+
light: string;
|
|
4076
|
+
dark: string;
|
|
4077
|
+
} | undefined;
|
|
4078
|
+
api?: {
|
|
4079
|
+
params?: {
|
|
4080
|
+
expanded?: "all" | "closed" | undefined;
|
|
4081
|
+
} | undefined;
|
|
4082
|
+
openapi?: string | string[] | {
|
|
4083
|
+
source: string;
|
|
4084
|
+
directory?: string | undefined;
|
|
4085
|
+
} | undefined;
|
|
4086
|
+
playground?: {
|
|
4087
|
+
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
4088
|
+
proxy?: boolean | undefined;
|
|
4089
|
+
} | undefined;
|
|
4090
|
+
asyncapi?: string | string[] | {
|
|
4091
|
+
source: string;
|
|
4092
|
+
directory?: string | undefined;
|
|
4093
|
+
} | undefined;
|
|
4094
|
+
examples?: {
|
|
4095
|
+
languages?: string[] | undefined;
|
|
4096
|
+
defaults?: "all" | "required" | undefined;
|
|
4097
|
+
prefill?: boolean | undefined;
|
|
4098
|
+
autogenerate?: boolean | undefined;
|
|
4099
|
+
} | undefined;
|
|
4100
|
+
mdx?: {
|
|
4101
|
+
server?: string | string[] | undefined;
|
|
4102
|
+
auth?: {
|
|
4103
|
+
name?: string | undefined;
|
|
4104
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
4105
|
+
} | undefined;
|
|
4106
|
+
} | undefined;
|
|
4107
|
+
} | undefined;
|
|
4108
|
+
metadata?: {
|
|
4109
|
+
timestamp: boolean;
|
|
4110
|
+
} | undefined;
|
|
4111
|
+
footer?: {
|
|
4112
|
+
links?: {
|
|
4113
|
+
items: {
|
|
4114
|
+
href: string;
|
|
4115
|
+
label: string;
|
|
4116
|
+
}[];
|
|
4117
|
+
header?: string | undefined;
|
|
4118
|
+
}[] | undefined;
|
|
4119
|
+
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;
|
|
4120
|
+
} | undefined;
|
|
4121
|
+
integrations?: {
|
|
4122
|
+
amplitude?: {
|
|
4123
|
+
apiKey: string;
|
|
4124
|
+
} | undefined;
|
|
4125
|
+
clarity?: {
|
|
4126
|
+
projectId: string;
|
|
4127
|
+
} | undefined;
|
|
4128
|
+
clearbit?: {
|
|
4129
|
+
publicApiKey: string;
|
|
4130
|
+
} | undefined;
|
|
4131
|
+
fathom?: {
|
|
4132
|
+
siteId: string;
|
|
4133
|
+
} | undefined;
|
|
4134
|
+
ga4?: {
|
|
4135
|
+
measurementId: string;
|
|
4136
|
+
} | undefined;
|
|
4137
|
+
gtm?: {
|
|
4138
|
+
tagId: string;
|
|
4139
|
+
} | undefined;
|
|
4140
|
+
heap?: {
|
|
4141
|
+
appId: string;
|
|
4142
|
+
} | undefined;
|
|
4143
|
+
hightouch?: {
|
|
3448
4144
|
writeKey: string;
|
|
3449
4145
|
apiHost?: string | undefined;
|
|
3450
4146
|
} | undefined;
|
|
@@ -3629,7 +4325,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3629
4325
|
} | {
|
|
3630
4326
|
name: string;
|
|
3631
4327
|
$schema: string;
|
|
3632
|
-
theme: "
|
|
4328
|
+
theme: "linden";
|
|
3633
4329
|
colors: {
|
|
3634
4330
|
primary: string;
|
|
3635
4331
|
light?: string | undefined;
|
|
@@ -3977,7 +4673,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3977
4673
|
} | {
|
|
3978
4674
|
name: string;
|
|
3979
4675
|
$schema: string;
|
|
3980
|
-
theme: "
|
|
4676
|
+
theme: "luma";
|
|
3981
4677
|
colors: {
|
|
3982
4678
|
primary: string;
|
|
3983
4679
|
light?: string | undefined;
|