@mintlify/validation 0.1.436 → 0.1.438

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.
@@ -42,6 +42,16 @@ export declare const analyticsSchema: z.ZodObject<{
42
42
  }, {
43
43
  appId: string;
44
44
  }>>;
45
+ hightouch: z.ZodOptional<z.ZodObject<{
46
+ writeKey: z.ZodString;
47
+ apiHost: z.ZodOptional<z.ZodString>;
48
+ }, "strip", z.ZodTypeAny, {
49
+ writeKey: string;
50
+ apiHost?: string | undefined;
51
+ }, {
52
+ writeKey: string;
53
+ apiHost?: string | undefined;
54
+ }>>;
45
55
  hotjar: z.ZodOptional<z.ZodObject<{
46
56
  hjid: z.ZodString;
47
57
  hjsv: z.ZodString;
@@ -126,6 +136,10 @@ export declare const analyticsSchema: z.ZodObject<{
126
136
  heap?: {
127
137
  appId: string;
128
138
  } | undefined;
139
+ hightouch?: {
140
+ writeKey: string;
141
+ apiHost?: string | undefined;
142
+ } | undefined;
129
143
  hotjar?: {
130
144
  hjid: string;
131
145
  hjsv: string;
@@ -172,6 +186,10 @@ export declare const analyticsSchema: z.ZodObject<{
172
186
  heap?: {
173
187
  appId: string;
174
188
  } | undefined;
189
+ hightouch?: {
190
+ writeKey: string;
191
+ apiHost?: string | undefined;
192
+ } | undefined;
175
193
  hotjar?: {
176
194
  hjid: string;
177
195
  hjsv: string;
@@ -46,6 +46,10 @@ const plausibleConfigInterfaceSchema = z.object({
46
46
  const heapConfigInterfaceSchema = z.object({
47
47
  appId: z.string(),
48
48
  });
49
+ const hightouchConfigInterfaceSchema = z.object({
50
+ writeKey: z.string(),
51
+ apiHost: z.string().optional(),
52
+ });
49
53
  const segmentConfigInterfaceSchema = z.object({
50
54
  key: z.string(),
51
55
  });
@@ -57,6 +61,7 @@ export const analyticsSchema = z
57
61
  ga4: googleAnalyticsConfigInterfaceSchema.optional(),
58
62
  gtm: googleTagManagerConfigInterfaceSchema.optional(),
59
63
  heap: heapConfigInterfaceSchema.optional(),
64
+ hightouch: hightouchConfigInterfaceSchema.optional(),
60
65
  hotjar: hotjarConfigInterfaceSchema.optional(),
61
66
  koala: koalaConfigInterfaceSchema.optional(),
62
67
  logrocket: logrocketConfigInterfaceSchema.optional(),
@@ -621,6 +621,16 @@ export declare const mintConfigSchema: z.ZodObject<{
621
621
  }, {
622
622
  appId: string;
623
623
  }>>;
624
+ hightouch: z.ZodOptional<z.ZodObject<{
625
+ writeKey: z.ZodString;
626
+ apiHost: z.ZodOptional<z.ZodString>;
627
+ }, "strip", z.ZodTypeAny, {
628
+ writeKey: string;
629
+ apiHost?: string | undefined;
630
+ }, {
631
+ writeKey: string;
632
+ apiHost?: string | undefined;
633
+ }>>;
624
634
  hotjar: z.ZodOptional<z.ZodObject<{
625
635
  hjid: z.ZodString;
626
636
  hjsv: z.ZodString;
@@ -705,6 +715,10 @@ export declare const mintConfigSchema: z.ZodObject<{
705
715
  heap?: {
706
716
  appId: string;
707
717
  } | undefined;
718
+ hightouch?: {
719
+ writeKey: string;
720
+ apiHost?: string | undefined;
721
+ } | undefined;
708
722
  hotjar?: {
709
723
  hjid: string;
710
724
  hjsv: string;
@@ -751,6 +765,10 @@ export declare const mintConfigSchema: z.ZodObject<{
751
765
  heap?: {
752
766
  appId: string;
753
767
  } | undefined;
768
+ hightouch?: {
769
+ writeKey: string;
770
+ apiHost?: string | undefined;
771
+ } | undefined;
754
772
  hotjar?: {
755
773
  hjid: string;
756
774
  hjsv: string;
@@ -1027,6 +1045,10 @@ export declare const mintConfigSchema: z.ZodObject<{
1027
1045
  heap?: {
1028
1046
  appId: string;
1029
1047
  } | undefined;
1048
+ hightouch?: {
1049
+ writeKey: string;
1050
+ apiHost?: string | undefined;
1051
+ } | undefined;
1030
1052
  hotjar?: {
1031
1053
  hjid: string;
1032
1054
  hjsv: string;
@@ -1263,6 +1285,10 @@ export declare const mintConfigSchema: z.ZodObject<{
1263
1285
  heap?: {
1264
1286
  appId: string;
1265
1287
  } | undefined;
1288
+ hightouch?: {
1289
+ writeKey: string;
1290
+ apiHost?: string | undefined;
1291
+ } | undefined;
1266
1292
  hotjar?: {
1267
1293
  hjid: string;
1268
1294
  hjsv: string;
@@ -915,6 +915,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
915
915
  }, {
916
916
  appId: string;
917
917
  }>>;
918
+ hightouch: z.ZodOptional<z.ZodObject<{
919
+ writeKey: z.ZodString;
920
+ apiHost: z.ZodOptional<z.ZodString>;
921
+ }, "strip", z.ZodTypeAny, {
922
+ writeKey: string;
923
+ apiHost?: string | undefined;
924
+ }, {
925
+ writeKey: string;
926
+ apiHost?: string | undefined;
927
+ }>>;
918
928
  hotjar: z.ZodOptional<z.ZodObject<{
919
929
  hjid: z.ZodString;
920
930
  hjsv: z.ZodString;
@@ -1033,6 +1043,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1033
1043
  heap?: {
1034
1044
  appId: string;
1035
1045
  } | undefined;
1046
+ hightouch?: {
1047
+ writeKey: string;
1048
+ apiHost?: string | undefined;
1049
+ } | undefined;
1036
1050
  hotjar?: {
1037
1051
  hjid: string;
1038
1052
  hjsv: string;
@@ -1095,6 +1109,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1095
1109
  heap?: {
1096
1110
  appId: string;
1097
1111
  } | undefined;
1112
+ hightouch?: {
1113
+ writeKey: string;
1114
+ apiHost?: string | undefined;
1115
+ } | undefined;
1098
1116
  hotjar?: {
1099
1117
  hjid: string;
1100
1118
  hjsv: string;
@@ -1642,6 +1660,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1642
1660
  heap?: {
1643
1661
  appId: string;
1644
1662
  } | undefined;
1663
+ hightouch?: {
1664
+ writeKey: string;
1665
+ apiHost?: string | undefined;
1666
+ } | undefined;
1645
1667
  hotjar?: {
1646
1668
  hjid: string;
1647
1669
  hjsv: string;
@@ -2014,6 +2036,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2014
2036
  heap?: {
2015
2037
  appId: string;
2016
2038
  } | undefined;
2039
+ hightouch?: {
2040
+ writeKey: string;
2041
+ apiHost?: string | undefined;
2042
+ } | undefined;
2017
2043
  hotjar?: {
2018
2044
  hjid: string;
2019
2045
  hjsv: string;
@@ -3006,6 +3032,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3006
3032
  }, {
3007
3033
  appId: string;
3008
3034
  }>>;
3035
+ hightouch: z.ZodOptional<z.ZodObject<{
3036
+ writeKey: z.ZodString;
3037
+ apiHost: z.ZodOptional<z.ZodString>;
3038
+ }, "strip", z.ZodTypeAny, {
3039
+ writeKey: string;
3040
+ apiHost?: string | undefined;
3041
+ }, {
3042
+ writeKey: string;
3043
+ apiHost?: string | undefined;
3044
+ }>>;
3009
3045
  hotjar: z.ZodOptional<z.ZodObject<{
3010
3046
  hjid: z.ZodString;
3011
3047
  hjsv: z.ZodString;
@@ -3124,6 +3160,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3124
3160
  heap?: {
3125
3161
  appId: string;
3126
3162
  } | undefined;
3163
+ hightouch?: {
3164
+ writeKey: string;
3165
+ apiHost?: string | undefined;
3166
+ } | undefined;
3127
3167
  hotjar?: {
3128
3168
  hjid: string;
3129
3169
  hjsv: string;
@@ -3186,6 +3226,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3186
3226
  heap?: {
3187
3227
  appId: string;
3188
3228
  } | undefined;
3229
+ hightouch?: {
3230
+ writeKey: string;
3231
+ apiHost?: string | undefined;
3232
+ } | undefined;
3189
3233
  hotjar?: {
3190
3234
  hjid: string;
3191
3235
  hjsv: string;
@@ -3733,6 +3777,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3733
3777
  heap?: {
3734
3778
  appId: string;
3735
3779
  } | undefined;
3780
+ hightouch?: {
3781
+ writeKey: string;
3782
+ apiHost?: string | undefined;
3783
+ } | undefined;
3736
3784
  hotjar?: {
3737
3785
  hjid: string;
3738
3786
  hjsv: string;
@@ -4105,6 +4153,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4105
4153
  heap?: {
4106
4154
  appId: string;
4107
4155
  } | undefined;
4156
+ hightouch?: {
4157
+ writeKey: string;
4158
+ apiHost?: string | undefined;
4159
+ } | undefined;
4108
4160
  hotjar?: {
4109
4161
  hjid: string;
4110
4162
  hjsv: string;
@@ -5097,6 +5149,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5097
5149
  }, {
5098
5150
  appId: string;
5099
5151
  }>>;
5152
+ hightouch: z.ZodOptional<z.ZodObject<{
5153
+ writeKey: z.ZodString;
5154
+ apiHost: z.ZodOptional<z.ZodString>;
5155
+ }, "strip", z.ZodTypeAny, {
5156
+ writeKey: string;
5157
+ apiHost?: string | undefined;
5158
+ }, {
5159
+ writeKey: string;
5160
+ apiHost?: string | undefined;
5161
+ }>>;
5100
5162
  hotjar: z.ZodOptional<z.ZodObject<{
5101
5163
  hjid: z.ZodString;
5102
5164
  hjsv: z.ZodString;
@@ -5215,6 +5277,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5215
5277
  heap?: {
5216
5278
  appId: string;
5217
5279
  } | undefined;
5280
+ hightouch?: {
5281
+ writeKey: string;
5282
+ apiHost?: string | undefined;
5283
+ } | undefined;
5218
5284
  hotjar?: {
5219
5285
  hjid: string;
5220
5286
  hjsv: string;
@@ -5277,6 +5343,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5277
5343
  heap?: {
5278
5344
  appId: string;
5279
5345
  } | undefined;
5346
+ hightouch?: {
5347
+ writeKey: string;
5348
+ apiHost?: string | undefined;
5349
+ } | undefined;
5280
5350
  hotjar?: {
5281
5351
  hjid: string;
5282
5352
  hjsv: string;
@@ -5824,6 +5894,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5824
5894
  heap?: {
5825
5895
  appId: string;
5826
5896
  } | undefined;
5897
+ hightouch?: {
5898
+ writeKey: string;
5899
+ apiHost?: string | undefined;
5900
+ } | undefined;
5827
5901
  hotjar?: {
5828
5902
  hjid: string;
5829
5903
  hjsv: string;
@@ -6196,6 +6270,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6196
6270
  heap?: {
6197
6271
  appId: string;
6198
6272
  } | undefined;
6273
+ hightouch?: {
6274
+ writeKey: string;
6275
+ apiHost?: string | undefined;
6276
+ } | undefined;
6199
6277
  hotjar?: {
6200
6278
  hjid: string;
6201
6279
  hjsv: string;
@@ -7188,6 +7266,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7188
7266
  }, {
7189
7267
  appId: string;
7190
7268
  }>>;
7269
+ hightouch: z.ZodOptional<z.ZodObject<{
7270
+ writeKey: z.ZodString;
7271
+ apiHost: z.ZodOptional<z.ZodString>;
7272
+ }, "strip", z.ZodTypeAny, {
7273
+ writeKey: string;
7274
+ apiHost?: string | undefined;
7275
+ }, {
7276
+ writeKey: string;
7277
+ apiHost?: string | undefined;
7278
+ }>>;
7191
7279
  hotjar: z.ZodOptional<z.ZodObject<{
7192
7280
  hjid: z.ZodString;
7193
7281
  hjsv: z.ZodString;
@@ -7306,6 +7394,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7306
7394
  heap?: {
7307
7395
  appId: string;
7308
7396
  } | undefined;
7397
+ hightouch?: {
7398
+ writeKey: string;
7399
+ apiHost?: string | undefined;
7400
+ } | undefined;
7309
7401
  hotjar?: {
7310
7402
  hjid: string;
7311
7403
  hjsv: string;
@@ -7368,6 +7460,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7368
7460
  heap?: {
7369
7461
  appId: string;
7370
7462
  } | undefined;
7463
+ hightouch?: {
7464
+ writeKey: string;
7465
+ apiHost?: string | undefined;
7466
+ } | undefined;
7371
7467
  hotjar?: {
7372
7468
  hjid: string;
7373
7469
  hjsv: string;
@@ -7915,6 +8011,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7915
8011
  heap?: {
7916
8012
  appId: string;
7917
8013
  } | undefined;
8014
+ hightouch?: {
8015
+ writeKey: string;
8016
+ apiHost?: string | undefined;
8017
+ } | undefined;
7918
8018
  hotjar?: {
7919
8019
  hjid: string;
7920
8020
  hjsv: string;
@@ -8287,6 +8387,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8287
8387
  heap?: {
8288
8388
  appId: string;
8289
8389
  } | undefined;
8390
+ hightouch?: {
8391
+ writeKey: string;
8392
+ apiHost?: string | undefined;
8393
+ } | undefined;
8290
8394
  hotjar?: {
8291
8395
  hjid: string;
8292
8396
  hjsv: string;
@@ -9279,6 +9383,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9279
9383
  }, {
9280
9384
  appId: string;
9281
9385
  }>>;
9386
+ hightouch: z.ZodOptional<z.ZodObject<{
9387
+ writeKey: z.ZodString;
9388
+ apiHost: z.ZodOptional<z.ZodString>;
9389
+ }, "strip", z.ZodTypeAny, {
9390
+ writeKey: string;
9391
+ apiHost?: string | undefined;
9392
+ }, {
9393
+ writeKey: string;
9394
+ apiHost?: string | undefined;
9395
+ }>>;
9282
9396
  hotjar: z.ZodOptional<z.ZodObject<{
9283
9397
  hjid: z.ZodString;
9284
9398
  hjsv: z.ZodString;
@@ -9397,6 +9511,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9397
9511
  heap?: {
9398
9512
  appId: string;
9399
9513
  } | undefined;
9514
+ hightouch?: {
9515
+ writeKey: string;
9516
+ apiHost?: string | undefined;
9517
+ } | undefined;
9400
9518
  hotjar?: {
9401
9519
  hjid: string;
9402
9520
  hjsv: string;
@@ -9459,6 +9577,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9459
9577
  heap?: {
9460
9578
  appId: string;
9461
9579
  } | undefined;
9580
+ hightouch?: {
9581
+ writeKey: string;
9582
+ apiHost?: string | undefined;
9583
+ } | undefined;
9462
9584
  hotjar?: {
9463
9585
  hjid: string;
9464
9586
  hjsv: string;
@@ -10006,6 +10128,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
10006
10128
  heap?: {
10007
10129
  appId: string;
10008
10130
  } | undefined;
10131
+ hightouch?: {
10132
+ writeKey: string;
10133
+ apiHost?: string | undefined;
10134
+ } | undefined;
10009
10135
  hotjar?: {
10010
10136
  hjid: string;
10011
10137
  hjsv: string;
@@ -10378,6 +10504,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
10378
10504
  heap?: {
10379
10505
  appId: string;
10380
10506
  } | undefined;
10507
+ hightouch?: {
10508
+ writeKey: string;
10509
+ apiHost?: string | undefined;
10510
+ } | undefined;
10381
10511
  hotjar?: {
10382
10512
  hjid: string;
10383
10513
  hjsv: string;
@@ -11370,6 +11500,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
11370
11500
  }, {
11371
11501
  appId: string;
11372
11502
  }>>;
11503
+ hightouch: z.ZodOptional<z.ZodObject<{
11504
+ writeKey: z.ZodString;
11505
+ apiHost: z.ZodOptional<z.ZodString>;
11506
+ }, "strip", z.ZodTypeAny, {
11507
+ writeKey: string;
11508
+ apiHost?: string | undefined;
11509
+ }, {
11510
+ writeKey: string;
11511
+ apiHost?: string | undefined;
11512
+ }>>;
11373
11513
  hotjar: z.ZodOptional<z.ZodObject<{
11374
11514
  hjid: z.ZodString;
11375
11515
  hjsv: z.ZodString;
@@ -11488,6 +11628,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
11488
11628
  heap?: {
11489
11629
  appId: string;
11490
11630
  } | undefined;
11631
+ hightouch?: {
11632
+ writeKey: string;
11633
+ apiHost?: string | undefined;
11634
+ } | undefined;
11491
11635
  hotjar?: {
11492
11636
  hjid: string;
11493
11637
  hjsv: string;
@@ -11550,6 +11694,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
11550
11694
  heap?: {
11551
11695
  appId: string;
11552
11696
  } | undefined;
11697
+ hightouch?: {
11698
+ writeKey: string;
11699
+ apiHost?: string | undefined;
11700
+ } | undefined;
11553
11701
  hotjar?: {
11554
11702
  hjid: string;
11555
11703
  hjsv: string;
@@ -12097,6 +12245,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
12097
12245
  heap?: {
12098
12246
  appId: string;
12099
12247
  } | undefined;
12248
+ hightouch?: {
12249
+ writeKey: string;
12250
+ apiHost?: string | undefined;
12251
+ } | undefined;
12100
12252
  hotjar?: {
12101
12253
  hjid: string;
12102
12254
  hjsv: string;
@@ -12469,6 +12621,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
12469
12621
  heap?: {
12470
12622
  appId: string;
12471
12623
  } | undefined;
12624
+ hightouch?: {
12625
+ writeKey: string;
12626
+ apiHost?: string | undefined;
12627
+ } | undefined;
12472
12628
  hotjar?: {
12473
12629
  hjid: string;
12474
12630
  hjsv: string;
@@ -13461,6 +13617,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
13461
13617
  }, {
13462
13618
  appId: string;
13463
13619
  }>>;
13620
+ hightouch: z.ZodOptional<z.ZodObject<{
13621
+ writeKey: z.ZodString;
13622
+ apiHost: z.ZodOptional<z.ZodString>;
13623
+ }, "strip", z.ZodTypeAny, {
13624
+ writeKey: string;
13625
+ apiHost?: string | undefined;
13626
+ }, {
13627
+ writeKey: string;
13628
+ apiHost?: string | undefined;
13629
+ }>>;
13464
13630
  hotjar: z.ZodOptional<z.ZodObject<{
13465
13631
  hjid: z.ZodString;
13466
13632
  hjsv: z.ZodString;
@@ -13579,6 +13745,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
13579
13745
  heap?: {
13580
13746
  appId: string;
13581
13747
  } | undefined;
13748
+ hightouch?: {
13749
+ writeKey: string;
13750
+ apiHost?: string | undefined;
13751
+ } | undefined;
13582
13752
  hotjar?: {
13583
13753
  hjid: string;
13584
13754
  hjsv: string;
@@ -13641,6 +13811,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
13641
13811
  heap?: {
13642
13812
  appId: string;
13643
13813
  } | undefined;
13814
+ hightouch?: {
13815
+ writeKey: string;
13816
+ apiHost?: string | undefined;
13817
+ } | undefined;
13644
13818
  hotjar?: {
13645
13819
  hjid: string;
13646
13820
  hjsv: string;
@@ -14188,6 +14362,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
14188
14362
  heap?: {
14189
14363
  appId: string;
14190
14364
  } | undefined;
14365
+ hightouch?: {
14366
+ writeKey: string;
14367
+ apiHost?: string | undefined;
14368
+ } | undefined;
14191
14369
  hotjar?: {
14192
14370
  hjid: string;
14193
14371
  hjsv: string;
@@ -14560,6 +14738,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
14560
14738
  heap?: {
14561
14739
  appId: string;
14562
14740
  } | undefined;
14741
+ hightouch?: {
14742
+ writeKey: string;
14743
+ apiHost?: string | undefined;
14744
+ } | undefined;
14563
14745
  hotjar?: {
14564
14746
  hjid: string;
14565
14747
  hjsv: string;
@@ -49,6 +49,16 @@ export declare const integrationsSchema: z.ZodObject<{
49
49
  }, {
50
50
  appId: string;
51
51
  }>>;
52
+ hightouch: z.ZodOptional<z.ZodObject<{
53
+ writeKey: z.ZodString;
54
+ apiHost: z.ZodOptional<z.ZodString>;
55
+ }, "strip", z.ZodTypeAny, {
56
+ writeKey: string;
57
+ apiHost?: string | undefined;
58
+ }, {
59
+ writeKey: string;
60
+ apiHost?: string | undefined;
61
+ }>>;
52
62
  hotjar: z.ZodOptional<z.ZodObject<{
53
63
  hjid: z.ZodString;
54
64
  hjsv: z.ZodString;
@@ -167,6 +177,10 @@ export declare const integrationsSchema: z.ZodObject<{
167
177
  heap?: {
168
178
  appId: string;
169
179
  } | undefined;
180
+ hightouch?: {
181
+ writeKey: string;
182
+ apiHost?: string | undefined;
183
+ } | undefined;
170
184
  hotjar?: {
171
185
  hjid: string;
172
186
  hjsv: string;
@@ -229,6 +243,10 @@ export declare const integrationsSchema: z.ZodObject<{
229
243
  heap?: {
230
244
  appId: string;
231
245
  } | undefined;
246
+ hightouch?: {
247
+ writeKey: string;
248
+ apiHost?: string | undefined;
249
+ } | undefined;
232
250
  hotjar?: {
233
251
  hjid: string;
234
252
  hjsv: string;
@@ -46,6 +46,10 @@ const plausibleConfigSchema = z.object({
46
46
  const heapConfigSchema = z.object({
47
47
  appId: z.string(),
48
48
  });
49
+ const hightouchConfigInterfaceSchema = z.object({
50
+ writeKey: z.string(),
51
+ apiHost: z.string().optional(),
52
+ });
49
53
  const segmentConfigSchema = z.object({
50
54
  key: z.string(),
51
55
  });
@@ -77,6 +81,7 @@ export const integrationsSchema = z
77
81
  ga4: googleAnalyticsConfigSchema.optional(),
78
82
  gtm: googleTagManagerConfigSchema.optional(),
79
83
  heap: heapConfigSchema.optional(),
84
+ hightouch: hightouchConfigInterfaceSchema.optional(),
80
85
  hotjar: hotjarConfigSchema.optional(),
81
86
  intercom: intercomSchema.optional(),
82
87
  koala: koalaConfigSchema.optional(),
@@ -913,6 +913,16 @@ export declare const almondConfigSchema: z.ZodObject<{
913
913
  }, {
914
914
  appId: string;
915
915
  }>>;
916
+ hightouch: z.ZodOptional<z.ZodObject<{
917
+ writeKey: z.ZodString;
918
+ apiHost: z.ZodOptional<z.ZodString>;
919
+ }, "strip", z.ZodTypeAny, {
920
+ writeKey: string;
921
+ apiHost?: string | undefined;
922
+ }, {
923
+ writeKey: string;
924
+ apiHost?: string | undefined;
925
+ }>>;
916
926
  hotjar: z.ZodOptional<z.ZodObject<{
917
927
  hjid: z.ZodString;
918
928
  hjsv: z.ZodString;
@@ -1031,6 +1041,10 @@ export declare const almondConfigSchema: z.ZodObject<{
1031
1041
  heap?: {
1032
1042
  appId: string;
1033
1043
  } | undefined;
1044
+ hightouch?: {
1045
+ writeKey: string;
1046
+ apiHost?: string | undefined;
1047
+ } | undefined;
1034
1048
  hotjar?: {
1035
1049
  hjid: string;
1036
1050
  hjsv: string;
@@ -1093,6 +1107,10 @@ export declare const almondConfigSchema: z.ZodObject<{
1093
1107
  heap?: {
1094
1108
  appId: string;
1095
1109
  } | undefined;
1110
+ hightouch?: {
1111
+ writeKey: string;
1112
+ apiHost?: string | undefined;
1113
+ } | undefined;
1096
1114
  hotjar?: {
1097
1115
  hjid: string;
1098
1116
  hjsv: string;
@@ -1640,6 +1658,10 @@ export declare const almondConfigSchema: z.ZodObject<{
1640
1658
  heap?: {
1641
1659
  appId: string;
1642
1660
  } | undefined;
1661
+ hightouch?: {
1662
+ writeKey: string;
1663
+ apiHost?: string | undefined;
1664
+ } | undefined;
1643
1665
  hotjar?: {
1644
1666
  hjid: string;
1645
1667
  hjsv: string;
@@ -2012,6 +2034,10 @@ export declare const almondConfigSchema: z.ZodObject<{
2012
2034
  heap?: {
2013
2035
  appId: string;
2014
2036
  } | undefined;
2037
+ hightouch?: {
2038
+ writeKey: string;
2039
+ apiHost?: string | undefined;
2040
+ } | undefined;
2015
2041
  hotjar?: {
2016
2042
  hjid: string;
2017
2043
  hjsv: string;