@mintlify/validation 0.1.752 → 0.1.754
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 +5 -0
- package/dist/mint-config/schemas/v1/analytics.js +1 -0
- package/dist/mint-config/schemas/v1/config.d.ts +7 -0
- package/dist/mint-config/schemas/v2/index.d.ts +70 -0
- package/dist/mint-config/schemas/v2/properties/integrations.d.ts +5 -0
- package/dist/mint-config/schemas/v2/properties/integrations.js +1 -0
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +7 -0
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +7 -0
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +7 -0
- package/dist/mint-config/schemas/v2/themes/luma.d.ts +7 -0
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +7 -0
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +7 -0
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +7 -0
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +5 -0
- package/dist/mint-config/schemas/v2/themes/sequoia.d.ts +7 -0
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +7 -0
- package/dist/mint-config/validateConfig.d.ts +20 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/deployment/index.d.ts +1 -0
- package/dist/types/deployment/index.js +3 -1
- package/package.json +3 -3
|
@@ -92,10 +92,13 @@ export declare const analyticsSchema: z.ZodObject<{
|
|
|
92
92
|
}>>;
|
|
93
93
|
mixpanel: z.ZodOptional<z.ZodObject<{
|
|
94
94
|
projectToken: z.ZodString;
|
|
95
|
+
region: z.ZodOptional<z.ZodEnum<["us", "eu", "in"]>>;
|
|
95
96
|
}, "strip", z.ZodTypeAny, {
|
|
96
97
|
projectToken: string;
|
|
98
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
97
99
|
}, {
|
|
98
100
|
projectToken: string;
|
|
101
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
99
102
|
}>>;
|
|
100
103
|
pirsch: z.ZodOptional<z.ZodObject<{
|
|
101
104
|
id: z.ZodString;
|
|
@@ -175,6 +178,7 @@ export declare const analyticsSchema: z.ZodObject<{
|
|
|
175
178
|
} | undefined;
|
|
176
179
|
mixpanel?: {
|
|
177
180
|
projectToken: string;
|
|
181
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
178
182
|
} | undefined;
|
|
179
183
|
pirsch?: {
|
|
180
184
|
id: string;
|
|
@@ -232,6 +236,7 @@ export declare const analyticsSchema: z.ZodObject<{
|
|
|
232
236
|
} | undefined;
|
|
233
237
|
mixpanel?: {
|
|
234
238
|
projectToken: string;
|
|
239
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
235
240
|
} | undefined;
|
|
236
241
|
pirsch?: {
|
|
237
242
|
id: string;
|
|
@@ -29,6 +29,7 @@ const logrocketConfigInterfaceSchema = z.object({
|
|
|
29
29
|
});
|
|
30
30
|
const mixpanelConfigInterfaceSchema = z.object({
|
|
31
31
|
projectToken: z.string(),
|
|
32
|
+
region: z.enum(['us', 'eu', 'in']).optional(),
|
|
32
33
|
});
|
|
33
34
|
const pirschConfigInterfaceSchema = z.object({
|
|
34
35
|
id: z.string(),
|
|
@@ -676,10 +676,13 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
676
676
|
}>>;
|
|
677
677
|
mixpanel: z.ZodOptional<z.ZodObject<{
|
|
678
678
|
projectToken: z.ZodString;
|
|
679
|
+
region: z.ZodOptional<z.ZodEnum<["us", "eu", "in"]>>;
|
|
679
680
|
}, "strip", z.ZodTypeAny, {
|
|
680
681
|
projectToken: string;
|
|
682
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
681
683
|
}, {
|
|
682
684
|
projectToken: string;
|
|
685
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
683
686
|
}>>;
|
|
684
687
|
pirsch: z.ZodOptional<z.ZodObject<{
|
|
685
688
|
id: z.ZodString;
|
|
@@ -759,6 +762,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
759
762
|
} | undefined;
|
|
760
763
|
mixpanel?: {
|
|
761
764
|
projectToken: string;
|
|
765
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
762
766
|
} | undefined;
|
|
763
767
|
pirsch?: {
|
|
764
768
|
id: string;
|
|
@@ -816,6 +820,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
816
820
|
} | undefined;
|
|
817
821
|
mixpanel?: {
|
|
818
822
|
projectToken: string;
|
|
823
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
819
824
|
} | undefined;
|
|
820
825
|
pirsch?: {
|
|
821
826
|
id: string;
|
|
@@ -1101,6 +1106,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1101
1106
|
} | undefined;
|
|
1102
1107
|
mixpanel?: {
|
|
1103
1108
|
projectToken: string;
|
|
1109
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
1104
1110
|
} | undefined;
|
|
1105
1111
|
pirsch?: {
|
|
1106
1112
|
id: string;
|
|
@@ -1348,6 +1354,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1348
1354
|
} | undefined;
|
|
1349
1355
|
mixpanel?: {
|
|
1350
1356
|
projectToken: string;
|
|
1357
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
1351
1358
|
} | undefined;
|
|
1352
1359
|
pirsch?: {
|
|
1353
1360
|
id: string;
|
|
@@ -1158,10 +1158,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1158
1158
|
}>>;
|
|
1159
1159
|
mixpanel: z.ZodOptional<z.ZodObject<{
|
|
1160
1160
|
projectToken: z.ZodString;
|
|
1161
|
+
region: z.ZodOptional<z.ZodEnum<["us", "eu", "in"]>>;
|
|
1161
1162
|
}, "strip", z.ZodTypeAny, {
|
|
1162
1163
|
projectToken: string;
|
|
1164
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
1163
1165
|
}, {
|
|
1164
1166
|
projectToken: string;
|
|
1167
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
1165
1168
|
}>>;
|
|
1166
1169
|
onetrust: z.ZodOptional<z.ZodObject<{
|
|
1167
1170
|
domainScript: z.ZodString;
|
|
@@ -1271,6 +1274,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1271
1274
|
} | undefined;
|
|
1272
1275
|
mixpanel?: {
|
|
1273
1276
|
projectToken: string;
|
|
1277
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
1274
1278
|
} | undefined;
|
|
1275
1279
|
pirsch?: {
|
|
1276
1280
|
id: string;
|
|
@@ -1346,6 +1350,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1346
1350
|
} | undefined;
|
|
1347
1351
|
mixpanel?: {
|
|
1348
1352
|
projectToken: string;
|
|
1353
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
1349
1354
|
} | undefined;
|
|
1350
1355
|
pirsch?: {
|
|
1351
1356
|
id: string;
|
|
@@ -1831,6 +1836,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1831
1836
|
} | undefined;
|
|
1832
1837
|
mixpanel?: {
|
|
1833
1838
|
projectToken: string;
|
|
1839
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
1834
1840
|
} | undefined;
|
|
1835
1841
|
pirsch?: {
|
|
1836
1842
|
id: string;
|
|
@@ -2213,6 +2219,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2213
2219
|
} | undefined;
|
|
2214
2220
|
mixpanel?: {
|
|
2215
2221
|
projectToken: string;
|
|
2222
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
2216
2223
|
} | undefined;
|
|
2217
2224
|
pirsch?: {
|
|
2218
2225
|
id: string;
|
|
@@ -3549,10 +3556,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3549
3556
|
}>>;
|
|
3550
3557
|
mixpanel: z.ZodOptional<z.ZodObject<{
|
|
3551
3558
|
projectToken: z.ZodString;
|
|
3559
|
+
region: z.ZodOptional<z.ZodEnum<["us", "eu", "in"]>>;
|
|
3552
3560
|
}, "strip", z.ZodTypeAny, {
|
|
3553
3561
|
projectToken: string;
|
|
3562
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
3554
3563
|
}, {
|
|
3555
3564
|
projectToken: string;
|
|
3565
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
3556
3566
|
}>>;
|
|
3557
3567
|
onetrust: z.ZodOptional<z.ZodObject<{
|
|
3558
3568
|
domainScript: z.ZodString;
|
|
@@ -3662,6 +3672,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3662
3672
|
} | undefined;
|
|
3663
3673
|
mixpanel?: {
|
|
3664
3674
|
projectToken: string;
|
|
3675
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
3665
3676
|
} | undefined;
|
|
3666
3677
|
pirsch?: {
|
|
3667
3678
|
id: string;
|
|
@@ -3737,6 +3748,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3737
3748
|
} | undefined;
|
|
3738
3749
|
mixpanel?: {
|
|
3739
3750
|
projectToken: string;
|
|
3751
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
3740
3752
|
} | undefined;
|
|
3741
3753
|
pirsch?: {
|
|
3742
3754
|
id: string;
|
|
@@ -4222,6 +4234,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4222
4234
|
} | undefined;
|
|
4223
4235
|
mixpanel?: {
|
|
4224
4236
|
projectToken: string;
|
|
4237
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
4225
4238
|
} | undefined;
|
|
4226
4239
|
pirsch?: {
|
|
4227
4240
|
id: string;
|
|
@@ -4604,6 +4617,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4604
4617
|
} | undefined;
|
|
4605
4618
|
mixpanel?: {
|
|
4606
4619
|
projectToken: string;
|
|
4620
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
4607
4621
|
} | undefined;
|
|
4608
4622
|
pirsch?: {
|
|
4609
4623
|
id: string;
|
|
@@ -5940,10 +5954,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5940
5954
|
}>>;
|
|
5941
5955
|
mixpanel: z.ZodOptional<z.ZodObject<{
|
|
5942
5956
|
projectToken: z.ZodString;
|
|
5957
|
+
region: z.ZodOptional<z.ZodEnum<["us", "eu", "in"]>>;
|
|
5943
5958
|
}, "strip", z.ZodTypeAny, {
|
|
5944
5959
|
projectToken: string;
|
|
5960
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
5945
5961
|
}, {
|
|
5946
5962
|
projectToken: string;
|
|
5963
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
5947
5964
|
}>>;
|
|
5948
5965
|
onetrust: z.ZodOptional<z.ZodObject<{
|
|
5949
5966
|
domainScript: z.ZodString;
|
|
@@ -6053,6 +6070,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6053
6070
|
} | undefined;
|
|
6054
6071
|
mixpanel?: {
|
|
6055
6072
|
projectToken: string;
|
|
6073
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
6056
6074
|
} | undefined;
|
|
6057
6075
|
pirsch?: {
|
|
6058
6076
|
id: string;
|
|
@@ -6128,6 +6146,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6128
6146
|
} | undefined;
|
|
6129
6147
|
mixpanel?: {
|
|
6130
6148
|
projectToken: string;
|
|
6149
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
6131
6150
|
} | undefined;
|
|
6132
6151
|
pirsch?: {
|
|
6133
6152
|
id: string;
|
|
@@ -6613,6 +6632,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6613
6632
|
} | undefined;
|
|
6614
6633
|
mixpanel?: {
|
|
6615
6634
|
projectToken: string;
|
|
6635
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
6616
6636
|
} | undefined;
|
|
6617
6637
|
pirsch?: {
|
|
6618
6638
|
id: string;
|
|
@@ -6995,6 +7015,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6995
7015
|
} | undefined;
|
|
6996
7016
|
mixpanel?: {
|
|
6997
7017
|
projectToken: string;
|
|
7018
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
6998
7019
|
} | undefined;
|
|
6999
7020
|
pirsch?: {
|
|
7000
7021
|
id: string;
|
|
@@ -8331,10 +8352,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8331
8352
|
}>>;
|
|
8332
8353
|
mixpanel: z.ZodOptional<z.ZodObject<{
|
|
8333
8354
|
projectToken: z.ZodString;
|
|
8355
|
+
region: z.ZodOptional<z.ZodEnum<["us", "eu", "in"]>>;
|
|
8334
8356
|
}, "strip", z.ZodTypeAny, {
|
|
8335
8357
|
projectToken: string;
|
|
8358
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
8336
8359
|
}, {
|
|
8337
8360
|
projectToken: string;
|
|
8361
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
8338
8362
|
}>>;
|
|
8339
8363
|
onetrust: z.ZodOptional<z.ZodObject<{
|
|
8340
8364
|
domainScript: z.ZodString;
|
|
@@ -8444,6 +8468,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8444
8468
|
} | undefined;
|
|
8445
8469
|
mixpanel?: {
|
|
8446
8470
|
projectToken: string;
|
|
8471
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
8447
8472
|
} | undefined;
|
|
8448
8473
|
pirsch?: {
|
|
8449
8474
|
id: string;
|
|
@@ -8519,6 +8544,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8519
8544
|
} | undefined;
|
|
8520
8545
|
mixpanel?: {
|
|
8521
8546
|
projectToken: string;
|
|
8547
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
8522
8548
|
} | undefined;
|
|
8523
8549
|
pirsch?: {
|
|
8524
8550
|
id: string;
|
|
@@ -9004,6 +9030,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9004
9030
|
} | undefined;
|
|
9005
9031
|
mixpanel?: {
|
|
9006
9032
|
projectToken: string;
|
|
9033
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
9007
9034
|
} | undefined;
|
|
9008
9035
|
pirsch?: {
|
|
9009
9036
|
id: string;
|
|
@@ -9386,6 +9413,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9386
9413
|
} | undefined;
|
|
9387
9414
|
mixpanel?: {
|
|
9388
9415
|
projectToken: string;
|
|
9416
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
9389
9417
|
} | undefined;
|
|
9390
9418
|
pirsch?: {
|
|
9391
9419
|
id: string;
|
|
@@ -10722,10 +10750,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10722
10750
|
}>>;
|
|
10723
10751
|
mixpanel: z.ZodOptional<z.ZodObject<{
|
|
10724
10752
|
projectToken: z.ZodString;
|
|
10753
|
+
region: z.ZodOptional<z.ZodEnum<["us", "eu", "in"]>>;
|
|
10725
10754
|
}, "strip", z.ZodTypeAny, {
|
|
10726
10755
|
projectToken: string;
|
|
10756
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
10727
10757
|
}, {
|
|
10728
10758
|
projectToken: string;
|
|
10759
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
10729
10760
|
}>>;
|
|
10730
10761
|
onetrust: z.ZodOptional<z.ZodObject<{
|
|
10731
10762
|
domainScript: z.ZodString;
|
|
@@ -10835,6 +10866,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10835
10866
|
} | undefined;
|
|
10836
10867
|
mixpanel?: {
|
|
10837
10868
|
projectToken: string;
|
|
10869
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
10838
10870
|
} | undefined;
|
|
10839
10871
|
pirsch?: {
|
|
10840
10872
|
id: string;
|
|
@@ -10910,6 +10942,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10910
10942
|
} | undefined;
|
|
10911
10943
|
mixpanel?: {
|
|
10912
10944
|
projectToken: string;
|
|
10945
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
10913
10946
|
} | undefined;
|
|
10914
10947
|
pirsch?: {
|
|
10915
10948
|
id: string;
|
|
@@ -11395,6 +11428,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11395
11428
|
} | undefined;
|
|
11396
11429
|
mixpanel?: {
|
|
11397
11430
|
projectToken: string;
|
|
11431
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
11398
11432
|
} | undefined;
|
|
11399
11433
|
pirsch?: {
|
|
11400
11434
|
id: string;
|
|
@@ -11777,6 +11811,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11777
11811
|
} | undefined;
|
|
11778
11812
|
mixpanel?: {
|
|
11779
11813
|
projectToken: string;
|
|
11814
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
11780
11815
|
} | undefined;
|
|
11781
11816
|
pirsch?: {
|
|
11782
11817
|
id: string;
|
|
@@ -13113,10 +13148,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13113
13148
|
}>>;
|
|
13114
13149
|
mixpanel: z.ZodOptional<z.ZodObject<{
|
|
13115
13150
|
projectToken: z.ZodString;
|
|
13151
|
+
region: z.ZodOptional<z.ZodEnum<["us", "eu", "in"]>>;
|
|
13116
13152
|
}, "strip", z.ZodTypeAny, {
|
|
13117
13153
|
projectToken: string;
|
|
13154
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
13118
13155
|
}, {
|
|
13119
13156
|
projectToken: string;
|
|
13157
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
13120
13158
|
}>>;
|
|
13121
13159
|
onetrust: z.ZodOptional<z.ZodObject<{
|
|
13122
13160
|
domainScript: z.ZodString;
|
|
@@ -13226,6 +13264,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13226
13264
|
} | undefined;
|
|
13227
13265
|
mixpanel?: {
|
|
13228
13266
|
projectToken: string;
|
|
13267
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
13229
13268
|
} | undefined;
|
|
13230
13269
|
pirsch?: {
|
|
13231
13270
|
id: string;
|
|
@@ -13301,6 +13340,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13301
13340
|
} | undefined;
|
|
13302
13341
|
mixpanel?: {
|
|
13303
13342
|
projectToken: string;
|
|
13343
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
13304
13344
|
} | undefined;
|
|
13305
13345
|
pirsch?: {
|
|
13306
13346
|
id: string;
|
|
@@ -13786,6 +13826,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13786
13826
|
} | undefined;
|
|
13787
13827
|
mixpanel?: {
|
|
13788
13828
|
projectToken: string;
|
|
13829
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
13789
13830
|
} | undefined;
|
|
13790
13831
|
pirsch?: {
|
|
13791
13832
|
id: string;
|
|
@@ -14168,6 +14209,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14168
14209
|
} | undefined;
|
|
14169
14210
|
mixpanel?: {
|
|
14170
14211
|
projectToken: string;
|
|
14212
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
14171
14213
|
} | undefined;
|
|
14172
14214
|
pirsch?: {
|
|
14173
14215
|
id: string;
|
|
@@ -15504,10 +15546,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15504
15546
|
}>>;
|
|
15505
15547
|
mixpanel: z.ZodOptional<z.ZodObject<{
|
|
15506
15548
|
projectToken: z.ZodString;
|
|
15549
|
+
region: z.ZodOptional<z.ZodEnum<["us", "eu", "in"]>>;
|
|
15507
15550
|
}, "strip", z.ZodTypeAny, {
|
|
15508
15551
|
projectToken: string;
|
|
15552
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
15509
15553
|
}, {
|
|
15510
15554
|
projectToken: string;
|
|
15555
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
15511
15556
|
}>>;
|
|
15512
15557
|
onetrust: z.ZodOptional<z.ZodObject<{
|
|
15513
15558
|
domainScript: z.ZodString;
|
|
@@ -15617,6 +15662,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15617
15662
|
} | undefined;
|
|
15618
15663
|
mixpanel?: {
|
|
15619
15664
|
projectToken: string;
|
|
15665
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
15620
15666
|
} | undefined;
|
|
15621
15667
|
pirsch?: {
|
|
15622
15668
|
id: string;
|
|
@@ -15692,6 +15738,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15692
15738
|
} | undefined;
|
|
15693
15739
|
mixpanel?: {
|
|
15694
15740
|
projectToken: string;
|
|
15741
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
15695
15742
|
} | undefined;
|
|
15696
15743
|
pirsch?: {
|
|
15697
15744
|
id: string;
|
|
@@ -16177,6 +16224,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16177
16224
|
} | undefined;
|
|
16178
16225
|
mixpanel?: {
|
|
16179
16226
|
projectToken: string;
|
|
16227
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
16180
16228
|
} | undefined;
|
|
16181
16229
|
pirsch?: {
|
|
16182
16230
|
id: string;
|
|
@@ -16559,6 +16607,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16559
16607
|
} | undefined;
|
|
16560
16608
|
mixpanel?: {
|
|
16561
16609
|
projectToken: string;
|
|
16610
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
16562
16611
|
} | undefined;
|
|
16563
16612
|
pirsch?: {
|
|
16564
16613
|
id: string;
|
|
@@ -17895,10 +17944,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17895
17944
|
}>>;
|
|
17896
17945
|
mixpanel: z.ZodOptional<z.ZodObject<{
|
|
17897
17946
|
projectToken: z.ZodString;
|
|
17947
|
+
region: z.ZodOptional<z.ZodEnum<["us", "eu", "in"]>>;
|
|
17898
17948
|
}, "strip", z.ZodTypeAny, {
|
|
17899
17949
|
projectToken: string;
|
|
17950
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
17900
17951
|
}, {
|
|
17901
17952
|
projectToken: string;
|
|
17953
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
17902
17954
|
}>>;
|
|
17903
17955
|
onetrust: z.ZodOptional<z.ZodObject<{
|
|
17904
17956
|
domainScript: z.ZodString;
|
|
@@ -18008,6 +18060,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18008
18060
|
} | undefined;
|
|
18009
18061
|
mixpanel?: {
|
|
18010
18062
|
projectToken: string;
|
|
18063
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
18011
18064
|
} | undefined;
|
|
18012
18065
|
pirsch?: {
|
|
18013
18066
|
id: string;
|
|
@@ -18083,6 +18136,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18083
18136
|
} | undefined;
|
|
18084
18137
|
mixpanel?: {
|
|
18085
18138
|
projectToken: string;
|
|
18139
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
18086
18140
|
} | undefined;
|
|
18087
18141
|
pirsch?: {
|
|
18088
18142
|
id: string;
|
|
@@ -18568,6 +18622,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18568
18622
|
} | undefined;
|
|
18569
18623
|
mixpanel?: {
|
|
18570
18624
|
projectToken: string;
|
|
18625
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
18571
18626
|
} | undefined;
|
|
18572
18627
|
pirsch?: {
|
|
18573
18628
|
id: string;
|
|
@@ -18950,6 +19005,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18950
19005
|
} | undefined;
|
|
18951
19006
|
mixpanel?: {
|
|
18952
19007
|
projectToken: string;
|
|
19008
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
18953
19009
|
} | undefined;
|
|
18954
19010
|
pirsch?: {
|
|
18955
19011
|
id: string;
|
|
@@ -20286,10 +20342,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20286
20342
|
}>>;
|
|
20287
20343
|
mixpanel: z.ZodOptional<z.ZodObject<{
|
|
20288
20344
|
projectToken: z.ZodString;
|
|
20345
|
+
region: z.ZodOptional<z.ZodEnum<["us", "eu", "in"]>>;
|
|
20289
20346
|
}, "strip", z.ZodTypeAny, {
|
|
20290
20347
|
projectToken: string;
|
|
20348
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
20291
20349
|
}, {
|
|
20292
20350
|
projectToken: string;
|
|
20351
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
20293
20352
|
}>>;
|
|
20294
20353
|
onetrust: z.ZodOptional<z.ZodObject<{
|
|
20295
20354
|
domainScript: z.ZodString;
|
|
@@ -20399,6 +20458,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20399
20458
|
} | undefined;
|
|
20400
20459
|
mixpanel?: {
|
|
20401
20460
|
projectToken: string;
|
|
20461
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
20402
20462
|
} | undefined;
|
|
20403
20463
|
pirsch?: {
|
|
20404
20464
|
id: string;
|
|
@@ -20474,6 +20534,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20474
20534
|
} | undefined;
|
|
20475
20535
|
mixpanel?: {
|
|
20476
20536
|
projectToken: string;
|
|
20537
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
20477
20538
|
} | undefined;
|
|
20478
20539
|
pirsch?: {
|
|
20479
20540
|
id: string;
|
|
@@ -20959,6 +21020,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20959
21020
|
} | undefined;
|
|
20960
21021
|
mixpanel?: {
|
|
20961
21022
|
projectToken: string;
|
|
21023
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
20962
21024
|
} | undefined;
|
|
20963
21025
|
pirsch?: {
|
|
20964
21026
|
id: string;
|
|
@@ -21341,6 +21403,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
21341
21403
|
} | undefined;
|
|
21342
21404
|
mixpanel?: {
|
|
21343
21405
|
projectToken: string;
|
|
21406
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
21344
21407
|
} | undefined;
|
|
21345
21408
|
pirsch?: {
|
|
21346
21409
|
id: string;
|
|
@@ -22678,10 +22741,13 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
22678
22741
|
}>>;
|
|
22679
22742
|
mixpanel: z.ZodOptional<z.ZodObject<{
|
|
22680
22743
|
projectToken: z.ZodString;
|
|
22744
|
+
region: z.ZodOptional<z.ZodEnum<["us", "eu", "in"]>>;
|
|
22681
22745
|
}, "strip", z.ZodTypeAny, {
|
|
22682
22746
|
projectToken: string;
|
|
22747
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
22683
22748
|
}, {
|
|
22684
22749
|
projectToken: string;
|
|
22750
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
22685
22751
|
}>>;
|
|
22686
22752
|
onetrust: z.ZodOptional<z.ZodObject<{
|
|
22687
22753
|
domainScript: z.ZodString;
|
|
@@ -22791,6 +22857,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
22791
22857
|
} | undefined;
|
|
22792
22858
|
mixpanel?: {
|
|
22793
22859
|
projectToken: string;
|
|
22860
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
22794
22861
|
} | undefined;
|
|
22795
22862
|
pirsch?: {
|
|
22796
22863
|
id: string;
|
|
@@ -22866,6 +22933,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
22866
22933
|
} | undefined;
|
|
22867
22934
|
mixpanel?: {
|
|
22868
22935
|
projectToken: string;
|
|
22936
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
22869
22937
|
} | undefined;
|
|
22870
22938
|
pirsch?: {
|
|
22871
22939
|
id: string;
|
|
@@ -23351,6 +23419,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
23351
23419
|
} | undefined;
|
|
23352
23420
|
mixpanel?: {
|
|
23353
23421
|
projectToken: string;
|
|
23422
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
23354
23423
|
} | undefined;
|
|
23355
23424
|
pirsch?: {
|
|
23356
23425
|
id: string;
|
|
@@ -23733,6 +23802,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
23733
23802
|
} | undefined;
|
|
23734
23803
|
mixpanel?: {
|
|
23735
23804
|
projectToken: string;
|
|
23805
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
23736
23806
|
} | undefined;
|
|
23737
23807
|
pirsch?: {
|
|
23738
23808
|
id: string;
|
|
@@ -116,10 +116,13 @@ export declare const integrationsSchema: z.ZodObject<{
|
|
|
116
116
|
}>>;
|
|
117
117
|
mixpanel: z.ZodOptional<z.ZodObject<{
|
|
118
118
|
projectToken: z.ZodString;
|
|
119
|
+
region: z.ZodOptional<z.ZodEnum<["us", "eu", "in"]>>;
|
|
119
120
|
}, "strip", z.ZodTypeAny, {
|
|
120
121
|
projectToken: string;
|
|
122
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
121
123
|
}, {
|
|
122
124
|
projectToken: string;
|
|
125
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
123
126
|
}>>;
|
|
124
127
|
onetrust: z.ZodOptional<z.ZodObject<{
|
|
125
128
|
domainScript: z.ZodString;
|
|
@@ -229,6 +232,7 @@ export declare const integrationsSchema: z.ZodObject<{
|
|
|
229
232
|
} | undefined;
|
|
230
233
|
mixpanel?: {
|
|
231
234
|
projectToken: string;
|
|
235
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
232
236
|
} | undefined;
|
|
233
237
|
pirsch?: {
|
|
234
238
|
id: string;
|
|
@@ -304,6 +308,7 @@ export declare const integrationsSchema: z.ZodObject<{
|
|
|
304
308
|
} | undefined;
|
|
305
309
|
mixpanel?: {
|
|
306
310
|
projectToken: string;
|
|
311
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
307
312
|
} | undefined;
|
|
308
313
|
pirsch?: {
|
|
309
314
|
id: string;
|
|
@@ -1155,10 +1155,13 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1155
1155
|
}>>;
|
|
1156
1156
|
mixpanel: z.ZodOptional<z.ZodObject<{
|
|
1157
1157
|
projectToken: z.ZodString;
|
|
1158
|
+
region: z.ZodOptional<z.ZodEnum<["us", "eu", "in"]>>;
|
|
1158
1159
|
}, "strip", z.ZodTypeAny, {
|
|
1159
1160
|
projectToken: string;
|
|
1161
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
1160
1162
|
}, {
|
|
1161
1163
|
projectToken: string;
|
|
1164
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
1162
1165
|
}>>;
|
|
1163
1166
|
onetrust: z.ZodOptional<z.ZodObject<{
|
|
1164
1167
|
domainScript: z.ZodString;
|
|
@@ -1268,6 +1271,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1268
1271
|
} | undefined;
|
|
1269
1272
|
mixpanel?: {
|
|
1270
1273
|
projectToken: string;
|
|
1274
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
1271
1275
|
} | undefined;
|
|
1272
1276
|
pirsch?: {
|
|
1273
1277
|
id: string;
|
|
@@ -1343,6 +1347,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1343
1347
|
} | undefined;
|
|
1344
1348
|
mixpanel?: {
|
|
1345
1349
|
projectToken: string;
|
|
1350
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
1346
1351
|
} | undefined;
|
|
1347
1352
|
pirsch?: {
|
|
1348
1353
|
id: string;
|
|
@@ -1828,6 +1833,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1828
1833
|
} | undefined;
|
|
1829
1834
|
mixpanel?: {
|
|
1830
1835
|
projectToken: string;
|
|
1836
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
1831
1837
|
} | undefined;
|
|
1832
1838
|
pirsch?: {
|
|
1833
1839
|
id: string;
|
|
@@ -2210,6 +2216,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
2210
2216
|
} | undefined;
|
|
2211
2217
|
mixpanel?: {
|
|
2212
2218
|
projectToken: string;
|
|
2219
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
2213
2220
|
} | undefined;
|
|
2214
2221
|
pirsch?: {
|
|
2215
2222
|
id: string;
|
|
@@ -1155,10 +1155,13 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1155
1155
|
}>>;
|
|
1156
1156
|
mixpanel: z.ZodOptional<z.ZodObject<{
|
|
1157
1157
|
projectToken: z.ZodString;
|
|
1158
|
+
region: z.ZodOptional<z.ZodEnum<["us", "eu", "in"]>>;
|
|
1158
1159
|
}, "strip", z.ZodTypeAny, {
|
|
1159
1160
|
projectToken: string;
|
|
1161
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
1160
1162
|
}, {
|
|
1161
1163
|
projectToken: string;
|
|
1164
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
1162
1165
|
}>>;
|
|
1163
1166
|
onetrust: z.ZodOptional<z.ZodObject<{
|
|
1164
1167
|
domainScript: z.ZodString;
|
|
@@ -1268,6 +1271,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1268
1271
|
} | undefined;
|
|
1269
1272
|
mixpanel?: {
|
|
1270
1273
|
projectToken: string;
|
|
1274
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
1271
1275
|
} | undefined;
|
|
1272
1276
|
pirsch?: {
|
|
1273
1277
|
id: string;
|
|
@@ -1343,6 +1347,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1343
1347
|
} | undefined;
|
|
1344
1348
|
mixpanel?: {
|
|
1345
1349
|
projectToken: string;
|
|
1350
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
1346
1351
|
} | undefined;
|
|
1347
1352
|
pirsch?: {
|
|
1348
1353
|
id: string;
|
|
@@ -1828,6 +1833,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1828
1833
|
} | undefined;
|
|
1829
1834
|
mixpanel?: {
|
|
1830
1835
|
projectToken: string;
|
|
1836
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
1831
1837
|
} | undefined;
|
|
1832
1838
|
pirsch?: {
|
|
1833
1839
|
id: string;
|
|
@@ -2210,6 +2216,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
2210
2216
|
} | undefined;
|
|
2211
2217
|
mixpanel?: {
|
|
2212
2218
|
projectToken: string;
|
|
2219
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
2213
2220
|
} | undefined;
|
|
2214
2221
|
pirsch?: {
|
|
2215
2222
|
id: string;
|