@mintlify/validation 0.1.513 → 0.1.515
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/v1/analytics.d.ts +13 -0
- package/dist/mint-config/schemas/v1/analytics.js +5 -1
- package/dist/mint-config/schemas/v1/config.d.ts +19 -0
- package/dist/mint-config/schemas/v2/index.d.ts +266 -0
- package/dist/mint-config/schemas/v2/properties/integrations.d.ts +13 -0
- package/dist/mint-config/schemas/v2/properties/integrations.js +4 -0
- package/dist/mint-config/schemas/v2/properties/thumbnails.d.ts +13 -0
- package/dist/mint-config/schemas/v2/properties/thumbnails.js +6 -0
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +38 -0
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +38 -0
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +38 -0
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +38 -0
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +38 -0
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +38 -0
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +26 -0
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +38 -0
- package/dist/mint-config/validateConfig.d.ts +90 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +3 -3
|
@@ -7,6 +7,13 @@ export declare const integrationsSchema: z.ZodObject<{
|
|
|
7
7
|
}, {
|
|
8
8
|
apiKey: string;
|
|
9
9
|
}>>;
|
|
10
|
+
clarity: z.ZodOptional<z.ZodObject<{
|
|
11
|
+
projectId: z.ZodString;
|
|
12
|
+
}, "strip", z.ZodTypeAny, {
|
|
13
|
+
projectId: string;
|
|
14
|
+
}, {
|
|
15
|
+
projectId: string;
|
|
16
|
+
}>>;
|
|
10
17
|
clearbit: z.ZodOptional<z.ZodObject<{
|
|
11
18
|
publicApiKey: z.ZodString;
|
|
12
19
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -159,6 +166,9 @@ export declare const integrationsSchema: z.ZodObject<{
|
|
|
159
166
|
amplitude?: {
|
|
160
167
|
apiKey: string;
|
|
161
168
|
} | undefined;
|
|
169
|
+
clarity?: {
|
|
170
|
+
projectId: string;
|
|
171
|
+
} | undefined;
|
|
162
172
|
clearbit?: {
|
|
163
173
|
publicApiKey: string;
|
|
164
174
|
} | undefined;
|
|
@@ -225,6 +235,9 @@ export declare const integrationsSchema: z.ZodObject<{
|
|
|
225
235
|
amplitude?: {
|
|
226
236
|
apiKey: string;
|
|
227
237
|
} | undefined;
|
|
238
|
+
clarity?: {
|
|
239
|
+
projectId: string;
|
|
240
|
+
} | undefined;
|
|
228
241
|
clearbit?: {
|
|
229
242
|
publicApiKey: string;
|
|
230
243
|
} | undefined;
|
|
@@ -50,6 +50,9 @@ const hightouchConfigInterfaceSchema = z.object({
|
|
|
50
50
|
writeKey: z.string(),
|
|
51
51
|
apiHost: z.string().optional(),
|
|
52
52
|
});
|
|
53
|
+
const clarityConfigSchema = z.object({
|
|
54
|
+
projectId: z.string(),
|
|
55
|
+
});
|
|
53
56
|
const segmentConfigSchema = z.object({
|
|
54
57
|
key: z.string(),
|
|
55
58
|
});
|
|
@@ -75,6 +78,7 @@ const cookieConsentSchema = z.object({
|
|
|
75
78
|
export const integrationsSchema = z
|
|
76
79
|
.object({
|
|
77
80
|
amplitude: amplitudeConfigSchema.optional(),
|
|
81
|
+
clarity: clarityConfigSchema.optional(),
|
|
78
82
|
clearbit: clearbitConfigSchema.optional(),
|
|
79
83
|
fathom: fathomConfigSchema.optional(),
|
|
80
84
|
frontchat: frontchatSchema.optional(),
|
|
@@ -6,11 +6,24 @@ export declare enum ThumbnailAppearance {
|
|
|
6
6
|
export declare const thumbnailsSchema: z.ZodObject<{
|
|
7
7
|
appearance: z.ZodOptional<z.ZodEnum<[ThumbnailAppearance.Light, ThumbnailAppearance.Dark]>>;
|
|
8
8
|
background: z.ZodOptional<z.ZodString>;
|
|
9
|
+
fonts: z.ZodOptional<z.ZodObject<{
|
|
10
|
+
family: z.ZodString;
|
|
11
|
+
}, "strip", z.ZodTypeAny, {
|
|
12
|
+
family: string;
|
|
13
|
+
}, {
|
|
14
|
+
family: string;
|
|
15
|
+
}>>;
|
|
9
16
|
}, "strip", z.ZodTypeAny, {
|
|
10
17
|
appearance?: ThumbnailAppearance | undefined;
|
|
11
18
|
background?: string | undefined;
|
|
19
|
+
fonts?: {
|
|
20
|
+
family: string;
|
|
21
|
+
} | undefined;
|
|
12
22
|
}, {
|
|
13
23
|
appearance?: ThumbnailAppearance | undefined;
|
|
14
24
|
background?: string | undefined;
|
|
25
|
+
fonts?: {
|
|
26
|
+
family: string;
|
|
27
|
+
} | undefined;
|
|
15
28
|
}>;
|
|
16
29
|
export type ThumbnailsConfig = z.infer<typeof thumbnailsSchema>;
|
|
@@ -4,6 +4,11 @@ export var ThumbnailAppearance;
|
|
|
4
4
|
ThumbnailAppearance["Light"] = "light";
|
|
5
5
|
ThumbnailAppearance["Dark"] = "dark";
|
|
6
6
|
})(ThumbnailAppearance || (ThumbnailAppearance = {}));
|
|
7
|
+
const thumbnailFontSchema = z
|
|
8
|
+
.object({
|
|
9
|
+
family: z.string().describe('The font family, such as "Open Sans", "Playfair Display"'),
|
|
10
|
+
})
|
|
11
|
+
.describe('The font to be used for thumbnails. Only family name is supported for Google Fonts.');
|
|
7
12
|
export const thumbnailsSchema = z.object({
|
|
8
13
|
appearance: z
|
|
9
14
|
.enum([ThumbnailAppearance.Light, ThumbnailAppearance.Dark])
|
|
@@ -13,4 +18,5 @@ export const thumbnailsSchema = z.object({
|
|
|
13
18
|
.string()
|
|
14
19
|
.optional()
|
|
15
20
|
.describe('Background image for the thumbnail. Can be an absolute URL or relative path.'),
|
|
21
|
+
fonts: thumbnailFontSchema.optional(),
|
|
16
22
|
});
|
|
@@ -943,6 +943,13 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
943
943
|
}, {
|
|
944
944
|
apiKey: string;
|
|
945
945
|
}>>;
|
|
946
|
+
clarity: z.ZodOptional<z.ZodObject<{
|
|
947
|
+
projectId: z.ZodString;
|
|
948
|
+
}, "strip", z.ZodTypeAny, {
|
|
949
|
+
projectId: string;
|
|
950
|
+
}, {
|
|
951
|
+
projectId: string;
|
|
952
|
+
}>>;
|
|
946
953
|
clearbit: z.ZodOptional<z.ZodObject<{
|
|
947
954
|
publicApiKey: z.ZodString;
|
|
948
955
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1095,6 +1102,9 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1095
1102
|
amplitude?: {
|
|
1096
1103
|
apiKey: string;
|
|
1097
1104
|
} | undefined;
|
|
1105
|
+
clarity?: {
|
|
1106
|
+
projectId: string;
|
|
1107
|
+
} | undefined;
|
|
1098
1108
|
clearbit?: {
|
|
1099
1109
|
publicApiKey: string;
|
|
1100
1110
|
} | undefined;
|
|
@@ -1161,6 +1171,9 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1161
1171
|
amplitude?: {
|
|
1162
1172
|
apiKey: string;
|
|
1163
1173
|
} | undefined;
|
|
1174
|
+
clarity?: {
|
|
1175
|
+
projectId: string;
|
|
1176
|
+
} | undefined;
|
|
1164
1177
|
clearbit?: {
|
|
1165
1178
|
publicApiKey: string;
|
|
1166
1179
|
} | undefined;
|
|
@@ -1438,12 +1451,25 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1438
1451
|
thumbnails: z.ZodOptional<z.ZodObject<{
|
|
1439
1452
|
appearance: z.ZodOptional<z.ZodEnum<[import("../properties/thumbnails.js").ThumbnailAppearance.Light, import("../properties/thumbnails.js").ThumbnailAppearance.Dark]>>;
|
|
1440
1453
|
background: z.ZodOptional<z.ZodString>;
|
|
1454
|
+
fonts: z.ZodOptional<z.ZodObject<{
|
|
1455
|
+
family: z.ZodString;
|
|
1456
|
+
}, "strip", z.ZodTypeAny, {
|
|
1457
|
+
family: string;
|
|
1458
|
+
}, {
|
|
1459
|
+
family: string;
|
|
1460
|
+
}>>;
|
|
1441
1461
|
}, "strip", z.ZodTypeAny, {
|
|
1442
1462
|
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1443
1463
|
background?: string | undefined;
|
|
1464
|
+
fonts?: {
|
|
1465
|
+
family: string;
|
|
1466
|
+
} | undefined;
|
|
1444
1467
|
}, {
|
|
1445
1468
|
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1446
1469
|
background?: string | undefined;
|
|
1470
|
+
fonts?: {
|
|
1471
|
+
family: string;
|
|
1472
|
+
} | undefined;
|
|
1447
1473
|
}>>;
|
|
1448
1474
|
interaction: z.ZodOptional<z.ZodObject<{
|
|
1449
1475
|
drilldown: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1750,6 +1776,9 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1750
1776
|
amplitude?: {
|
|
1751
1777
|
apiKey: string;
|
|
1752
1778
|
} | undefined;
|
|
1779
|
+
clarity?: {
|
|
1780
|
+
projectId: string;
|
|
1781
|
+
} | undefined;
|
|
1753
1782
|
clearbit?: {
|
|
1754
1783
|
publicApiKey: string;
|
|
1755
1784
|
} | undefined;
|
|
@@ -1851,6 +1880,9 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1851
1880
|
thumbnails?: {
|
|
1852
1881
|
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1853
1882
|
background?: string | undefined;
|
|
1883
|
+
fonts?: {
|
|
1884
|
+
family: string;
|
|
1885
|
+
} | undefined;
|
|
1854
1886
|
} | undefined;
|
|
1855
1887
|
interaction?: {
|
|
1856
1888
|
drilldown?: boolean | undefined;
|
|
@@ -2152,6 +2184,9 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
2152
2184
|
amplitude?: {
|
|
2153
2185
|
apiKey: string;
|
|
2154
2186
|
} | undefined;
|
|
2187
|
+
clarity?: {
|
|
2188
|
+
projectId: string;
|
|
2189
|
+
} | undefined;
|
|
2155
2190
|
clearbit?: {
|
|
2156
2191
|
publicApiKey: string;
|
|
2157
2192
|
} | undefined;
|
|
@@ -2253,6 +2288,9 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
2253
2288
|
thumbnails?: {
|
|
2254
2289
|
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
2255
2290
|
background?: string | undefined;
|
|
2291
|
+
fonts?: {
|
|
2292
|
+
family: string;
|
|
2293
|
+
} | undefined;
|
|
2256
2294
|
} | undefined;
|
|
2257
2295
|
interaction?: {
|
|
2258
2296
|
drilldown?: boolean | undefined;
|
|
@@ -943,6 +943,13 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
943
943
|
}, {
|
|
944
944
|
apiKey: string;
|
|
945
945
|
}>>;
|
|
946
|
+
clarity: z.ZodOptional<z.ZodObject<{
|
|
947
|
+
projectId: z.ZodString;
|
|
948
|
+
}, "strip", z.ZodTypeAny, {
|
|
949
|
+
projectId: string;
|
|
950
|
+
}, {
|
|
951
|
+
projectId: string;
|
|
952
|
+
}>>;
|
|
946
953
|
clearbit: z.ZodOptional<z.ZodObject<{
|
|
947
954
|
publicApiKey: z.ZodString;
|
|
948
955
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1095,6 +1102,9 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1095
1102
|
amplitude?: {
|
|
1096
1103
|
apiKey: string;
|
|
1097
1104
|
} | undefined;
|
|
1105
|
+
clarity?: {
|
|
1106
|
+
projectId: string;
|
|
1107
|
+
} | undefined;
|
|
1098
1108
|
clearbit?: {
|
|
1099
1109
|
publicApiKey: string;
|
|
1100
1110
|
} | undefined;
|
|
@@ -1161,6 +1171,9 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1161
1171
|
amplitude?: {
|
|
1162
1172
|
apiKey: string;
|
|
1163
1173
|
} | undefined;
|
|
1174
|
+
clarity?: {
|
|
1175
|
+
projectId: string;
|
|
1176
|
+
} | undefined;
|
|
1164
1177
|
clearbit?: {
|
|
1165
1178
|
publicApiKey: string;
|
|
1166
1179
|
} | undefined;
|
|
@@ -1438,12 +1451,25 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1438
1451
|
thumbnails: z.ZodOptional<z.ZodObject<{
|
|
1439
1452
|
appearance: z.ZodOptional<z.ZodEnum<[import("../properties/thumbnails.js").ThumbnailAppearance.Light, import("../properties/thumbnails.js").ThumbnailAppearance.Dark]>>;
|
|
1440
1453
|
background: z.ZodOptional<z.ZodString>;
|
|
1454
|
+
fonts: z.ZodOptional<z.ZodObject<{
|
|
1455
|
+
family: z.ZodString;
|
|
1456
|
+
}, "strip", z.ZodTypeAny, {
|
|
1457
|
+
family: string;
|
|
1458
|
+
}, {
|
|
1459
|
+
family: string;
|
|
1460
|
+
}>>;
|
|
1441
1461
|
}, "strip", z.ZodTypeAny, {
|
|
1442
1462
|
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1443
1463
|
background?: string | undefined;
|
|
1464
|
+
fonts?: {
|
|
1465
|
+
family: string;
|
|
1466
|
+
} | undefined;
|
|
1444
1467
|
}, {
|
|
1445
1468
|
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1446
1469
|
background?: string | undefined;
|
|
1470
|
+
fonts?: {
|
|
1471
|
+
family: string;
|
|
1472
|
+
} | undefined;
|
|
1447
1473
|
}>>;
|
|
1448
1474
|
interaction: z.ZodOptional<z.ZodObject<{
|
|
1449
1475
|
drilldown: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1750,6 +1776,9 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1750
1776
|
amplitude?: {
|
|
1751
1777
|
apiKey: string;
|
|
1752
1778
|
} | undefined;
|
|
1779
|
+
clarity?: {
|
|
1780
|
+
projectId: string;
|
|
1781
|
+
} | undefined;
|
|
1753
1782
|
clearbit?: {
|
|
1754
1783
|
publicApiKey: string;
|
|
1755
1784
|
} | undefined;
|
|
@@ -1851,6 +1880,9 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1851
1880
|
thumbnails?: {
|
|
1852
1881
|
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1853
1882
|
background?: string | undefined;
|
|
1883
|
+
fonts?: {
|
|
1884
|
+
family: string;
|
|
1885
|
+
} | undefined;
|
|
1854
1886
|
} | undefined;
|
|
1855
1887
|
interaction?: {
|
|
1856
1888
|
drilldown?: boolean | undefined;
|
|
@@ -2152,6 +2184,9 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
2152
2184
|
amplitude?: {
|
|
2153
2185
|
apiKey: string;
|
|
2154
2186
|
} | undefined;
|
|
2187
|
+
clarity?: {
|
|
2188
|
+
projectId: string;
|
|
2189
|
+
} | undefined;
|
|
2155
2190
|
clearbit?: {
|
|
2156
2191
|
publicApiKey: string;
|
|
2157
2192
|
} | undefined;
|
|
@@ -2253,6 +2288,9 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
2253
2288
|
thumbnails?: {
|
|
2254
2289
|
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
2255
2290
|
background?: string | undefined;
|
|
2291
|
+
fonts?: {
|
|
2292
|
+
family: string;
|
|
2293
|
+
} | undefined;
|
|
2256
2294
|
} | undefined;
|
|
2257
2295
|
interaction?: {
|
|
2258
2296
|
drilldown?: boolean | undefined;
|
|
@@ -943,6 +943,13 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
943
943
|
}, {
|
|
944
944
|
apiKey: string;
|
|
945
945
|
}>>;
|
|
946
|
+
clarity: z.ZodOptional<z.ZodObject<{
|
|
947
|
+
projectId: z.ZodString;
|
|
948
|
+
}, "strip", z.ZodTypeAny, {
|
|
949
|
+
projectId: string;
|
|
950
|
+
}, {
|
|
951
|
+
projectId: string;
|
|
952
|
+
}>>;
|
|
946
953
|
clearbit: z.ZodOptional<z.ZodObject<{
|
|
947
954
|
publicApiKey: z.ZodString;
|
|
948
955
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1095,6 +1102,9 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1095
1102
|
amplitude?: {
|
|
1096
1103
|
apiKey: string;
|
|
1097
1104
|
} | undefined;
|
|
1105
|
+
clarity?: {
|
|
1106
|
+
projectId: string;
|
|
1107
|
+
} | undefined;
|
|
1098
1108
|
clearbit?: {
|
|
1099
1109
|
publicApiKey: string;
|
|
1100
1110
|
} | undefined;
|
|
@@ -1161,6 +1171,9 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1161
1171
|
amplitude?: {
|
|
1162
1172
|
apiKey: string;
|
|
1163
1173
|
} | undefined;
|
|
1174
|
+
clarity?: {
|
|
1175
|
+
projectId: string;
|
|
1176
|
+
} | undefined;
|
|
1164
1177
|
clearbit?: {
|
|
1165
1178
|
publicApiKey: string;
|
|
1166
1179
|
} | undefined;
|
|
@@ -1438,12 +1451,25 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1438
1451
|
thumbnails: z.ZodOptional<z.ZodObject<{
|
|
1439
1452
|
appearance: z.ZodOptional<z.ZodEnum<[import("../properties/thumbnails.js").ThumbnailAppearance.Light, import("../properties/thumbnails.js").ThumbnailAppearance.Dark]>>;
|
|
1440
1453
|
background: z.ZodOptional<z.ZodString>;
|
|
1454
|
+
fonts: z.ZodOptional<z.ZodObject<{
|
|
1455
|
+
family: z.ZodString;
|
|
1456
|
+
}, "strip", z.ZodTypeAny, {
|
|
1457
|
+
family: string;
|
|
1458
|
+
}, {
|
|
1459
|
+
family: string;
|
|
1460
|
+
}>>;
|
|
1441
1461
|
}, "strip", z.ZodTypeAny, {
|
|
1442
1462
|
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1443
1463
|
background?: string | undefined;
|
|
1464
|
+
fonts?: {
|
|
1465
|
+
family: string;
|
|
1466
|
+
} | undefined;
|
|
1444
1467
|
}, {
|
|
1445
1468
|
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1446
1469
|
background?: string | undefined;
|
|
1470
|
+
fonts?: {
|
|
1471
|
+
family: string;
|
|
1472
|
+
} | undefined;
|
|
1447
1473
|
}>>;
|
|
1448
1474
|
interaction: z.ZodOptional<z.ZodObject<{
|
|
1449
1475
|
drilldown: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1750,6 +1776,9 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1750
1776
|
amplitude?: {
|
|
1751
1777
|
apiKey: string;
|
|
1752
1778
|
} | undefined;
|
|
1779
|
+
clarity?: {
|
|
1780
|
+
projectId: string;
|
|
1781
|
+
} | undefined;
|
|
1753
1782
|
clearbit?: {
|
|
1754
1783
|
publicApiKey: string;
|
|
1755
1784
|
} | undefined;
|
|
@@ -1851,6 +1880,9 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1851
1880
|
thumbnails?: {
|
|
1852
1881
|
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1853
1882
|
background?: string | undefined;
|
|
1883
|
+
fonts?: {
|
|
1884
|
+
family: string;
|
|
1885
|
+
} | undefined;
|
|
1854
1886
|
} | undefined;
|
|
1855
1887
|
interaction?: {
|
|
1856
1888
|
drilldown?: boolean | undefined;
|
|
@@ -2152,6 +2184,9 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
2152
2184
|
amplitude?: {
|
|
2153
2185
|
apiKey: string;
|
|
2154
2186
|
} | undefined;
|
|
2187
|
+
clarity?: {
|
|
2188
|
+
projectId: string;
|
|
2189
|
+
} | undefined;
|
|
2155
2190
|
clearbit?: {
|
|
2156
2191
|
publicApiKey: string;
|
|
2157
2192
|
} | undefined;
|
|
@@ -2253,6 +2288,9 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
2253
2288
|
thumbnails?: {
|
|
2254
2289
|
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
2255
2290
|
background?: string | undefined;
|
|
2291
|
+
fonts?: {
|
|
2292
|
+
family: string;
|
|
2293
|
+
} | undefined;
|
|
2256
2294
|
} | undefined;
|
|
2257
2295
|
interaction?: {
|
|
2258
2296
|
drilldown?: boolean | undefined;
|
|
@@ -943,6 +943,13 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
943
943
|
}, {
|
|
944
944
|
apiKey: string;
|
|
945
945
|
}>>;
|
|
946
|
+
clarity: z.ZodOptional<z.ZodObject<{
|
|
947
|
+
projectId: z.ZodString;
|
|
948
|
+
}, "strip", z.ZodTypeAny, {
|
|
949
|
+
projectId: string;
|
|
950
|
+
}, {
|
|
951
|
+
projectId: string;
|
|
952
|
+
}>>;
|
|
946
953
|
clearbit: z.ZodOptional<z.ZodObject<{
|
|
947
954
|
publicApiKey: z.ZodString;
|
|
948
955
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1095,6 +1102,9 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1095
1102
|
amplitude?: {
|
|
1096
1103
|
apiKey: string;
|
|
1097
1104
|
} | undefined;
|
|
1105
|
+
clarity?: {
|
|
1106
|
+
projectId: string;
|
|
1107
|
+
} | undefined;
|
|
1098
1108
|
clearbit?: {
|
|
1099
1109
|
publicApiKey: string;
|
|
1100
1110
|
} | undefined;
|
|
@@ -1161,6 +1171,9 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1161
1171
|
amplitude?: {
|
|
1162
1172
|
apiKey: string;
|
|
1163
1173
|
} | undefined;
|
|
1174
|
+
clarity?: {
|
|
1175
|
+
projectId: string;
|
|
1176
|
+
} | undefined;
|
|
1164
1177
|
clearbit?: {
|
|
1165
1178
|
publicApiKey: string;
|
|
1166
1179
|
} | undefined;
|
|
@@ -1438,12 +1451,25 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1438
1451
|
thumbnails: z.ZodOptional<z.ZodObject<{
|
|
1439
1452
|
appearance: z.ZodOptional<z.ZodEnum<[import("../properties/thumbnails.js").ThumbnailAppearance.Light, import("../properties/thumbnails.js").ThumbnailAppearance.Dark]>>;
|
|
1440
1453
|
background: z.ZodOptional<z.ZodString>;
|
|
1454
|
+
fonts: z.ZodOptional<z.ZodObject<{
|
|
1455
|
+
family: z.ZodString;
|
|
1456
|
+
}, "strip", z.ZodTypeAny, {
|
|
1457
|
+
family: string;
|
|
1458
|
+
}, {
|
|
1459
|
+
family: string;
|
|
1460
|
+
}>>;
|
|
1441
1461
|
}, "strip", z.ZodTypeAny, {
|
|
1442
1462
|
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1443
1463
|
background?: string | undefined;
|
|
1464
|
+
fonts?: {
|
|
1465
|
+
family: string;
|
|
1466
|
+
} | undefined;
|
|
1444
1467
|
}, {
|
|
1445
1468
|
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1446
1469
|
background?: string | undefined;
|
|
1470
|
+
fonts?: {
|
|
1471
|
+
family: string;
|
|
1472
|
+
} | undefined;
|
|
1447
1473
|
}>>;
|
|
1448
1474
|
interaction: z.ZodOptional<z.ZodObject<{
|
|
1449
1475
|
drilldown: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1750,6 +1776,9 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1750
1776
|
amplitude?: {
|
|
1751
1777
|
apiKey: string;
|
|
1752
1778
|
} | undefined;
|
|
1779
|
+
clarity?: {
|
|
1780
|
+
projectId: string;
|
|
1781
|
+
} | undefined;
|
|
1753
1782
|
clearbit?: {
|
|
1754
1783
|
publicApiKey: string;
|
|
1755
1784
|
} | undefined;
|
|
@@ -1851,6 +1880,9 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1851
1880
|
thumbnails?: {
|
|
1852
1881
|
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1853
1882
|
background?: string | undefined;
|
|
1883
|
+
fonts?: {
|
|
1884
|
+
family: string;
|
|
1885
|
+
} | undefined;
|
|
1854
1886
|
} | undefined;
|
|
1855
1887
|
interaction?: {
|
|
1856
1888
|
drilldown?: boolean | undefined;
|
|
@@ -2152,6 +2184,9 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
2152
2184
|
amplitude?: {
|
|
2153
2185
|
apiKey: string;
|
|
2154
2186
|
} | undefined;
|
|
2187
|
+
clarity?: {
|
|
2188
|
+
projectId: string;
|
|
2189
|
+
} | undefined;
|
|
2155
2190
|
clearbit?: {
|
|
2156
2191
|
publicApiKey: string;
|
|
2157
2192
|
} | undefined;
|
|
@@ -2253,6 +2288,9 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
2253
2288
|
thumbnails?: {
|
|
2254
2289
|
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
2255
2290
|
background?: string | undefined;
|
|
2291
|
+
fonts?: {
|
|
2292
|
+
family: string;
|
|
2293
|
+
} | undefined;
|
|
2256
2294
|
} | undefined;
|
|
2257
2295
|
interaction?: {
|
|
2258
2296
|
drilldown?: boolean | undefined;
|
|
@@ -943,6 +943,13 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
943
943
|
}, {
|
|
944
944
|
apiKey: string;
|
|
945
945
|
}>>;
|
|
946
|
+
clarity: z.ZodOptional<z.ZodObject<{
|
|
947
|
+
projectId: z.ZodString;
|
|
948
|
+
}, "strip", z.ZodTypeAny, {
|
|
949
|
+
projectId: string;
|
|
950
|
+
}, {
|
|
951
|
+
projectId: string;
|
|
952
|
+
}>>;
|
|
946
953
|
clearbit: z.ZodOptional<z.ZodObject<{
|
|
947
954
|
publicApiKey: z.ZodString;
|
|
948
955
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1095,6 +1102,9 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1095
1102
|
amplitude?: {
|
|
1096
1103
|
apiKey: string;
|
|
1097
1104
|
} | undefined;
|
|
1105
|
+
clarity?: {
|
|
1106
|
+
projectId: string;
|
|
1107
|
+
} | undefined;
|
|
1098
1108
|
clearbit?: {
|
|
1099
1109
|
publicApiKey: string;
|
|
1100
1110
|
} | undefined;
|
|
@@ -1161,6 +1171,9 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1161
1171
|
amplitude?: {
|
|
1162
1172
|
apiKey: string;
|
|
1163
1173
|
} | undefined;
|
|
1174
|
+
clarity?: {
|
|
1175
|
+
projectId: string;
|
|
1176
|
+
} | undefined;
|
|
1164
1177
|
clearbit?: {
|
|
1165
1178
|
publicApiKey: string;
|
|
1166
1179
|
} | undefined;
|
|
@@ -1438,12 +1451,25 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1438
1451
|
thumbnails: z.ZodOptional<z.ZodObject<{
|
|
1439
1452
|
appearance: z.ZodOptional<z.ZodEnum<[import("../properties/thumbnails.js").ThumbnailAppearance.Light, import("../properties/thumbnails.js").ThumbnailAppearance.Dark]>>;
|
|
1440
1453
|
background: z.ZodOptional<z.ZodString>;
|
|
1454
|
+
fonts: z.ZodOptional<z.ZodObject<{
|
|
1455
|
+
family: z.ZodString;
|
|
1456
|
+
}, "strip", z.ZodTypeAny, {
|
|
1457
|
+
family: string;
|
|
1458
|
+
}, {
|
|
1459
|
+
family: string;
|
|
1460
|
+
}>>;
|
|
1441
1461
|
}, "strip", z.ZodTypeAny, {
|
|
1442
1462
|
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1443
1463
|
background?: string | undefined;
|
|
1464
|
+
fonts?: {
|
|
1465
|
+
family: string;
|
|
1466
|
+
} | undefined;
|
|
1444
1467
|
}, {
|
|
1445
1468
|
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1446
1469
|
background?: string | undefined;
|
|
1470
|
+
fonts?: {
|
|
1471
|
+
family: string;
|
|
1472
|
+
} | undefined;
|
|
1447
1473
|
}>>;
|
|
1448
1474
|
interaction: z.ZodOptional<z.ZodObject<{
|
|
1449
1475
|
drilldown: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1750,6 +1776,9 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1750
1776
|
amplitude?: {
|
|
1751
1777
|
apiKey: string;
|
|
1752
1778
|
} | undefined;
|
|
1779
|
+
clarity?: {
|
|
1780
|
+
projectId: string;
|
|
1781
|
+
} | undefined;
|
|
1753
1782
|
clearbit?: {
|
|
1754
1783
|
publicApiKey: string;
|
|
1755
1784
|
} | undefined;
|
|
@@ -1851,6 +1880,9 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1851
1880
|
thumbnails?: {
|
|
1852
1881
|
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1853
1882
|
background?: string | undefined;
|
|
1883
|
+
fonts?: {
|
|
1884
|
+
family: string;
|
|
1885
|
+
} | undefined;
|
|
1854
1886
|
} | undefined;
|
|
1855
1887
|
interaction?: {
|
|
1856
1888
|
drilldown?: boolean | undefined;
|
|
@@ -2152,6 +2184,9 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
2152
2184
|
amplitude?: {
|
|
2153
2185
|
apiKey: string;
|
|
2154
2186
|
} | undefined;
|
|
2187
|
+
clarity?: {
|
|
2188
|
+
projectId: string;
|
|
2189
|
+
} | undefined;
|
|
2155
2190
|
clearbit?: {
|
|
2156
2191
|
publicApiKey: string;
|
|
2157
2192
|
} | undefined;
|
|
@@ -2253,6 +2288,9 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
2253
2288
|
thumbnails?: {
|
|
2254
2289
|
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
2255
2290
|
background?: string | undefined;
|
|
2291
|
+
fonts?: {
|
|
2292
|
+
family: string;
|
|
2293
|
+
} | undefined;
|
|
2256
2294
|
} | undefined;
|
|
2257
2295
|
interaction?: {
|
|
2258
2296
|
drilldown?: boolean | undefined;
|
|
@@ -943,6 +943,13 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
943
943
|
}, {
|
|
944
944
|
apiKey: string;
|
|
945
945
|
}>>;
|
|
946
|
+
clarity: z.ZodOptional<z.ZodObject<{
|
|
947
|
+
projectId: z.ZodString;
|
|
948
|
+
}, "strip", z.ZodTypeAny, {
|
|
949
|
+
projectId: string;
|
|
950
|
+
}, {
|
|
951
|
+
projectId: string;
|
|
952
|
+
}>>;
|
|
946
953
|
clearbit: z.ZodOptional<z.ZodObject<{
|
|
947
954
|
publicApiKey: z.ZodString;
|
|
948
955
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1095,6 +1102,9 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1095
1102
|
amplitude?: {
|
|
1096
1103
|
apiKey: string;
|
|
1097
1104
|
} | undefined;
|
|
1105
|
+
clarity?: {
|
|
1106
|
+
projectId: string;
|
|
1107
|
+
} | undefined;
|
|
1098
1108
|
clearbit?: {
|
|
1099
1109
|
publicApiKey: string;
|
|
1100
1110
|
} | undefined;
|
|
@@ -1161,6 +1171,9 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1161
1171
|
amplitude?: {
|
|
1162
1172
|
apiKey: string;
|
|
1163
1173
|
} | undefined;
|
|
1174
|
+
clarity?: {
|
|
1175
|
+
projectId: string;
|
|
1176
|
+
} | undefined;
|
|
1164
1177
|
clearbit?: {
|
|
1165
1178
|
publicApiKey: string;
|
|
1166
1179
|
} | undefined;
|
|
@@ -1438,12 +1451,25 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1438
1451
|
thumbnails: z.ZodOptional<z.ZodObject<{
|
|
1439
1452
|
appearance: z.ZodOptional<z.ZodEnum<[import("../properties/thumbnails.js").ThumbnailAppearance.Light, import("../properties/thumbnails.js").ThumbnailAppearance.Dark]>>;
|
|
1440
1453
|
background: z.ZodOptional<z.ZodString>;
|
|
1454
|
+
fonts: z.ZodOptional<z.ZodObject<{
|
|
1455
|
+
family: z.ZodString;
|
|
1456
|
+
}, "strip", z.ZodTypeAny, {
|
|
1457
|
+
family: string;
|
|
1458
|
+
}, {
|
|
1459
|
+
family: string;
|
|
1460
|
+
}>>;
|
|
1441
1461
|
}, "strip", z.ZodTypeAny, {
|
|
1442
1462
|
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1443
1463
|
background?: string | undefined;
|
|
1464
|
+
fonts?: {
|
|
1465
|
+
family: string;
|
|
1466
|
+
} | undefined;
|
|
1444
1467
|
}, {
|
|
1445
1468
|
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1446
1469
|
background?: string | undefined;
|
|
1470
|
+
fonts?: {
|
|
1471
|
+
family: string;
|
|
1472
|
+
} | undefined;
|
|
1447
1473
|
}>>;
|
|
1448
1474
|
interaction: z.ZodOptional<z.ZodObject<{
|
|
1449
1475
|
drilldown: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1750,6 +1776,9 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1750
1776
|
amplitude?: {
|
|
1751
1777
|
apiKey: string;
|
|
1752
1778
|
} | undefined;
|
|
1779
|
+
clarity?: {
|
|
1780
|
+
projectId: string;
|
|
1781
|
+
} | undefined;
|
|
1753
1782
|
clearbit?: {
|
|
1754
1783
|
publicApiKey: string;
|
|
1755
1784
|
} | undefined;
|
|
@@ -1851,6 +1880,9 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1851
1880
|
thumbnails?: {
|
|
1852
1881
|
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1853
1882
|
background?: string | undefined;
|
|
1883
|
+
fonts?: {
|
|
1884
|
+
family: string;
|
|
1885
|
+
} | undefined;
|
|
1854
1886
|
} | undefined;
|
|
1855
1887
|
interaction?: {
|
|
1856
1888
|
drilldown?: boolean | undefined;
|
|
@@ -2152,6 +2184,9 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
2152
2184
|
amplitude?: {
|
|
2153
2185
|
apiKey: string;
|
|
2154
2186
|
} | undefined;
|
|
2187
|
+
clarity?: {
|
|
2188
|
+
projectId: string;
|
|
2189
|
+
} | undefined;
|
|
2155
2190
|
clearbit?: {
|
|
2156
2191
|
publicApiKey: string;
|
|
2157
2192
|
} | undefined;
|
|
@@ -2253,6 +2288,9 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
2253
2288
|
thumbnails?: {
|
|
2254
2289
|
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
2255
2290
|
background?: string | undefined;
|
|
2291
|
+
fonts?: {
|
|
2292
|
+
family: string;
|
|
2293
|
+
} | undefined;
|
|
2256
2294
|
} | undefined;
|
|
2257
2295
|
interaction?: {
|
|
2258
2296
|
drilldown?: boolean | undefined;
|