@mintlify/validation 0.1.803 → 0.1.805

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.
@@ -191,6 +191,16 @@ export declare const integrationsSchema: z.ZodObject<{
191
191
  value?: string | undefined;
192
192
  key?: string | undefined;
193
193
  }>>;
194
+ transcend: z.ZodOptional<z.ZodObject<{
195
+ bundleId: z.ZodString;
196
+ analyticsPurpose: z.ZodOptional<z.ZodString>;
197
+ }, "strip", z.ZodTypeAny, {
198
+ bundleId: string;
199
+ analyticsPurpose?: string | undefined;
200
+ }, {
201
+ bundleId: string;
202
+ analyticsPurpose?: string | undefined;
203
+ }>>;
194
204
  }, "strict", z.ZodTypeAny, {
195
205
  adobe?: {
196
206
  launchUrl: string;
@@ -267,6 +277,10 @@ export declare const integrationsSchema: z.ZodObject<{
267
277
  value?: string | undefined;
268
278
  key?: string | undefined;
269
279
  } | undefined;
280
+ transcend?: {
281
+ bundleId: string;
282
+ analyticsPurpose?: string | undefined;
283
+ } | undefined;
270
284
  }, {
271
285
  adobe?: {
272
286
  launchUrl: string;
@@ -343,6 +357,10 @@ export declare const integrationsSchema: z.ZodObject<{
343
357
  value?: string | undefined;
344
358
  key?: string | undefined;
345
359
  } | undefined;
360
+ transcend?: {
361
+ bundleId: string;
362
+ analyticsPurpose?: string | undefined;
363
+ } | undefined;
346
364
  }>;
347
365
  export { customScriptSchema };
348
366
  export type CustomScript = z.infer<typeof customScriptSchema>;
@@ -70,6 +70,13 @@ const oneTrustConfigSchema = z.object({
70
70
  .refine((url) => url.startsWith('https://'), 'Must be an HTTPS URL')
71
71
  .optional(),
72
72
  });
73
+ const transcendConfigSchema = z.object({
74
+ bundleId: z
75
+ .string()
76
+ .trim()
77
+ .regex(/^[a-zA-Z0-9_-]+$/, 'Bundle ID must contain only letters, numbers, hyphens, or underscores'),
78
+ analyticsPurpose: z.string().trim().min(1).max(100).optional(),
79
+ });
73
80
  const intercomSchema = z.object({
74
81
  appId: z.string().min(6, 'Must be a valid Intercom app ID'),
75
82
  });
@@ -125,6 +132,7 @@ export const integrationsSchema = z
125
132
  segment: segmentConfigSchema.optional(),
126
133
  telemetry: telemetrySchema.optional(),
127
134
  cookies: cookieConsentSchema.optional(),
135
+ transcend: transcendConfigSchema.optional(),
128
136
  })
129
137
  .strict()
130
138
  .describe('Configurations for official integrations');
@@ -0,0 +1,45 @@
1
+ import { z } from 'zod';
2
+ export declare const variationOptionSchema: z.ZodObject<{
3
+ id: z.ZodString;
4
+ label: z.ZodString;
5
+ }, "strip", z.ZodTypeAny, {
6
+ id: string;
7
+ label: string;
8
+ }, {
9
+ id: string;
10
+ label: string;
11
+ }>;
12
+ export declare const variationsSchema: z.ZodEffects<z.ZodObject<{
13
+ options: z.ZodArray<z.ZodObject<{
14
+ id: z.ZodString;
15
+ label: z.ZodString;
16
+ }, "strip", z.ZodTypeAny, {
17
+ id: string;
18
+ label: string;
19
+ }, {
20
+ id: string;
21
+ label: string;
22
+ }>, "many">;
23
+ }, "strip", z.ZodTypeAny, {
24
+ options: {
25
+ id: string;
26
+ label: string;
27
+ }[];
28
+ }, {
29
+ options: {
30
+ id: string;
31
+ label: string;
32
+ }[];
33
+ }>, {
34
+ options: {
35
+ id: string;
36
+ label: string;
37
+ }[];
38
+ }, {
39
+ options: {
40
+ id: string;
41
+ label: string;
42
+ }[];
43
+ }>;
44
+ export type VariationOption = z.infer<typeof variationOptionSchema>;
45
+ export type VariationsConfig = z.infer<typeof variationsSchema>;
@@ -0,0 +1,28 @@
1
+ import { z } from 'zod';
2
+ export const variationOptionSchema = z
3
+ .object({
4
+ id: z.string().trim().nonempty().describe('Stable identifier for the variation'),
5
+ label: z.string().trim().nonempty().describe('Display label for the variation'),
6
+ })
7
+ .describe('A documentation content variation');
8
+ export const variationsSchema = z
9
+ .object({
10
+ options: z
11
+ .array(variationOptionSchema)
12
+ .min(1, 'At least one variation option must be specified')
13
+ .describe('Variation options in display order. The first option is the default.'),
14
+ })
15
+ .superRefine(({ options }, ctx) => {
16
+ const seenIds = new Set();
17
+ options.forEach((option, index) => {
18
+ if (seenIds.has(option.id)) {
19
+ ctx.addIssue({
20
+ code: z.ZodIssueCode.custom,
21
+ message: `Variation id "${option.id}" is duplicated. Variation ids must be unique.`,
22
+ path: ['options', index, 'id'],
23
+ });
24
+ }
25
+ seenIds.add(option.id);
26
+ });
27
+ })
28
+ .describe('Documentation content variations');
@@ -1335,6 +1335,16 @@ export declare const almondConfigSchema: z.ZodObject<{
1335
1335
  value?: string | undefined;
1336
1336
  key?: string | undefined;
1337
1337
  }>>;
1338
+ transcend: z.ZodOptional<z.ZodObject<{
1339
+ bundleId: z.ZodString;
1340
+ analyticsPurpose: z.ZodOptional<z.ZodString>;
1341
+ }, "strip", z.ZodTypeAny, {
1342
+ bundleId: string;
1343
+ analyticsPurpose?: string | undefined;
1344
+ }, {
1345
+ bundleId: string;
1346
+ analyticsPurpose?: string | undefined;
1347
+ }>>;
1338
1348
  }, "strict", z.ZodTypeAny, {
1339
1349
  adobe?: {
1340
1350
  launchUrl: string;
@@ -1411,6 +1421,10 @@ export declare const almondConfigSchema: z.ZodObject<{
1411
1421
  value?: string | undefined;
1412
1422
  key?: string | undefined;
1413
1423
  } | undefined;
1424
+ transcend?: {
1425
+ bundleId: string;
1426
+ analyticsPurpose?: string | undefined;
1427
+ } | undefined;
1414
1428
  }, {
1415
1429
  adobe?: {
1416
1430
  launchUrl: string;
@@ -1487,6 +1501,10 @@ export declare const almondConfigSchema: z.ZodObject<{
1487
1501
  value?: string | undefined;
1488
1502
  key?: string | undefined;
1489
1503
  } | undefined;
1504
+ transcend?: {
1505
+ bundleId: string;
1506
+ analyticsPurpose?: string | undefined;
1507
+ } | undefined;
1490
1508
  }>>;
1491
1509
  banner: z.ZodOptional<z.ZodObject<{
1492
1510
  content: z.ZodString;
@@ -1993,6 +2011,10 @@ export declare const almondConfigSchema: z.ZodObject<{
1993
2011
  value?: string | undefined;
1994
2012
  key?: string | undefined;
1995
2013
  } | undefined;
2014
+ transcend?: {
2015
+ bundleId: string;
2016
+ analyticsPurpose?: string | undefined;
2017
+ } | undefined;
1996
2018
  } | undefined;
1997
2019
  search?: {
1998
2020
  prompt?: string | undefined;
@@ -2405,6 +2427,10 @@ export declare const almondConfigSchema: z.ZodObject<{
2405
2427
  value?: string | undefined;
2406
2428
  key?: string | undefined;
2407
2429
  } | undefined;
2430
+ transcend?: {
2431
+ bundleId: string;
2432
+ analyticsPurpose?: string | undefined;
2433
+ } | undefined;
2408
2434
  } | undefined;
2409
2435
  search?: {
2410
2436
  prompt?: string | undefined;
@@ -1335,6 +1335,16 @@ export declare const aspenConfigSchema: z.ZodObject<{
1335
1335
  value?: string | undefined;
1336
1336
  key?: string | undefined;
1337
1337
  }>>;
1338
+ transcend: z.ZodOptional<z.ZodObject<{
1339
+ bundleId: z.ZodString;
1340
+ analyticsPurpose: z.ZodOptional<z.ZodString>;
1341
+ }, "strip", z.ZodTypeAny, {
1342
+ bundleId: string;
1343
+ analyticsPurpose?: string | undefined;
1344
+ }, {
1345
+ bundleId: string;
1346
+ analyticsPurpose?: string | undefined;
1347
+ }>>;
1338
1348
  }, "strict", z.ZodTypeAny, {
1339
1349
  adobe?: {
1340
1350
  launchUrl: string;
@@ -1411,6 +1421,10 @@ export declare const aspenConfigSchema: z.ZodObject<{
1411
1421
  value?: string | undefined;
1412
1422
  key?: string | undefined;
1413
1423
  } | undefined;
1424
+ transcend?: {
1425
+ bundleId: string;
1426
+ analyticsPurpose?: string | undefined;
1427
+ } | undefined;
1414
1428
  }, {
1415
1429
  adobe?: {
1416
1430
  launchUrl: string;
@@ -1487,6 +1501,10 @@ export declare const aspenConfigSchema: z.ZodObject<{
1487
1501
  value?: string | undefined;
1488
1502
  key?: string | undefined;
1489
1503
  } | undefined;
1504
+ transcend?: {
1505
+ bundleId: string;
1506
+ analyticsPurpose?: string | undefined;
1507
+ } | undefined;
1490
1508
  }>>;
1491
1509
  banner: z.ZodOptional<z.ZodObject<{
1492
1510
  content: z.ZodString;
@@ -1993,6 +2011,10 @@ export declare const aspenConfigSchema: z.ZodObject<{
1993
2011
  value?: string | undefined;
1994
2012
  key?: string | undefined;
1995
2013
  } | undefined;
2014
+ transcend?: {
2015
+ bundleId: string;
2016
+ analyticsPurpose?: string | undefined;
2017
+ } | undefined;
1996
2018
  } | undefined;
1997
2019
  search?: {
1998
2020
  prompt?: string | undefined;
@@ -2405,6 +2427,10 @@ export declare const aspenConfigSchema: z.ZodObject<{
2405
2427
  value?: string | undefined;
2406
2428
  key?: string | undefined;
2407
2429
  } | undefined;
2430
+ transcend?: {
2431
+ bundleId: string;
2432
+ analyticsPurpose?: string | undefined;
2433
+ } | undefined;
2408
2434
  } | undefined;
2409
2435
  search?: {
2410
2436
  prompt?: string | undefined;
@@ -1335,6 +1335,16 @@ export declare const lindenConfigSchema: z.ZodObject<{
1335
1335
  value?: string | undefined;
1336
1336
  key?: string | undefined;
1337
1337
  }>>;
1338
+ transcend: z.ZodOptional<z.ZodObject<{
1339
+ bundleId: z.ZodString;
1340
+ analyticsPurpose: z.ZodOptional<z.ZodString>;
1341
+ }, "strip", z.ZodTypeAny, {
1342
+ bundleId: string;
1343
+ analyticsPurpose?: string | undefined;
1344
+ }, {
1345
+ bundleId: string;
1346
+ analyticsPurpose?: string | undefined;
1347
+ }>>;
1338
1348
  }, "strict", z.ZodTypeAny, {
1339
1349
  adobe?: {
1340
1350
  launchUrl: string;
@@ -1411,6 +1421,10 @@ export declare const lindenConfigSchema: z.ZodObject<{
1411
1421
  value?: string | undefined;
1412
1422
  key?: string | undefined;
1413
1423
  } | undefined;
1424
+ transcend?: {
1425
+ bundleId: string;
1426
+ analyticsPurpose?: string | undefined;
1427
+ } | undefined;
1414
1428
  }, {
1415
1429
  adobe?: {
1416
1430
  launchUrl: string;
@@ -1487,6 +1501,10 @@ export declare const lindenConfigSchema: z.ZodObject<{
1487
1501
  value?: string | undefined;
1488
1502
  key?: string | undefined;
1489
1503
  } | undefined;
1504
+ transcend?: {
1505
+ bundleId: string;
1506
+ analyticsPurpose?: string | undefined;
1507
+ } | undefined;
1490
1508
  }>>;
1491
1509
  banner: z.ZodOptional<z.ZodObject<{
1492
1510
  content: z.ZodString;
@@ -1993,6 +2011,10 @@ export declare const lindenConfigSchema: z.ZodObject<{
1993
2011
  value?: string | undefined;
1994
2012
  key?: string | undefined;
1995
2013
  } | undefined;
2014
+ transcend?: {
2015
+ bundleId: string;
2016
+ analyticsPurpose?: string | undefined;
2017
+ } | undefined;
1996
2018
  } | undefined;
1997
2019
  search?: {
1998
2020
  prompt?: string | undefined;
@@ -2405,6 +2427,10 @@ export declare const lindenConfigSchema: z.ZodObject<{
2405
2427
  value?: string | undefined;
2406
2428
  key?: string | undefined;
2407
2429
  } | undefined;
2430
+ transcend?: {
2431
+ bundleId: string;
2432
+ analyticsPurpose?: string | undefined;
2433
+ } | undefined;
2408
2434
  } | undefined;
2409
2435
  search?: {
2410
2436
  prompt?: string | undefined;
@@ -1335,6 +1335,16 @@ export declare const lumaConfigSchema: z.ZodObject<{
1335
1335
  value?: string | undefined;
1336
1336
  key?: string | undefined;
1337
1337
  }>>;
1338
+ transcend: z.ZodOptional<z.ZodObject<{
1339
+ bundleId: z.ZodString;
1340
+ analyticsPurpose: z.ZodOptional<z.ZodString>;
1341
+ }, "strip", z.ZodTypeAny, {
1342
+ bundleId: string;
1343
+ analyticsPurpose?: string | undefined;
1344
+ }, {
1345
+ bundleId: string;
1346
+ analyticsPurpose?: string | undefined;
1347
+ }>>;
1338
1348
  }, "strict", z.ZodTypeAny, {
1339
1349
  adobe?: {
1340
1350
  launchUrl: string;
@@ -1411,6 +1421,10 @@ export declare const lumaConfigSchema: z.ZodObject<{
1411
1421
  value?: string | undefined;
1412
1422
  key?: string | undefined;
1413
1423
  } | undefined;
1424
+ transcend?: {
1425
+ bundleId: string;
1426
+ analyticsPurpose?: string | undefined;
1427
+ } | undefined;
1414
1428
  }, {
1415
1429
  adobe?: {
1416
1430
  launchUrl: string;
@@ -1487,6 +1501,10 @@ export declare const lumaConfigSchema: z.ZodObject<{
1487
1501
  value?: string | undefined;
1488
1502
  key?: string | undefined;
1489
1503
  } | undefined;
1504
+ transcend?: {
1505
+ bundleId: string;
1506
+ analyticsPurpose?: string | undefined;
1507
+ } | undefined;
1490
1508
  }>>;
1491
1509
  banner: z.ZodOptional<z.ZodObject<{
1492
1510
  content: z.ZodString;
@@ -1993,6 +2011,10 @@ export declare const lumaConfigSchema: z.ZodObject<{
1993
2011
  value?: string | undefined;
1994
2012
  key?: string | undefined;
1995
2013
  } | undefined;
2014
+ transcend?: {
2015
+ bundleId: string;
2016
+ analyticsPurpose?: string | undefined;
2017
+ } | undefined;
1996
2018
  } | undefined;
1997
2019
  search?: {
1998
2020
  prompt?: string | undefined;
@@ -2405,6 +2427,10 @@ export declare const lumaConfigSchema: z.ZodObject<{
2405
2427
  value?: string | undefined;
2406
2428
  key?: string | undefined;
2407
2429
  } | undefined;
2430
+ transcend?: {
2431
+ bundleId: string;
2432
+ analyticsPurpose?: string | undefined;
2433
+ } | undefined;
2408
2434
  } | undefined;
2409
2435
  search?: {
2410
2436
  prompt?: string | undefined;
@@ -1335,6 +1335,16 @@ export declare const mapleConfigSchema: z.ZodObject<{
1335
1335
  value?: string | undefined;
1336
1336
  key?: string | undefined;
1337
1337
  }>>;
1338
+ transcend: z.ZodOptional<z.ZodObject<{
1339
+ bundleId: z.ZodString;
1340
+ analyticsPurpose: z.ZodOptional<z.ZodString>;
1341
+ }, "strip", z.ZodTypeAny, {
1342
+ bundleId: string;
1343
+ analyticsPurpose?: string | undefined;
1344
+ }, {
1345
+ bundleId: string;
1346
+ analyticsPurpose?: string | undefined;
1347
+ }>>;
1338
1348
  }, "strict", z.ZodTypeAny, {
1339
1349
  adobe?: {
1340
1350
  launchUrl: string;
@@ -1411,6 +1421,10 @@ export declare const mapleConfigSchema: z.ZodObject<{
1411
1421
  value?: string | undefined;
1412
1422
  key?: string | undefined;
1413
1423
  } | undefined;
1424
+ transcend?: {
1425
+ bundleId: string;
1426
+ analyticsPurpose?: string | undefined;
1427
+ } | undefined;
1414
1428
  }, {
1415
1429
  adobe?: {
1416
1430
  launchUrl: string;
@@ -1487,6 +1501,10 @@ export declare const mapleConfigSchema: z.ZodObject<{
1487
1501
  value?: string | undefined;
1488
1502
  key?: string | undefined;
1489
1503
  } | undefined;
1504
+ transcend?: {
1505
+ bundleId: string;
1506
+ analyticsPurpose?: string | undefined;
1507
+ } | undefined;
1490
1508
  }>>;
1491
1509
  banner: z.ZodOptional<z.ZodObject<{
1492
1510
  content: z.ZodString;
@@ -1993,6 +2011,10 @@ export declare const mapleConfigSchema: z.ZodObject<{
1993
2011
  value?: string | undefined;
1994
2012
  key?: string | undefined;
1995
2013
  } | undefined;
2014
+ transcend?: {
2015
+ bundleId: string;
2016
+ analyticsPurpose?: string | undefined;
2017
+ } | undefined;
1996
2018
  } | undefined;
1997
2019
  search?: {
1998
2020
  prompt?: string | undefined;
@@ -2405,6 +2427,10 @@ export declare const mapleConfigSchema: z.ZodObject<{
2405
2427
  value?: string | undefined;
2406
2428
  key?: string | undefined;
2407
2429
  } | undefined;
2430
+ transcend?: {
2431
+ bundleId: string;
2432
+ analyticsPurpose?: string | undefined;
2433
+ } | undefined;
2408
2434
  } | undefined;
2409
2435
  search?: {
2410
2436
  prompt?: string | undefined;
@@ -1335,6 +1335,16 @@ export declare const mintConfigSchema: z.ZodObject<{
1335
1335
  value?: string | undefined;
1336
1336
  key?: string | undefined;
1337
1337
  }>>;
1338
+ transcend: z.ZodOptional<z.ZodObject<{
1339
+ bundleId: z.ZodString;
1340
+ analyticsPurpose: z.ZodOptional<z.ZodString>;
1341
+ }, "strip", z.ZodTypeAny, {
1342
+ bundleId: string;
1343
+ analyticsPurpose?: string | undefined;
1344
+ }, {
1345
+ bundleId: string;
1346
+ analyticsPurpose?: string | undefined;
1347
+ }>>;
1338
1348
  }, "strict", z.ZodTypeAny, {
1339
1349
  adobe?: {
1340
1350
  launchUrl: string;
@@ -1411,6 +1421,10 @@ export declare const mintConfigSchema: z.ZodObject<{
1411
1421
  value?: string | undefined;
1412
1422
  key?: string | undefined;
1413
1423
  } | undefined;
1424
+ transcend?: {
1425
+ bundleId: string;
1426
+ analyticsPurpose?: string | undefined;
1427
+ } | undefined;
1414
1428
  }, {
1415
1429
  adobe?: {
1416
1430
  launchUrl: string;
@@ -1487,6 +1501,10 @@ export declare const mintConfigSchema: z.ZodObject<{
1487
1501
  value?: string | undefined;
1488
1502
  key?: string | undefined;
1489
1503
  } | undefined;
1504
+ transcend?: {
1505
+ bundleId: string;
1506
+ analyticsPurpose?: string | undefined;
1507
+ } | undefined;
1490
1508
  }>>;
1491
1509
  banner: z.ZodOptional<z.ZodObject<{
1492
1510
  content: z.ZodString;
@@ -1993,6 +2011,10 @@ export declare const mintConfigSchema: z.ZodObject<{
1993
2011
  value?: string | undefined;
1994
2012
  key?: string | undefined;
1995
2013
  } | undefined;
2014
+ transcend?: {
2015
+ bundleId: string;
2016
+ analyticsPurpose?: string | undefined;
2017
+ } | undefined;
1996
2018
  } | undefined;
1997
2019
  search?: {
1998
2020
  prompt?: string | undefined;
@@ -2405,6 +2427,10 @@ export declare const mintConfigSchema: z.ZodObject<{
2405
2427
  value?: string | undefined;
2406
2428
  key?: string | undefined;
2407
2429
  } | undefined;
2430
+ transcend?: {
2431
+ bundleId: string;
2432
+ analyticsPurpose?: string | undefined;
2433
+ } | undefined;
2408
2434
  } | undefined;
2409
2435
  search?: {
2410
2436
  prompt?: string | undefined;
@@ -1335,6 +1335,16 @@ export declare const palmConfigSchema: z.ZodObject<{
1335
1335
  value?: string | undefined;
1336
1336
  key?: string | undefined;
1337
1337
  }>>;
1338
+ transcend: z.ZodOptional<z.ZodObject<{
1339
+ bundleId: z.ZodString;
1340
+ analyticsPurpose: z.ZodOptional<z.ZodString>;
1341
+ }, "strip", z.ZodTypeAny, {
1342
+ bundleId: string;
1343
+ analyticsPurpose?: string | undefined;
1344
+ }, {
1345
+ bundleId: string;
1346
+ analyticsPurpose?: string | undefined;
1347
+ }>>;
1338
1348
  }, "strict", z.ZodTypeAny, {
1339
1349
  adobe?: {
1340
1350
  launchUrl: string;
@@ -1411,6 +1421,10 @@ export declare const palmConfigSchema: z.ZodObject<{
1411
1421
  value?: string | undefined;
1412
1422
  key?: string | undefined;
1413
1423
  } | undefined;
1424
+ transcend?: {
1425
+ bundleId: string;
1426
+ analyticsPurpose?: string | undefined;
1427
+ } | undefined;
1414
1428
  }, {
1415
1429
  adobe?: {
1416
1430
  launchUrl: string;
@@ -1487,6 +1501,10 @@ export declare const palmConfigSchema: z.ZodObject<{
1487
1501
  value?: string | undefined;
1488
1502
  key?: string | undefined;
1489
1503
  } | undefined;
1504
+ transcend?: {
1505
+ bundleId: string;
1506
+ analyticsPurpose?: string | undefined;
1507
+ } | undefined;
1490
1508
  }>>;
1491
1509
  banner: z.ZodOptional<z.ZodObject<{
1492
1510
  content: z.ZodString;
@@ -1993,6 +2011,10 @@ export declare const palmConfigSchema: z.ZodObject<{
1993
2011
  value?: string | undefined;
1994
2012
  key?: string | undefined;
1995
2013
  } | undefined;
2014
+ transcend?: {
2015
+ bundleId: string;
2016
+ analyticsPurpose?: string | undefined;
2017
+ } | undefined;
1996
2018
  } | undefined;
1997
2019
  search?: {
1998
2020
  prompt?: string | undefined;
@@ -2405,6 +2427,10 @@ export declare const palmConfigSchema: z.ZodObject<{
2405
2427
  value?: string | undefined;
2406
2428
  key?: string | undefined;
2407
2429
  } | undefined;
2430
+ transcend?: {
2431
+ bundleId: string;
2432
+ analyticsPurpose?: string | undefined;
2433
+ } | undefined;
2408
2434
  } | undefined;
2409
2435
  search?: {
2410
2436
  prompt?: string | undefined;
@@ -1334,6 +1334,16 @@ export declare const standardConfigSchema: {
1334
1334
  value?: string | undefined;
1335
1335
  key?: string | undefined;
1336
1336
  }>>;
1337
+ transcend: import("zod").ZodOptional<import("zod").ZodObject<{
1338
+ bundleId: import("zod").ZodString;
1339
+ analyticsPurpose: import("zod").ZodOptional<import("zod").ZodString>;
1340
+ }, "strip", import("zod").ZodTypeAny, {
1341
+ bundleId: string;
1342
+ analyticsPurpose?: string | undefined;
1343
+ }, {
1344
+ bundleId: string;
1345
+ analyticsPurpose?: string | undefined;
1346
+ }>>;
1337
1347
  }, "strict", import("zod").ZodTypeAny, {
1338
1348
  adobe?: {
1339
1349
  launchUrl: string;
@@ -1410,6 +1420,10 @@ export declare const standardConfigSchema: {
1410
1420
  value?: string | undefined;
1411
1421
  key?: string | undefined;
1412
1422
  } | undefined;
1423
+ transcend?: {
1424
+ bundleId: string;
1425
+ analyticsPurpose?: string | undefined;
1426
+ } | undefined;
1413
1427
  }, {
1414
1428
  adobe?: {
1415
1429
  launchUrl: string;
@@ -1486,6 +1500,10 @@ export declare const standardConfigSchema: {
1486
1500
  value?: string | undefined;
1487
1501
  key?: string | undefined;
1488
1502
  } | undefined;
1503
+ transcend?: {
1504
+ bundleId: string;
1505
+ analyticsPurpose?: string | undefined;
1506
+ } | undefined;
1489
1507
  }>>;
1490
1508
  banner: import("zod").ZodOptional<import("zod").ZodObject<{
1491
1509
  content: import("zod").ZodString;
@@ -1335,6 +1335,16 @@ export declare const sequoiaConfigSchema: z.ZodObject<{
1335
1335
  value?: string | undefined;
1336
1336
  key?: string | undefined;
1337
1337
  }>>;
1338
+ transcend: z.ZodOptional<z.ZodObject<{
1339
+ bundleId: z.ZodString;
1340
+ analyticsPurpose: z.ZodOptional<z.ZodString>;
1341
+ }, "strip", z.ZodTypeAny, {
1342
+ bundleId: string;
1343
+ analyticsPurpose?: string | undefined;
1344
+ }, {
1345
+ bundleId: string;
1346
+ analyticsPurpose?: string | undefined;
1347
+ }>>;
1338
1348
  }, "strict", z.ZodTypeAny, {
1339
1349
  adobe?: {
1340
1350
  launchUrl: string;
@@ -1411,6 +1421,10 @@ export declare const sequoiaConfigSchema: z.ZodObject<{
1411
1421
  value?: string | undefined;
1412
1422
  key?: string | undefined;
1413
1423
  } | undefined;
1424
+ transcend?: {
1425
+ bundleId: string;
1426
+ analyticsPurpose?: string | undefined;
1427
+ } | undefined;
1414
1428
  }, {
1415
1429
  adobe?: {
1416
1430
  launchUrl: string;
@@ -1487,6 +1501,10 @@ export declare const sequoiaConfigSchema: z.ZodObject<{
1487
1501
  value?: string | undefined;
1488
1502
  key?: string | undefined;
1489
1503
  } | undefined;
1504
+ transcend?: {
1505
+ bundleId: string;
1506
+ analyticsPurpose?: string | undefined;
1507
+ } | undefined;
1490
1508
  }>>;
1491
1509
  banner: z.ZodOptional<z.ZodObject<{
1492
1510
  content: z.ZodString;
@@ -1993,6 +2011,10 @@ export declare const sequoiaConfigSchema: z.ZodObject<{
1993
2011
  value?: string | undefined;
1994
2012
  key?: string | undefined;
1995
2013
  } | undefined;
2014
+ transcend?: {
2015
+ bundleId: string;
2016
+ analyticsPurpose?: string | undefined;
2017
+ } | undefined;
1996
2018
  } | undefined;
1997
2019
  search?: {
1998
2020
  prompt?: string | undefined;
@@ -2405,6 +2427,10 @@ export declare const sequoiaConfigSchema: z.ZodObject<{
2405
2427
  value?: string | undefined;
2406
2428
  key?: string | undefined;
2407
2429
  } | undefined;
2430
+ transcend?: {
2431
+ bundleId: string;
2432
+ analyticsPurpose?: string | undefined;
2433
+ } | undefined;
2408
2434
  } | undefined;
2409
2435
  search?: {
2410
2436
  prompt?: string | undefined;