@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.
@@ -942,6 +942,13 @@ export declare const standardConfigSchema: {
942
942
  }, {
943
943
  apiKey: string;
944
944
  }>>;
945
+ clarity: import("zod").ZodOptional<import("zod").ZodObject<{
946
+ projectId: import("zod").ZodString;
947
+ }, "strip", import("zod").ZodTypeAny, {
948
+ projectId: string;
949
+ }, {
950
+ projectId: string;
951
+ }>>;
945
952
  clearbit: import("zod").ZodOptional<import("zod").ZodObject<{
946
953
  publicApiKey: import("zod").ZodString;
947
954
  }, "strip", import("zod").ZodTypeAny, {
@@ -1094,6 +1101,9 @@ export declare const standardConfigSchema: {
1094
1101
  amplitude?: {
1095
1102
  apiKey: string;
1096
1103
  } | undefined;
1104
+ clarity?: {
1105
+ projectId: string;
1106
+ } | undefined;
1097
1107
  clearbit?: {
1098
1108
  publicApiKey: string;
1099
1109
  } | undefined;
@@ -1160,6 +1170,9 @@ export declare const standardConfigSchema: {
1160
1170
  amplitude?: {
1161
1171
  apiKey: string;
1162
1172
  } | undefined;
1173
+ clarity?: {
1174
+ projectId: string;
1175
+ } | undefined;
1163
1176
  clearbit?: {
1164
1177
  publicApiKey: string;
1165
1178
  } | undefined;
@@ -1437,12 +1450,25 @@ export declare const standardConfigSchema: {
1437
1450
  thumbnails: import("zod").ZodOptional<import("zod").ZodObject<{
1438
1451
  appearance: import("zod").ZodOptional<import("zod").ZodEnum<[import("../../properties/thumbnails.js").ThumbnailAppearance.Light, import("../../properties/thumbnails.js").ThumbnailAppearance.Dark]>>;
1439
1452
  background: import("zod").ZodOptional<import("zod").ZodString>;
1453
+ fonts: import("zod").ZodOptional<import("zod").ZodObject<{
1454
+ family: import("zod").ZodString;
1455
+ }, "strip", import("zod").ZodTypeAny, {
1456
+ family: string;
1457
+ }, {
1458
+ family: string;
1459
+ }>>;
1440
1460
  }, "strip", import("zod").ZodTypeAny, {
1441
1461
  appearance?: import("../../properties/thumbnails.js").ThumbnailAppearance | undefined;
1442
1462
  background?: string | undefined;
1463
+ fonts?: {
1464
+ family: string;
1465
+ } | undefined;
1443
1466
  }, {
1444
1467
  appearance?: import("../../properties/thumbnails.js").ThumbnailAppearance | undefined;
1445
1468
  background?: string | undefined;
1469
+ fonts?: {
1470
+ family: string;
1471
+ } | undefined;
1446
1472
  }>>;
1447
1473
  interaction: import("zod").ZodOptional<import("zod").ZodObject<{
1448
1474
  drilldown: import("zod").ZodOptional<import("zod").ZodBoolean>;
@@ -943,6 +943,13 @@ export declare const willowConfigSchema: z.ZodObject<{
943
943
  }, {
944
944
  apiKey: string;
945
945
  }>>;
946
+ clarity: z.ZodOptional<z.ZodObject<{
947
+ projectId: z.ZodString;
948
+ }, "strip", z.ZodTypeAny, {
949
+ projectId: string;
950
+ }, {
951
+ projectId: string;
952
+ }>>;
946
953
  clearbit: z.ZodOptional<z.ZodObject<{
947
954
  publicApiKey: z.ZodString;
948
955
  }, "strip", z.ZodTypeAny, {
@@ -1095,6 +1102,9 @@ export declare const willowConfigSchema: z.ZodObject<{
1095
1102
  amplitude?: {
1096
1103
  apiKey: string;
1097
1104
  } | undefined;
1105
+ clarity?: {
1106
+ projectId: string;
1107
+ } | undefined;
1098
1108
  clearbit?: {
1099
1109
  publicApiKey: string;
1100
1110
  } | undefined;
@@ -1161,6 +1171,9 @@ export declare const willowConfigSchema: z.ZodObject<{
1161
1171
  amplitude?: {
1162
1172
  apiKey: string;
1163
1173
  } | undefined;
1174
+ clarity?: {
1175
+ projectId: string;
1176
+ } | undefined;
1164
1177
  clearbit?: {
1165
1178
  publicApiKey: string;
1166
1179
  } | undefined;
@@ -1438,12 +1451,25 @@ export declare const willowConfigSchema: z.ZodObject<{
1438
1451
  thumbnails: z.ZodOptional<z.ZodObject<{
1439
1452
  appearance: z.ZodOptional<z.ZodEnum<[import("../properties/thumbnails.js").ThumbnailAppearance.Light, import("../properties/thumbnails.js").ThumbnailAppearance.Dark]>>;
1440
1453
  background: z.ZodOptional<z.ZodString>;
1454
+ fonts: z.ZodOptional<z.ZodObject<{
1455
+ family: z.ZodString;
1456
+ }, "strip", z.ZodTypeAny, {
1457
+ family: string;
1458
+ }, {
1459
+ family: string;
1460
+ }>>;
1441
1461
  }, "strip", z.ZodTypeAny, {
1442
1462
  appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
1443
1463
  background?: string | undefined;
1464
+ fonts?: {
1465
+ family: string;
1466
+ } | undefined;
1444
1467
  }, {
1445
1468
  appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
1446
1469
  background?: string | undefined;
1470
+ fonts?: {
1471
+ family: string;
1472
+ } | undefined;
1447
1473
  }>>;
1448
1474
  interaction: z.ZodOptional<z.ZodObject<{
1449
1475
  drilldown: z.ZodOptional<z.ZodBoolean>;
@@ -1750,6 +1776,9 @@ export declare const willowConfigSchema: z.ZodObject<{
1750
1776
  amplitude?: {
1751
1777
  apiKey: string;
1752
1778
  } | undefined;
1779
+ clarity?: {
1780
+ projectId: string;
1781
+ } | undefined;
1753
1782
  clearbit?: {
1754
1783
  publicApiKey: string;
1755
1784
  } | undefined;
@@ -1851,6 +1880,9 @@ export declare const willowConfigSchema: z.ZodObject<{
1851
1880
  thumbnails?: {
1852
1881
  appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
1853
1882
  background?: string | undefined;
1883
+ fonts?: {
1884
+ family: string;
1885
+ } | undefined;
1854
1886
  } | undefined;
1855
1887
  interaction?: {
1856
1888
  drilldown?: boolean | undefined;
@@ -2152,6 +2184,9 @@ export declare const willowConfigSchema: z.ZodObject<{
2152
2184
  amplitude?: {
2153
2185
  apiKey: string;
2154
2186
  } | undefined;
2187
+ clarity?: {
2188
+ projectId: string;
2189
+ } | undefined;
2155
2190
  clearbit?: {
2156
2191
  publicApiKey: string;
2157
2192
  } | undefined;
@@ -2253,6 +2288,9 @@ export declare const willowConfigSchema: z.ZodObject<{
2253
2288
  thumbnails?: {
2254
2289
  appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
2255
2290
  background?: string | undefined;
2291
+ fonts?: {
2292
+ family: string;
2293
+ } | undefined;
2256
2294
  } | undefined;
2257
2295
  interaction?: {
2258
2296
  drilldown?: boolean | undefined;
@@ -170,6 +170,9 @@ export declare function validateMintConfig(value: unknown): z.SafeParseError<{
170
170
  amplitude?: {
171
171
  apiKey: string;
172
172
  } | undefined;
173
+ clarity?: {
174
+ projectId: string;
175
+ } | undefined;
173
176
  clearbit?: {
174
177
  publicApiKey: string;
175
178
  } | undefined;
@@ -414,6 +417,9 @@ export declare function validateMintConfig(value: unknown): z.SafeParseError<{
414
417
  amplitude?: {
415
418
  apiKey: string;
416
419
  } | undefined;
420
+ clarity?: {
421
+ projectId: string;
422
+ } | undefined;
417
423
  clearbit?: {
418
424
  publicApiKey: string;
419
425
  } | undefined;
@@ -783,6 +789,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
783
789
  amplitude?: {
784
790
  apiKey: string;
785
791
  } | undefined;
792
+ clarity?: {
793
+ projectId: string;
794
+ } | undefined;
786
795
  clearbit?: {
787
796
  publicApiKey: string;
788
797
  } | undefined;
@@ -884,6 +893,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
884
893
  thumbnails?: {
885
894
  appearance?: import("../index.js").ThumbnailAppearance | undefined;
886
895
  background?: string | undefined;
896
+ fonts?: {
897
+ family: string;
898
+ } | undefined;
887
899
  } | undefined;
888
900
  interaction?: {
889
901
  drilldown?: boolean | undefined;
@@ -1185,6 +1197,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1185
1197
  amplitude?: {
1186
1198
  apiKey: string;
1187
1199
  } | undefined;
1200
+ clarity?: {
1201
+ projectId: string;
1202
+ } | undefined;
1188
1203
  clearbit?: {
1189
1204
  publicApiKey: string;
1190
1205
  } | undefined;
@@ -1286,6 +1301,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1286
1301
  thumbnails?: {
1287
1302
  appearance?: import("../index.js").ThumbnailAppearance | undefined;
1288
1303
  background?: string | undefined;
1304
+ fonts?: {
1305
+ family: string;
1306
+ } | undefined;
1289
1307
  } | undefined;
1290
1308
  interaction?: {
1291
1309
  drilldown?: boolean | undefined;
@@ -1587,6 +1605,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1587
1605
  amplitude?: {
1588
1606
  apiKey: string;
1589
1607
  } | undefined;
1608
+ clarity?: {
1609
+ projectId: string;
1610
+ } | undefined;
1590
1611
  clearbit?: {
1591
1612
  publicApiKey: string;
1592
1613
  } | undefined;
@@ -1688,6 +1709,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1688
1709
  thumbnails?: {
1689
1710
  appearance?: import("../index.js").ThumbnailAppearance | undefined;
1690
1711
  background?: string | undefined;
1712
+ fonts?: {
1713
+ family: string;
1714
+ } | undefined;
1691
1715
  } | undefined;
1692
1716
  interaction?: {
1693
1717
  drilldown?: boolean | undefined;
@@ -1989,6 +2013,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
1989
2013
  amplitude?: {
1990
2014
  apiKey: string;
1991
2015
  } | undefined;
2016
+ clarity?: {
2017
+ projectId: string;
2018
+ } | undefined;
1992
2019
  clearbit?: {
1993
2020
  publicApiKey: string;
1994
2021
  } | undefined;
@@ -2090,6 +2117,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2090
2117
  thumbnails?: {
2091
2118
  appearance?: import("../index.js").ThumbnailAppearance | undefined;
2092
2119
  background?: string | undefined;
2120
+ fonts?: {
2121
+ family: string;
2122
+ } | undefined;
2093
2123
  } | undefined;
2094
2124
  interaction?: {
2095
2125
  drilldown?: boolean | undefined;
@@ -2391,6 +2421,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2391
2421
  amplitude?: {
2392
2422
  apiKey: string;
2393
2423
  } | undefined;
2424
+ clarity?: {
2425
+ projectId: string;
2426
+ } | undefined;
2394
2427
  clearbit?: {
2395
2428
  publicApiKey: string;
2396
2429
  } | undefined;
@@ -2492,6 +2525,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2492
2525
  thumbnails?: {
2493
2526
  appearance?: import("../index.js").ThumbnailAppearance | undefined;
2494
2527
  background?: string | undefined;
2528
+ fonts?: {
2529
+ family: string;
2530
+ } | undefined;
2495
2531
  } | undefined;
2496
2532
  interaction?: {
2497
2533
  drilldown?: boolean | undefined;
@@ -2793,6 +2829,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2793
2829
  amplitude?: {
2794
2830
  apiKey: string;
2795
2831
  } | undefined;
2832
+ clarity?: {
2833
+ projectId: string;
2834
+ } | undefined;
2796
2835
  clearbit?: {
2797
2836
  publicApiKey: string;
2798
2837
  } | undefined;
@@ -2894,6 +2933,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
2894
2933
  thumbnails?: {
2895
2934
  appearance?: import("../index.js").ThumbnailAppearance | undefined;
2896
2935
  background?: string | undefined;
2936
+ fonts?: {
2937
+ family: string;
2938
+ } | undefined;
2897
2939
  } | undefined;
2898
2940
  interaction?: {
2899
2941
  drilldown?: boolean | undefined;
@@ -3195,6 +3237,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
3195
3237
  amplitude?: {
3196
3238
  apiKey: string;
3197
3239
  } | undefined;
3240
+ clarity?: {
3241
+ projectId: string;
3242
+ } | undefined;
3198
3243
  clearbit?: {
3199
3244
  publicApiKey: string;
3200
3245
  } | undefined;
@@ -3296,6 +3341,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
3296
3341
  thumbnails?: {
3297
3342
  appearance?: import("../index.js").ThumbnailAppearance | undefined;
3298
3343
  background?: string | undefined;
3344
+ fonts?: {
3345
+ family: string;
3346
+ } | undefined;
3299
3347
  } | undefined;
3300
3348
  interaction?: {
3301
3349
  drilldown?: boolean | undefined;
@@ -3600,6 +3648,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
3600
3648
  amplitude?: {
3601
3649
  apiKey: string;
3602
3650
  } | undefined;
3651
+ clarity?: {
3652
+ projectId: string;
3653
+ } | undefined;
3603
3654
  clearbit?: {
3604
3655
  publicApiKey: string;
3605
3656
  } | undefined;
@@ -3701,6 +3752,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
3701
3752
  thumbnails?: {
3702
3753
  appearance?: import("../index.js").ThumbnailAppearance | undefined;
3703
3754
  background?: string | undefined;
3755
+ fonts?: {
3756
+ family: string;
3757
+ } | undefined;
3704
3758
  } | undefined;
3705
3759
  interaction?: {
3706
3760
  drilldown?: boolean | undefined;
@@ -4002,6 +4056,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
4002
4056
  amplitude?: {
4003
4057
  apiKey: string;
4004
4058
  } | undefined;
4059
+ clarity?: {
4060
+ projectId: string;
4061
+ } | undefined;
4005
4062
  clearbit?: {
4006
4063
  publicApiKey: string;
4007
4064
  } | undefined;
@@ -4103,6 +4160,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
4103
4160
  thumbnails?: {
4104
4161
  appearance?: import("../index.js").ThumbnailAppearance | undefined;
4105
4162
  background?: string | undefined;
4163
+ fonts?: {
4164
+ family: string;
4165
+ } | undefined;
4106
4166
  } | undefined;
4107
4167
  interaction?: {
4108
4168
  drilldown?: boolean | undefined;
@@ -4404,6 +4464,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
4404
4464
  amplitude?: {
4405
4465
  apiKey: string;
4406
4466
  } | undefined;
4467
+ clarity?: {
4468
+ projectId: string;
4469
+ } | undefined;
4407
4470
  clearbit?: {
4408
4471
  publicApiKey: string;
4409
4472
  } | undefined;
@@ -4505,6 +4568,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
4505
4568
  thumbnails?: {
4506
4569
  appearance?: import("../index.js").ThumbnailAppearance | undefined;
4507
4570
  background?: string | undefined;
4571
+ fonts?: {
4572
+ family: string;
4573
+ } | undefined;
4508
4574
  } | undefined;
4509
4575
  interaction?: {
4510
4576
  drilldown?: boolean | undefined;
@@ -4806,6 +4872,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
4806
4872
  amplitude?: {
4807
4873
  apiKey: string;
4808
4874
  } | undefined;
4875
+ clarity?: {
4876
+ projectId: string;
4877
+ } | undefined;
4809
4878
  clearbit?: {
4810
4879
  publicApiKey: string;
4811
4880
  } | undefined;
@@ -4907,6 +4976,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
4907
4976
  thumbnails?: {
4908
4977
  appearance?: import("../index.js").ThumbnailAppearance | undefined;
4909
4978
  background?: string | undefined;
4979
+ fonts?: {
4980
+ family: string;
4981
+ } | undefined;
4910
4982
  } | undefined;
4911
4983
  interaction?: {
4912
4984
  drilldown?: boolean | undefined;
@@ -5208,6 +5280,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
5208
5280
  amplitude?: {
5209
5281
  apiKey: string;
5210
5282
  } | undefined;
5283
+ clarity?: {
5284
+ projectId: string;
5285
+ } | undefined;
5211
5286
  clearbit?: {
5212
5287
  publicApiKey: string;
5213
5288
  } | undefined;
@@ -5309,6 +5384,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
5309
5384
  thumbnails?: {
5310
5385
  appearance?: import("../index.js").ThumbnailAppearance | undefined;
5311
5386
  background?: string | undefined;
5387
+ fonts?: {
5388
+ family: string;
5389
+ } | undefined;
5312
5390
  } | undefined;
5313
5391
  interaction?: {
5314
5392
  drilldown?: boolean | undefined;
@@ -5610,6 +5688,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
5610
5688
  amplitude?: {
5611
5689
  apiKey: string;
5612
5690
  } | undefined;
5691
+ clarity?: {
5692
+ projectId: string;
5693
+ } | undefined;
5613
5694
  clearbit?: {
5614
5695
  publicApiKey: string;
5615
5696
  } | undefined;
@@ -5711,6 +5792,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
5711
5792
  thumbnails?: {
5712
5793
  appearance?: import("../index.js").ThumbnailAppearance | undefined;
5713
5794
  background?: string | undefined;
5795
+ fonts?: {
5796
+ family: string;
5797
+ } | undefined;
5714
5798
  } | undefined;
5715
5799
  interaction?: {
5716
5800
  drilldown?: boolean | undefined;
@@ -6012,6 +6096,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
6012
6096
  amplitude?: {
6013
6097
  apiKey: string;
6014
6098
  } | undefined;
6099
+ clarity?: {
6100
+ projectId: string;
6101
+ } | undefined;
6015
6102
  clearbit?: {
6016
6103
  publicApiKey: string;
6017
6104
  } | undefined;
@@ -6113,6 +6200,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
6113
6200
  thumbnails?: {
6114
6201
  appearance?: import("../index.js").ThumbnailAppearance | undefined;
6115
6202
  background?: string | undefined;
6203
+ fonts?: {
6204
+ family: string;
6205
+ } | undefined;
6116
6206
  } | undefined;
6117
6207
  interaction?: {
6118
6208
  drilldown?: boolean | undefined;