@mintlify/validation 0.1.514 → 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 +133 -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/themes/almond.d.ts +19 -0
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +19 -0
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +19 -0
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +19 -0
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +19 -0
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +19 -0
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +13 -0
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +19 -0
- package/dist/mint-config/validateConfig.d.ts +48 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +3 -3
|
@@ -7,6 +7,13 @@ export declare const analyticsSchema: 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, {
|
|
@@ -124,6 +131,9 @@ export declare const analyticsSchema: z.ZodObject<{
|
|
|
124
131
|
amplitude?: {
|
|
125
132
|
apiKey: string;
|
|
126
133
|
} | undefined;
|
|
134
|
+
clarity?: {
|
|
135
|
+
projectId: string;
|
|
136
|
+
} | undefined;
|
|
127
137
|
clearbit?: {
|
|
128
138
|
publicApiKey: string;
|
|
129
139
|
} | undefined;
|
|
@@ -175,6 +185,9 @@ export declare const analyticsSchema: z.ZodObject<{
|
|
|
175
185
|
amplitude?: {
|
|
176
186
|
apiKey: string;
|
|
177
187
|
} | undefined;
|
|
188
|
+
clarity?: {
|
|
189
|
+
projectId: string;
|
|
190
|
+
} | undefined;
|
|
178
191
|
clearbit?: {
|
|
179
192
|
publicApiKey: string;
|
|
180
193
|
} | undefined;
|
|
@@ -51,12 +51,16 @@ const hightouchConfigInterfaceSchema = z.object({
|
|
|
51
51
|
writeKey: z.string(),
|
|
52
52
|
apiHost: z.string().optional(),
|
|
53
53
|
});
|
|
54
|
+
const clarityConfigInterfaceSchema = z.object({
|
|
55
|
+
projectId: z.string(),
|
|
56
|
+
});
|
|
54
57
|
const segmentConfigInterfaceSchema = z.object({
|
|
55
58
|
key: z.string(),
|
|
56
59
|
});
|
|
57
60
|
export const analyticsSchema = z
|
|
58
61
|
.object({
|
|
59
62
|
amplitude: amplitudeConfigInterfaceSchema.optional(),
|
|
63
|
+
clarity: clarityConfigInterfaceSchema.optional(),
|
|
60
64
|
clearbit: clearbitConfigInterfaceSchema.optional(),
|
|
61
65
|
fathom: fathomConfigInterfaceSchema.optional(),
|
|
62
66
|
ga4: googleAnalyticsConfigInterfaceSchema.optional(),
|
|
@@ -72,4 +76,4 @@ export const analyticsSchema = z
|
|
|
72
76
|
plausible: plausibleConfigInterfaceSchema.optional(),
|
|
73
77
|
segment: segmentConfigInterfaceSchema.optional(),
|
|
74
78
|
})
|
|
75
|
-
.strict('Mintlify only supports analytics integrations from: amplitude, clearbit, fathom, ga4, gtm, heap, hotjar, koala, logrocket, mixpanel, pirsch, posthog, plausible, and segment.');
|
|
79
|
+
.strict('Mintlify only supports analytics integrations from: amplitude, clarity, clearbit, fathom, ga4, gtm, heap, hotjar, koala, logrocket, mixpanel, pirsch, posthog, plausible, and segment.');
|
|
@@ -586,6 +586,13 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
586
586
|
}, {
|
|
587
587
|
apiKey: string;
|
|
588
588
|
}>>;
|
|
589
|
+
clarity: z.ZodOptional<z.ZodObject<{
|
|
590
|
+
projectId: z.ZodString;
|
|
591
|
+
}, "strip", z.ZodTypeAny, {
|
|
592
|
+
projectId: string;
|
|
593
|
+
}, {
|
|
594
|
+
projectId: string;
|
|
595
|
+
}>>;
|
|
589
596
|
clearbit: z.ZodOptional<z.ZodObject<{
|
|
590
597
|
publicApiKey: z.ZodString;
|
|
591
598
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -703,6 +710,9 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
703
710
|
amplitude?: {
|
|
704
711
|
apiKey: string;
|
|
705
712
|
} | undefined;
|
|
713
|
+
clarity?: {
|
|
714
|
+
projectId: string;
|
|
715
|
+
} | undefined;
|
|
706
716
|
clearbit?: {
|
|
707
717
|
publicApiKey: string;
|
|
708
718
|
} | undefined;
|
|
@@ -754,6 +764,9 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
754
764
|
amplitude?: {
|
|
755
765
|
apiKey: string;
|
|
756
766
|
} | undefined;
|
|
767
|
+
clarity?: {
|
|
768
|
+
projectId: string;
|
|
769
|
+
} | undefined;
|
|
757
770
|
clearbit?: {
|
|
758
771
|
publicApiKey: string;
|
|
759
772
|
} | undefined;
|
|
@@ -1035,6 +1048,9 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1035
1048
|
amplitude?: {
|
|
1036
1049
|
apiKey: string;
|
|
1037
1050
|
} | undefined;
|
|
1051
|
+
clarity?: {
|
|
1052
|
+
projectId: string;
|
|
1053
|
+
} | undefined;
|
|
1038
1054
|
clearbit?: {
|
|
1039
1055
|
publicApiKey: string;
|
|
1040
1056
|
} | undefined;
|
|
@@ -1276,6 +1292,9 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1276
1292
|
amplitude?: {
|
|
1277
1293
|
apiKey: string;
|
|
1278
1294
|
} | undefined;
|
|
1295
|
+
clarity?: {
|
|
1296
|
+
projectId: string;
|
|
1297
|
+
} | undefined;
|
|
1279
1298
|
clearbit?: {
|
|
1280
1299
|
publicApiKey: string;
|
|
1281
1300
|
} | undefined;
|
|
@@ -946,6 +946,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
946
946
|
}, {
|
|
947
947
|
apiKey: string;
|
|
948
948
|
}>>;
|
|
949
|
+
clarity: z.ZodOptional<z.ZodObject<{
|
|
950
|
+
projectId: z.ZodString;
|
|
951
|
+
}, "strip", z.ZodTypeAny, {
|
|
952
|
+
projectId: string;
|
|
953
|
+
}, {
|
|
954
|
+
projectId: string;
|
|
955
|
+
}>>;
|
|
949
956
|
clearbit: z.ZodOptional<z.ZodObject<{
|
|
950
957
|
publicApiKey: z.ZodString;
|
|
951
958
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1098,6 +1105,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1098
1105
|
amplitude?: {
|
|
1099
1106
|
apiKey: string;
|
|
1100
1107
|
} | undefined;
|
|
1108
|
+
clarity?: {
|
|
1109
|
+
projectId: string;
|
|
1110
|
+
} | undefined;
|
|
1101
1111
|
clearbit?: {
|
|
1102
1112
|
publicApiKey: string;
|
|
1103
1113
|
} | undefined;
|
|
@@ -1164,6 +1174,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1164
1174
|
amplitude?: {
|
|
1165
1175
|
apiKey: string;
|
|
1166
1176
|
} | undefined;
|
|
1177
|
+
clarity?: {
|
|
1178
|
+
projectId: string;
|
|
1179
|
+
} | undefined;
|
|
1167
1180
|
clearbit?: {
|
|
1168
1181
|
publicApiKey: string;
|
|
1169
1182
|
} | undefined;
|
|
@@ -1766,6 +1779,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1766
1779
|
amplitude?: {
|
|
1767
1780
|
apiKey: string;
|
|
1768
1781
|
} | undefined;
|
|
1782
|
+
clarity?: {
|
|
1783
|
+
projectId: string;
|
|
1784
|
+
} | undefined;
|
|
1769
1785
|
clearbit?: {
|
|
1770
1786
|
publicApiKey: string;
|
|
1771
1787
|
} | undefined;
|
|
@@ -2171,6 +2187,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2171
2187
|
amplitude?: {
|
|
2172
2188
|
apiKey: string;
|
|
2173
2189
|
} | undefined;
|
|
2190
|
+
clarity?: {
|
|
2191
|
+
projectId: string;
|
|
2192
|
+
} | undefined;
|
|
2174
2193
|
clearbit?: {
|
|
2175
2194
|
publicApiKey: string;
|
|
2176
2195
|
} | undefined;
|
|
@@ -3223,6 +3242,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3223
3242
|
}, {
|
|
3224
3243
|
apiKey: string;
|
|
3225
3244
|
}>>;
|
|
3245
|
+
clarity: z.ZodOptional<z.ZodObject<{
|
|
3246
|
+
projectId: z.ZodString;
|
|
3247
|
+
}, "strip", z.ZodTypeAny, {
|
|
3248
|
+
projectId: string;
|
|
3249
|
+
}, {
|
|
3250
|
+
projectId: string;
|
|
3251
|
+
}>>;
|
|
3226
3252
|
clearbit: z.ZodOptional<z.ZodObject<{
|
|
3227
3253
|
publicApiKey: z.ZodString;
|
|
3228
3254
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3375,6 +3401,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3375
3401
|
amplitude?: {
|
|
3376
3402
|
apiKey: string;
|
|
3377
3403
|
} | undefined;
|
|
3404
|
+
clarity?: {
|
|
3405
|
+
projectId: string;
|
|
3406
|
+
} | undefined;
|
|
3378
3407
|
clearbit?: {
|
|
3379
3408
|
publicApiKey: string;
|
|
3380
3409
|
} | undefined;
|
|
@@ -3441,6 +3470,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3441
3470
|
amplitude?: {
|
|
3442
3471
|
apiKey: string;
|
|
3443
3472
|
} | undefined;
|
|
3473
|
+
clarity?: {
|
|
3474
|
+
projectId: string;
|
|
3475
|
+
} | undefined;
|
|
3444
3476
|
clearbit?: {
|
|
3445
3477
|
publicApiKey: string;
|
|
3446
3478
|
} | undefined;
|
|
@@ -4043,6 +4075,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4043
4075
|
amplitude?: {
|
|
4044
4076
|
apiKey: string;
|
|
4045
4077
|
} | undefined;
|
|
4078
|
+
clarity?: {
|
|
4079
|
+
projectId: string;
|
|
4080
|
+
} | undefined;
|
|
4046
4081
|
clearbit?: {
|
|
4047
4082
|
publicApiKey: string;
|
|
4048
4083
|
} | undefined;
|
|
@@ -4448,6 +4483,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4448
4483
|
amplitude?: {
|
|
4449
4484
|
apiKey: string;
|
|
4450
4485
|
} | undefined;
|
|
4486
|
+
clarity?: {
|
|
4487
|
+
projectId: string;
|
|
4488
|
+
} | undefined;
|
|
4451
4489
|
clearbit?: {
|
|
4452
4490
|
publicApiKey: string;
|
|
4453
4491
|
} | undefined;
|
|
@@ -5500,6 +5538,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5500
5538
|
}, {
|
|
5501
5539
|
apiKey: string;
|
|
5502
5540
|
}>>;
|
|
5541
|
+
clarity: z.ZodOptional<z.ZodObject<{
|
|
5542
|
+
projectId: z.ZodString;
|
|
5543
|
+
}, "strip", z.ZodTypeAny, {
|
|
5544
|
+
projectId: string;
|
|
5545
|
+
}, {
|
|
5546
|
+
projectId: string;
|
|
5547
|
+
}>>;
|
|
5503
5548
|
clearbit: z.ZodOptional<z.ZodObject<{
|
|
5504
5549
|
publicApiKey: z.ZodString;
|
|
5505
5550
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5652,6 +5697,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5652
5697
|
amplitude?: {
|
|
5653
5698
|
apiKey: string;
|
|
5654
5699
|
} | undefined;
|
|
5700
|
+
clarity?: {
|
|
5701
|
+
projectId: string;
|
|
5702
|
+
} | undefined;
|
|
5655
5703
|
clearbit?: {
|
|
5656
5704
|
publicApiKey: string;
|
|
5657
5705
|
} | undefined;
|
|
@@ -5718,6 +5766,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5718
5766
|
amplitude?: {
|
|
5719
5767
|
apiKey: string;
|
|
5720
5768
|
} | undefined;
|
|
5769
|
+
clarity?: {
|
|
5770
|
+
projectId: string;
|
|
5771
|
+
} | undefined;
|
|
5721
5772
|
clearbit?: {
|
|
5722
5773
|
publicApiKey: string;
|
|
5723
5774
|
} | undefined;
|
|
@@ -6320,6 +6371,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6320
6371
|
amplitude?: {
|
|
6321
6372
|
apiKey: string;
|
|
6322
6373
|
} | undefined;
|
|
6374
|
+
clarity?: {
|
|
6375
|
+
projectId: string;
|
|
6376
|
+
} | undefined;
|
|
6323
6377
|
clearbit?: {
|
|
6324
6378
|
publicApiKey: string;
|
|
6325
6379
|
} | undefined;
|
|
@@ -6725,6 +6779,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6725
6779
|
amplitude?: {
|
|
6726
6780
|
apiKey: string;
|
|
6727
6781
|
} | undefined;
|
|
6782
|
+
clarity?: {
|
|
6783
|
+
projectId: string;
|
|
6784
|
+
} | undefined;
|
|
6728
6785
|
clearbit?: {
|
|
6729
6786
|
publicApiKey: string;
|
|
6730
6787
|
} | undefined;
|
|
@@ -7777,6 +7834,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7777
7834
|
}, {
|
|
7778
7835
|
apiKey: string;
|
|
7779
7836
|
}>>;
|
|
7837
|
+
clarity: z.ZodOptional<z.ZodObject<{
|
|
7838
|
+
projectId: z.ZodString;
|
|
7839
|
+
}, "strip", z.ZodTypeAny, {
|
|
7840
|
+
projectId: string;
|
|
7841
|
+
}, {
|
|
7842
|
+
projectId: string;
|
|
7843
|
+
}>>;
|
|
7780
7844
|
clearbit: z.ZodOptional<z.ZodObject<{
|
|
7781
7845
|
publicApiKey: z.ZodString;
|
|
7782
7846
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7929,6 +7993,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7929
7993
|
amplitude?: {
|
|
7930
7994
|
apiKey: string;
|
|
7931
7995
|
} | undefined;
|
|
7996
|
+
clarity?: {
|
|
7997
|
+
projectId: string;
|
|
7998
|
+
} | undefined;
|
|
7932
7999
|
clearbit?: {
|
|
7933
8000
|
publicApiKey: string;
|
|
7934
8001
|
} | undefined;
|
|
@@ -7995,6 +8062,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7995
8062
|
amplitude?: {
|
|
7996
8063
|
apiKey: string;
|
|
7997
8064
|
} | undefined;
|
|
8065
|
+
clarity?: {
|
|
8066
|
+
projectId: string;
|
|
8067
|
+
} | undefined;
|
|
7998
8068
|
clearbit?: {
|
|
7999
8069
|
publicApiKey: string;
|
|
8000
8070
|
} | undefined;
|
|
@@ -8597,6 +8667,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8597
8667
|
amplitude?: {
|
|
8598
8668
|
apiKey: string;
|
|
8599
8669
|
} | undefined;
|
|
8670
|
+
clarity?: {
|
|
8671
|
+
projectId: string;
|
|
8672
|
+
} | undefined;
|
|
8600
8673
|
clearbit?: {
|
|
8601
8674
|
publicApiKey: string;
|
|
8602
8675
|
} | undefined;
|
|
@@ -9002,6 +9075,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9002
9075
|
amplitude?: {
|
|
9003
9076
|
apiKey: string;
|
|
9004
9077
|
} | undefined;
|
|
9078
|
+
clarity?: {
|
|
9079
|
+
projectId: string;
|
|
9080
|
+
} | undefined;
|
|
9005
9081
|
clearbit?: {
|
|
9006
9082
|
publicApiKey: string;
|
|
9007
9083
|
} | undefined;
|
|
@@ -10054,6 +10130,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10054
10130
|
}, {
|
|
10055
10131
|
apiKey: string;
|
|
10056
10132
|
}>>;
|
|
10133
|
+
clarity: z.ZodOptional<z.ZodObject<{
|
|
10134
|
+
projectId: z.ZodString;
|
|
10135
|
+
}, "strip", z.ZodTypeAny, {
|
|
10136
|
+
projectId: string;
|
|
10137
|
+
}, {
|
|
10138
|
+
projectId: string;
|
|
10139
|
+
}>>;
|
|
10057
10140
|
clearbit: z.ZodOptional<z.ZodObject<{
|
|
10058
10141
|
publicApiKey: z.ZodString;
|
|
10059
10142
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -10206,6 +10289,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10206
10289
|
amplitude?: {
|
|
10207
10290
|
apiKey: string;
|
|
10208
10291
|
} | undefined;
|
|
10292
|
+
clarity?: {
|
|
10293
|
+
projectId: string;
|
|
10294
|
+
} | undefined;
|
|
10209
10295
|
clearbit?: {
|
|
10210
10296
|
publicApiKey: string;
|
|
10211
10297
|
} | undefined;
|
|
@@ -10272,6 +10358,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10272
10358
|
amplitude?: {
|
|
10273
10359
|
apiKey: string;
|
|
10274
10360
|
} | undefined;
|
|
10361
|
+
clarity?: {
|
|
10362
|
+
projectId: string;
|
|
10363
|
+
} | undefined;
|
|
10275
10364
|
clearbit?: {
|
|
10276
10365
|
publicApiKey: string;
|
|
10277
10366
|
} | undefined;
|
|
@@ -10874,6 +10963,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10874
10963
|
amplitude?: {
|
|
10875
10964
|
apiKey: string;
|
|
10876
10965
|
} | undefined;
|
|
10966
|
+
clarity?: {
|
|
10967
|
+
projectId: string;
|
|
10968
|
+
} | undefined;
|
|
10877
10969
|
clearbit?: {
|
|
10878
10970
|
publicApiKey: string;
|
|
10879
10971
|
} | undefined;
|
|
@@ -11279,6 +11371,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11279
11371
|
amplitude?: {
|
|
11280
11372
|
apiKey: string;
|
|
11281
11373
|
} | undefined;
|
|
11374
|
+
clarity?: {
|
|
11375
|
+
projectId: string;
|
|
11376
|
+
} | undefined;
|
|
11282
11377
|
clearbit?: {
|
|
11283
11378
|
publicApiKey: string;
|
|
11284
11379
|
} | undefined;
|
|
@@ -12331,6 +12426,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12331
12426
|
}, {
|
|
12332
12427
|
apiKey: string;
|
|
12333
12428
|
}>>;
|
|
12429
|
+
clarity: z.ZodOptional<z.ZodObject<{
|
|
12430
|
+
projectId: z.ZodString;
|
|
12431
|
+
}, "strip", z.ZodTypeAny, {
|
|
12432
|
+
projectId: string;
|
|
12433
|
+
}, {
|
|
12434
|
+
projectId: string;
|
|
12435
|
+
}>>;
|
|
12334
12436
|
clearbit: z.ZodOptional<z.ZodObject<{
|
|
12335
12437
|
publicApiKey: z.ZodString;
|
|
12336
12438
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -12483,6 +12585,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12483
12585
|
amplitude?: {
|
|
12484
12586
|
apiKey: string;
|
|
12485
12587
|
} | undefined;
|
|
12588
|
+
clarity?: {
|
|
12589
|
+
projectId: string;
|
|
12590
|
+
} | undefined;
|
|
12486
12591
|
clearbit?: {
|
|
12487
12592
|
publicApiKey: string;
|
|
12488
12593
|
} | undefined;
|
|
@@ -12549,6 +12654,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12549
12654
|
amplitude?: {
|
|
12550
12655
|
apiKey: string;
|
|
12551
12656
|
} | undefined;
|
|
12657
|
+
clarity?: {
|
|
12658
|
+
projectId: string;
|
|
12659
|
+
} | undefined;
|
|
12552
12660
|
clearbit?: {
|
|
12553
12661
|
publicApiKey: string;
|
|
12554
12662
|
} | undefined;
|
|
@@ -13151,6 +13259,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13151
13259
|
amplitude?: {
|
|
13152
13260
|
apiKey: string;
|
|
13153
13261
|
} | undefined;
|
|
13262
|
+
clarity?: {
|
|
13263
|
+
projectId: string;
|
|
13264
|
+
} | undefined;
|
|
13154
13265
|
clearbit?: {
|
|
13155
13266
|
publicApiKey: string;
|
|
13156
13267
|
} | undefined;
|
|
@@ -13556,6 +13667,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13556
13667
|
amplitude?: {
|
|
13557
13668
|
apiKey: string;
|
|
13558
13669
|
} | undefined;
|
|
13670
|
+
clarity?: {
|
|
13671
|
+
projectId: string;
|
|
13672
|
+
} | undefined;
|
|
13559
13673
|
clearbit?: {
|
|
13560
13674
|
publicApiKey: string;
|
|
13561
13675
|
} | undefined;
|
|
@@ -14608,6 +14722,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14608
14722
|
}, {
|
|
14609
14723
|
apiKey: string;
|
|
14610
14724
|
}>>;
|
|
14725
|
+
clarity: z.ZodOptional<z.ZodObject<{
|
|
14726
|
+
projectId: z.ZodString;
|
|
14727
|
+
}, "strip", z.ZodTypeAny, {
|
|
14728
|
+
projectId: string;
|
|
14729
|
+
}, {
|
|
14730
|
+
projectId: string;
|
|
14731
|
+
}>>;
|
|
14611
14732
|
clearbit: z.ZodOptional<z.ZodObject<{
|
|
14612
14733
|
publicApiKey: z.ZodString;
|
|
14613
14734
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -14760,6 +14881,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14760
14881
|
amplitude?: {
|
|
14761
14882
|
apiKey: string;
|
|
14762
14883
|
} | undefined;
|
|
14884
|
+
clarity?: {
|
|
14885
|
+
projectId: string;
|
|
14886
|
+
} | undefined;
|
|
14763
14887
|
clearbit?: {
|
|
14764
14888
|
publicApiKey: string;
|
|
14765
14889
|
} | undefined;
|
|
@@ -14826,6 +14950,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14826
14950
|
amplitude?: {
|
|
14827
14951
|
apiKey: string;
|
|
14828
14952
|
} | undefined;
|
|
14953
|
+
clarity?: {
|
|
14954
|
+
projectId: string;
|
|
14955
|
+
} | undefined;
|
|
14829
14956
|
clearbit?: {
|
|
14830
14957
|
publicApiKey: string;
|
|
14831
14958
|
} | undefined;
|
|
@@ -15428,6 +15555,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15428
15555
|
amplitude?: {
|
|
15429
15556
|
apiKey: string;
|
|
15430
15557
|
} | undefined;
|
|
15558
|
+
clarity?: {
|
|
15559
|
+
projectId: string;
|
|
15560
|
+
} | undefined;
|
|
15431
15561
|
clearbit?: {
|
|
15432
15562
|
publicApiKey: string;
|
|
15433
15563
|
} | undefined;
|
|
@@ -15833,6 +15963,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15833
15963
|
amplitude?: {
|
|
15834
15964
|
apiKey: string;
|
|
15835
15965
|
} | undefined;
|
|
15966
|
+
clarity?: {
|
|
15967
|
+
projectId: string;
|
|
15968
|
+
} | undefined;
|
|
15836
15969
|
clearbit?: {
|
|
15837
15970
|
publicApiKey: string;
|
|
15838
15971
|
} | undefined;
|
|
@@ -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(),
|
|
@@ -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;
|
|
@@ -1763,6 +1776,9 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1763
1776
|
amplitude?: {
|
|
1764
1777
|
apiKey: string;
|
|
1765
1778
|
} | undefined;
|
|
1779
|
+
clarity?: {
|
|
1780
|
+
projectId: string;
|
|
1781
|
+
} | undefined;
|
|
1766
1782
|
clearbit?: {
|
|
1767
1783
|
publicApiKey: string;
|
|
1768
1784
|
} | undefined;
|
|
@@ -2168,6 +2184,9 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
2168
2184
|
amplitude?: {
|
|
2169
2185
|
apiKey: string;
|
|
2170
2186
|
} | undefined;
|
|
2187
|
+
clarity?: {
|
|
2188
|
+
projectId: string;
|
|
2189
|
+
} | undefined;
|
|
2171
2190
|
clearbit?: {
|
|
2172
2191
|
publicApiKey: string;
|
|
2173
2192
|
} | 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;
|
|
@@ -1763,6 +1776,9 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1763
1776
|
amplitude?: {
|
|
1764
1777
|
apiKey: string;
|
|
1765
1778
|
} | undefined;
|
|
1779
|
+
clarity?: {
|
|
1780
|
+
projectId: string;
|
|
1781
|
+
} | undefined;
|
|
1766
1782
|
clearbit?: {
|
|
1767
1783
|
publicApiKey: string;
|
|
1768
1784
|
} | undefined;
|
|
@@ -2168,6 +2184,9 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
2168
2184
|
amplitude?: {
|
|
2169
2185
|
apiKey: string;
|
|
2170
2186
|
} | undefined;
|
|
2187
|
+
clarity?: {
|
|
2188
|
+
projectId: string;
|
|
2189
|
+
} | undefined;
|
|
2171
2190
|
clearbit?: {
|
|
2172
2191
|
publicApiKey: string;
|
|
2173
2192
|
} | 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;
|
|
@@ -1763,6 +1776,9 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1763
1776
|
amplitude?: {
|
|
1764
1777
|
apiKey: string;
|
|
1765
1778
|
} | undefined;
|
|
1779
|
+
clarity?: {
|
|
1780
|
+
projectId: string;
|
|
1781
|
+
} | undefined;
|
|
1766
1782
|
clearbit?: {
|
|
1767
1783
|
publicApiKey: string;
|
|
1768
1784
|
} | undefined;
|
|
@@ -2168,6 +2184,9 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
2168
2184
|
amplitude?: {
|
|
2169
2185
|
apiKey: string;
|
|
2170
2186
|
} | undefined;
|
|
2187
|
+
clarity?: {
|
|
2188
|
+
projectId: string;
|
|
2189
|
+
} | undefined;
|
|
2171
2190
|
clearbit?: {
|
|
2172
2191
|
publicApiKey: string;
|
|
2173
2192
|
} | undefined;
|