@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.
- package/dist/mint-config/schemas/v2/index.d.ts +304 -0
- package/dist/mint-config/schemas/v2/properties/index.d.ts +1 -0
- package/dist/mint-config/schemas/v2/properties/index.js +1 -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/properties/variations.d.ts +45 -0
- package/dist/mint-config/schemas/v2/properties/variations.js +28 -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 +70 -0
- package/dist/mint-config/schemas/v2/themes/willow.js +2 -1
- package/dist/mint-config/validateConfig.d.ts +84 -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;
|
|
@@ -7686,6 +7764,38 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7686
7764
|
instructions?: string | string[] | undefined;
|
|
7687
7765
|
} | undefined;
|
|
7688
7766
|
}>, z.ZodObject<{
|
|
7767
|
+
variations: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
7768
|
+
options: z.ZodArray<z.ZodObject<{
|
|
7769
|
+
id: z.ZodString;
|
|
7770
|
+
label: z.ZodString;
|
|
7771
|
+
}, "strip", z.ZodTypeAny, {
|
|
7772
|
+
id: string;
|
|
7773
|
+
label: string;
|
|
7774
|
+
}, {
|
|
7775
|
+
id: string;
|
|
7776
|
+
label: string;
|
|
7777
|
+
}>, "many">;
|
|
7778
|
+
}, "strip", z.ZodTypeAny, {
|
|
7779
|
+
options: {
|
|
7780
|
+
id: string;
|
|
7781
|
+
label: string;
|
|
7782
|
+
}[];
|
|
7783
|
+
}, {
|
|
7784
|
+
options: {
|
|
7785
|
+
id: string;
|
|
7786
|
+
label: string;
|
|
7787
|
+
}[];
|
|
7788
|
+
}>, {
|
|
7789
|
+
options: {
|
|
7790
|
+
id: string;
|
|
7791
|
+
label: string;
|
|
7792
|
+
}[];
|
|
7793
|
+
}, {
|
|
7794
|
+
options: {
|
|
7795
|
+
id: string;
|
|
7796
|
+
label: string;
|
|
7797
|
+
}[];
|
|
7798
|
+
}>>;
|
|
7689
7799
|
$schema: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
7690
7800
|
name: z.ZodString;
|
|
7691
7801
|
public: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -9021,6 +9131,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9021
9131
|
value?: string | undefined;
|
|
9022
9132
|
key?: string | undefined;
|
|
9023
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
|
+
}>>;
|
|
9024
9144
|
}, "strict", z.ZodTypeAny, {
|
|
9025
9145
|
adobe?: {
|
|
9026
9146
|
launchUrl: string;
|
|
@@ -9097,6 +9217,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9097
9217
|
value?: string | undefined;
|
|
9098
9218
|
key?: string | undefined;
|
|
9099
9219
|
} | undefined;
|
|
9220
|
+
transcend?: {
|
|
9221
|
+
bundleId: string;
|
|
9222
|
+
analyticsPurpose?: string | undefined;
|
|
9223
|
+
} | undefined;
|
|
9100
9224
|
}, {
|
|
9101
9225
|
adobe?: {
|
|
9102
9226
|
launchUrl: string;
|
|
@@ -9173,6 +9297,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9173
9297
|
value?: string | undefined;
|
|
9174
9298
|
key?: string | undefined;
|
|
9175
9299
|
} | undefined;
|
|
9300
|
+
transcend?: {
|
|
9301
|
+
bundleId: string;
|
|
9302
|
+
analyticsPurpose?: string | undefined;
|
|
9303
|
+
} | undefined;
|
|
9176
9304
|
}>>;
|
|
9177
9305
|
banner: z.ZodOptional<z.ZodObject<{
|
|
9178
9306
|
content: z.ZodString;
|
|
@@ -9679,6 +9807,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9679
9807
|
value?: string | undefined;
|
|
9680
9808
|
key?: string | undefined;
|
|
9681
9809
|
} | undefined;
|
|
9810
|
+
transcend?: {
|
|
9811
|
+
bundleId: string;
|
|
9812
|
+
analyticsPurpose?: string | undefined;
|
|
9813
|
+
} | undefined;
|
|
9682
9814
|
} | undefined;
|
|
9683
9815
|
search?: {
|
|
9684
9816
|
prompt?: string | undefined;
|
|
@@ -9834,6 +9966,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9834
9966
|
schema?: boolean | undefined;
|
|
9835
9967
|
instructions?: string | string[] | undefined;
|
|
9836
9968
|
} | undefined;
|
|
9969
|
+
variations?: {
|
|
9970
|
+
options: {
|
|
9971
|
+
id: string;
|
|
9972
|
+
label: string;
|
|
9973
|
+
}[];
|
|
9974
|
+
} | undefined;
|
|
9837
9975
|
}, {
|
|
9838
9976
|
name: string;
|
|
9839
9977
|
theme: "willow";
|
|
@@ -10091,6 +10229,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10091
10229
|
value?: string | undefined;
|
|
10092
10230
|
key?: string | undefined;
|
|
10093
10231
|
} | undefined;
|
|
10232
|
+
transcend?: {
|
|
10233
|
+
bundleId: string;
|
|
10234
|
+
analyticsPurpose?: string | undefined;
|
|
10235
|
+
} | undefined;
|
|
10094
10236
|
} | undefined;
|
|
10095
10237
|
search?: {
|
|
10096
10238
|
prompt?: string | undefined;
|
|
@@ -10246,6 +10388,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10246
10388
|
schema?: boolean | undefined;
|
|
10247
10389
|
instructions?: string | string[] | undefined;
|
|
10248
10390
|
} | undefined;
|
|
10391
|
+
variations?: {
|
|
10392
|
+
options: {
|
|
10393
|
+
id: string;
|
|
10394
|
+
label: string;
|
|
10395
|
+
}[];
|
|
10396
|
+
} | undefined;
|
|
10249
10397
|
}>, z.ZodObject<{
|
|
10250
10398
|
$schema: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
10251
10399
|
name: z.ZodString;
|
|
@@ -11582,6 +11730,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11582
11730
|
value?: string | undefined;
|
|
11583
11731
|
key?: string | undefined;
|
|
11584
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
|
+
}>>;
|
|
11585
11743
|
}, "strict", z.ZodTypeAny, {
|
|
11586
11744
|
adobe?: {
|
|
11587
11745
|
launchUrl: string;
|
|
@@ -11658,6 +11816,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11658
11816
|
value?: string | undefined;
|
|
11659
11817
|
key?: string | undefined;
|
|
11660
11818
|
} | undefined;
|
|
11819
|
+
transcend?: {
|
|
11820
|
+
bundleId: string;
|
|
11821
|
+
analyticsPurpose?: string | undefined;
|
|
11822
|
+
} | undefined;
|
|
11661
11823
|
}, {
|
|
11662
11824
|
adobe?: {
|
|
11663
11825
|
launchUrl: string;
|
|
@@ -11734,6 +11896,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11734
11896
|
value?: string | undefined;
|
|
11735
11897
|
key?: string | undefined;
|
|
11736
11898
|
} | undefined;
|
|
11899
|
+
transcend?: {
|
|
11900
|
+
bundleId: string;
|
|
11901
|
+
analyticsPurpose?: string | undefined;
|
|
11902
|
+
} | undefined;
|
|
11737
11903
|
}>>;
|
|
11738
11904
|
banner: z.ZodOptional<z.ZodObject<{
|
|
11739
11905
|
content: z.ZodString;
|
|
@@ -12240,6 +12406,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12240
12406
|
value?: string | undefined;
|
|
12241
12407
|
key?: string | undefined;
|
|
12242
12408
|
} | undefined;
|
|
12409
|
+
transcend?: {
|
|
12410
|
+
bundleId: string;
|
|
12411
|
+
analyticsPurpose?: string | undefined;
|
|
12412
|
+
} | undefined;
|
|
12243
12413
|
} | undefined;
|
|
12244
12414
|
search?: {
|
|
12245
12415
|
prompt?: string | undefined;
|
|
@@ -12652,6 +12822,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12652
12822
|
value?: string | undefined;
|
|
12653
12823
|
key?: string | undefined;
|
|
12654
12824
|
} | undefined;
|
|
12825
|
+
transcend?: {
|
|
12826
|
+
bundleId: string;
|
|
12827
|
+
analyticsPurpose?: string | undefined;
|
|
12828
|
+
} | undefined;
|
|
12655
12829
|
} | undefined;
|
|
12656
12830
|
search?: {
|
|
12657
12831
|
prompt?: string | undefined;
|
|
@@ -14143,6 +14317,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14143
14317
|
value?: string | undefined;
|
|
14144
14318
|
key?: string | undefined;
|
|
14145
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
|
+
}>>;
|
|
14146
14330
|
}, "strict", z.ZodTypeAny, {
|
|
14147
14331
|
adobe?: {
|
|
14148
14332
|
launchUrl: string;
|
|
@@ -14219,6 +14403,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14219
14403
|
value?: string | undefined;
|
|
14220
14404
|
key?: string | undefined;
|
|
14221
14405
|
} | undefined;
|
|
14406
|
+
transcend?: {
|
|
14407
|
+
bundleId: string;
|
|
14408
|
+
analyticsPurpose?: string | undefined;
|
|
14409
|
+
} | undefined;
|
|
14222
14410
|
}, {
|
|
14223
14411
|
adobe?: {
|
|
14224
14412
|
launchUrl: string;
|
|
@@ -14295,6 +14483,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14295
14483
|
value?: string | undefined;
|
|
14296
14484
|
key?: string | undefined;
|
|
14297
14485
|
} | undefined;
|
|
14486
|
+
transcend?: {
|
|
14487
|
+
bundleId: string;
|
|
14488
|
+
analyticsPurpose?: string | undefined;
|
|
14489
|
+
} | undefined;
|
|
14298
14490
|
}>>;
|
|
14299
14491
|
banner: z.ZodOptional<z.ZodObject<{
|
|
14300
14492
|
content: z.ZodString;
|
|
@@ -14801,6 +14993,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14801
14993
|
value?: string | undefined;
|
|
14802
14994
|
key?: string | undefined;
|
|
14803
14995
|
} | undefined;
|
|
14996
|
+
transcend?: {
|
|
14997
|
+
bundleId: string;
|
|
14998
|
+
analyticsPurpose?: string | undefined;
|
|
14999
|
+
} | undefined;
|
|
14804
15000
|
} | undefined;
|
|
14805
15001
|
search?: {
|
|
14806
15002
|
prompt?: string | undefined;
|
|
@@ -15213,6 +15409,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15213
15409
|
value?: string | undefined;
|
|
15214
15410
|
key?: string | undefined;
|
|
15215
15411
|
} | undefined;
|
|
15412
|
+
transcend?: {
|
|
15413
|
+
bundleId: string;
|
|
15414
|
+
analyticsPurpose?: string | undefined;
|
|
15415
|
+
} | undefined;
|
|
15216
15416
|
} | undefined;
|
|
15217
15417
|
search?: {
|
|
15218
15418
|
prompt?: string | undefined;
|
|
@@ -16704,6 +16904,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16704
16904
|
value?: string | undefined;
|
|
16705
16905
|
key?: string | undefined;
|
|
16706
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
|
+
}>>;
|
|
16707
16917
|
}, "strict", z.ZodTypeAny, {
|
|
16708
16918
|
adobe?: {
|
|
16709
16919
|
launchUrl: string;
|
|
@@ -16780,6 +16990,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16780
16990
|
value?: string | undefined;
|
|
16781
16991
|
key?: string | undefined;
|
|
16782
16992
|
} | undefined;
|
|
16993
|
+
transcend?: {
|
|
16994
|
+
bundleId: string;
|
|
16995
|
+
analyticsPurpose?: string | undefined;
|
|
16996
|
+
} | undefined;
|
|
16783
16997
|
}, {
|
|
16784
16998
|
adobe?: {
|
|
16785
16999
|
launchUrl: string;
|
|
@@ -16856,6 +17070,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16856
17070
|
value?: string | undefined;
|
|
16857
17071
|
key?: string | undefined;
|
|
16858
17072
|
} | undefined;
|
|
17073
|
+
transcend?: {
|
|
17074
|
+
bundleId: string;
|
|
17075
|
+
analyticsPurpose?: string | undefined;
|
|
17076
|
+
} | undefined;
|
|
16859
17077
|
}>>;
|
|
16860
17078
|
banner: z.ZodOptional<z.ZodObject<{
|
|
16861
17079
|
content: z.ZodString;
|
|
@@ -17362,6 +17580,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17362
17580
|
value?: string | undefined;
|
|
17363
17581
|
key?: string | undefined;
|
|
17364
17582
|
} | undefined;
|
|
17583
|
+
transcend?: {
|
|
17584
|
+
bundleId: string;
|
|
17585
|
+
analyticsPurpose?: string | undefined;
|
|
17586
|
+
} | undefined;
|
|
17365
17587
|
} | undefined;
|
|
17366
17588
|
search?: {
|
|
17367
17589
|
prompt?: string | undefined;
|
|
@@ -17774,6 +17996,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17774
17996
|
value?: string | undefined;
|
|
17775
17997
|
key?: string | undefined;
|
|
17776
17998
|
} | undefined;
|
|
17999
|
+
transcend?: {
|
|
18000
|
+
bundleId: string;
|
|
18001
|
+
analyticsPurpose?: string | undefined;
|
|
18002
|
+
} | undefined;
|
|
17777
18003
|
} | undefined;
|
|
17778
18004
|
search?: {
|
|
17779
18005
|
prompt?: string | undefined;
|
|
@@ -19265,6 +19491,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
19265
19491
|
value?: string | undefined;
|
|
19266
19492
|
key?: string | undefined;
|
|
19267
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
|
+
}>>;
|
|
19268
19504
|
}, "strict", z.ZodTypeAny, {
|
|
19269
19505
|
adobe?: {
|
|
19270
19506
|
launchUrl: string;
|
|
@@ -19341,6 +19577,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
19341
19577
|
value?: string | undefined;
|
|
19342
19578
|
key?: string | undefined;
|
|
19343
19579
|
} | undefined;
|
|
19580
|
+
transcend?: {
|
|
19581
|
+
bundleId: string;
|
|
19582
|
+
analyticsPurpose?: string | undefined;
|
|
19583
|
+
} | undefined;
|
|
19344
19584
|
}, {
|
|
19345
19585
|
adobe?: {
|
|
19346
19586
|
launchUrl: string;
|
|
@@ -19417,6 +19657,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
19417
19657
|
value?: string | undefined;
|
|
19418
19658
|
key?: string | undefined;
|
|
19419
19659
|
} | undefined;
|
|
19660
|
+
transcend?: {
|
|
19661
|
+
bundleId: string;
|
|
19662
|
+
analyticsPurpose?: string | undefined;
|
|
19663
|
+
} | undefined;
|
|
19420
19664
|
}>>;
|
|
19421
19665
|
banner: z.ZodOptional<z.ZodObject<{
|
|
19422
19666
|
content: z.ZodString;
|
|
@@ -19923,6 +20167,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
19923
20167
|
value?: string | undefined;
|
|
19924
20168
|
key?: string | undefined;
|
|
19925
20169
|
} | undefined;
|
|
20170
|
+
transcend?: {
|
|
20171
|
+
bundleId: string;
|
|
20172
|
+
analyticsPurpose?: string | undefined;
|
|
20173
|
+
} | undefined;
|
|
19926
20174
|
} | undefined;
|
|
19927
20175
|
search?: {
|
|
19928
20176
|
prompt?: string | undefined;
|
|
@@ -20335,6 +20583,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20335
20583
|
value?: string | undefined;
|
|
20336
20584
|
key?: string | undefined;
|
|
20337
20585
|
} | undefined;
|
|
20586
|
+
transcend?: {
|
|
20587
|
+
bundleId: string;
|
|
20588
|
+
analyticsPurpose?: string | undefined;
|
|
20589
|
+
} | undefined;
|
|
20338
20590
|
} | undefined;
|
|
20339
20591
|
search?: {
|
|
20340
20592
|
prompt?: string | undefined;
|
|
@@ -21826,6 +22078,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
21826
22078
|
value?: string | undefined;
|
|
21827
22079
|
key?: string | undefined;
|
|
21828
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
|
+
}>>;
|
|
21829
22091
|
}, "strict", z.ZodTypeAny, {
|
|
21830
22092
|
adobe?: {
|
|
21831
22093
|
launchUrl: string;
|
|
@@ -21902,6 +22164,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
21902
22164
|
value?: string | undefined;
|
|
21903
22165
|
key?: string | undefined;
|
|
21904
22166
|
} | undefined;
|
|
22167
|
+
transcend?: {
|
|
22168
|
+
bundleId: string;
|
|
22169
|
+
analyticsPurpose?: string | undefined;
|
|
22170
|
+
} | undefined;
|
|
21905
22171
|
}, {
|
|
21906
22172
|
adobe?: {
|
|
21907
22173
|
launchUrl: string;
|
|
@@ -21978,6 +22244,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
21978
22244
|
value?: string | undefined;
|
|
21979
22245
|
key?: string | undefined;
|
|
21980
22246
|
} | undefined;
|
|
22247
|
+
transcend?: {
|
|
22248
|
+
bundleId: string;
|
|
22249
|
+
analyticsPurpose?: string | undefined;
|
|
22250
|
+
} | undefined;
|
|
21981
22251
|
}>>;
|
|
21982
22252
|
banner: z.ZodOptional<z.ZodObject<{
|
|
21983
22253
|
content: z.ZodString;
|
|
@@ -22484,6 +22754,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
22484
22754
|
value?: string | undefined;
|
|
22485
22755
|
key?: string | undefined;
|
|
22486
22756
|
} | undefined;
|
|
22757
|
+
transcend?: {
|
|
22758
|
+
bundleId: string;
|
|
22759
|
+
analyticsPurpose?: string | undefined;
|
|
22760
|
+
} | undefined;
|
|
22487
22761
|
} | undefined;
|
|
22488
22762
|
search?: {
|
|
22489
22763
|
prompt?: string | undefined;
|
|
@@ -22896,6 +23170,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
22896
23170
|
value?: string | undefined;
|
|
22897
23171
|
key?: string | undefined;
|
|
22898
23172
|
} | undefined;
|
|
23173
|
+
transcend?: {
|
|
23174
|
+
bundleId: string;
|
|
23175
|
+
analyticsPurpose?: string | undefined;
|
|
23176
|
+
} | undefined;
|
|
22899
23177
|
} | undefined;
|
|
22900
23178
|
search?: {
|
|
22901
23179
|
prompt?: string | undefined;
|
|
@@ -24388,6 +24666,16 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
24388
24666
|
value?: string | undefined;
|
|
24389
24667
|
key?: string | undefined;
|
|
24390
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
|
+
}>>;
|
|
24391
24679
|
}, "strict", z.ZodTypeAny, {
|
|
24392
24680
|
adobe?: {
|
|
24393
24681
|
launchUrl: string;
|
|
@@ -24464,6 +24752,10 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
24464
24752
|
value?: string | undefined;
|
|
24465
24753
|
key?: string | undefined;
|
|
24466
24754
|
} | undefined;
|
|
24755
|
+
transcend?: {
|
|
24756
|
+
bundleId: string;
|
|
24757
|
+
analyticsPurpose?: string | undefined;
|
|
24758
|
+
} | undefined;
|
|
24467
24759
|
}, {
|
|
24468
24760
|
adobe?: {
|
|
24469
24761
|
launchUrl: string;
|
|
@@ -24540,6 +24832,10 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
24540
24832
|
value?: string | undefined;
|
|
24541
24833
|
key?: string | undefined;
|
|
24542
24834
|
} | undefined;
|
|
24835
|
+
transcend?: {
|
|
24836
|
+
bundleId: string;
|
|
24837
|
+
analyticsPurpose?: string | undefined;
|
|
24838
|
+
} | undefined;
|
|
24543
24839
|
}>>;
|
|
24544
24840
|
banner: z.ZodOptional<z.ZodObject<{
|
|
24545
24841
|
content: z.ZodString;
|
|
@@ -25046,6 +25342,10 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
25046
25342
|
value?: string | undefined;
|
|
25047
25343
|
key?: string | undefined;
|
|
25048
25344
|
} | undefined;
|
|
25345
|
+
transcend?: {
|
|
25346
|
+
bundleId: string;
|
|
25347
|
+
analyticsPurpose?: string | undefined;
|
|
25348
|
+
} | undefined;
|
|
25049
25349
|
} | undefined;
|
|
25050
25350
|
search?: {
|
|
25051
25351
|
prompt?: string | undefined;
|
|
@@ -25458,6 +25758,10 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
25458
25758
|
value?: string | undefined;
|
|
25459
25759
|
key?: string | undefined;
|
|
25460
25760
|
} | undefined;
|
|
25761
|
+
transcend?: {
|
|
25762
|
+
bundleId: string;
|
|
25763
|
+
analyticsPurpose?: string | undefined;
|
|
25764
|
+
} | undefined;
|
|
25461
25765
|
} | undefined;
|
|
25462
25766
|
search?: {
|
|
25463
25767
|
prompt?: string | undefined;
|