@mintlify/validation 0.1.613 → 0.1.614

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.
@@ -1,5 +1,12 @@
1
1
  import { z } from 'zod';
2
2
  export declare const analyticsSchema: z.ZodObject<{
3
+ adobe: z.ZodOptional<z.ZodObject<{
4
+ launchUrl: z.ZodString;
5
+ }, "strip", z.ZodTypeAny, {
6
+ launchUrl: string;
7
+ }, {
8
+ launchUrl: string;
9
+ }>>;
3
10
  amplitude: z.ZodOptional<z.ZodObject<{
4
11
  apiKey: z.ZodString;
5
12
  }, "strip", z.ZodTypeAny, {
@@ -128,6 +135,9 @@ export declare const analyticsSchema: z.ZodObject<{
128
135
  key: string;
129
136
  }>>;
130
137
  }, "strict", z.ZodTypeAny, {
138
+ adobe?: {
139
+ launchUrl: string;
140
+ } | undefined;
131
141
  amplitude?: {
132
142
  apiKey: string;
133
143
  } | undefined;
@@ -182,6 +192,9 @@ export declare const analyticsSchema: z.ZodObject<{
182
192
  key: string;
183
193
  } | undefined;
184
194
  }, {
195
+ adobe?: {
196
+ launchUrl: string;
197
+ } | undefined;
185
198
  amplitude?: {
186
199
  apiKey: string;
187
200
  } | undefined;
@@ -1,4 +1,7 @@
1
1
  import { z } from 'zod';
2
+ const adobeAnalyticsConfigInterfaceSchema = z.object({
3
+ launchUrl: z.string().url('Must be a valid URL'),
4
+ });
2
5
  const amplitudeConfigInterfaceSchema = z.object({
3
6
  apiKey: z.string(),
4
7
  });
@@ -59,6 +62,7 @@ const segmentConfigInterfaceSchema = z.object({
59
62
  });
60
63
  export const analyticsSchema = z
61
64
  .object({
65
+ adobe: adobeAnalyticsConfigInterfaceSchema.optional(),
62
66
  amplitude: amplitudeConfigInterfaceSchema.optional(),
63
67
  clarity: clarityConfigInterfaceSchema.optional(),
64
68
  clearbit: clearbitConfigInterfaceSchema.optional(),
@@ -76,4 +80,4 @@ export const analyticsSchema = z
76
80
  plausible: plausibleConfigInterfaceSchema.optional(),
77
81
  segment: segmentConfigInterfaceSchema.optional(),
78
82
  })
79
- .strict('Mintlify only supports analytics integrations from: amplitude, clarity, clearbit, fathom, ga4, gtm, heap, hotjar, koala, logrocket, mixpanel, pirsch, posthog, plausible, and segment.');
83
+ .strict('Mintlify only supports analytics integrations from: adobe, amplitude, clarity, clearbit, fathom, ga4, gtm, heap, hotjar, koala, logrocket, mixpanel, pirsch, posthog, plausible, and segment.');
@@ -579,6 +579,13 @@ export declare const mintConfigSchema: z.ZodObject<{
579
579
  raiseIssue?: boolean | undefined;
580
580
  }>>;
581
581
  analytics: z.ZodOptional<z.ZodObject<{
582
+ adobe: z.ZodOptional<z.ZodObject<{
583
+ launchUrl: z.ZodString;
584
+ }, "strip", z.ZodTypeAny, {
585
+ launchUrl: string;
586
+ }, {
587
+ launchUrl: string;
588
+ }>>;
582
589
  amplitude: z.ZodOptional<z.ZodObject<{
583
590
  apiKey: z.ZodString;
584
591
  }, "strip", z.ZodTypeAny, {
@@ -707,6 +714,9 @@ export declare const mintConfigSchema: z.ZodObject<{
707
714
  key: string;
708
715
  }>>;
709
716
  }, "strict", z.ZodTypeAny, {
717
+ adobe?: {
718
+ launchUrl: string;
719
+ } | undefined;
710
720
  amplitude?: {
711
721
  apiKey: string;
712
722
  } | undefined;
@@ -761,6 +771,9 @@ export declare const mintConfigSchema: z.ZodObject<{
761
771
  key: string;
762
772
  } | undefined;
763
773
  }, {
774
+ adobe?: {
775
+ launchUrl: string;
776
+ } | undefined;
764
777
  amplitude?: {
765
778
  apiKey: string;
766
779
  } | undefined;
@@ -1042,6 +1055,9 @@ export declare const mintConfigSchema: z.ZodObject<{
1042
1055
  raiseIssue?: boolean | undefined;
1043
1056
  } | undefined;
1044
1057
  analytics?: {
1058
+ adobe?: {
1059
+ launchUrl: string;
1060
+ } | undefined;
1045
1061
  amplitude?: {
1046
1062
  apiKey: string;
1047
1063
  } | undefined;
@@ -1285,6 +1301,9 @@ export declare const mintConfigSchema: z.ZodObject<{
1285
1301
  raiseIssue?: boolean | undefined;
1286
1302
  } | undefined;
1287
1303
  analytics?: {
1304
+ adobe?: {
1305
+ launchUrl: string;
1306
+ } | undefined;
1288
1307
  amplitude?: {
1289
1308
  apiKey: string;
1290
1309
  } | undefined;
@@ -991,6 +991,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
991
991
  permanent?: boolean | undefined;
992
992
  }[]>>;
993
993
  integrations: z.ZodOptional<z.ZodObject<{
994
+ adobe: z.ZodOptional<z.ZodObject<{
995
+ launchUrl: z.ZodString;
996
+ }, "strip", z.ZodTypeAny, {
997
+ launchUrl: string;
998
+ }, {
999
+ launchUrl: string;
1000
+ }>>;
994
1001
  amplitude: z.ZodOptional<z.ZodObject<{
995
1002
  apiKey: z.ZodString;
996
1003
  }, "strip", z.ZodTypeAny, {
@@ -1150,6 +1157,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1150
1157
  key?: string | undefined;
1151
1158
  }>>;
1152
1159
  }, "strict", z.ZodTypeAny, {
1160
+ adobe?: {
1161
+ launchUrl: string;
1162
+ } | undefined;
1153
1163
  amplitude?: {
1154
1164
  apiKey: string;
1155
1165
  } | undefined;
@@ -1217,6 +1227,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1217
1227
  key?: string | undefined;
1218
1228
  } | undefined;
1219
1229
  }, {
1230
+ adobe?: {
1231
+ launchUrl: string;
1232
+ } | undefined;
1220
1233
  amplitude?: {
1221
1234
  apiKey: string;
1222
1235
  } | undefined;
@@ -1646,6 +1659,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1646
1659
  socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast", string>> | undefined;
1647
1660
  } | undefined;
1648
1661
  integrations?: {
1662
+ adobe?: {
1663
+ launchUrl: string;
1664
+ } | undefined;
1649
1665
  amplitude?: {
1650
1666
  apiKey: string;
1651
1667
  } | undefined;
@@ -1994,6 +2010,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1994
2010
  socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast", string>> | undefined;
1995
2011
  } | undefined;
1996
2012
  integrations?: {
2013
+ adobe?: {
2014
+ launchUrl: string;
2015
+ } | undefined;
1997
2016
  amplitude?: {
1998
2017
  apiKey: string;
1999
2018
  } | undefined;
@@ -3186,6 +3205,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3186
3205
  permanent?: boolean | undefined;
3187
3206
  }[]>>;
3188
3207
  integrations: z.ZodOptional<z.ZodObject<{
3208
+ adobe: z.ZodOptional<z.ZodObject<{
3209
+ launchUrl: z.ZodString;
3210
+ }, "strip", z.ZodTypeAny, {
3211
+ launchUrl: string;
3212
+ }, {
3213
+ launchUrl: string;
3214
+ }>>;
3189
3215
  amplitude: z.ZodOptional<z.ZodObject<{
3190
3216
  apiKey: z.ZodString;
3191
3217
  }, "strip", z.ZodTypeAny, {
@@ -3345,6 +3371,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3345
3371
  key?: string | undefined;
3346
3372
  }>>;
3347
3373
  }, "strict", z.ZodTypeAny, {
3374
+ adobe?: {
3375
+ launchUrl: string;
3376
+ } | undefined;
3348
3377
  amplitude?: {
3349
3378
  apiKey: string;
3350
3379
  } | undefined;
@@ -3412,6 +3441,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3412
3441
  key?: string | undefined;
3413
3442
  } | undefined;
3414
3443
  }, {
3444
+ adobe?: {
3445
+ launchUrl: string;
3446
+ } | undefined;
3415
3447
  amplitude?: {
3416
3448
  apiKey: string;
3417
3449
  } | undefined;
@@ -3841,6 +3873,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3841
3873
  socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast", string>> | undefined;
3842
3874
  } | undefined;
3843
3875
  integrations?: {
3876
+ adobe?: {
3877
+ launchUrl: string;
3878
+ } | undefined;
3844
3879
  amplitude?: {
3845
3880
  apiKey: string;
3846
3881
  } | undefined;
@@ -4189,6 +4224,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4189
4224
  socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast", string>> | undefined;
4190
4225
  } | undefined;
4191
4226
  integrations?: {
4227
+ adobe?: {
4228
+ launchUrl: string;
4229
+ } | undefined;
4192
4230
  amplitude?: {
4193
4231
  apiKey: string;
4194
4232
  } | undefined;
@@ -5381,6 +5419,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5381
5419
  permanent?: boolean | undefined;
5382
5420
  }[]>>;
5383
5421
  integrations: z.ZodOptional<z.ZodObject<{
5422
+ adobe: z.ZodOptional<z.ZodObject<{
5423
+ launchUrl: z.ZodString;
5424
+ }, "strip", z.ZodTypeAny, {
5425
+ launchUrl: string;
5426
+ }, {
5427
+ launchUrl: string;
5428
+ }>>;
5384
5429
  amplitude: z.ZodOptional<z.ZodObject<{
5385
5430
  apiKey: z.ZodString;
5386
5431
  }, "strip", z.ZodTypeAny, {
@@ -5540,6 +5585,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5540
5585
  key?: string | undefined;
5541
5586
  }>>;
5542
5587
  }, "strict", z.ZodTypeAny, {
5588
+ adobe?: {
5589
+ launchUrl: string;
5590
+ } | undefined;
5543
5591
  amplitude?: {
5544
5592
  apiKey: string;
5545
5593
  } | undefined;
@@ -5607,6 +5655,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5607
5655
  key?: string | undefined;
5608
5656
  } | undefined;
5609
5657
  }, {
5658
+ adobe?: {
5659
+ launchUrl: string;
5660
+ } | undefined;
5610
5661
  amplitude?: {
5611
5662
  apiKey: string;
5612
5663
  } | undefined;
@@ -6036,6 +6087,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6036
6087
  socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast", string>> | undefined;
6037
6088
  } | undefined;
6038
6089
  integrations?: {
6090
+ adobe?: {
6091
+ launchUrl: string;
6092
+ } | undefined;
6039
6093
  amplitude?: {
6040
6094
  apiKey: string;
6041
6095
  } | undefined;
@@ -6384,6 +6438,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6384
6438
  socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast", string>> | undefined;
6385
6439
  } | undefined;
6386
6440
  integrations?: {
6441
+ adobe?: {
6442
+ launchUrl: string;
6443
+ } | undefined;
6387
6444
  amplitude?: {
6388
6445
  apiKey: string;
6389
6446
  } | undefined;
@@ -7576,6 +7633,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7576
7633
  permanent?: boolean | undefined;
7577
7634
  }[]>>;
7578
7635
  integrations: z.ZodOptional<z.ZodObject<{
7636
+ adobe: z.ZodOptional<z.ZodObject<{
7637
+ launchUrl: z.ZodString;
7638
+ }, "strip", z.ZodTypeAny, {
7639
+ launchUrl: string;
7640
+ }, {
7641
+ launchUrl: string;
7642
+ }>>;
7579
7643
  amplitude: z.ZodOptional<z.ZodObject<{
7580
7644
  apiKey: z.ZodString;
7581
7645
  }, "strip", z.ZodTypeAny, {
@@ -7735,6 +7799,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7735
7799
  key?: string | undefined;
7736
7800
  }>>;
7737
7801
  }, "strict", z.ZodTypeAny, {
7802
+ adobe?: {
7803
+ launchUrl: string;
7804
+ } | undefined;
7738
7805
  amplitude?: {
7739
7806
  apiKey: string;
7740
7807
  } | undefined;
@@ -7802,6 +7869,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7802
7869
  key?: string | undefined;
7803
7870
  } | undefined;
7804
7871
  }, {
7872
+ adobe?: {
7873
+ launchUrl: string;
7874
+ } | undefined;
7805
7875
  amplitude?: {
7806
7876
  apiKey: string;
7807
7877
  } | undefined;
@@ -8231,6 +8301,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8231
8301
  socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast", string>> | undefined;
8232
8302
  } | undefined;
8233
8303
  integrations?: {
8304
+ adobe?: {
8305
+ launchUrl: string;
8306
+ } | undefined;
8234
8307
  amplitude?: {
8235
8308
  apiKey: string;
8236
8309
  } | undefined;
@@ -8579,6 +8652,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8579
8652
  socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast", string>> | undefined;
8580
8653
  } | undefined;
8581
8654
  integrations?: {
8655
+ adobe?: {
8656
+ launchUrl: string;
8657
+ } | undefined;
8582
8658
  amplitude?: {
8583
8659
  apiKey: string;
8584
8660
  } | undefined;
@@ -9771,6 +9847,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9771
9847
  permanent?: boolean | undefined;
9772
9848
  }[]>>;
9773
9849
  integrations: z.ZodOptional<z.ZodObject<{
9850
+ adobe: z.ZodOptional<z.ZodObject<{
9851
+ launchUrl: z.ZodString;
9852
+ }, "strip", z.ZodTypeAny, {
9853
+ launchUrl: string;
9854
+ }, {
9855
+ launchUrl: string;
9856
+ }>>;
9774
9857
  amplitude: z.ZodOptional<z.ZodObject<{
9775
9858
  apiKey: z.ZodString;
9776
9859
  }, "strip", z.ZodTypeAny, {
@@ -9930,6 +10013,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9930
10013
  key?: string | undefined;
9931
10014
  }>>;
9932
10015
  }, "strict", z.ZodTypeAny, {
10016
+ adobe?: {
10017
+ launchUrl: string;
10018
+ } | undefined;
9933
10019
  amplitude?: {
9934
10020
  apiKey: string;
9935
10021
  } | undefined;
@@ -9997,6 +10083,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9997
10083
  key?: string | undefined;
9998
10084
  } | undefined;
9999
10085
  }, {
10086
+ adobe?: {
10087
+ launchUrl: string;
10088
+ } | undefined;
10000
10089
  amplitude?: {
10001
10090
  apiKey: string;
10002
10091
  } | undefined;
@@ -10426,6 +10515,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
10426
10515
  socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast", string>> | undefined;
10427
10516
  } | undefined;
10428
10517
  integrations?: {
10518
+ adobe?: {
10519
+ launchUrl: string;
10520
+ } | undefined;
10429
10521
  amplitude?: {
10430
10522
  apiKey: string;
10431
10523
  } | undefined;
@@ -10774,6 +10866,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
10774
10866
  socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast", string>> | undefined;
10775
10867
  } | undefined;
10776
10868
  integrations?: {
10869
+ adobe?: {
10870
+ launchUrl: string;
10871
+ } | undefined;
10777
10872
  amplitude?: {
10778
10873
  apiKey: string;
10779
10874
  } | undefined;
@@ -11966,6 +12061,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
11966
12061
  permanent?: boolean | undefined;
11967
12062
  }[]>>;
11968
12063
  integrations: z.ZodOptional<z.ZodObject<{
12064
+ adobe: z.ZodOptional<z.ZodObject<{
12065
+ launchUrl: z.ZodString;
12066
+ }, "strip", z.ZodTypeAny, {
12067
+ launchUrl: string;
12068
+ }, {
12069
+ launchUrl: string;
12070
+ }>>;
11969
12071
  amplitude: z.ZodOptional<z.ZodObject<{
11970
12072
  apiKey: z.ZodString;
11971
12073
  }, "strip", z.ZodTypeAny, {
@@ -12125,6 +12227,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
12125
12227
  key?: string | undefined;
12126
12228
  }>>;
12127
12229
  }, "strict", z.ZodTypeAny, {
12230
+ adobe?: {
12231
+ launchUrl: string;
12232
+ } | undefined;
12128
12233
  amplitude?: {
12129
12234
  apiKey: string;
12130
12235
  } | undefined;
@@ -12192,6 +12297,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
12192
12297
  key?: string | undefined;
12193
12298
  } | undefined;
12194
12299
  }, {
12300
+ adobe?: {
12301
+ launchUrl: string;
12302
+ } | undefined;
12195
12303
  amplitude?: {
12196
12304
  apiKey: string;
12197
12305
  } | undefined;
@@ -12621,6 +12729,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
12621
12729
  socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast", string>> | undefined;
12622
12730
  } | undefined;
12623
12731
  integrations?: {
12732
+ adobe?: {
12733
+ launchUrl: string;
12734
+ } | undefined;
12624
12735
  amplitude?: {
12625
12736
  apiKey: string;
12626
12737
  } | undefined;
@@ -12969,6 +13080,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
12969
13080
  socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast", string>> | undefined;
12970
13081
  } | undefined;
12971
13082
  integrations?: {
13083
+ adobe?: {
13084
+ launchUrl: string;
13085
+ } | undefined;
12972
13086
  amplitude?: {
12973
13087
  apiKey: string;
12974
13088
  } | undefined;
@@ -14161,6 +14275,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
14161
14275
  permanent?: boolean | undefined;
14162
14276
  }[]>>;
14163
14277
  integrations: z.ZodOptional<z.ZodObject<{
14278
+ adobe: z.ZodOptional<z.ZodObject<{
14279
+ launchUrl: z.ZodString;
14280
+ }, "strip", z.ZodTypeAny, {
14281
+ launchUrl: string;
14282
+ }, {
14283
+ launchUrl: string;
14284
+ }>>;
14164
14285
  amplitude: z.ZodOptional<z.ZodObject<{
14165
14286
  apiKey: z.ZodString;
14166
14287
  }, "strip", z.ZodTypeAny, {
@@ -14320,6 +14441,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
14320
14441
  key?: string | undefined;
14321
14442
  }>>;
14322
14443
  }, "strict", z.ZodTypeAny, {
14444
+ adobe?: {
14445
+ launchUrl: string;
14446
+ } | undefined;
14323
14447
  amplitude?: {
14324
14448
  apiKey: string;
14325
14449
  } | undefined;
@@ -14387,6 +14511,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
14387
14511
  key?: string | undefined;
14388
14512
  } | undefined;
14389
14513
  }, {
14514
+ adobe?: {
14515
+ launchUrl: string;
14516
+ } | undefined;
14390
14517
  amplitude?: {
14391
14518
  apiKey: string;
14392
14519
  } | undefined;
@@ -14816,6 +14943,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
14816
14943
  socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast", string>> | undefined;
14817
14944
  } | undefined;
14818
14945
  integrations?: {
14946
+ adobe?: {
14947
+ launchUrl: string;
14948
+ } | undefined;
14819
14949
  amplitude?: {
14820
14950
  apiKey: string;
14821
14951
  } | undefined;
@@ -15164,6 +15294,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
15164
15294
  socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast", string>> | undefined;
15165
15295
  } | undefined;
15166
15296
  integrations?: {
15297
+ adobe?: {
15298
+ launchUrl: string;
15299
+ } | undefined;
15167
15300
  amplitude?: {
15168
15301
  apiKey: string;
15169
15302
  } | undefined;
@@ -16356,6 +16489,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
16356
16489
  permanent?: boolean | undefined;
16357
16490
  }[]>>;
16358
16491
  integrations: z.ZodOptional<z.ZodObject<{
16492
+ adobe: z.ZodOptional<z.ZodObject<{
16493
+ launchUrl: z.ZodString;
16494
+ }, "strip", z.ZodTypeAny, {
16495
+ launchUrl: string;
16496
+ }, {
16497
+ launchUrl: string;
16498
+ }>>;
16359
16499
  amplitude: z.ZodOptional<z.ZodObject<{
16360
16500
  apiKey: z.ZodString;
16361
16501
  }, "strip", z.ZodTypeAny, {
@@ -16515,6 +16655,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
16515
16655
  key?: string | undefined;
16516
16656
  }>>;
16517
16657
  }, "strict", z.ZodTypeAny, {
16658
+ adobe?: {
16659
+ launchUrl: string;
16660
+ } | undefined;
16518
16661
  amplitude?: {
16519
16662
  apiKey: string;
16520
16663
  } | undefined;
@@ -16582,6 +16725,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
16582
16725
  key?: string | undefined;
16583
16726
  } | undefined;
16584
16727
  }, {
16728
+ adobe?: {
16729
+ launchUrl: string;
16730
+ } | undefined;
16585
16731
  amplitude?: {
16586
16732
  apiKey: string;
16587
16733
  } | undefined;
@@ -17011,6 +17157,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
17011
17157
  socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast", string>> | undefined;
17012
17158
  } | undefined;
17013
17159
  integrations?: {
17160
+ adobe?: {
17161
+ launchUrl: string;
17162
+ } | undefined;
17014
17163
  amplitude?: {
17015
17164
  apiKey: string;
17016
17165
  } | undefined;
@@ -17359,6 +17508,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
17359
17508
  socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast", string>> | undefined;
17360
17509
  } | undefined;
17361
17510
  integrations?: {
17511
+ adobe?: {
17512
+ launchUrl: string;
17513
+ } | undefined;
17362
17514
  amplitude?: {
17363
17515
  apiKey: string;
17364
17516
  } | undefined;
@@ -18551,6 +18703,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
18551
18703
  permanent?: boolean | undefined;
18552
18704
  }[]>>;
18553
18705
  integrations: z.ZodOptional<z.ZodObject<{
18706
+ adobe: z.ZodOptional<z.ZodObject<{
18707
+ launchUrl: z.ZodString;
18708
+ }, "strip", z.ZodTypeAny, {
18709
+ launchUrl: string;
18710
+ }, {
18711
+ launchUrl: string;
18712
+ }>>;
18554
18713
  amplitude: z.ZodOptional<z.ZodObject<{
18555
18714
  apiKey: z.ZodString;
18556
18715
  }, "strip", z.ZodTypeAny, {
@@ -18710,6 +18869,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
18710
18869
  key?: string | undefined;
18711
18870
  }>>;
18712
18871
  }, "strict", z.ZodTypeAny, {
18872
+ adobe?: {
18873
+ launchUrl: string;
18874
+ } | undefined;
18713
18875
  amplitude?: {
18714
18876
  apiKey: string;
18715
18877
  } | undefined;
@@ -18777,6 +18939,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
18777
18939
  key?: string | undefined;
18778
18940
  } | undefined;
18779
18941
  }, {
18942
+ adobe?: {
18943
+ launchUrl: string;
18944
+ } | undefined;
18780
18945
  amplitude?: {
18781
18946
  apiKey: string;
18782
18947
  } | undefined;
@@ -19206,6 +19371,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
19206
19371
  socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast", string>> | undefined;
19207
19372
  } | undefined;
19208
19373
  integrations?: {
19374
+ adobe?: {
19375
+ launchUrl: string;
19376
+ } | undefined;
19209
19377
  amplitude?: {
19210
19378
  apiKey: string;
19211
19379
  } | undefined;
@@ -19554,6 +19722,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
19554
19722
  socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast", string>> | undefined;
19555
19723
  } | undefined;
19556
19724
  integrations?: {
19725
+ adobe?: {
19726
+ launchUrl: string;
19727
+ } | undefined;
19557
19728
  amplitude?: {
19558
19729
  apiKey: string;
19559
19730
  } | undefined;
@@ -20747,6 +20918,13 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
20747
20918
  permanent?: boolean | undefined;
20748
20919
  }[]>>;
20749
20920
  integrations: z.ZodOptional<z.ZodObject<{
20921
+ adobe: z.ZodOptional<z.ZodObject<{
20922
+ launchUrl: z.ZodString;
20923
+ }, "strip", z.ZodTypeAny, {
20924
+ launchUrl: string;
20925
+ }, {
20926
+ launchUrl: string;
20927
+ }>>;
20750
20928
  amplitude: z.ZodOptional<z.ZodObject<{
20751
20929
  apiKey: z.ZodString;
20752
20930
  }, "strip", z.ZodTypeAny, {
@@ -20906,6 +21084,9 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
20906
21084
  key?: string | undefined;
20907
21085
  }>>;
20908
21086
  }, "strict", z.ZodTypeAny, {
21087
+ adobe?: {
21088
+ launchUrl: string;
21089
+ } | undefined;
20909
21090
  amplitude?: {
20910
21091
  apiKey: string;
20911
21092
  } | undefined;
@@ -20973,6 +21154,9 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
20973
21154
  key?: string | undefined;
20974
21155
  } | undefined;
20975
21156
  }, {
21157
+ adobe?: {
21158
+ launchUrl: string;
21159
+ } | undefined;
20976
21160
  amplitude?: {
20977
21161
  apiKey: string;
20978
21162
  } | undefined;
@@ -21402,6 +21586,9 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
21402
21586
  socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast", string>> | undefined;
21403
21587
  } | undefined;
21404
21588
  integrations?: {
21589
+ adobe?: {
21590
+ launchUrl: string;
21591
+ } | undefined;
21405
21592
  amplitude?: {
21406
21593
  apiKey: string;
21407
21594
  } | undefined;
@@ -21750,6 +21937,9 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
21750
21937
  socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast", string>> | undefined;
21751
21938
  } | undefined;
21752
21939
  integrations?: {
21940
+ adobe?: {
21941
+ launchUrl: string;
21942
+ } | undefined;
21753
21943
  amplitude?: {
21754
21944
  apiKey: string;
21755
21945
  } | undefined;
@@ -1,5 +1,12 @@
1
1
  import { z } from 'zod';
2
2
  export declare const integrationsSchema: z.ZodObject<{
3
+ adobe: z.ZodOptional<z.ZodObject<{
4
+ launchUrl: z.ZodString;
5
+ }, "strip", z.ZodTypeAny, {
6
+ launchUrl: string;
7
+ }, {
8
+ launchUrl: string;
9
+ }>>;
3
10
  amplitude: z.ZodOptional<z.ZodObject<{
4
11
  apiKey: z.ZodString;
5
12
  }, "strip", z.ZodTypeAny, {
@@ -159,6 +166,9 @@ export declare const integrationsSchema: z.ZodObject<{
159
166
  key?: string | undefined;
160
167
  }>>;
161
168
  }, "strict", z.ZodTypeAny, {
169
+ adobe?: {
170
+ launchUrl: string;
171
+ } | undefined;
162
172
  amplitude?: {
163
173
  apiKey: string;
164
174
  } | undefined;
@@ -226,6 +236,9 @@ export declare const integrationsSchema: z.ZodObject<{
226
236
  key?: string | undefined;
227
237
  } | undefined;
228
238
  }, {
239
+ adobe?: {
240
+ launchUrl: string;
241
+ } | undefined;
229
242
  amplitude?: {
230
243
  apiKey: string;
231
244
  } | undefined;
@@ -1,4 +1,7 @@
1
1
  import { z } from 'zod';
2
+ const adobeAnalyticsConfigSchema = z.object({
3
+ launchUrl: z.string().url('Must be a valid URL'),
4
+ });
2
5
  const amplitudeConfigSchema = z.object({
3
6
  apiKey: z.string(),
4
7
  });
@@ -72,6 +75,7 @@ const cookieConsentSchema = z.object({
72
75
  });
73
76
  export const integrationsSchema = z
74
77
  .object({
78
+ adobe: adobeAnalyticsConfigSchema.optional(),
75
79
  amplitude: amplitudeConfigSchema.optional(),
76
80
  clarity: clarityConfigSchema.optional(),
77
81
  clearbit: clearbitConfigSchema.optional(),