@mintlify/validation 0.1.513 → 0.1.515
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/v1/analytics.d.ts +13 -0
- package/dist/mint-config/schemas/v1/analytics.js +5 -1
- package/dist/mint-config/schemas/v1/config.d.ts +19 -0
- package/dist/mint-config/schemas/v2/index.d.ts +266 -0
- package/dist/mint-config/schemas/v2/properties/integrations.d.ts +13 -0
- package/dist/mint-config/schemas/v2/properties/integrations.js +4 -0
- package/dist/mint-config/schemas/v2/properties/thumbnails.d.ts +13 -0
- package/dist/mint-config/schemas/v2/properties/thumbnails.js +6 -0
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +38 -0
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +38 -0
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +38 -0
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +38 -0
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +38 -0
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +38 -0
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +26 -0
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +38 -0
- package/dist/mint-config/validateConfig.d.ts +90 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +3 -3
|
@@ -946,6 +946,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
946
946
|
}, {
|
|
947
947
|
apiKey: string;
|
|
948
948
|
}>>;
|
|
949
|
+
clarity: z.ZodOptional<z.ZodObject<{
|
|
950
|
+
projectId: z.ZodString;
|
|
951
|
+
}, "strip", z.ZodTypeAny, {
|
|
952
|
+
projectId: string;
|
|
953
|
+
}, {
|
|
954
|
+
projectId: string;
|
|
955
|
+
}>>;
|
|
949
956
|
clearbit: z.ZodOptional<z.ZodObject<{
|
|
950
957
|
publicApiKey: z.ZodString;
|
|
951
958
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1098,6 +1105,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1098
1105
|
amplitude?: {
|
|
1099
1106
|
apiKey: string;
|
|
1100
1107
|
} | undefined;
|
|
1108
|
+
clarity?: {
|
|
1109
|
+
projectId: string;
|
|
1110
|
+
} | undefined;
|
|
1101
1111
|
clearbit?: {
|
|
1102
1112
|
publicApiKey: string;
|
|
1103
1113
|
} | undefined;
|
|
@@ -1164,6 +1174,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1164
1174
|
amplitude?: {
|
|
1165
1175
|
apiKey: string;
|
|
1166
1176
|
} | undefined;
|
|
1177
|
+
clarity?: {
|
|
1178
|
+
projectId: string;
|
|
1179
|
+
} | undefined;
|
|
1167
1180
|
clearbit?: {
|
|
1168
1181
|
publicApiKey: string;
|
|
1169
1182
|
} | undefined;
|
|
@@ -1441,12 +1454,25 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1441
1454
|
thumbnails: z.ZodOptional<z.ZodObject<{
|
|
1442
1455
|
appearance: z.ZodOptional<z.ZodEnum<[import("./properties/thumbnails.js").ThumbnailAppearance.Light, import("./properties/thumbnails.js").ThumbnailAppearance.Dark]>>;
|
|
1443
1456
|
background: z.ZodOptional<z.ZodString>;
|
|
1457
|
+
fonts: z.ZodOptional<z.ZodObject<{
|
|
1458
|
+
family: z.ZodString;
|
|
1459
|
+
}, "strip", z.ZodTypeAny, {
|
|
1460
|
+
family: string;
|
|
1461
|
+
}, {
|
|
1462
|
+
family: string;
|
|
1463
|
+
}>>;
|
|
1444
1464
|
}, "strip", z.ZodTypeAny, {
|
|
1445
1465
|
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1446
1466
|
background?: string | undefined;
|
|
1467
|
+
fonts?: {
|
|
1468
|
+
family: string;
|
|
1469
|
+
} | undefined;
|
|
1447
1470
|
}, {
|
|
1448
1471
|
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1449
1472
|
background?: string | undefined;
|
|
1473
|
+
fonts?: {
|
|
1474
|
+
family: string;
|
|
1475
|
+
} | undefined;
|
|
1450
1476
|
}>>;
|
|
1451
1477
|
interaction: z.ZodOptional<z.ZodObject<{
|
|
1452
1478
|
drilldown: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1753,6 +1779,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1753
1779
|
amplitude?: {
|
|
1754
1780
|
apiKey: string;
|
|
1755
1781
|
} | undefined;
|
|
1782
|
+
clarity?: {
|
|
1783
|
+
projectId: string;
|
|
1784
|
+
} | undefined;
|
|
1756
1785
|
clearbit?: {
|
|
1757
1786
|
publicApiKey: string;
|
|
1758
1787
|
} | undefined;
|
|
@@ -1854,6 +1883,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1854
1883
|
thumbnails?: {
|
|
1855
1884
|
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1856
1885
|
background?: string | undefined;
|
|
1886
|
+
fonts?: {
|
|
1887
|
+
family: string;
|
|
1888
|
+
} | undefined;
|
|
1857
1889
|
} | undefined;
|
|
1858
1890
|
interaction?: {
|
|
1859
1891
|
drilldown?: boolean | undefined;
|
|
@@ -2155,6 +2187,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2155
2187
|
amplitude?: {
|
|
2156
2188
|
apiKey: string;
|
|
2157
2189
|
} | undefined;
|
|
2190
|
+
clarity?: {
|
|
2191
|
+
projectId: string;
|
|
2192
|
+
} | undefined;
|
|
2158
2193
|
clearbit?: {
|
|
2159
2194
|
publicApiKey: string;
|
|
2160
2195
|
} | undefined;
|
|
@@ -2256,6 +2291,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2256
2291
|
thumbnails?: {
|
|
2257
2292
|
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
2258
2293
|
background?: string | undefined;
|
|
2294
|
+
fonts?: {
|
|
2295
|
+
family: string;
|
|
2296
|
+
} | undefined;
|
|
2259
2297
|
} | undefined;
|
|
2260
2298
|
interaction?: {
|
|
2261
2299
|
drilldown?: boolean | undefined;
|
|
@@ -3204,6 +3242,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3204
3242
|
}, {
|
|
3205
3243
|
apiKey: string;
|
|
3206
3244
|
}>>;
|
|
3245
|
+
clarity: z.ZodOptional<z.ZodObject<{
|
|
3246
|
+
projectId: z.ZodString;
|
|
3247
|
+
}, "strip", z.ZodTypeAny, {
|
|
3248
|
+
projectId: string;
|
|
3249
|
+
}, {
|
|
3250
|
+
projectId: string;
|
|
3251
|
+
}>>;
|
|
3207
3252
|
clearbit: z.ZodOptional<z.ZodObject<{
|
|
3208
3253
|
publicApiKey: z.ZodString;
|
|
3209
3254
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3356,6 +3401,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3356
3401
|
amplitude?: {
|
|
3357
3402
|
apiKey: string;
|
|
3358
3403
|
} | undefined;
|
|
3404
|
+
clarity?: {
|
|
3405
|
+
projectId: string;
|
|
3406
|
+
} | undefined;
|
|
3359
3407
|
clearbit?: {
|
|
3360
3408
|
publicApiKey: string;
|
|
3361
3409
|
} | undefined;
|
|
@@ -3422,6 +3470,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3422
3470
|
amplitude?: {
|
|
3423
3471
|
apiKey: string;
|
|
3424
3472
|
} | undefined;
|
|
3473
|
+
clarity?: {
|
|
3474
|
+
projectId: string;
|
|
3475
|
+
} | undefined;
|
|
3425
3476
|
clearbit?: {
|
|
3426
3477
|
publicApiKey: string;
|
|
3427
3478
|
} | undefined;
|
|
@@ -3699,12 +3750,25 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3699
3750
|
thumbnails: z.ZodOptional<z.ZodObject<{
|
|
3700
3751
|
appearance: z.ZodOptional<z.ZodEnum<[import("./properties/thumbnails.js").ThumbnailAppearance.Light, import("./properties/thumbnails.js").ThumbnailAppearance.Dark]>>;
|
|
3701
3752
|
background: z.ZodOptional<z.ZodString>;
|
|
3753
|
+
fonts: z.ZodOptional<z.ZodObject<{
|
|
3754
|
+
family: z.ZodString;
|
|
3755
|
+
}, "strip", z.ZodTypeAny, {
|
|
3756
|
+
family: string;
|
|
3757
|
+
}, {
|
|
3758
|
+
family: string;
|
|
3759
|
+
}>>;
|
|
3702
3760
|
}, "strip", z.ZodTypeAny, {
|
|
3703
3761
|
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
3704
3762
|
background?: string | undefined;
|
|
3763
|
+
fonts?: {
|
|
3764
|
+
family: string;
|
|
3765
|
+
} | undefined;
|
|
3705
3766
|
}, {
|
|
3706
3767
|
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
3707
3768
|
background?: string | undefined;
|
|
3769
|
+
fonts?: {
|
|
3770
|
+
family: string;
|
|
3771
|
+
} | undefined;
|
|
3708
3772
|
}>>;
|
|
3709
3773
|
interaction: z.ZodOptional<z.ZodObject<{
|
|
3710
3774
|
drilldown: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4011,6 +4075,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4011
4075
|
amplitude?: {
|
|
4012
4076
|
apiKey: string;
|
|
4013
4077
|
} | undefined;
|
|
4078
|
+
clarity?: {
|
|
4079
|
+
projectId: string;
|
|
4080
|
+
} | undefined;
|
|
4014
4081
|
clearbit?: {
|
|
4015
4082
|
publicApiKey: string;
|
|
4016
4083
|
} | undefined;
|
|
@@ -4112,6 +4179,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4112
4179
|
thumbnails?: {
|
|
4113
4180
|
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
4114
4181
|
background?: string | undefined;
|
|
4182
|
+
fonts?: {
|
|
4183
|
+
family: string;
|
|
4184
|
+
} | undefined;
|
|
4115
4185
|
} | undefined;
|
|
4116
4186
|
interaction?: {
|
|
4117
4187
|
drilldown?: boolean | undefined;
|
|
@@ -4413,6 +4483,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4413
4483
|
amplitude?: {
|
|
4414
4484
|
apiKey: string;
|
|
4415
4485
|
} | undefined;
|
|
4486
|
+
clarity?: {
|
|
4487
|
+
projectId: string;
|
|
4488
|
+
} | undefined;
|
|
4416
4489
|
clearbit?: {
|
|
4417
4490
|
publicApiKey: string;
|
|
4418
4491
|
} | undefined;
|
|
@@ -4514,6 +4587,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4514
4587
|
thumbnails?: {
|
|
4515
4588
|
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
4516
4589
|
background?: string | undefined;
|
|
4590
|
+
fonts?: {
|
|
4591
|
+
family: string;
|
|
4592
|
+
} | undefined;
|
|
4517
4593
|
} | undefined;
|
|
4518
4594
|
interaction?: {
|
|
4519
4595
|
drilldown?: boolean | undefined;
|
|
@@ -5462,6 +5538,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5462
5538
|
}, {
|
|
5463
5539
|
apiKey: string;
|
|
5464
5540
|
}>>;
|
|
5541
|
+
clarity: z.ZodOptional<z.ZodObject<{
|
|
5542
|
+
projectId: z.ZodString;
|
|
5543
|
+
}, "strip", z.ZodTypeAny, {
|
|
5544
|
+
projectId: string;
|
|
5545
|
+
}, {
|
|
5546
|
+
projectId: string;
|
|
5547
|
+
}>>;
|
|
5465
5548
|
clearbit: z.ZodOptional<z.ZodObject<{
|
|
5466
5549
|
publicApiKey: z.ZodString;
|
|
5467
5550
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5614,6 +5697,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5614
5697
|
amplitude?: {
|
|
5615
5698
|
apiKey: string;
|
|
5616
5699
|
} | undefined;
|
|
5700
|
+
clarity?: {
|
|
5701
|
+
projectId: string;
|
|
5702
|
+
} | undefined;
|
|
5617
5703
|
clearbit?: {
|
|
5618
5704
|
publicApiKey: string;
|
|
5619
5705
|
} | undefined;
|
|
@@ -5680,6 +5766,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5680
5766
|
amplitude?: {
|
|
5681
5767
|
apiKey: string;
|
|
5682
5768
|
} | undefined;
|
|
5769
|
+
clarity?: {
|
|
5770
|
+
projectId: string;
|
|
5771
|
+
} | undefined;
|
|
5683
5772
|
clearbit?: {
|
|
5684
5773
|
publicApiKey: string;
|
|
5685
5774
|
} | undefined;
|
|
@@ -5957,12 +6046,25 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5957
6046
|
thumbnails: z.ZodOptional<z.ZodObject<{
|
|
5958
6047
|
appearance: z.ZodOptional<z.ZodEnum<[import("./properties/thumbnails.js").ThumbnailAppearance.Light, import("./properties/thumbnails.js").ThumbnailAppearance.Dark]>>;
|
|
5959
6048
|
background: z.ZodOptional<z.ZodString>;
|
|
6049
|
+
fonts: z.ZodOptional<z.ZodObject<{
|
|
6050
|
+
family: z.ZodString;
|
|
6051
|
+
}, "strip", z.ZodTypeAny, {
|
|
6052
|
+
family: string;
|
|
6053
|
+
}, {
|
|
6054
|
+
family: string;
|
|
6055
|
+
}>>;
|
|
5960
6056
|
}, "strip", z.ZodTypeAny, {
|
|
5961
6057
|
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
5962
6058
|
background?: string | undefined;
|
|
6059
|
+
fonts?: {
|
|
6060
|
+
family: string;
|
|
6061
|
+
} | undefined;
|
|
5963
6062
|
}, {
|
|
5964
6063
|
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
5965
6064
|
background?: string | undefined;
|
|
6065
|
+
fonts?: {
|
|
6066
|
+
family: string;
|
|
6067
|
+
} | undefined;
|
|
5966
6068
|
}>>;
|
|
5967
6069
|
interaction: z.ZodOptional<z.ZodObject<{
|
|
5968
6070
|
drilldown: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6269,6 +6371,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6269
6371
|
amplitude?: {
|
|
6270
6372
|
apiKey: string;
|
|
6271
6373
|
} | undefined;
|
|
6374
|
+
clarity?: {
|
|
6375
|
+
projectId: string;
|
|
6376
|
+
} | undefined;
|
|
6272
6377
|
clearbit?: {
|
|
6273
6378
|
publicApiKey: string;
|
|
6274
6379
|
} | undefined;
|
|
@@ -6370,6 +6475,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6370
6475
|
thumbnails?: {
|
|
6371
6476
|
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
6372
6477
|
background?: string | undefined;
|
|
6478
|
+
fonts?: {
|
|
6479
|
+
family: string;
|
|
6480
|
+
} | undefined;
|
|
6373
6481
|
} | undefined;
|
|
6374
6482
|
interaction?: {
|
|
6375
6483
|
drilldown?: boolean | undefined;
|
|
@@ -6671,6 +6779,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6671
6779
|
amplitude?: {
|
|
6672
6780
|
apiKey: string;
|
|
6673
6781
|
} | undefined;
|
|
6782
|
+
clarity?: {
|
|
6783
|
+
projectId: string;
|
|
6784
|
+
} | undefined;
|
|
6674
6785
|
clearbit?: {
|
|
6675
6786
|
publicApiKey: string;
|
|
6676
6787
|
} | undefined;
|
|
@@ -6772,6 +6883,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6772
6883
|
thumbnails?: {
|
|
6773
6884
|
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
6774
6885
|
background?: string | undefined;
|
|
6886
|
+
fonts?: {
|
|
6887
|
+
family: string;
|
|
6888
|
+
} | undefined;
|
|
6775
6889
|
} | undefined;
|
|
6776
6890
|
interaction?: {
|
|
6777
6891
|
drilldown?: boolean | undefined;
|
|
@@ -7720,6 +7834,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7720
7834
|
}, {
|
|
7721
7835
|
apiKey: string;
|
|
7722
7836
|
}>>;
|
|
7837
|
+
clarity: z.ZodOptional<z.ZodObject<{
|
|
7838
|
+
projectId: z.ZodString;
|
|
7839
|
+
}, "strip", z.ZodTypeAny, {
|
|
7840
|
+
projectId: string;
|
|
7841
|
+
}, {
|
|
7842
|
+
projectId: string;
|
|
7843
|
+
}>>;
|
|
7723
7844
|
clearbit: z.ZodOptional<z.ZodObject<{
|
|
7724
7845
|
publicApiKey: z.ZodString;
|
|
7725
7846
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7872,6 +7993,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7872
7993
|
amplitude?: {
|
|
7873
7994
|
apiKey: string;
|
|
7874
7995
|
} | undefined;
|
|
7996
|
+
clarity?: {
|
|
7997
|
+
projectId: string;
|
|
7998
|
+
} | undefined;
|
|
7875
7999
|
clearbit?: {
|
|
7876
8000
|
publicApiKey: string;
|
|
7877
8001
|
} | undefined;
|
|
@@ -7938,6 +8062,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7938
8062
|
amplitude?: {
|
|
7939
8063
|
apiKey: string;
|
|
7940
8064
|
} | undefined;
|
|
8065
|
+
clarity?: {
|
|
8066
|
+
projectId: string;
|
|
8067
|
+
} | undefined;
|
|
7941
8068
|
clearbit?: {
|
|
7942
8069
|
publicApiKey: string;
|
|
7943
8070
|
} | undefined;
|
|
@@ -8215,12 +8342,25 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8215
8342
|
thumbnails: z.ZodOptional<z.ZodObject<{
|
|
8216
8343
|
appearance: z.ZodOptional<z.ZodEnum<[import("./properties/thumbnails.js").ThumbnailAppearance.Light, import("./properties/thumbnails.js").ThumbnailAppearance.Dark]>>;
|
|
8217
8344
|
background: z.ZodOptional<z.ZodString>;
|
|
8345
|
+
fonts: z.ZodOptional<z.ZodObject<{
|
|
8346
|
+
family: z.ZodString;
|
|
8347
|
+
}, "strip", z.ZodTypeAny, {
|
|
8348
|
+
family: string;
|
|
8349
|
+
}, {
|
|
8350
|
+
family: string;
|
|
8351
|
+
}>>;
|
|
8218
8352
|
}, "strip", z.ZodTypeAny, {
|
|
8219
8353
|
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
8220
8354
|
background?: string | undefined;
|
|
8355
|
+
fonts?: {
|
|
8356
|
+
family: string;
|
|
8357
|
+
} | undefined;
|
|
8221
8358
|
}, {
|
|
8222
8359
|
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
8223
8360
|
background?: string | undefined;
|
|
8361
|
+
fonts?: {
|
|
8362
|
+
family: string;
|
|
8363
|
+
} | undefined;
|
|
8224
8364
|
}>>;
|
|
8225
8365
|
interaction: z.ZodOptional<z.ZodObject<{
|
|
8226
8366
|
drilldown: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -8527,6 +8667,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8527
8667
|
amplitude?: {
|
|
8528
8668
|
apiKey: string;
|
|
8529
8669
|
} | undefined;
|
|
8670
|
+
clarity?: {
|
|
8671
|
+
projectId: string;
|
|
8672
|
+
} | undefined;
|
|
8530
8673
|
clearbit?: {
|
|
8531
8674
|
publicApiKey: string;
|
|
8532
8675
|
} | undefined;
|
|
@@ -8628,6 +8771,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8628
8771
|
thumbnails?: {
|
|
8629
8772
|
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
8630
8773
|
background?: string | undefined;
|
|
8774
|
+
fonts?: {
|
|
8775
|
+
family: string;
|
|
8776
|
+
} | undefined;
|
|
8631
8777
|
} | undefined;
|
|
8632
8778
|
interaction?: {
|
|
8633
8779
|
drilldown?: boolean | undefined;
|
|
@@ -8929,6 +9075,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8929
9075
|
amplitude?: {
|
|
8930
9076
|
apiKey: string;
|
|
8931
9077
|
} | undefined;
|
|
9078
|
+
clarity?: {
|
|
9079
|
+
projectId: string;
|
|
9080
|
+
} | undefined;
|
|
8932
9081
|
clearbit?: {
|
|
8933
9082
|
publicApiKey: string;
|
|
8934
9083
|
} | undefined;
|
|
@@ -9030,6 +9179,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9030
9179
|
thumbnails?: {
|
|
9031
9180
|
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
9032
9181
|
background?: string | undefined;
|
|
9182
|
+
fonts?: {
|
|
9183
|
+
family: string;
|
|
9184
|
+
} | undefined;
|
|
9033
9185
|
} | undefined;
|
|
9034
9186
|
interaction?: {
|
|
9035
9187
|
drilldown?: boolean | undefined;
|
|
@@ -9978,6 +10130,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9978
10130
|
}, {
|
|
9979
10131
|
apiKey: string;
|
|
9980
10132
|
}>>;
|
|
10133
|
+
clarity: z.ZodOptional<z.ZodObject<{
|
|
10134
|
+
projectId: z.ZodString;
|
|
10135
|
+
}, "strip", z.ZodTypeAny, {
|
|
10136
|
+
projectId: string;
|
|
10137
|
+
}, {
|
|
10138
|
+
projectId: string;
|
|
10139
|
+
}>>;
|
|
9981
10140
|
clearbit: z.ZodOptional<z.ZodObject<{
|
|
9982
10141
|
publicApiKey: z.ZodString;
|
|
9983
10142
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -10130,6 +10289,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10130
10289
|
amplitude?: {
|
|
10131
10290
|
apiKey: string;
|
|
10132
10291
|
} | undefined;
|
|
10292
|
+
clarity?: {
|
|
10293
|
+
projectId: string;
|
|
10294
|
+
} | undefined;
|
|
10133
10295
|
clearbit?: {
|
|
10134
10296
|
publicApiKey: string;
|
|
10135
10297
|
} | undefined;
|
|
@@ -10196,6 +10358,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10196
10358
|
amplitude?: {
|
|
10197
10359
|
apiKey: string;
|
|
10198
10360
|
} | undefined;
|
|
10361
|
+
clarity?: {
|
|
10362
|
+
projectId: string;
|
|
10363
|
+
} | undefined;
|
|
10199
10364
|
clearbit?: {
|
|
10200
10365
|
publicApiKey: string;
|
|
10201
10366
|
} | undefined;
|
|
@@ -10473,12 +10638,25 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10473
10638
|
thumbnails: z.ZodOptional<z.ZodObject<{
|
|
10474
10639
|
appearance: z.ZodOptional<z.ZodEnum<[import("./properties/thumbnails.js").ThumbnailAppearance.Light, import("./properties/thumbnails.js").ThumbnailAppearance.Dark]>>;
|
|
10475
10640
|
background: z.ZodOptional<z.ZodString>;
|
|
10641
|
+
fonts: z.ZodOptional<z.ZodObject<{
|
|
10642
|
+
family: z.ZodString;
|
|
10643
|
+
}, "strip", z.ZodTypeAny, {
|
|
10644
|
+
family: string;
|
|
10645
|
+
}, {
|
|
10646
|
+
family: string;
|
|
10647
|
+
}>>;
|
|
10476
10648
|
}, "strip", z.ZodTypeAny, {
|
|
10477
10649
|
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
10478
10650
|
background?: string | undefined;
|
|
10651
|
+
fonts?: {
|
|
10652
|
+
family: string;
|
|
10653
|
+
} | undefined;
|
|
10479
10654
|
}, {
|
|
10480
10655
|
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
10481
10656
|
background?: string | undefined;
|
|
10657
|
+
fonts?: {
|
|
10658
|
+
family: string;
|
|
10659
|
+
} | undefined;
|
|
10482
10660
|
}>>;
|
|
10483
10661
|
interaction: z.ZodOptional<z.ZodObject<{
|
|
10484
10662
|
drilldown: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -10785,6 +10963,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10785
10963
|
amplitude?: {
|
|
10786
10964
|
apiKey: string;
|
|
10787
10965
|
} | undefined;
|
|
10966
|
+
clarity?: {
|
|
10967
|
+
projectId: string;
|
|
10968
|
+
} | undefined;
|
|
10788
10969
|
clearbit?: {
|
|
10789
10970
|
publicApiKey: string;
|
|
10790
10971
|
} | undefined;
|
|
@@ -10886,6 +11067,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10886
11067
|
thumbnails?: {
|
|
10887
11068
|
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
10888
11069
|
background?: string | undefined;
|
|
11070
|
+
fonts?: {
|
|
11071
|
+
family: string;
|
|
11072
|
+
} | undefined;
|
|
10889
11073
|
} | undefined;
|
|
10890
11074
|
interaction?: {
|
|
10891
11075
|
drilldown?: boolean | undefined;
|
|
@@ -11187,6 +11371,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11187
11371
|
amplitude?: {
|
|
11188
11372
|
apiKey: string;
|
|
11189
11373
|
} | undefined;
|
|
11374
|
+
clarity?: {
|
|
11375
|
+
projectId: string;
|
|
11376
|
+
} | undefined;
|
|
11190
11377
|
clearbit?: {
|
|
11191
11378
|
publicApiKey: string;
|
|
11192
11379
|
} | undefined;
|
|
@@ -11288,6 +11475,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11288
11475
|
thumbnails?: {
|
|
11289
11476
|
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
11290
11477
|
background?: string | undefined;
|
|
11478
|
+
fonts?: {
|
|
11479
|
+
family: string;
|
|
11480
|
+
} | undefined;
|
|
11291
11481
|
} | undefined;
|
|
11292
11482
|
interaction?: {
|
|
11293
11483
|
drilldown?: boolean | undefined;
|
|
@@ -12236,6 +12426,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12236
12426
|
}, {
|
|
12237
12427
|
apiKey: string;
|
|
12238
12428
|
}>>;
|
|
12429
|
+
clarity: z.ZodOptional<z.ZodObject<{
|
|
12430
|
+
projectId: z.ZodString;
|
|
12431
|
+
}, "strip", z.ZodTypeAny, {
|
|
12432
|
+
projectId: string;
|
|
12433
|
+
}, {
|
|
12434
|
+
projectId: string;
|
|
12435
|
+
}>>;
|
|
12239
12436
|
clearbit: z.ZodOptional<z.ZodObject<{
|
|
12240
12437
|
publicApiKey: z.ZodString;
|
|
12241
12438
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -12388,6 +12585,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12388
12585
|
amplitude?: {
|
|
12389
12586
|
apiKey: string;
|
|
12390
12587
|
} | undefined;
|
|
12588
|
+
clarity?: {
|
|
12589
|
+
projectId: string;
|
|
12590
|
+
} | undefined;
|
|
12391
12591
|
clearbit?: {
|
|
12392
12592
|
publicApiKey: string;
|
|
12393
12593
|
} | undefined;
|
|
@@ -12454,6 +12654,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12454
12654
|
amplitude?: {
|
|
12455
12655
|
apiKey: string;
|
|
12456
12656
|
} | undefined;
|
|
12657
|
+
clarity?: {
|
|
12658
|
+
projectId: string;
|
|
12659
|
+
} | undefined;
|
|
12457
12660
|
clearbit?: {
|
|
12458
12661
|
publicApiKey: string;
|
|
12459
12662
|
} | undefined;
|
|
@@ -12731,12 +12934,25 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12731
12934
|
thumbnails: z.ZodOptional<z.ZodObject<{
|
|
12732
12935
|
appearance: z.ZodOptional<z.ZodEnum<[import("./properties/thumbnails.js").ThumbnailAppearance.Light, import("./properties/thumbnails.js").ThumbnailAppearance.Dark]>>;
|
|
12733
12936
|
background: z.ZodOptional<z.ZodString>;
|
|
12937
|
+
fonts: z.ZodOptional<z.ZodObject<{
|
|
12938
|
+
family: z.ZodString;
|
|
12939
|
+
}, "strip", z.ZodTypeAny, {
|
|
12940
|
+
family: string;
|
|
12941
|
+
}, {
|
|
12942
|
+
family: string;
|
|
12943
|
+
}>>;
|
|
12734
12944
|
}, "strip", z.ZodTypeAny, {
|
|
12735
12945
|
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
12736
12946
|
background?: string | undefined;
|
|
12947
|
+
fonts?: {
|
|
12948
|
+
family: string;
|
|
12949
|
+
} | undefined;
|
|
12737
12950
|
}, {
|
|
12738
12951
|
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
12739
12952
|
background?: string | undefined;
|
|
12953
|
+
fonts?: {
|
|
12954
|
+
family: string;
|
|
12955
|
+
} | undefined;
|
|
12740
12956
|
}>>;
|
|
12741
12957
|
interaction: z.ZodOptional<z.ZodObject<{
|
|
12742
12958
|
drilldown: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -13043,6 +13259,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13043
13259
|
amplitude?: {
|
|
13044
13260
|
apiKey: string;
|
|
13045
13261
|
} | undefined;
|
|
13262
|
+
clarity?: {
|
|
13263
|
+
projectId: string;
|
|
13264
|
+
} | undefined;
|
|
13046
13265
|
clearbit?: {
|
|
13047
13266
|
publicApiKey: string;
|
|
13048
13267
|
} | undefined;
|
|
@@ -13144,6 +13363,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13144
13363
|
thumbnails?: {
|
|
13145
13364
|
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
13146
13365
|
background?: string | undefined;
|
|
13366
|
+
fonts?: {
|
|
13367
|
+
family: string;
|
|
13368
|
+
} | undefined;
|
|
13147
13369
|
} | undefined;
|
|
13148
13370
|
interaction?: {
|
|
13149
13371
|
drilldown?: boolean | undefined;
|
|
@@ -13445,6 +13667,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13445
13667
|
amplitude?: {
|
|
13446
13668
|
apiKey: string;
|
|
13447
13669
|
} | undefined;
|
|
13670
|
+
clarity?: {
|
|
13671
|
+
projectId: string;
|
|
13672
|
+
} | undefined;
|
|
13448
13673
|
clearbit?: {
|
|
13449
13674
|
publicApiKey: string;
|
|
13450
13675
|
} | undefined;
|
|
@@ -13546,6 +13771,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13546
13771
|
thumbnails?: {
|
|
13547
13772
|
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
13548
13773
|
background?: string | undefined;
|
|
13774
|
+
fonts?: {
|
|
13775
|
+
family: string;
|
|
13776
|
+
} | undefined;
|
|
13549
13777
|
} | undefined;
|
|
13550
13778
|
interaction?: {
|
|
13551
13779
|
drilldown?: boolean | undefined;
|
|
@@ -14494,6 +14722,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14494
14722
|
}, {
|
|
14495
14723
|
apiKey: string;
|
|
14496
14724
|
}>>;
|
|
14725
|
+
clarity: z.ZodOptional<z.ZodObject<{
|
|
14726
|
+
projectId: z.ZodString;
|
|
14727
|
+
}, "strip", z.ZodTypeAny, {
|
|
14728
|
+
projectId: string;
|
|
14729
|
+
}, {
|
|
14730
|
+
projectId: string;
|
|
14731
|
+
}>>;
|
|
14497
14732
|
clearbit: z.ZodOptional<z.ZodObject<{
|
|
14498
14733
|
publicApiKey: z.ZodString;
|
|
14499
14734
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -14646,6 +14881,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14646
14881
|
amplitude?: {
|
|
14647
14882
|
apiKey: string;
|
|
14648
14883
|
} | undefined;
|
|
14884
|
+
clarity?: {
|
|
14885
|
+
projectId: string;
|
|
14886
|
+
} | undefined;
|
|
14649
14887
|
clearbit?: {
|
|
14650
14888
|
publicApiKey: string;
|
|
14651
14889
|
} | undefined;
|
|
@@ -14712,6 +14950,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14712
14950
|
amplitude?: {
|
|
14713
14951
|
apiKey: string;
|
|
14714
14952
|
} | undefined;
|
|
14953
|
+
clarity?: {
|
|
14954
|
+
projectId: string;
|
|
14955
|
+
} | undefined;
|
|
14715
14956
|
clearbit?: {
|
|
14716
14957
|
publicApiKey: string;
|
|
14717
14958
|
} | undefined;
|
|
@@ -14989,12 +15230,25 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14989
15230
|
thumbnails: z.ZodOptional<z.ZodObject<{
|
|
14990
15231
|
appearance: z.ZodOptional<z.ZodEnum<[import("./properties/thumbnails.js").ThumbnailAppearance.Light, import("./properties/thumbnails.js").ThumbnailAppearance.Dark]>>;
|
|
14991
15232
|
background: z.ZodOptional<z.ZodString>;
|
|
15233
|
+
fonts: z.ZodOptional<z.ZodObject<{
|
|
15234
|
+
family: z.ZodString;
|
|
15235
|
+
}, "strip", z.ZodTypeAny, {
|
|
15236
|
+
family: string;
|
|
15237
|
+
}, {
|
|
15238
|
+
family: string;
|
|
15239
|
+
}>>;
|
|
14992
15240
|
}, "strip", z.ZodTypeAny, {
|
|
14993
15241
|
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
14994
15242
|
background?: string | undefined;
|
|
15243
|
+
fonts?: {
|
|
15244
|
+
family: string;
|
|
15245
|
+
} | undefined;
|
|
14995
15246
|
}, {
|
|
14996
15247
|
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
14997
15248
|
background?: string | undefined;
|
|
15249
|
+
fonts?: {
|
|
15250
|
+
family: string;
|
|
15251
|
+
} | undefined;
|
|
14998
15252
|
}>>;
|
|
14999
15253
|
interaction: z.ZodOptional<z.ZodObject<{
|
|
15000
15254
|
drilldown: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -15301,6 +15555,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15301
15555
|
amplitude?: {
|
|
15302
15556
|
apiKey: string;
|
|
15303
15557
|
} | undefined;
|
|
15558
|
+
clarity?: {
|
|
15559
|
+
projectId: string;
|
|
15560
|
+
} | undefined;
|
|
15304
15561
|
clearbit?: {
|
|
15305
15562
|
publicApiKey: string;
|
|
15306
15563
|
} | undefined;
|
|
@@ -15402,6 +15659,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15402
15659
|
thumbnails?: {
|
|
15403
15660
|
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
15404
15661
|
background?: string | undefined;
|
|
15662
|
+
fonts?: {
|
|
15663
|
+
family: string;
|
|
15664
|
+
} | undefined;
|
|
15405
15665
|
} | undefined;
|
|
15406
15666
|
interaction?: {
|
|
15407
15667
|
drilldown?: boolean | undefined;
|
|
@@ -15703,6 +15963,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15703
15963
|
amplitude?: {
|
|
15704
15964
|
apiKey: string;
|
|
15705
15965
|
} | undefined;
|
|
15966
|
+
clarity?: {
|
|
15967
|
+
projectId: string;
|
|
15968
|
+
} | undefined;
|
|
15706
15969
|
clearbit?: {
|
|
15707
15970
|
publicApiKey: string;
|
|
15708
15971
|
} | undefined;
|
|
@@ -15804,6 +16067,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15804
16067
|
thumbnails?: {
|
|
15805
16068
|
appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
15806
16069
|
background?: string | undefined;
|
|
16070
|
+
fonts?: {
|
|
16071
|
+
family: string;
|
|
16072
|
+
} | undefined;
|
|
15807
16073
|
} | undefined;
|
|
15808
16074
|
interaction?: {
|
|
15809
16075
|
drilldown?: boolean | undefined;
|