@mintlify/validation 0.1.530 → 0.1.532
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/chat-config/index.d.ts +67 -67
- package/dist/mint-config/schemas/v1/apiReference.d.ts +4 -4
- package/dist/mint-config/schemas/v1/config.d.ts +81 -81
- package/dist/mint-config/schemas/v1/font.d.ts +20 -20
- package/dist/mint-config/schemas/v1/footer.d.ts +5 -5
- package/dist/mint-config/schemas/v1/navigation.d.ts +2 -2
- package/dist/mint-config/schemas/v1/tabs.d.ts +2 -2
- package/dist/mint-config/schemas/v2/index.d.ts +2978 -4567
- package/dist/mint-config/schemas/v2/properties/api.d.ts +28 -28
- package/dist/mint-config/schemas/v2/properties/appearance.d.ts +2 -2
- package/dist/mint-config/schemas/v2/properties/background.d.ts +5 -5
- package/dist/mint-config/schemas/v2/properties/contextual.d.ts +16 -64
- package/dist/mint-config/schemas/v2/properties/errors.d.ts +2 -2
- package/dist/mint-config/schemas/v2/properties/feedback.d.ts +2 -2
- package/dist/mint-config/schemas/v2/properties/fonts/index.d.ts +24 -24
- package/dist/mint-config/schemas/v2/properties/footer.d.ts +2 -2
- package/dist/mint-config/schemas/v2/properties/integrations.d.ts +22 -22
- package/dist/mint-config/schemas/v2/properties/navbar.d.ts +9 -9
- package/dist/mint-config/schemas/v2/properties/navigation/anchors.d.ts +4 -3
- package/dist/mint-config/schemas/v2/properties/navigation/dropdown.d.ts +4 -3
- package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +186 -204
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +157 -170
- package/dist/mint-config/schemas/v2/properties/navigation/languages.d.ts +4 -3
- package/dist/mint-config/schemas/v2/properties/navigation/menu.d.ts +4 -3
- package/dist/mint-config/schemas/v2/properties/navigation/products.d.ts +4 -3
- package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +4 -3
- package/dist/mint-config/schemas/v2/properties/navigation/version.d.ts +3 -2
- package/dist/mint-config/schemas/v2/properties/reusable/page.d.ts +26 -26
- package/dist/mint-config/schemas/v2/properties/styling.d.ts +10 -10
- package/dist/mint-config/schemas/v2/properties/thumbnails.d.ts +2 -2
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +421 -648
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +421 -648
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +421 -648
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +421 -648
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +421 -648
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +421 -648
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +181 -230
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +421 -648
- package/dist/mint-config/validateConfig.d.ts +1753 -2997
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/deployment/deploymentEntitlements.d.ts +1 -1
- package/dist/types/deployment/deploymentEntitlements.js +1 -0
- package/dist/types/deployment/index.d.ts +2 -1
- package/dist/types/deployment/trieve.d.ts +4 -4
- package/dist/types/deployment/trieve.js +1 -0
- package/package.json +3 -3
|
@@ -42,12 +42,12 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
42
42
|
name: z.ZodOptional<z.ZodString>;
|
|
43
43
|
inputPrefix: z.ZodOptional<z.ZodString>;
|
|
44
44
|
}, "strict", z.ZodTypeAny, {
|
|
45
|
-
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
46
45
|
name?: string | undefined;
|
|
46
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
47
47
|
inputPrefix?: string | undefined;
|
|
48
48
|
}, {
|
|
49
|
-
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
50
49
|
name?: string | undefined;
|
|
50
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
51
51
|
inputPrefix?: string | undefined;
|
|
52
52
|
}>>;
|
|
53
53
|
playground: z.ZodOptional<z.ZodObject<{
|
|
@@ -93,8 +93,8 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
93
93
|
}, "strict", z.ZodTypeAny, {
|
|
94
94
|
baseUrl?: string | string[] | undefined;
|
|
95
95
|
auth?: {
|
|
96
|
-
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
97
96
|
name?: string | undefined;
|
|
97
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
98
98
|
inputPrefix?: string | undefined;
|
|
99
99
|
} | undefined;
|
|
100
100
|
playground?: {
|
|
@@ -114,8 +114,8 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
114
114
|
}, {
|
|
115
115
|
baseUrl?: string | string[] | undefined;
|
|
116
116
|
auth?: {
|
|
117
|
-
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
118
117
|
name?: string | undefined;
|
|
118
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
119
119
|
inputPrefix?: string | undefined;
|
|
120
120
|
} | undefined;
|
|
121
121
|
playground?: {
|
|
@@ -381,14 +381,14 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
381
381
|
}, "strip", z.ZodTypeAny, {
|
|
382
382
|
name: string;
|
|
383
383
|
url: string;
|
|
384
|
-
version?: string | undefined;
|
|
385
384
|
isDefaultHidden?: boolean | undefined;
|
|
385
|
+
version?: string | undefined;
|
|
386
386
|
openapi?: string | undefined;
|
|
387
387
|
}, {
|
|
388
388
|
name: string;
|
|
389
389
|
url: string;
|
|
390
|
-
version?: string | undefined;
|
|
391
390
|
isDefaultHidden?: boolean | undefined;
|
|
391
|
+
version?: string | undefined;
|
|
392
392
|
openapi?: string | undefined;
|
|
393
393
|
}>, "many">>;
|
|
394
394
|
footer: z.ZodOptional<z.ZodObject<{
|
|
@@ -428,10 +428,6 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
428
428
|
title?: string | undefined;
|
|
429
429
|
}>, "many">>;
|
|
430
430
|
}, "strip", z.ZodTypeAny, {
|
|
431
|
-
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>> | {
|
|
432
|
-
type: "github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast";
|
|
433
|
-
url: string;
|
|
434
|
-
}[] | undefined;
|
|
435
431
|
links?: {
|
|
436
432
|
links: {
|
|
437
433
|
url: string;
|
|
@@ -439,11 +435,11 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
439
435
|
}[];
|
|
440
436
|
title?: string | undefined;
|
|
441
437
|
}[] | undefined;
|
|
442
|
-
}, {
|
|
443
438
|
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>> | {
|
|
444
439
|
type: "github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast";
|
|
445
440
|
url: string;
|
|
446
441
|
}[] | undefined;
|
|
442
|
+
}, {
|
|
447
443
|
links?: {
|
|
448
444
|
links: {
|
|
449
445
|
url: string;
|
|
@@ -451,6 +447,10 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
451
447
|
}[];
|
|
452
448
|
title?: string | undefined;
|
|
453
449
|
}[] | undefined;
|
|
450
|
+
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>> | {
|
|
451
|
+
type: "github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast";
|
|
452
|
+
url: string;
|
|
453
|
+
}[] | undefined;
|
|
454
454
|
}>>;
|
|
455
455
|
background: z.ZodOptional<z.ZodObject<{
|
|
456
456
|
style: z.ZodOptional<z.ZodEnum<["gradient", "grid", "windows"]>>;
|
|
@@ -467,23 +467,23 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
467
467
|
format: z.ZodOptional<z.ZodEnum<["woff", "woff2"]>>;
|
|
468
468
|
}, "strip", z.ZodTypeAny, {
|
|
469
469
|
family: string;
|
|
470
|
-
weight?: number | undefined;
|
|
471
470
|
url?: string | undefined;
|
|
471
|
+
weight?: number | undefined;
|
|
472
472
|
format?: "woff" | "woff2" | undefined;
|
|
473
473
|
}, {
|
|
474
474
|
family: string;
|
|
475
|
-
weight?: number | undefined;
|
|
476
475
|
url?: string | undefined;
|
|
476
|
+
weight?: number | undefined;
|
|
477
477
|
format?: "woff" | "woff2" | undefined;
|
|
478
478
|
}>, {
|
|
479
479
|
family: string;
|
|
480
|
-
weight?: number | undefined;
|
|
481
480
|
url?: string | undefined;
|
|
481
|
+
weight?: number | undefined;
|
|
482
482
|
format?: "woff" | "woff2" | undefined;
|
|
483
483
|
}, {
|
|
484
484
|
family: string;
|
|
485
|
-
weight?: number | undefined;
|
|
486
485
|
url?: string | undefined;
|
|
486
|
+
weight?: number | undefined;
|
|
487
487
|
format?: "woff" | "woff2" | undefined;
|
|
488
488
|
}>, z.ZodObject<{
|
|
489
489
|
headings: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
@@ -493,23 +493,23 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
493
493
|
format: z.ZodOptional<z.ZodEnum<["woff", "woff2"]>>;
|
|
494
494
|
}, "strip", z.ZodTypeAny, {
|
|
495
495
|
family: string;
|
|
496
|
-
weight?: number | undefined;
|
|
497
496
|
url?: string | undefined;
|
|
497
|
+
weight?: number | undefined;
|
|
498
498
|
format?: "woff" | "woff2" | undefined;
|
|
499
499
|
}, {
|
|
500
500
|
family: string;
|
|
501
|
-
weight?: number | undefined;
|
|
502
501
|
url?: string | undefined;
|
|
502
|
+
weight?: number | undefined;
|
|
503
503
|
format?: "woff" | "woff2" | undefined;
|
|
504
504
|
}>, {
|
|
505
505
|
family: string;
|
|
506
|
-
weight?: number | undefined;
|
|
507
506
|
url?: string | undefined;
|
|
507
|
+
weight?: number | undefined;
|
|
508
508
|
format?: "woff" | "woff2" | undefined;
|
|
509
509
|
}, {
|
|
510
510
|
family: string;
|
|
511
|
-
weight?: number | undefined;
|
|
512
511
|
url?: string | undefined;
|
|
512
|
+
weight?: number | undefined;
|
|
513
513
|
format?: "woff" | "woff2" | undefined;
|
|
514
514
|
}>>;
|
|
515
515
|
body: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
@@ -519,49 +519,49 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
519
519
|
format: z.ZodOptional<z.ZodEnum<["woff", "woff2"]>>;
|
|
520
520
|
}, "strip", z.ZodTypeAny, {
|
|
521
521
|
family: string;
|
|
522
|
-
weight?: number | undefined;
|
|
523
522
|
url?: string | undefined;
|
|
523
|
+
weight?: number | undefined;
|
|
524
524
|
format?: "woff" | "woff2" | undefined;
|
|
525
525
|
}, {
|
|
526
526
|
family: string;
|
|
527
|
-
weight?: number | undefined;
|
|
528
527
|
url?: string | undefined;
|
|
528
|
+
weight?: number | undefined;
|
|
529
529
|
format?: "woff" | "woff2" | undefined;
|
|
530
530
|
}>, {
|
|
531
531
|
family: string;
|
|
532
|
-
weight?: number | undefined;
|
|
533
532
|
url?: string | undefined;
|
|
533
|
+
weight?: number | undefined;
|
|
534
534
|
format?: "woff" | "woff2" | undefined;
|
|
535
535
|
}, {
|
|
536
536
|
family: string;
|
|
537
|
-
weight?: number | undefined;
|
|
538
537
|
url?: string | undefined;
|
|
538
|
+
weight?: number | undefined;
|
|
539
539
|
format?: "woff" | "woff2" | undefined;
|
|
540
540
|
}>>;
|
|
541
541
|
}, "strict", z.ZodTypeAny, {
|
|
542
542
|
headings?: {
|
|
543
543
|
family: string;
|
|
544
|
-
weight?: number | undefined;
|
|
545
544
|
url?: string | undefined;
|
|
545
|
+
weight?: number | undefined;
|
|
546
546
|
format?: "woff" | "woff2" | undefined;
|
|
547
547
|
} | undefined;
|
|
548
548
|
body?: {
|
|
549
549
|
family: string;
|
|
550
|
-
weight?: number | undefined;
|
|
551
550
|
url?: string | undefined;
|
|
551
|
+
weight?: number | undefined;
|
|
552
552
|
format?: "woff" | "woff2" | undefined;
|
|
553
553
|
} | undefined;
|
|
554
554
|
}, {
|
|
555
555
|
headings?: {
|
|
556
556
|
family: string;
|
|
557
|
-
weight?: number | undefined;
|
|
558
557
|
url?: string | undefined;
|
|
558
|
+
weight?: number | undefined;
|
|
559
559
|
format?: "woff" | "woff2" | undefined;
|
|
560
560
|
} | undefined;
|
|
561
561
|
body?: {
|
|
562
562
|
family: string;
|
|
563
|
-
weight?: number | undefined;
|
|
564
563
|
url?: string | undefined;
|
|
564
|
+
weight?: number | undefined;
|
|
565
565
|
format?: "woff" | "woff2" | undefined;
|
|
566
566
|
} | undefined;
|
|
567
567
|
}>]>>;
|
|
@@ -898,6 +898,24 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
898
898
|
ultraDark?: any;
|
|
899
899
|
};
|
|
900
900
|
navigation: import("@mintlify/models").NavigationGroup[];
|
|
901
|
+
openapi?: string | string[] | undefined;
|
|
902
|
+
background?: {
|
|
903
|
+
style?: "gradient" | "grid" | "windows" | undefined;
|
|
904
|
+
} | undefined;
|
|
905
|
+
anchors?: {
|
|
906
|
+
name: string;
|
|
907
|
+
url: string;
|
|
908
|
+
icon?: string | undefined;
|
|
909
|
+
iconType?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
910
|
+
color?: string | {
|
|
911
|
+
from: string;
|
|
912
|
+
to: string;
|
|
913
|
+
via?: string | undefined;
|
|
914
|
+
} | undefined;
|
|
915
|
+
isDefaultHidden?: boolean | undefined;
|
|
916
|
+
version?: string | undefined;
|
|
917
|
+
openapi?: string | undefined;
|
|
918
|
+
}[] | undefined;
|
|
901
919
|
mintlify?: string | undefined;
|
|
902
920
|
logo?: string | {
|
|
903
921
|
light: string;
|
|
@@ -906,7 +924,6 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
906
924
|
} | undefined;
|
|
907
925
|
theme?: "venus" | "quill" | "prism" | undefined;
|
|
908
926
|
layout?: "topnav" | "sidenav" | "solidSidenav" | undefined;
|
|
909
|
-
openapi?: string | string[] | undefined;
|
|
910
927
|
topbar?: {
|
|
911
928
|
style?: "gradient" | "default" | undefined;
|
|
912
929
|
} | undefined;
|
|
@@ -917,8 +934,8 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
917
934
|
api?: {
|
|
918
935
|
baseUrl?: string | string[] | undefined;
|
|
919
936
|
auth?: {
|
|
920
|
-
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
921
937
|
name?: string | undefined;
|
|
938
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
922
939
|
inputPrefix?: string | undefined;
|
|
923
940
|
} | undefined;
|
|
924
941
|
playground?: {
|
|
@@ -982,32 +999,14 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
982
999
|
icon?: string | undefined;
|
|
983
1000
|
iconType?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
984
1001
|
} | undefined;
|
|
985
|
-
anchors?: {
|
|
986
|
-
name: string;
|
|
987
|
-
url: string;
|
|
988
|
-
icon?: string | undefined;
|
|
989
|
-
iconType?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
990
|
-
color?: string | {
|
|
991
|
-
from: string;
|
|
992
|
-
to: string;
|
|
993
|
-
via?: string | undefined;
|
|
994
|
-
} | undefined;
|
|
995
|
-
isDefaultHidden?: boolean | undefined;
|
|
996
|
-
version?: string | undefined;
|
|
997
|
-
openapi?: string | undefined;
|
|
998
|
-
}[] | undefined;
|
|
999
1002
|
tabs?: {
|
|
1000
1003
|
name: string;
|
|
1001
1004
|
url: string;
|
|
1002
|
-
version?: string | undefined;
|
|
1003
1005
|
isDefaultHidden?: boolean | undefined;
|
|
1006
|
+
version?: string | undefined;
|
|
1004
1007
|
openapi?: string | undefined;
|
|
1005
1008
|
}[] | undefined;
|
|
1006
1009
|
footer?: {
|
|
1007
|
-
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>> | {
|
|
1008
|
-
type: "github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast";
|
|
1009
|
-
url: string;
|
|
1010
|
-
}[] | undefined;
|
|
1011
1010
|
links?: {
|
|
1012
1011
|
links: {
|
|
1013
1012
|
url: string;
|
|
@@ -1015,27 +1014,28 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1015
1014
|
}[];
|
|
1016
1015
|
title?: string | undefined;
|
|
1017
1016
|
}[] | undefined;
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1017
|
+
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>> | {
|
|
1018
|
+
type: "github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast";
|
|
1019
|
+
url: string;
|
|
1020
|
+
}[] | undefined;
|
|
1021
1021
|
} | undefined;
|
|
1022
1022
|
backgroundImage?: string | undefined;
|
|
1023
1023
|
font?: {
|
|
1024
1024
|
family: string;
|
|
1025
|
-
weight?: number | undefined;
|
|
1026
1025
|
url?: string | undefined;
|
|
1026
|
+
weight?: number | undefined;
|
|
1027
1027
|
format?: "woff" | "woff2" | undefined;
|
|
1028
1028
|
} | {
|
|
1029
1029
|
headings?: {
|
|
1030
1030
|
family: string;
|
|
1031
|
-
weight?: number | undefined;
|
|
1032
1031
|
url?: string | undefined;
|
|
1032
|
+
weight?: number | undefined;
|
|
1033
1033
|
format?: "woff" | "woff2" | undefined;
|
|
1034
1034
|
} | undefined;
|
|
1035
1035
|
body?: {
|
|
1036
1036
|
family: string;
|
|
1037
|
-
weight?: number | undefined;
|
|
1038
1037
|
url?: string | undefined;
|
|
1038
|
+
weight?: number | undefined;
|
|
1039
1039
|
format?: "woff" | "woff2" | undefined;
|
|
1040
1040
|
} | undefined;
|
|
1041
1041
|
} | undefined;
|
|
@@ -1141,6 +1141,24 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1141
1141
|
ultraDark?: any;
|
|
1142
1142
|
};
|
|
1143
1143
|
navigation: import("@mintlify/models").NavigationGroup[];
|
|
1144
|
+
openapi?: string | string[] | undefined;
|
|
1145
|
+
background?: {
|
|
1146
|
+
style?: "gradient" | "grid" | "windows" | undefined;
|
|
1147
|
+
} | undefined;
|
|
1148
|
+
anchors?: {
|
|
1149
|
+
name: string;
|
|
1150
|
+
url: string;
|
|
1151
|
+
icon?: string | undefined;
|
|
1152
|
+
iconType?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1153
|
+
color?: string | {
|
|
1154
|
+
from: string;
|
|
1155
|
+
to: string;
|
|
1156
|
+
via?: string | undefined;
|
|
1157
|
+
} | undefined;
|
|
1158
|
+
isDefaultHidden?: boolean | undefined;
|
|
1159
|
+
version?: string | undefined;
|
|
1160
|
+
openapi?: string | undefined;
|
|
1161
|
+
}[] | undefined;
|
|
1144
1162
|
$schema?: string | undefined;
|
|
1145
1163
|
mintlify?: string | undefined;
|
|
1146
1164
|
logo?: string | {
|
|
@@ -1150,7 +1168,6 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1150
1168
|
} | undefined;
|
|
1151
1169
|
theme?: "venus" | "quill" | "prism" | undefined;
|
|
1152
1170
|
layout?: "topnav" | "sidenav" | "solidSidenav" | undefined;
|
|
1153
|
-
openapi?: string | string[] | undefined;
|
|
1154
1171
|
topbar?: {
|
|
1155
1172
|
style?: "gradient" | "default" | undefined;
|
|
1156
1173
|
} | undefined;
|
|
@@ -1161,8 +1178,8 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1161
1178
|
api?: {
|
|
1162
1179
|
baseUrl?: string | string[] | undefined;
|
|
1163
1180
|
auth?: {
|
|
1164
|
-
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
1165
1181
|
name?: string | undefined;
|
|
1182
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
1166
1183
|
inputPrefix?: string | undefined;
|
|
1167
1184
|
} | undefined;
|
|
1168
1185
|
playground?: {
|
|
@@ -1226,32 +1243,14 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1226
1243
|
icon?: string | undefined;
|
|
1227
1244
|
iconType?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1228
1245
|
} | undefined;
|
|
1229
|
-
anchors?: {
|
|
1230
|
-
name: string;
|
|
1231
|
-
url: string;
|
|
1232
|
-
icon?: string | undefined;
|
|
1233
|
-
iconType?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1234
|
-
color?: string | {
|
|
1235
|
-
from: string;
|
|
1236
|
-
to: string;
|
|
1237
|
-
via?: string | undefined;
|
|
1238
|
-
} | undefined;
|
|
1239
|
-
isDefaultHidden?: boolean | undefined;
|
|
1240
|
-
version?: string | undefined;
|
|
1241
|
-
openapi?: string | undefined;
|
|
1242
|
-
}[] | undefined;
|
|
1243
1246
|
tabs?: {
|
|
1244
1247
|
name: string;
|
|
1245
1248
|
url: string;
|
|
1246
|
-
version?: string | undefined;
|
|
1247
1249
|
isDefaultHidden?: boolean | undefined;
|
|
1250
|
+
version?: string | undefined;
|
|
1248
1251
|
openapi?: string | undefined;
|
|
1249
1252
|
}[] | undefined;
|
|
1250
1253
|
footer?: {
|
|
1251
|
-
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>> | {
|
|
1252
|
-
type: "github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast";
|
|
1253
|
-
url: string;
|
|
1254
|
-
}[] | undefined;
|
|
1255
1254
|
links?: {
|
|
1256
1255
|
links: {
|
|
1257
1256
|
url: string;
|
|
@@ -1259,27 +1258,28 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1259
1258
|
}[];
|
|
1260
1259
|
title?: string | undefined;
|
|
1261
1260
|
}[] | undefined;
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1261
|
+
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>> | {
|
|
1262
|
+
type: "github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast";
|
|
1263
|
+
url: string;
|
|
1264
|
+
}[] | undefined;
|
|
1265
1265
|
} | undefined;
|
|
1266
1266
|
backgroundImage?: string | undefined;
|
|
1267
1267
|
font?: {
|
|
1268
1268
|
family: string;
|
|
1269
|
-
weight?: number | undefined;
|
|
1270
1269
|
url?: string | undefined;
|
|
1270
|
+
weight?: number | undefined;
|
|
1271
1271
|
format?: "woff" | "woff2" | undefined;
|
|
1272
1272
|
} | {
|
|
1273
1273
|
headings?: {
|
|
1274
1274
|
family: string;
|
|
1275
|
-
weight?: number | undefined;
|
|
1276
1275
|
url?: string | undefined;
|
|
1276
|
+
weight?: number | undefined;
|
|
1277
1277
|
format?: "woff" | "woff2" | undefined;
|
|
1278
1278
|
} | undefined;
|
|
1279
1279
|
body?: {
|
|
1280
1280
|
family: string;
|
|
1281
|
-
weight?: number | undefined;
|
|
1282
1281
|
url?: string | undefined;
|
|
1282
|
+
weight?: number | undefined;
|
|
1283
1283
|
format?: "woff" | "woff2" | undefined;
|
|
1284
1284
|
} | undefined;
|
|
1285
1285
|
} | undefined;
|
|
@@ -6,23 +6,23 @@ export declare const fontDetailsSchema: z.ZodEffects<z.ZodObject<{
|
|
|
6
6
|
format: z.ZodOptional<z.ZodEnum<["woff", "woff2"]>>;
|
|
7
7
|
}, "strip", z.ZodTypeAny, {
|
|
8
8
|
family: string;
|
|
9
|
-
weight?: number | undefined;
|
|
10
9
|
url?: string | undefined;
|
|
10
|
+
weight?: number | undefined;
|
|
11
11
|
format?: "woff" | "woff2" | undefined;
|
|
12
12
|
}, {
|
|
13
13
|
family: string;
|
|
14
|
-
weight?: number | undefined;
|
|
15
14
|
url?: string | undefined;
|
|
15
|
+
weight?: number | undefined;
|
|
16
16
|
format?: "woff" | "woff2" | undefined;
|
|
17
17
|
}>, {
|
|
18
18
|
family: string;
|
|
19
|
-
weight?: number | undefined;
|
|
20
19
|
url?: string | undefined;
|
|
20
|
+
weight?: number | undefined;
|
|
21
21
|
format?: "woff" | "woff2" | undefined;
|
|
22
22
|
}, {
|
|
23
23
|
family: string;
|
|
24
|
-
weight?: number | undefined;
|
|
25
24
|
url?: string | undefined;
|
|
25
|
+
weight?: number | undefined;
|
|
26
26
|
format?: "woff" | "woff2" | undefined;
|
|
27
27
|
}>;
|
|
28
28
|
export declare const fontSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
@@ -32,23 +32,23 @@ export declare const fontSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
32
32
|
format: z.ZodOptional<z.ZodEnum<["woff", "woff2"]>>;
|
|
33
33
|
}, "strip", z.ZodTypeAny, {
|
|
34
34
|
family: string;
|
|
35
|
-
weight?: number | undefined;
|
|
36
35
|
url?: string | undefined;
|
|
36
|
+
weight?: number | undefined;
|
|
37
37
|
format?: "woff" | "woff2" | undefined;
|
|
38
38
|
}, {
|
|
39
39
|
family: string;
|
|
40
|
-
weight?: number | undefined;
|
|
41
40
|
url?: string | undefined;
|
|
41
|
+
weight?: number | undefined;
|
|
42
42
|
format?: "woff" | "woff2" | undefined;
|
|
43
43
|
}>, {
|
|
44
44
|
family: string;
|
|
45
|
-
weight?: number | undefined;
|
|
46
45
|
url?: string | undefined;
|
|
46
|
+
weight?: number | undefined;
|
|
47
47
|
format?: "woff" | "woff2" | undefined;
|
|
48
48
|
}, {
|
|
49
49
|
family: string;
|
|
50
|
-
weight?: number | undefined;
|
|
51
50
|
url?: string | undefined;
|
|
51
|
+
weight?: number | undefined;
|
|
52
52
|
format?: "woff" | "woff2" | undefined;
|
|
53
53
|
}>, z.ZodObject<{
|
|
54
54
|
headings: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
@@ -58,23 +58,23 @@ export declare const fontSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
58
58
|
format: z.ZodOptional<z.ZodEnum<["woff", "woff2"]>>;
|
|
59
59
|
}, "strip", z.ZodTypeAny, {
|
|
60
60
|
family: string;
|
|
61
|
-
weight?: number | undefined;
|
|
62
61
|
url?: string | undefined;
|
|
62
|
+
weight?: number | undefined;
|
|
63
63
|
format?: "woff" | "woff2" | undefined;
|
|
64
64
|
}, {
|
|
65
65
|
family: string;
|
|
66
|
-
weight?: number | undefined;
|
|
67
66
|
url?: string | undefined;
|
|
67
|
+
weight?: number | undefined;
|
|
68
68
|
format?: "woff" | "woff2" | undefined;
|
|
69
69
|
}>, {
|
|
70
70
|
family: string;
|
|
71
|
-
weight?: number | undefined;
|
|
72
71
|
url?: string | undefined;
|
|
72
|
+
weight?: number | undefined;
|
|
73
73
|
format?: "woff" | "woff2" | undefined;
|
|
74
74
|
}, {
|
|
75
75
|
family: string;
|
|
76
|
-
weight?: number | undefined;
|
|
77
76
|
url?: string | undefined;
|
|
77
|
+
weight?: number | undefined;
|
|
78
78
|
format?: "woff" | "woff2" | undefined;
|
|
79
79
|
}>>;
|
|
80
80
|
body: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
@@ -84,49 +84,49 @@ export declare const fontSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
84
84
|
format: z.ZodOptional<z.ZodEnum<["woff", "woff2"]>>;
|
|
85
85
|
}, "strip", z.ZodTypeAny, {
|
|
86
86
|
family: string;
|
|
87
|
-
weight?: number | undefined;
|
|
88
87
|
url?: string | undefined;
|
|
88
|
+
weight?: number | undefined;
|
|
89
89
|
format?: "woff" | "woff2" | undefined;
|
|
90
90
|
}, {
|
|
91
91
|
family: string;
|
|
92
|
-
weight?: number | undefined;
|
|
93
92
|
url?: string | undefined;
|
|
93
|
+
weight?: number | undefined;
|
|
94
94
|
format?: "woff" | "woff2" | undefined;
|
|
95
95
|
}>, {
|
|
96
96
|
family: string;
|
|
97
|
-
weight?: number | undefined;
|
|
98
97
|
url?: string | undefined;
|
|
98
|
+
weight?: number | undefined;
|
|
99
99
|
format?: "woff" | "woff2" | undefined;
|
|
100
100
|
}, {
|
|
101
101
|
family: string;
|
|
102
|
-
weight?: number | undefined;
|
|
103
102
|
url?: string | undefined;
|
|
103
|
+
weight?: number | undefined;
|
|
104
104
|
format?: "woff" | "woff2" | undefined;
|
|
105
105
|
}>>;
|
|
106
106
|
}, "strict", z.ZodTypeAny, {
|
|
107
107
|
headings?: {
|
|
108
108
|
family: string;
|
|
109
|
-
weight?: number | undefined;
|
|
110
109
|
url?: string | undefined;
|
|
110
|
+
weight?: number | undefined;
|
|
111
111
|
format?: "woff" | "woff2" | undefined;
|
|
112
112
|
} | undefined;
|
|
113
113
|
body?: {
|
|
114
114
|
family: string;
|
|
115
|
-
weight?: number | undefined;
|
|
116
115
|
url?: string | undefined;
|
|
116
|
+
weight?: number | undefined;
|
|
117
117
|
format?: "woff" | "woff2" | undefined;
|
|
118
118
|
} | undefined;
|
|
119
119
|
}, {
|
|
120
120
|
headings?: {
|
|
121
121
|
family: string;
|
|
122
|
-
weight?: number | undefined;
|
|
123
122
|
url?: string | undefined;
|
|
123
|
+
weight?: number | undefined;
|
|
124
124
|
format?: "woff" | "woff2" | undefined;
|
|
125
125
|
} | undefined;
|
|
126
126
|
body?: {
|
|
127
127
|
family: string;
|
|
128
|
-
weight?: number | undefined;
|
|
129
128
|
url?: string | undefined;
|
|
129
|
+
weight?: number | undefined;
|
|
130
130
|
format?: "woff" | "woff2" | undefined;
|
|
131
131
|
} | undefined;
|
|
132
132
|
}>]>;
|
|
@@ -81,10 +81,6 @@ export declare const footerSchema: z.ZodObject<{
|
|
|
81
81
|
title?: string | undefined;
|
|
82
82
|
}>, "many">>;
|
|
83
83
|
}, "strip", z.ZodTypeAny, {
|
|
84
|
-
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>> | {
|
|
85
|
-
type: "github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast";
|
|
86
|
-
url: string;
|
|
87
|
-
}[] | undefined;
|
|
88
84
|
links?: {
|
|
89
85
|
links: {
|
|
90
86
|
url: string;
|
|
@@ -92,11 +88,11 @@ export declare const footerSchema: z.ZodObject<{
|
|
|
92
88
|
}[];
|
|
93
89
|
title?: string | undefined;
|
|
94
90
|
}[] | undefined;
|
|
95
|
-
}, {
|
|
96
91
|
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>> | {
|
|
97
92
|
type: "github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast";
|
|
98
93
|
url: string;
|
|
99
94
|
}[] | undefined;
|
|
95
|
+
}, {
|
|
100
96
|
links?: {
|
|
101
97
|
links: {
|
|
102
98
|
url: string;
|
|
@@ -104,4 +100,8 @@ export declare const footerSchema: z.ZodObject<{
|
|
|
104
100
|
}[];
|
|
105
101
|
title?: string | undefined;
|
|
106
102
|
}[] | undefined;
|
|
103
|
+
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>> | {
|
|
104
|
+
type: "github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast";
|
|
105
|
+
url: string;
|
|
106
|
+
}[] | undefined;
|
|
107
107
|
}>;
|
|
@@ -8,15 +8,15 @@ export declare const baseNavigationGroupSchema: z.ZodObject<{
|
|
|
8
8
|
version: z.ZodOptional<z.ZodString>;
|
|
9
9
|
}, "strict", z.ZodTypeAny, {
|
|
10
10
|
group: string;
|
|
11
|
-
public?: boolean | undefined;
|
|
12
11
|
icon?: string | undefined;
|
|
13
12
|
iconType?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
14
13
|
version?: string | undefined;
|
|
14
|
+
public?: boolean | undefined;
|
|
15
15
|
}, {
|
|
16
16
|
group: string;
|
|
17
|
-
public?: boolean | undefined;
|
|
18
17
|
icon?: string | undefined;
|
|
19
18
|
iconType?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
20
19
|
version?: string | undefined;
|
|
20
|
+
public?: boolean | undefined;
|
|
21
21
|
}>;
|
|
22
22
|
export declare const navigationSchema: z.ZodArray<z.ZodType<NavigationGroup, z.ZodTypeDef, NavigationGroup>, "many">;
|
|
@@ -8,14 +8,14 @@ export declare const tabsSchema: z.ZodArray<z.ZodObject<{
|
|
|
8
8
|
}, "strip", z.ZodTypeAny, {
|
|
9
9
|
name: string;
|
|
10
10
|
url: string;
|
|
11
|
-
version?: string | undefined;
|
|
12
11
|
isDefaultHidden?: boolean | undefined;
|
|
12
|
+
version?: string | undefined;
|
|
13
13
|
openapi?: string | undefined;
|
|
14
14
|
}, {
|
|
15
15
|
name: string;
|
|
16
16
|
url: string;
|
|
17
|
-
version?: string | undefined;
|
|
18
17
|
isDefaultHidden?: boolean | undefined;
|
|
18
|
+
version?: string | undefined;
|
|
19
19
|
openapi?: string | undefined;
|
|
20
20
|
}>, "many">;
|
|
21
21
|
export declare const primaryTabSchema: z.ZodObject<{
|