@mintlify/validation 0.1.804 → 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.
- package/dist/mint-config/schemas/v2/index.d.ts +260 -0
- package/dist/mint-config/schemas/v2/properties/integrations.d.ts +18 -0
- package/dist/mint-config/schemas/v2/properties/integrations.js +8 -0
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +26 -0
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +26 -0
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +26 -0
- package/dist/mint-config/schemas/v2/themes/luma.d.ts +26 -0
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +26 -0
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +26 -0
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +26 -0
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +18 -0
- package/dist/mint-config/schemas/v2/themes/sequoia.d.ts +26 -0
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +26 -0
- package/dist/mint-config/validateConfig.d.ts +72 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -1338,6 +1338,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1338
1338
|
value?: string | undefined;
|
|
1339
1339
|
key?: string | undefined;
|
|
1340
1340
|
}>>;
|
|
1341
|
+
transcend: z.ZodOptional<z.ZodObject<{
|
|
1342
|
+
bundleId: z.ZodString;
|
|
1343
|
+
analyticsPurpose: z.ZodOptional<z.ZodString>;
|
|
1344
|
+
}, "strip", z.ZodTypeAny, {
|
|
1345
|
+
bundleId: string;
|
|
1346
|
+
analyticsPurpose?: string | undefined;
|
|
1347
|
+
}, {
|
|
1348
|
+
bundleId: string;
|
|
1349
|
+
analyticsPurpose?: string | undefined;
|
|
1350
|
+
}>>;
|
|
1341
1351
|
}, "strict", z.ZodTypeAny, {
|
|
1342
1352
|
adobe?: {
|
|
1343
1353
|
launchUrl: string;
|
|
@@ -1414,6 +1424,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1414
1424
|
value?: string | undefined;
|
|
1415
1425
|
key?: string | undefined;
|
|
1416
1426
|
} | undefined;
|
|
1427
|
+
transcend?: {
|
|
1428
|
+
bundleId: string;
|
|
1429
|
+
analyticsPurpose?: string | undefined;
|
|
1430
|
+
} | undefined;
|
|
1417
1431
|
}, {
|
|
1418
1432
|
adobe?: {
|
|
1419
1433
|
launchUrl: string;
|
|
@@ -1490,6 +1504,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1490
1504
|
value?: string | undefined;
|
|
1491
1505
|
key?: string | undefined;
|
|
1492
1506
|
} | undefined;
|
|
1507
|
+
transcend?: {
|
|
1508
|
+
bundleId: string;
|
|
1509
|
+
analyticsPurpose?: string | undefined;
|
|
1510
|
+
} | undefined;
|
|
1493
1511
|
}>>;
|
|
1494
1512
|
banner: z.ZodOptional<z.ZodObject<{
|
|
1495
1513
|
content: z.ZodString;
|
|
@@ -1996,6 +2014,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1996
2014
|
value?: string | undefined;
|
|
1997
2015
|
key?: string | undefined;
|
|
1998
2016
|
} | undefined;
|
|
2017
|
+
transcend?: {
|
|
2018
|
+
bundleId: string;
|
|
2019
|
+
analyticsPurpose?: string | undefined;
|
|
2020
|
+
} | undefined;
|
|
1999
2021
|
} | undefined;
|
|
2000
2022
|
search?: {
|
|
2001
2023
|
prompt?: string | undefined;
|
|
@@ -2408,6 +2430,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2408
2430
|
value?: string | undefined;
|
|
2409
2431
|
key?: string | undefined;
|
|
2410
2432
|
} | undefined;
|
|
2433
|
+
transcend?: {
|
|
2434
|
+
bundleId: string;
|
|
2435
|
+
analyticsPurpose?: string | undefined;
|
|
2436
|
+
} | undefined;
|
|
2411
2437
|
} | undefined;
|
|
2412
2438
|
search?: {
|
|
2413
2439
|
prompt?: string | undefined;
|
|
@@ -3899,6 +3925,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3899
3925
|
value?: string | undefined;
|
|
3900
3926
|
key?: string | undefined;
|
|
3901
3927
|
}>>;
|
|
3928
|
+
transcend: z.ZodOptional<z.ZodObject<{
|
|
3929
|
+
bundleId: z.ZodString;
|
|
3930
|
+
analyticsPurpose: z.ZodOptional<z.ZodString>;
|
|
3931
|
+
}, "strip", z.ZodTypeAny, {
|
|
3932
|
+
bundleId: string;
|
|
3933
|
+
analyticsPurpose?: string | undefined;
|
|
3934
|
+
}, {
|
|
3935
|
+
bundleId: string;
|
|
3936
|
+
analyticsPurpose?: string | undefined;
|
|
3937
|
+
}>>;
|
|
3902
3938
|
}, "strict", z.ZodTypeAny, {
|
|
3903
3939
|
adobe?: {
|
|
3904
3940
|
launchUrl: string;
|
|
@@ -3975,6 +4011,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3975
4011
|
value?: string | undefined;
|
|
3976
4012
|
key?: string | undefined;
|
|
3977
4013
|
} | undefined;
|
|
4014
|
+
transcend?: {
|
|
4015
|
+
bundleId: string;
|
|
4016
|
+
analyticsPurpose?: string | undefined;
|
|
4017
|
+
} | undefined;
|
|
3978
4018
|
}, {
|
|
3979
4019
|
adobe?: {
|
|
3980
4020
|
launchUrl: string;
|
|
@@ -4051,6 +4091,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4051
4091
|
value?: string | undefined;
|
|
4052
4092
|
key?: string | undefined;
|
|
4053
4093
|
} | undefined;
|
|
4094
|
+
transcend?: {
|
|
4095
|
+
bundleId: string;
|
|
4096
|
+
analyticsPurpose?: string | undefined;
|
|
4097
|
+
} | undefined;
|
|
4054
4098
|
}>>;
|
|
4055
4099
|
banner: z.ZodOptional<z.ZodObject<{
|
|
4056
4100
|
content: z.ZodString;
|
|
@@ -4557,6 +4601,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4557
4601
|
value?: string | undefined;
|
|
4558
4602
|
key?: string | undefined;
|
|
4559
4603
|
} | undefined;
|
|
4604
|
+
transcend?: {
|
|
4605
|
+
bundleId: string;
|
|
4606
|
+
analyticsPurpose?: string | undefined;
|
|
4607
|
+
} | undefined;
|
|
4560
4608
|
} | undefined;
|
|
4561
4609
|
search?: {
|
|
4562
4610
|
prompt?: string | undefined;
|
|
@@ -4969,6 +5017,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4969
5017
|
value?: string | undefined;
|
|
4970
5018
|
key?: string | undefined;
|
|
4971
5019
|
} | undefined;
|
|
5020
|
+
transcend?: {
|
|
5021
|
+
bundleId: string;
|
|
5022
|
+
analyticsPurpose?: string | undefined;
|
|
5023
|
+
} | undefined;
|
|
4972
5024
|
} | undefined;
|
|
4973
5025
|
search?: {
|
|
4974
5026
|
prompt?: string | undefined;
|
|
@@ -6460,6 +6512,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6460
6512
|
value?: string | undefined;
|
|
6461
6513
|
key?: string | undefined;
|
|
6462
6514
|
}>>;
|
|
6515
|
+
transcend: z.ZodOptional<z.ZodObject<{
|
|
6516
|
+
bundleId: z.ZodString;
|
|
6517
|
+
analyticsPurpose: z.ZodOptional<z.ZodString>;
|
|
6518
|
+
}, "strip", z.ZodTypeAny, {
|
|
6519
|
+
bundleId: string;
|
|
6520
|
+
analyticsPurpose?: string | undefined;
|
|
6521
|
+
}, {
|
|
6522
|
+
bundleId: string;
|
|
6523
|
+
analyticsPurpose?: string | undefined;
|
|
6524
|
+
}>>;
|
|
6463
6525
|
}, "strict", z.ZodTypeAny, {
|
|
6464
6526
|
adobe?: {
|
|
6465
6527
|
launchUrl: string;
|
|
@@ -6536,6 +6598,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6536
6598
|
value?: string | undefined;
|
|
6537
6599
|
key?: string | undefined;
|
|
6538
6600
|
} | undefined;
|
|
6601
|
+
transcend?: {
|
|
6602
|
+
bundleId: string;
|
|
6603
|
+
analyticsPurpose?: string | undefined;
|
|
6604
|
+
} | undefined;
|
|
6539
6605
|
}, {
|
|
6540
6606
|
adobe?: {
|
|
6541
6607
|
launchUrl: string;
|
|
@@ -6612,6 +6678,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6612
6678
|
value?: string | undefined;
|
|
6613
6679
|
key?: string | undefined;
|
|
6614
6680
|
} | undefined;
|
|
6681
|
+
transcend?: {
|
|
6682
|
+
bundleId: string;
|
|
6683
|
+
analyticsPurpose?: string | undefined;
|
|
6684
|
+
} | undefined;
|
|
6615
6685
|
}>>;
|
|
6616
6686
|
banner: z.ZodOptional<z.ZodObject<{
|
|
6617
6687
|
content: z.ZodString;
|
|
@@ -7118,6 +7188,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7118
7188
|
value?: string | undefined;
|
|
7119
7189
|
key?: string | undefined;
|
|
7120
7190
|
} | undefined;
|
|
7191
|
+
transcend?: {
|
|
7192
|
+
bundleId: string;
|
|
7193
|
+
analyticsPurpose?: string | undefined;
|
|
7194
|
+
} | undefined;
|
|
7121
7195
|
} | undefined;
|
|
7122
7196
|
search?: {
|
|
7123
7197
|
prompt?: string | undefined;
|
|
@@ -7530,6 +7604,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7530
7604
|
value?: string | undefined;
|
|
7531
7605
|
key?: string | undefined;
|
|
7532
7606
|
} | undefined;
|
|
7607
|
+
transcend?: {
|
|
7608
|
+
bundleId: string;
|
|
7609
|
+
analyticsPurpose?: string | undefined;
|
|
7610
|
+
} | undefined;
|
|
7533
7611
|
} | undefined;
|
|
7534
7612
|
search?: {
|
|
7535
7613
|
prompt?: string | undefined;
|
|
@@ -9053,6 +9131,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9053
9131
|
value?: string | undefined;
|
|
9054
9132
|
key?: string | undefined;
|
|
9055
9133
|
}>>;
|
|
9134
|
+
transcend: z.ZodOptional<z.ZodObject<{
|
|
9135
|
+
bundleId: z.ZodString;
|
|
9136
|
+
analyticsPurpose: z.ZodOptional<z.ZodString>;
|
|
9137
|
+
}, "strip", z.ZodTypeAny, {
|
|
9138
|
+
bundleId: string;
|
|
9139
|
+
analyticsPurpose?: string | undefined;
|
|
9140
|
+
}, {
|
|
9141
|
+
bundleId: string;
|
|
9142
|
+
analyticsPurpose?: string | undefined;
|
|
9143
|
+
}>>;
|
|
9056
9144
|
}, "strict", z.ZodTypeAny, {
|
|
9057
9145
|
adobe?: {
|
|
9058
9146
|
launchUrl: string;
|
|
@@ -9129,6 +9217,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9129
9217
|
value?: string | undefined;
|
|
9130
9218
|
key?: string | undefined;
|
|
9131
9219
|
} | undefined;
|
|
9220
|
+
transcend?: {
|
|
9221
|
+
bundleId: string;
|
|
9222
|
+
analyticsPurpose?: string | undefined;
|
|
9223
|
+
} | undefined;
|
|
9132
9224
|
}, {
|
|
9133
9225
|
adobe?: {
|
|
9134
9226
|
launchUrl: string;
|
|
@@ -9205,6 +9297,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9205
9297
|
value?: string | undefined;
|
|
9206
9298
|
key?: string | undefined;
|
|
9207
9299
|
} | undefined;
|
|
9300
|
+
transcend?: {
|
|
9301
|
+
bundleId: string;
|
|
9302
|
+
analyticsPurpose?: string | undefined;
|
|
9303
|
+
} | undefined;
|
|
9208
9304
|
}>>;
|
|
9209
9305
|
banner: z.ZodOptional<z.ZodObject<{
|
|
9210
9306
|
content: z.ZodString;
|
|
@@ -9711,6 +9807,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9711
9807
|
value?: string | undefined;
|
|
9712
9808
|
key?: string | undefined;
|
|
9713
9809
|
} | undefined;
|
|
9810
|
+
transcend?: {
|
|
9811
|
+
bundleId: string;
|
|
9812
|
+
analyticsPurpose?: string | undefined;
|
|
9813
|
+
} | undefined;
|
|
9714
9814
|
} | undefined;
|
|
9715
9815
|
search?: {
|
|
9716
9816
|
prompt?: string | undefined;
|
|
@@ -10129,6 +10229,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10129
10229
|
value?: string | undefined;
|
|
10130
10230
|
key?: string | undefined;
|
|
10131
10231
|
} | undefined;
|
|
10232
|
+
transcend?: {
|
|
10233
|
+
bundleId: string;
|
|
10234
|
+
analyticsPurpose?: string | undefined;
|
|
10235
|
+
} | undefined;
|
|
10132
10236
|
} | undefined;
|
|
10133
10237
|
search?: {
|
|
10134
10238
|
prompt?: string | undefined;
|
|
@@ -11626,6 +11730,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11626
11730
|
value?: string | undefined;
|
|
11627
11731
|
key?: string | undefined;
|
|
11628
11732
|
}>>;
|
|
11733
|
+
transcend: z.ZodOptional<z.ZodObject<{
|
|
11734
|
+
bundleId: z.ZodString;
|
|
11735
|
+
analyticsPurpose: z.ZodOptional<z.ZodString>;
|
|
11736
|
+
}, "strip", z.ZodTypeAny, {
|
|
11737
|
+
bundleId: string;
|
|
11738
|
+
analyticsPurpose?: string | undefined;
|
|
11739
|
+
}, {
|
|
11740
|
+
bundleId: string;
|
|
11741
|
+
analyticsPurpose?: string | undefined;
|
|
11742
|
+
}>>;
|
|
11629
11743
|
}, "strict", z.ZodTypeAny, {
|
|
11630
11744
|
adobe?: {
|
|
11631
11745
|
launchUrl: string;
|
|
@@ -11702,6 +11816,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11702
11816
|
value?: string | undefined;
|
|
11703
11817
|
key?: string | undefined;
|
|
11704
11818
|
} | undefined;
|
|
11819
|
+
transcend?: {
|
|
11820
|
+
bundleId: string;
|
|
11821
|
+
analyticsPurpose?: string | undefined;
|
|
11822
|
+
} | undefined;
|
|
11705
11823
|
}, {
|
|
11706
11824
|
adobe?: {
|
|
11707
11825
|
launchUrl: string;
|
|
@@ -11778,6 +11896,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11778
11896
|
value?: string | undefined;
|
|
11779
11897
|
key?: string | undefined;
|
|
11780
11898
|
} | undefined;
|
|
11899
|
+
transcend?: {
|
|
11900
|
+
bundleId: string;
|
|
11901
|
+
analyticsPurpose?: string | undefined;
|
|
11902
|
+
} | undefined;
|
|
11781
11903
|
}>>;
|
|
11782
11904
|
banner: z.ZodOptional<z.ZodObject<{
|
|
11783
11905
|
content: z.ZodString;
|
|
@@ -12284,6 +12406,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12284
12406
|
value?: string | undefined;
|
|
12285
12407
|
key?: string | undefined;
|
|
12286
12408
|
} | undefined;
|
|
12409
|
+
transcend?: {
|
|
12410
|
+
bundleId: string;
|
|
12411
|
+
analyticsPurpose?: string | undefined;
|
|
12412
|
+
} | undefined;
|
|
12287
12413
|
} | undefined;
|
|
12288
12414
|
search?: {
|
|
12289
12415
|
prompt?: string | undefined;
|
|
@@ -12696,6 +12822,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12696
12822
|
value?: string | undefined;
|
|
12697
12823
|
key?: string | undefined;
|
|
12698
12824
|
} | undefined;
|
|
12825
|
+
transcend?: {
|
|
12826
|
+
bundleId: string;
|
|
12827
|
+
analyticsPurpose?: string | undefined;
|
|
12828
|
+
} | undefined;
|
|
12699
12829
|
} | undefined;
|
|
12700
12830
|
search?: {
|
|
12701
12831
|
prompt?: string | undefined;
|
|
@@ -14187,6 +14317,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14187
14317
|
value?: string | undefined;
|
|
14188
14318
|
key?: string | undefined;
|
|
14189
14319
|
}>>;
|
|
14320
|
+
transcend: z.ZodOptional<z.ZodObject<{
|
|
14321
|
+
bundleId: z.ZodString;
|
|
14322
|
+
analyticsPurpose: z.ZodOptional<z.ZodString>;
|
|
14323
|
+
}, "strip", z.ZodTypeAny, {
|
|
14324
|
+
bundleId: string;
|
|
14325
|
+
analyticsPurpose?: string | undefined;
|
|
14326
|
+
}, {
|
|
14327
|
+
bundleId: string;
|
|
14328
|
+
analyticsPurpose?: string | undefined;
|
|
14329
|
+
}>>;
|
|
14190
14330
|
}, "strict", z.ZodTypeAny, {
|
|
14191
14331
|
adobe?: {
|
|
14192
14332
|
launchUrl: string;
|
|
@@ -14263,6 +14403,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14263
14403
|
value?: string | undefined;
|
|
14264
14404
|
key?: string | undefined;
|
|
14265
14405
|
} | undefined;
|
|
14406
|
+
transcend?: {
|
|
14407
|
+
bundleId: string;
|
|
14408
|
+
analyticsPurpose?: string | undefined;
|
|
14409
|
+
} | undefined;
|
|
14266
14410
|
}, {
|
|
14267
14411
|
adobe?: {
|
|
14268
14412
|
launchUrl: string;
|
|
@@ -14339,6 +14483,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14339
14483
|
value?: string | undefined;
|
|
14340
14484
|
key?: string | undefined;
|
|
14341
14485
|
} | undefined;
|
|
14486
|
+
transcend?: {
|
|
14487
|
+
bundleId: string;
|
|
14488
|
+
analyticsPurpose?: string | undefined;
|
|
14489
|
+
} | undefined;
|
|
14342
14490
|
}>>;
|
|
14343
14491
|
banner: z.ZodOptional<z.ZodObject<{
|
|
14344
14492
|
content: z.ZodString;
|
|
@@ -14845,6 +14993,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14845
14993
|
value?: string | undefined;
|
|
14846
14994
|
key?: string | undefined;
|
|
14847
14995
|
} | undefined;
|
|
14996
|
+
transcend?: {
|
|
14997
|
+
bundleId: string;
|
|
14998
|
+
analyticsPurpose?: string | undefined;
|
|
14999
|
+
} | undefined;
|
|
14848
15000
|
} | undefined;
|
|
14849
15001
|
search?: {
|
|
14850
15002
|
prompt?: string | undefined;
|
|
@@ -15257,6 +15409,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15257
15409
|
value?: string | undefined;
|
|
15258
15410
|
key?: string | undefined;
|
|
15259
15411
|
} | undefined;
|
|
15412
|
+
transcend?: {
|
|
15413
|
+
bundleId: string;
|
|
15414
|
+
analyticsPurpose?: string | undefined;
|
|
15415
|
+
} | undefined;
|
|
15260
15416
|
} | undefined;
|
|
15261
15417
|
search?: {
|
|
15262
15418
|
prompt?: string | undefined;
|
|
@@ -16748,6 +16904,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16748
16904
|
value?: string | undefined;
|
|
16749
16905
|
key?: string | undefined;
|
|
16750
16906
|
}>>;
|
|
16907
|
+
transcend: z.ZodOptional<z.ZodObject<{
|
|
16908
|
+
bundleId: z.ZodString;
|
|
16909
|
+
analyticsPurpose: z.ZodOptional<z.ZodString>;
|
|
16910
|
+
}, "strip", z.ZodTypeAny, {
|
|
16911
|
+
bundleId: string;
|
|
16912
|
+
analyticsPurpose?: string | undefined;
|
|
16913
|
+
}, {
|
|
16914
|
+
bundleId: string;
|
|
16915
|
+
analyticsPurpose?: string | undefined;
|
|
16916
|
+
}>>;
|
|
16751
16917
|
}, "strict", z.ZodTypeAny, {
|
|
16752
16918
|
adobe?: {
|
|
16753
16919
|
launchUrl: string;
|
|
@@ -16824,6 +16990,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16824
16990
|
value?: string | undefined;
|
|
16825
16991
|
key?: string | undefined;
|
|
16826
16992
|
} | undefined;
|
|
16993
|
+
transcend?: {
|
|
16994
|
+
bundleId: string;
|
|
16995
|
+
analyticsPurpose?: string | undefined;
|
|
16996
|
+
} | undefined;
|
|
16827
16997
|
}, {
|
|
16828
16998
|
adobe?: {
|
|
16829
16999
|
launchUrl: string;
|
|
@@ -16900,6 +17070,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16900
17070
|
value?: string | undefined;
|
|
16901
17071
|
key?: string | undefined;
|
|
16902
17072
|
} | undefined;
|
|
17073
|
+
transcend?: {
|
|
17074
|
+
bundleId: string;
|
|
17075
|
+
analyticsPurpose?: string | undefined;
|
|
17076
|
+
} | undefined;
|
|
16903
17077
|
}>>;
|
|
16904
17078
|
banner: z.ZodOptional<z.ZodObject<{
|
|
16905
17079
|
content: z.ZodString;
|
|
@@ -17406,6 +17580,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17406
17580
|
value?: string | undefined;
|
|
17407
17581
|
key?: string | undefined;
|
|
17408
17582
|
} | undefined;
|
|
17583
|
+
transcend?: {
|
|
17584
|
+
bundleId: string;
|
|
17585
|
+
analyticsPurpose?: string | undefined;
|
|
17586
|
+
} | undefined;
|
|
17409
17587
|
} | undefined;
|
|
17410
17588
|
search?: {
|
|
17411
17589
|
prompt?: string | undefined;
|
|
@@ -17818,6 +17996,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17818
17996
|
value?: string | undefined;
|
|
17819
17997
|
key?: string | undefined;
|
|
17820
17998
|
} | undefined;
|
|
17999
|
+
transcend?: {
|
|
18000
|
+
bundleId: string;
|
|
18001
|
+
analyticsPurpose?: string | undefined;
|
|
18002
|
+
} | undefined;
|
|
17821
18003
|
} | undefined;
|
|
17822
18004
|
search?: {
|
|
17823
18005
|
prompt?: string | undefined;
|
|
@@ -19309,6 +19491,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
19309
19491
|
value?: string | undefined;
|
|
19310
19492
|
key?: string | undefined;
|
|
19311
19493
|
}>>;
|
|
19494
|
+
transcend: z.ZodOptional<z.ZodObject<{
|
|
19495
|
+
bundleId: z.ZodString;
|
|
19496
|
+
analyticsPurpose: z.ZodOptional<z.ZodString>;
|
|
19497
|
+
}, "strip", z.ZodTypeAny, {
|
|
19498
|
+
bundleId: string;
|
|
19499
|
+
analyticsPurpose?: string | undefined;
|
|
19500
|
+
}, {
|
|
19501
|
+
bundleId: string;
|
|
19502
|
+
analyticsPurpose?: string | undefined;
|
|
19503
|
+
}>>;
|
|
19312
19504
|
}, "strict", z.ZodTypeAny, {
|
|
19313
19505
|
adobe?: {
|
|
19314
19506
|
launchUrl: string;
|
|
@@ -19385,6 +19577,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
19385
19577
|
value?: string | undefined;
|
|
19386
19578
|
key?: string | undefined;
|
|
19387
19579
|
} | undefined;
|
|
19580
|
+
transcend?: {
|
|
19581
|
+
bundleId: string;
|
|
19582
|
+
analyticsPurpose?: string | undefined;
|
|
19583
|
+
} | undefined;
|
|
19388
19584
|
}, {
|
|
19389
19585
|
adobe?: {
|
|
19390
19586
|
launchUrl: string;
|
|
@@ -19461,6 +19657,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
19461
19657
|
value?: string | undefined;
|
|
19462
19658
|
key?: string | undefined;
|
|
19463
19659
|
} | undefined;
|
|
19660
|
+
transcend?: {
|
|
19661
|
+
bundleId: string;
|
|
19662
|
+
analyticsPurpose?: string | undefined;
|
|
19663
|
+
} | undefined;
|
|
19464
19664
|
}>>;
|
|
19465
19665
|
banner: z.ZodOptional<z.ZodObject<{
|
|
19466
19666
|
content: z.ZodString;
|
|
@@ -19967,6 +20167,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
19967
20167
|
value?: string | undefined;
|
|
19968
20168
|
key?: string | undefined;
|
|
19969
20169
|
} | undefined;
|
|
20170
|
+
transcend?: {
|
|
20171
|
+
bundleId: string;
|
|
20172
|
+
analyticsPurpose?: string | undefined;
|
|
20173
|
+
} | undefined;
|
|
19970
20174
|
} | undefined;
|
|
19971
20175
|
search?: {
|
|
19972
20176
|
prompt?: string | undefined;
|
|
@@ -20379,6 +20583,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20379
20583
|
value?: string | undefined;
|
|
20380
20584
|
key?: string | undefined;
|
|
20381
20585
|
} | undefined;
|
|
20586
|
+
transcend?: {
|
|
20587
|
+
bundleId: string;
|
|
20588
|
+
analyticsPurpose?: string | undefined;
|
|
20589
|
+
} | undefined;
|
|
20382
20590
|
} | undefined;
|
|
20383
20591
|
search?: {
|
|
20384
20592
|
prompt?: string | undefined;
|
|
@@ -21870,6 +22078,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
21870
22078
|
value?: string | undefined;
|
|
21871
22079
|
key?: string | undefined;
|
|
21872
22080
|
}>>;
|
|
22081
|
+
transcend: z.ZodOptional<z.ZodObject<{
|
|
22082
|
+
bundleId: z.ZodString;
|
|
22083
|
+
analyticsPurpose: z.ZodOptional<z.ZodString>;
|
|
22084
|
+
}, "strip", z.ZodTypeAny, {
|
|
22085
|
+
bundleId: string;
|
|
22086
|
+
analyticsPurpose?: string | undefined;
|
|
22087
|
+
}, {
|
|
22088
|
+
bundleId: string;
|
|
22089
|
+
analyticsPurpose?: string | undefined;
|
|
22090
|
+
}>>;
|
|
21873
22091
|
}, "strict", z.ZodTypeAny, {
|
|
21874
22092
|
adobe?: {
|
|
21875
22093
|
launchUrl: string;
|
|
@@ -21946,6 +22164,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
21946
22164
|
value?: string | undefined;
|
|
21947
22165
|
key?: string | undefined;
|
|
21948
22166
|
} | undefined;
|
|
22167
|
+
transcend?: {
|
|
22168
|
+
bundleId: string;
|
|
22169
|
+
analyticsPurpose?: string | undefined;
|
|
22170
|
+
} | undefined;
|
|
21949
22171
|
}, {
|
|
21950
22172
|
adobe?: {
|
|
21951
22173
|
launchUrl: string;
|
|
@@ -22022,6 +22244,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
22022
22244
|
value?: string | undefined;
|
|
22023
22245
|
key?: string | undefined;
|
|
22024
22246
|
} | undefined;
|
|
22247
|
+
transcend?: {
|
|
22248
|
+
bundleId: string;
|
|
22249
|
+
analyticsPurpose?: string | undefined;
|
|
22250
|
+
} | undefined;
|
|
22025
22251
|
}>>;
|
|
22026
22252
|
banner: z.ZodOptional<z.ZodObject<{
|
|
22027
22253
|
content: z.ZodString;
|
|
@@ -22528,6 +22754,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
22528
22754
|
value?: string | undefined;
|
|
22529
22755
|
key?: string | undefined;
|
|
22530
22756
|
} | undefined;
|
|
22757
|
+
transcend?: {
|
|
22758
|
+
bundleId: string;
|
|
22759
|
+
analyticsPurpose?: string | undefined;
|
|
22760
|
+
} | undefined;
|
|
22531
22761
|
} | undefined;
|
|
22532
22762
|
search?: {
|
|
22533
22763
|
prompt?: string | undefined;
|
|
@@ -22940,6 +23170,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
22940
23170
|
value?: string | undefined;
|
|
22941
23171
|
key?: string | undefined;
|
|
22942
23172
|
} | undefined;
|
|
23173
|
+
transcend?: {
|
|
23174
|
+
bundleId: string;
|
|
23175
|
+
analyticsPurpose?: string | undefined;
|
|
23176
|
+
} | undefined;
|
|
22943
23177
|
} | undefined;
|
|
22944
23178
|
search?: {
|
|
22945
23179
|
prompt?: string | undefined;
|
|
@@ -24432,6 +24666,16 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
24432
24666
|
value?: string | undefined;
|
|
24433
24667
|
key?: string | undefined;
|
|
24434
24668
|
}>>;
|
|
24669
|
+
transcend: z.ZodOptional<z.ZodObject<{
|
|
24670
|
+
bundleId: z.ZodString;
|
|
24671
|
+
analyticsPurpose: z.ZodOptional<z.ZodString>;
|
|
24672
|
+
}, "strip", z.ZodTypeAny, {
|
|
24673
|
+
bundleId: string;
|
|
24674
|
+
analyticsPurpose?: string | undefined;
|
|
24675
|
+
}, {
|
|
24676
|
+
bundleId: string;
|
|
24677
|
+
analyticsPurpose?: string | undefined;
|
|
24678
|
+
}>>;
|
|
24435
24679
|
}, "strict", z.ZodTypeAny, {
|
|
24436
24680
|
adobe?: {
|
|
24437
24681
|
launchUrl: string;
|
|
@@ -24508,6 +24752,10 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
24508
24752
|
value?: string | undefined;
|
|
24509
24753
|
key?: string | undefined;
|
|
24510
24754
|
} | undefined;
|
|
24755
|
+
transcend?: {
|
|
24756
|
+
bundleId: string;
|
|
24757
|
+
analyticsPurpose?: string | undefined;
|
|
24758
|
+
} | undefined;
|
|
24511
24759
|
}, {
|
|
24512
24760
|
adobe?: {
|
|
24513
24761
|
launchUrl: string;
|
|
@@ -24584,6 +24832,10 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
24584
24832
|
value?: string | undefined;
|
|
24585
24833
|
key?: string | undefined;
|
|
24586
24834
|
} | undefined;
|
|
24835
|
+
transcend?: {
|
|
24836
|
+
bundleId: string;
|
|
24837
|
+
analyticsPurpose?: string | undefined;
|
|
24838
|
+
} | undefined;
|
|
24587
24839
|
}>>;
|
|
24588
24840
|
banner: z.ZodOptional<z.ZodObject<{
|
|
24589
24841
|
content: z.ZodString;
|
|
@@ -25090,6 +25342,10 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
25090
25342
|
value?: string | undefined;
|
|
25091
25343
|
key?: string | undefined;
|
|
25092
25344
|
} | undefined;
|
|
25345
|
+
transcend?: {
|
|
25346
|
+
bundleId: string;
|
|
25347
|
+
analyticsPurpose?: string | undefined;
|
|
25348
|
+
} | undefined;
|
|
25093
25349
|
} | undefined;
|
|
25094
25350
|
search?: {
|
|
25095
25351
|
prompt?: string | undefined;
|
|
@@ -25502,6 +25758,10 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
25502
25758
|
value?: string | undefined;
|
|
25503
25759
|
key?: string | undefined;
|
|
25504
25760
|
} | undefined;
|
|
25761
|
+
transcend?: {
|
|
25762
|
+
bundleId: string;
|
|
25763
|
+
analyticsPurpose?: string | undefined;
|
|
25764
|
+
} | undefined;
|
|
25505
25765
|
} | undefined;
|
|
25506
25766
|
search?: {
|
|
25507
25767
|
prompt?: string | undefined;
|
|
@@ -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');
|