@mintlify/validation 0.1.396 → 0.1.398
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 +126 -0
- package/dist/mint-config/schemas/v2/properties/index.d.ts +1 -0
- package/dist/mint-config/schemas/v2/properties/index.js +1 -0
- package/dist/mint-config/schemas/v2/properties/thumbnails.d.ts +16 -0
- package/dist/mint-config/schemas/v2/properties/thumbnails.js +16 -0
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +18 -0
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +18 -0
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +18 -0
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +18 -0
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +18 -0
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +18 -0
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +10 -0
- package/dist/mint-config/schemas/v2/themes/reusable/index.js +2 -0
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +18 -0
- package/dist/mint-config/validateConfig.d.ts +56 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/serverStaticProps.d.ts +1 -0
- package/package.json +3 -3
|
@@ -1145,6 +1145,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1145
1145
|
}, {
|
|
1146
1146
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
1147
1147
|
}>>;
|
|
1148
|
+
thumbnails: z.ZodOptional<z.ZodObject<{
|
|
1149
|
+
appearance: z.ZodOptional<z.ZodEnum<[import("./properties/thumbnails.js").ThumbnailAppearance.Light, import("./properties/thumbnails.js").ThumbnailAppearance.Dark]>>;
|
|
1150
|
+
background: z.ZodOptional<z.ZodString>;
|
|
1151
|
+
}, "strip", z.ZodTypeAny, {
|
|
1152
|
+
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1153
|
+
background?: string | undefined;
|
|
1154
|
+
}, {
|
|
1155
|
+
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1156
|
+
background?: string | undefined;
|
|
1157
|
+
}>>;
|
|
1148
1158
|
theme: z.ZodLiteral<"mint">;
|
|
1149
1159
|
}, "strip", z.ZodTypeAny, {
|
|
1150
1160
|
name: string;
|
|
@@ -1483,6 +1493,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1483
1493
|
contextual?: {
|
|
1484
1494
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
1485
1495
|
} | undefined;
|
|
1496
|
+
thumbnails?: {
|
|
1497
|
+
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1498
|
+
background?: string | undefined;
|
|
1499
|
+
} | undefined;
|
|
1486
1500
|
}, {
|
|
1487
1501
|
name: string;
|
|
1488
1502
|
theme: "mint";
|
|
@@ -1820,6 +1834,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1820
1834
|
contextual?: {
|
|
1821
1835
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
1822
1836
|
} | undefined;
|
|
1837
|
+
thumbnails?: {
|
|
1838
|
+
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1839
|
+
background?: string | undefined;
|
|
1840
|
+
} | undefined;
|
|
1823
1841
|
}>, z.ZodObject<{
|
|
1824
1842
|
$schema: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1825
1843
|
name: z.ZodString;
|
|
@@ -2964,6 +2982,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2964
2982
|
}, {
|
|
2965
2983
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
2966
2984
|
}>>;
|
|
2985
|
+
thumbnails: z.ZodOptional<z.ZodObject<{
|
|
2986
|
+
appearance: z.ZodOptional<z.ZodEnum<[import("./properties/thumbnails.js").ThumbnailAppearance.Light, import("./properties/thumbnails.js").ThumbnailAppearance.Dark]>>;
|
|
2987
|
+
background: z.ZodOptional<z.ZodString>;
|
|
2988
|
+
}, "strip", z.ZodTypeAny, {
|
|
2989
|
+
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
2990
|
+
background?: string | undefined;
|
|
2991
|
+
}, {
|
|
2992
|
+
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
2993
|
+
background?: string | undefined;
|
|
2994
|
+
}>>;
|
|
2967
2995
|
theme: z.ZodLiteral<"maple">;
|
|
2968
2996
|
}, "strip", z.ZodTypeAny, {
|
|
2969
2997
|
name: string;
|
|
@@ -3302,6 +3330,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3302
3330
|
contextual?: {
|
|
3303
3331
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
3304
3332
|
} | undefined;
|
|
3333
|
+
thumbnails?: {
|
|
3334
|
+
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
3335
|
+
background?: string | undefined;
|
|
3336
|
+
} | undefined;
|
|
3305
3337
|
}, {
|
|
3306
3338
|
name: string;
|
|
3307
3339
|
theme: "maple";
|
|
@@ -3639,6 +3671,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3639
3671
|
contextual?: {
|
|
3640
3672
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
3641
3673
|
} | undefined;
|
|
3674
|
+
thumbnails?: {
|
|
3675
|
+
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
3676
|
+
background?: string | undefined;
|
|
3677
|
+
} | undefined;
|
|
3642
3678
|
}>, z.ZodObject<{
|
|
3643
3679
|
$schema: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3644
3680
|
name: z.ZodString;
|
|
@@ -4783,6 +4819,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4783
4819
|
}, {
|
|
4784
4820
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
4785
4821
|
}>>;
|
|
4822
|
+
thumbnails: z.ZodOptional<z.ZodObject<{
|
|
4823
|
+
appearance: z.ZodOptional<z.ZodEnum<[import("./properties/thumbnails.js").ThumbnailAppearance.Light, import("./properties/thumbnails.js").ThumbnailAppearance.Dark]>>;
|
|
4824
|
+
background: z.ZodOptional<z.ZodString>;
|
|
4825
|
+
}, "strip", z.ZodTypeAny, {
|
|
4826
|
+
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
4827
|
+
background?: string | undefined;
|
|
4828
|
+
}, {
|
|
4829
|
+
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
4830
|
+
background?: string | undefined;
|
|
4831
|
+
}>>;
|
|
4786
4832
|
theme: z.ZodLiteral<"palm">;
|
|
4787
4833
|
}, "strip", z.ZodTypeAny, {
|
|
4788
4834
|
name: string;
|
|
@@ -5121,6 +5167,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5121
5167
|
contextual?: {
|
|
5122
5168
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
5123
5169
|
} | undefined;
|
|
5170
|
+
thumbnails?: {
|
|
5171
|
+
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
5172
|
+
background?: string | undefined;
|
|
5173
|
+
} | undefined;
|
|
5124
5174
|
}, {
|
|
5125
5175
|
name: string;
|
|
5126
5176
|
theme: "palm";
|
|
@@ -5458,6 +5508,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5458
5508
|
contextual?: {
|
|
5459
5509
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
5460
5510
|
} | undefined;
|
|
5511
|
+
thumbnails?: {
|
|
5512
|
+
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
5513
|
+
background?: string | undefined;
|
|
5514
|
+
} | undefined;
|
|
5461
5515
|
}>, z.ZodObject<{
|
|
5462
5516
|
$schema: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
5463
5517
|
name: z.ZodString;
|
|
@@ -6602,6 +6656,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6602
6656
|
}, {
|
|
6603
6657
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
6604
6658
|
}>>;
|
|
6659
|
+
thumbnails: z.ZodOptional<z.ZodObject<{
|
|
6660
|
+
appearance: z.ZodOptional<z.ZodEnum<[import("./properties/thumbnails.js").ThumbnailAppearance.Light, import("./properties/thumbnails.js").ThumbnailAppearance.Dark]>>;
|
|
6661
|
+
background: z.ZodOptional<z.ZodString>;
|
|
6662
|
+
}, "strip", z.ZodTypeAny, {
|
|
6663
|
+
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
6664
|
+
background?: string | undefined;
|
|
6665
|
+
}, {
|
|
6666
|
+
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
6667
|
+
background?: string | undefined;
|
|
6668
|
+
}>>;
|
|
6605
6669
|
theme: z.ZodLiteral<"willow">;
|
|
6606
6670
|
}, "strip", z.ZodTypeAny, {
|
|
6607
6671
|
name: string;
|
|
@@ -6940,6 +7004,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6940
7004
|
contextual?: {
|
|
6941
7005
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
6942
7006
|
} | undefined;
|
|
7007
|
+
thumbnails?: {
|
|
7008
|
+
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
7009
|
+
background?: string | undefined;
|
|
7010
|
+
} | undefined;
|
|
6943
7011
|
}, {
|
|
6944
7012
|
name: string;
|
|
6945
7013
|
theme: "willow";
|
|
@@ -7277,6 +7345,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7277
7345
|
contextual?: {
|
|
7278
7346
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
7279
7347
|
} | undefined;
|
|
7348
|
+
thumbnails?: {
|
|
7349
|
+
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
7350
|
+
background?: string | undefined;
|
|
7351
|
+
} | undefined;
|
|
7280
7352
|
}>, z.ZodObject<{
|
|
7281
7353
|
$schema: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
7282
7354
|
name: z.ZodString;
|
|
@@ -8421,6 +8493,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8421
8493
|
}, {
|
|
8422
8494
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
8423
8495
|
}>>;
|
|
8496
|
+
thumbnails: z.ZodOptional<z.ZodObject<{
|
|
8497
|
+
appearance: z.ZodOptional<z.ZodEnum<[import("./properties/thumbnails.js").ThumbnailAppearance.Light, import("./properties/thumbnails.js").ThumbnailAppearance.Dark]>>;
|
|
8498
|
+
background: z.ZodOptional<z.ZodString>;
|
|
8499
|
+
}, "strip", z.ZodTypeAny, {
|
|
8500
|
+
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
8501
|
+
background?: string | undefined;
|
|
8502
|
+
}, {
|
|
8503
|
+
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
8504
|
+
background?: string | undefined;
|
|
8505
|
+
}>>;
|
|
8424
8506
|
theme: z.ZodLiteral<"linden">;
|
|
8425
8507
|
}, "strip", z.ZodTypeAny, {
|
|
8426
8508
|
name: string;
|
|
@@ -8759,6 +8841,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8759
8841
|
contextual?: {
|
|
8760
8842
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
8761
8843
|
} | undefined;
|
|
8844
|
+
thumbnails?: {
|
|
8845
|
+
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
8846
|
+
background?: string | undefined;
|
|
8847
|
+
} | undefined;
|
|
8762
8848
|
}, {
|
|
8763
8849
|
name: string;
|
|
8764
8850
|
theme: "linden";
|
|
@@ -9096,6 +9182,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9096
9182
|
contextual?: {
|
|
9097
9183
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
9098
9184
|
} | undefined;
|
|
9185
|
+
thumbnails?: {
|
|
9186
|
+
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
9187
|
+
background?: string | undefined;
|
|
9188
|
+
} | undefined;
|
|
9099
9189
|
}>, z.ZodObject<{
|
|
9100
9190
|
$schema: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
9101
9191
|
name: z.ZodString;
|
|
@@ -10240,6 +10330,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10240
10330
|
}, {
|
|
10241
10331
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
10242
10332
|
}>>;
|
|
10333
|
+
thumbnails: z.ZodOptional<z.ZodObject<{
|
|
10334
|
+
appearance: z.ZodOptional<z.ZodEnum<[import("./properties/thumbnails.js").ThumbnailAppearance.Light, import("./properties/thumbnails.js").ThumbnailAppearance.Dark]>>;
|
|
10335
|
+
background: z.ZodOptional<z.ZodString>;
|
|
10336
|
+
}, "strip", z.ZodTypeAny, {
|
|
10337
|
+
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
10338
|
+
background?: string | undefined;
|
|
10339
|
+
}, {
|
|
10340
|
+
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
10341
|
+
background?: string | undefined;
|
|
10342
|
+
}>>;
|
|
10243
10343
|
theme: z.ZodLiteral<"almond">;
|
|
10244
10344
|
}, "strip", z.ZodTypeAny, {
|
|
10245
10345
|
name: string;
|
|
@@ -10578,6 +10678,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10578
10678
|
contextual?: {
|
|
10579
10679
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
10580
10680
|
} | undefined;
|
|
10681
|
+
thumbnails?: {
|
|
10682
|
+
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
10683
|
+
background?: string | undefined;
|
|
10684
|
+
} | undefined;
|
|
10581
10685
|
}, {
|
|
10582
10686
|
name: string;
|
|
10583
10687
|
theme: "almond";
|
|
@@ -10915,6 +11019,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10915
11019
|
contextual?: {
|
|
10916
11020
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
10917
11021
|
} | undefined;
|
|
11022
|
+
thumbnails?: {
|
|
11023
|
+
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
11024
|
+
background?: string | undefined;
|
|
11025
|
+
} | undefined;
|
|
10918
11026
|
}>, z.ZodObject<{
|
|
10919
11027
|
$schema: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
10920
11028
|
name: z.ZodString;
|
|
@@ -12059,6 +12167,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12059
12167
|
}, {
|
|
12060
12168
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
12061
12169
|
}>>;
|
|
12170
|
+
thumbnails: z.ZodOptional<z.ZodObject<{
|
|
12171
|
+
appearance: z.ZodOptional<z.ZodEnum<[import("./properties/thumbnails.js").ThumbnailAppearance.Light, import("./properties/thumbnails.js").ThumbnailAppearance.Dark]>>;
|
|
12172
|
+
background: z.ZodOptional<z.ZodString>;
|
|
12173
|
+
}, "strip", z.ZodTypeAny, {
|
|
12174
|
+
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
12175
|
+
background?: string | undefined;
|
|
12176
|
+
}, {
|
|
12177
|
+
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
12178
|
+
background?: string | undefined;
|
|
12179
|
+
}>>;
|
|
12062
12180
|
theme: z.ZodLiteral<"aspen">;
|
|
12063
12181
|
}, "strip", z.ZodTypeAny, {
|
|
12064
12182
|
name: string;
|
|
@@ -12397,6 +12515,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12397
12515
|
contextual?: {
|
|
12398
12516
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
12399
12517
|
} | undefined;
|
|
12518
|
+
thumbnails?: {
|
|
12519
|
+
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
12520
|
+
background?: string | undefined;
|
|
12521
|
+
} | undefined;
|
|
12400
12522
|
}, {
|
|
12401
12523
|
name: string;
|
|
12402
12524
|
theme: "aspen";
|
|
@@ -12734,4 +12856,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12734
12856
|
contextual?: {
|
|
12735
12857
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
12736
12858
|
} | undefined;
|
|
12859
|
+
thumbnails?: {
|
|
12860
|
+
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
12861
|
+
background?: string | undefined;
|
|
12862
|
+
} | undefined;
|
|
12737
12863
|
}>]>;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export declare enum ThumbnailAppearance {
|
|
3
|
+
Light = "light",
|
|
4
|
+
Dark = "dark"
|
|
5
|
+
}
|
|
6
|
+
export declare const thumbnailsSchema: z.ZodObject<{
|
|
7
|
+
appearance: z.ZodOptional<z.ZodEnum<[ThumbnailAppearance.Light, ThumbnailAppearance.Dark]>>;
|
|
8
|
+
background: z.ZodOptional<z.ZodString>;
|
|
9
|
+
}, "strip", z.ZodTypeAny, {
|
|
10
|
+
appearance?: ThumbnailAppearance | undefined;
|
|
11
|
+
background?: string | undefined;
|
|
12
|
+
}, {
|
|
13
|
+
appearance?: ThumbnailAppearance | undefined;
|
|
14
|
+
background?: string | undefined;
|
|
15
|
+
}>;
|
|
16
|
+
export type ThumbnailsConfig = z.infer<typeof thumbnailsSchema>;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export var ThumbnailAppearance;
|
|
3
|
+
(function (ThumbnailAppearance) {
|
|
4
|
+
ThumbnailAppearance["Light"] = "light";
|
|
5
|
+
ThumbnailAppearance["Dark"] = "dark";
|
|
6
|
+
})(ThumbnailAppearance || (ThumbnailAppearance = {}));
|
|
7
|
+
export const thumbnailsSchema = z.object({
|
|
8
|
+
appearance: z
|
|
9
|
+
.enum([ThumbnailAppearance.Light, ThumbnailAppearance.Dark])
|
|
10
|
+
.optional()
|
|
11
|
+
.describe('The appearance of the thumbnail. Defaults to generated by colors.'),
|
|
12
|
+
background: z
|
|
13
|
+
.string()
|
|
14
|
+
.optional()
|
|
15
|
+
.describe('Background image for the thumbnail. Can be an absolute URL or relative path.'),
|
|
16
|
+
});
|
|
@@ -1143,6 +1143,16 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1143
1143
|
}, {
|
|
1144
1144
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
1145
1145
|
}>>;
|
|
1146
|
+
thumbnails: z.ZodOptional<z.ZodObject<{
|
|
1147
|
+
appearance: z.ZodOptional<z.ZodEnum<[import("../properties/thumbnails.js").ThumbnailAppearance.Light, import("../properties/thumbnails.js").ThumbnailAppearance.Dark]>>;
|
|
1148
|
+
background: z.ZodOptional<z.ZodString>;
|
|
1149
|
+
}, "strip", z.ZodTypeAny, {
|
|
1150
|
+
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1151
|
+
background?: string | undefined;
|
|
1152
|
+
}, {
|
|
1153
|
+
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1154
|
+
background?: string | undefined;
|
|
1155
|
+
}>>;
|
|
1146
1156
|
theme: z.ZodLiteral<"almond">;
|
|
1147
1157
|
}, "strip", z.ZodTypeAny, {
|
|
1148
1158
|
name: string;
|
|
@@ -1481,6 +1491,10 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1481
1491
|
contextual?: {
|
|
1482
1492
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
1483
1493
|
} | undefined;
|
|
1494
|
+
thumbnails?: {
|
|
1495
|
+
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1496
|
+
background?: string | undefined;
|
|
1497
|
+
} | undefined;
|
|
1484
1498
|
}, {
|
|
1485
1499
|
name: string;
|
|
1486
1500
|
theme: "almond";
|
|
@@ -1818,4 +1832,8 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1818
1832
|
contextual?: {
|
|
1819
1833
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
1820
1834
|
} | undefined;
|
|
1835
|
+
thumbnails?: {
|
|
1836
|
+
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1837
|
+
background?: string | undefined;
|
|
1838
|
+
} | undefined;
|
|
1821
1839
|
}>;
|
|
@@ -1143,6 +1143,16 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1143
1143
|
}, {
|
|
1144
1144
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
1145
1145
|
}>>;
|
|
1146
|
+
thumbnails: z.ZodOptional<z.ZodObject<{
|
|
1147
|
+
appearance: z.ZodOptional<z.ZodEnum<[import("../properties/thumbnails.js").ThumbnailAppearance.Light, import("../properties/thumbnails.js").ThumbnailAppearance.Dark]>>;
|
|
1148
|
+
background: z.ZodOptional<z.ZodString>;
|
|
1149
|
+
}, "strip", z.ZodTypeAny, {
|
|
1150
|
+
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1151
|
+
background?: string | undefined;
|
|
1152
|
+
}, {
|
|
1153
|
+
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1154
|
+
background?: string | undefined;
|
|
1155
|
+
}>>;
|
|
1146
1156
|
theme: z.ZodLiteral<"aspen">;
|
|
1147
1157
|
}, "strip", z.ZodTypeAny, {
|
|
1148
1158
|
name: string;
|
|
@@ -1481,6 +1491,10 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1481
1491
|
contextual?: {
|
|
1482
1492
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
1483
1493
|
} | undefined;
|
|
1494
|
+
thumbnails?: {
|
|
1495
|
+
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1496
|
+
background?: string | undefined;
|
|
1497
|
+
} | undefined;
|
|
1484
1498
|
}, {
|
|
1485
1499
|
name: string;
|
|
1486
1500
|
theme: "aspen";
|
|
@@ -1818,4 +1832,8 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1818
1832
|
contextual?: {
|
|
1819
1833
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
1820
1834
|
} | undefined;
|
|
1835
|
+
thumbnails?: {
|
|
1836
|
+
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1837
|
+
background?: string | undefined;
|
|
1838
|
+
} | undefined;
|
|
1821
1839
|
}>;
|
|
@@ -1143,6 +1143,16 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1143
1143
|
}, {
|
|
1144
1144
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
1145
1145
|
}>>;
|
|
1146
|
+
thumbnails: z.ZodOptional<z.ZodObject<{
|
|
1147
|
+
appearance: z.ZodOptional<z.ZodEnum<[import("../properties/thumbnails.js").ThumbnailAppearance.Light, import("../properties/thumbnails.js").ThumbnailAppearance.Dark]>>;
|
|
1148
|
+
background: z.ZodOptional<z.ZodString>;
|
|
1149
|
+
}, "strip", z.ZodTypeAny, {
|
|
1150
|
+
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1151
|
+
background?: string | undefined;
|
|
1152
|
+
}, {
|
|
1153
|
+
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1154
|
+
background?: string | undefined;
|
|
1155
|
+
}>>;
|
|
1146
1156
|
theme: z.ZodLiteral<"linden">;
|
|
1147
1157
|
}, "strip", z.ZodTypeAny, {
|
|
1148
1158
|
name: string;
|
|
@@ -1481,6 +1491,10 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1481
1491
|
contextual?: {
|
|
1482
1492
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
1483
1493
|
} | undefined;
|
|
1494
|
+
thumbnails?: {
|
|
1495
|
+
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1496
|
+
background?: string | undefined;
|
|
1497
|
+
} | undefined;
|
|
1484
1498
|
}, {
|
|
1485
1499
|
name: string;
|
|
1486
1500
|
theme: "linden";
|
|
@@ -1818,4 +1832,8 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1818
1832
|
contextual?: {
|
|
1819
1833
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
1820
1834
|
} | undefined;
|
|
1835
|
+
thumbnails?: {
|
|
1836
|
+
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1837
|
+
background?: string | undefined;
|
|
1838
|
+
} | undefined;
|
|
1821
1839
|
}>;
|
|
@@ -1143,6 +1143,16 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1143
1143
|
}, {
|
|
1144
1144
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
1145
1145
|
}>>;
|
|
1146
|
+
thumbnails: z.ZodOptional<z.ZodObject<{
|
|
1147
|
+
appearance: z.ZodOptional<z.ZodEnum<[import("../properties/thumbnails.js").ThumbnailAppearance.Light, import("../properties/thumbnails.js").ThumbnailAppearance.Dark]>>;
|
|
1148
|
+
background: z.ZodOptional<z.ZodString>;
|
|
1149
|
+
}, "strip", z.ZodTypeAny, {
|
|
1150
|
+
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1151
|
+
background?: string | undefined;
|
|
1152
|
+
}, {
|
|
1153
|
+
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1154
|
+
background?: string | undefined;
|
|
1155
|
+
}>>;
|
|
1146
1156
|
theme: z.ZodLiteral<"maple">;
|
|
1147
1157
|
}, "strip", z.ZodTypeAny, {
|
|
1148
1158
|
name: string;
|
|
@@ -1481,6 +1491,10 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1481
1491
|
contextual?: {
|
|
1482
1492
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
1483
1493
|
} | undefined;
|
|
1494
|
+
thumbnails?: {
|
|
1495
|
+
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1496
|
+
background?: string | undefined;
|
|
1497
|
+
} | undefined;
|
|
1484
1498
|
}, {
|
|
1485
1499
|
name: string;
|
|
1486
1500
|
theme: "maple";
|
|
@@ -1818,4 +1832,8 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1818
1832
|
contextual?: {
|
|
1819
1833
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
1820
1834
|
} | undefined;
|
|
1835
|
+
thumbnails?: {
|
|
1836
|
+
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1837
|
+
background?: string | undefined;
|
|
1838
|
+
} | undefined;
|
|
1821
1839
|
}>;
|
|
@@ -1143,6 +1143,16 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1143
1143
|
}, {
|
|
1144
1144
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
1145
1145
|
}>>;
|
|
1146
|
+
thumbnails: z.ZodOptional<z.ZodObject<{
|
|
1147
|
+
appearance: z.ZodOptional<z.ZodEnum<[import("../properties/thumbnails.js").ThumbnailAppearance.Light, import("../properties/thumbnails.js").ThumbnailAppearance.Dark]>>;
|
|
1148
|
+
background: z.ZodOptional<z.ZodString>;
|
|
1149
|
+
}, "strip", z.ZodTypeAny, {
|
|
1150
|
+
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1151
|
+
background?: string | undefined;
|
|
1152
|
+
}, {
|
|
1153
|
+
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1154
|
+
background?: string | undefined;
|
|
1155
|
+
}>>;
|
|
1146
1156
|
theme: z.ZodLiteral<"mint">;
|
|
1147
1157
|
}, "strip", z.ZodTypeAny, {
|
|
1148
1158
|
name: string;
|
|
@@ -1481,6 +1491,10 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1481
1491
|
contextual?: {
|
|
1482
1492
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
1483
1493
|
} | undefined;
|
|
1494
|
+
thumbnails?: {
|
|
1495
|
+
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1496
|
+
background?: string | undefined;
|
|
1497
|
+
} | undefined;
|
|
1484
1498
|
}, {
|
|
1485
1499
|
name: string;
|
|
1486
1500
|
theme: "mint";
|
|
@@ -1818,4 +1832,8 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1818
1832
|
contextual?: {
|
|
1819
1833
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
1820
1834
|
} | undefined;
|
|
1835
|
+
thumbnails?: {
|
|
1836
|
+
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1837
|
+
background?: string | undefined;
|
|
1838
|
+
} | undefined;
|
|
1821
1839
|
}>;
|
|
@@ -1143,6 +1143,16 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1143
1143
|
}, {
|
|
1144
1144
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
1145
1145
|
}>>;
|
|
1146
|
+
thumbnails: z.ZodOptional<z.ZodObject<{
|
|
1147
|
+
appearance: z.ZodOptional<z.ZodEnum<[import("../properties/thumbnails.js").ThumbnailAppearance.Light, import("../properties/thumbnails.js").ThumbnailAppearance.Dark]>>;
|
|
1148
|
+
background: z.ZodOptional<z.ZodString>;
|
|
1149
|
+
}, "strip", z.ZodTypeAny, {
|
|
1150
|
+
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1151
|
+
background?: string | undefined;
|
|
1152
|
+
}, {
|
|
1153
|
+
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1154
|
+
background?: string | undefined;
|
|
1155
|
+
}>>;
|
|
1146
1156
|
theme: z.ZodLiteral<"palm">;
|
|
1147
1157
|
}, "strip", z.ZodTypeAny, {
|
|
1148
1158
|
name: string;
|
|
@@ -1481,6 +1491,10 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1481
1491
|
contextual?: {
|
|
1482
1492
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
1483
1493
|
} | undefined;
|
|
1494
|
+
thumbnails?: {
|
|
1495
|
+
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1496
|
+
background?: string | undefined;
|
|
1497
|
+
} | undefined;
|
|
1484
1498
|
}, {
|
|
1485
1499
|
name: string;
|
|
1486
1500
|
theme: "palm";
|
|
@@ -1818,4 +1832,8 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1818
1832
|
contextual?: {
|
|
1819
1833
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
1820
1834
|
} | undefined;
|
|
1835
|
+
thumbnails?: {
|
|
1836
|
+
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1837
|
+
background?: string | undefined;
|
|
1838
|
+
} | undefined;
|
|
1821
1839
|
}>;
|
|
@@ -1142,4 +1142,14 @@ export declare const standardConfigSchema: {
|
|
|
1142
1142
|
}, {
|
|
1143
1143
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
1144
1144
|
}>>;
|
|
1145
|
+
thumbnails: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
1146
|
+
appearance: import("zod").ZodOptional<import("zod").ZodEnum<[import("../../properties/thumbnails.js").ThumbnailAppearance.Light, import("../../properties/thumbnails.js").ThumbnailAppearance.Dark]>>;
|
|
1147
|
+
background: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1148
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
1149
|
+
appearance?: import("../../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1150
|
+
background?: string | undefined;
|
|
1151
|
+
}, {
|
|
1152
|
+
appearance?: import("../../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1153
|
+
background?: string | undefined;
|
|
1154
|
+
}>>;
|
|
1145
1155
|
};
|
|
@@ -20,6 +20,7 @@ import { navigationSchema } from '../../properties/navigation/index.js';
|
|
|
20
20
|
import { searchSchema } from '../../properties/search.js';
|
|
21
21
|
import { seoSchema } from '../../properties/seo.js';
|
|
22
22
|
import { stylingSchema } from '../../properties/styling.js';
|
|
23
|
+
import { thumbnailsSchema } from '../../properties/thumbnails.js';
|
|
23
24
|
export const standardConfigSchema = {
|
|
24
25
|
$schema: $schemaSchema,
|
|
25
26
|
name: nameSchema,
|
|
@@ -43,4 +44,5 @@ export const standardConfigSchema = {
|
|
|
43
44
|
banner: bannerSchema.optional(),
|
|
44
45
|
errors: errorsSchema.optional(),
|
|
45
46
|
contextual: contextualSchema.optional(),
|
|
47
|
+
thumbnails: thumbnailsSchema.optional(),
|
|
46
48
|
};
|
|
@@ -1143,6 +1143,16 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1143
1143
|
}, {
|
|
1144
1144
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
1145
1145
|
}>>;
|
|
1146
|
+
thumbnails: z.ZodOptional<z.ZodObject<{
|
|
1147
|
+
appearance: z.ZodOptional<z.ZodEnum<[import("../properties/thumbnails.js").ThumbnailAppearance.Light, import("../properties/thumbnails.js").ThumbnailAppearance.Dark]>>;
|
|
1148
|
+
background: z.ZodOptional<z.ZodString>;
|
|
1149
|
+
}, "strip", z.ZodTypeAny, {
|
|
1150
|
+
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1151
|
+
background?: string | undefined;
|
|
1152
|
+
}, {
|
|
1153
|
+
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1154
|
+
background?: string | undefined;
|
|
1155
|
+
}>>;
|
|
1146
1156
|
theme: z.ZodLiteral<"willow">;
|
|
1147
1157
|
}, "strip", z.ZodTypeAny, {
|
|
1148
1158
|
name: string;
|
|
@@ -1481,6 +1491,10 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1481
1491
|
contextual?: {
|
|
1482
1492
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
1483
1493
|
} | undefined;
|
|
1494
|
+
thumbnails?: {
|
|
1495
|
+
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1496
|
+
background?: string | undefined;
|
|
1497
|
+
} | undefined;
|
|
1484
1498
|
}, {
|
|
1485
1499
|
name: string;
|
|
1486
1500
|
theme: "willow";
|
|
@@ -1818,4 +1832,8 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1818
1832
|
contextual?: {
|
|
1819
1833
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
1820
1834
|
} | undefined;
|
|
1835
|
+
thumbnails?: {
|
|
1836
|
+
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1837
|
+
background?: string | undefined;
|
|
1838
|
+
} | undefined;
|
|
1821
1839
|
}>;
|