@mintlify/validation 0.1.517 → 0.1.519
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 +35 -0
- package/dist/mint-config/schemas/v2/properties/styling.d.ts +3 -0
- package/dist/mint-config/schemas/v2/properties/styling.js +4 -0
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +5 -0
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +5 -0
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +5 -0
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +5 -0
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +5 -0
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +5 -0
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +3 -0
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +5 -0
- package/dist/mint-config/validateConfig.d.ts +14 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/serverStaticProps.d.ts +2 -0
- package/package.json +2 -2
|
@@ -907,6 +907,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
907
907
|
custom?: string[] | undefined;
|
|
908
908
|
} | undefined;
|
|
909
909
|
}>]>;
|
|
910
|
+
latex: z.ZodOptional<z.ZodBoolean>;
|
|
910
911
|
}, "strip", z.ZodTypeAny, {
|
|
911
912
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
912
913
|
codeblocks?: "dark" | "system" | {
|
|
@@ -921,6 +922,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
921
922
|
custom?: string[] | undefined;
|
|
922
923
|
} | undefined;
|
|
923
924
|
} | undefined;
|
|
925
|
+
latex?: boolean | undefined;
|
|
924
926
|
}, {
|
|
925
927
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
926
928
|
codeblocks?: "dark" | "system" | {
|
|
@@ -935,6 +937,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
935
937
|
custom?: string[] | undefined;
|
|
936
938
|
} | undefined;
|
|
937
939
|
} | undefined;
|
|
940
|
+
latex?: boolean | undefined;
|
|
938
941
|
}>>;
|
|
939
942
|
redirects: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
940
943
|
source: z.ZodString;
|
|
@@ -1791,6 +1794,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1791
1794
|
custom?: string[] | undefined;
|
|
1792
1795
|
} | undefined;
|
|
1793
1796
|
} | undefined;
|
|
1797
|
+
latex?: boolean | undefined;
|
|
1794
1798
|
} | undefined;
|
|
1795
1799
|
redirects?: {
|
|
1796
1800
|
source: string;
|
|
@@ -2202,6 +2206,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2202
2206
|
custom?: string[] | undefined;
|
|
2203
2207
|
} | undefined;
|
|
2204
2208
|
} | undefined;
|
|
2209
|
+
latex?: boolean | undefined;
|
|
2205
2210
|
} | undefined;
|
|
2206
2211
|
redirects?: {
|
|
2207
2212
|
source: string;
|
|
@@ -3228,6 +3233,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3228
3233
|
custom?: string[] | undefined;
|
|
3229
3234
|
} | undefined;
|
|
3230
3235
|
}>]>;
|
|
3236
|
+
latex: z.ZodOptional<z.ZodBoolean>;
|
|
3231
3237
|
}, "strip", z.ZodTypeAny, {
|
|
3232
3238
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
3233
3239
|
codeblocks?: "dark" | "system" | {
|
|
@@ -3242,6 +3248,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3242
3248
|
custom?: string[] | undefined;
|
|
3243
3249
|
} | undefined;
|
|
3244
3250
|
} | undefined;
|
|
3251
|
+
latex?: boolean | undefined;
|
|
3245
3252
|
}, {
|
|
3246
3253
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
3247
3254
|
codeblocks?: "dark" | "system" | {
|
|
@@ -3256,6 +3263,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3256
3263
|
custom?: string[] | undefined;
|
|
3257
3264
|
} | undefined;
|
|
3258
3265
|
} | undefined;
|
|
3266
|
+
latex?: boolean | undefined;
|
|
3259
3267
|
}>>;
|
|
3260
3268
|
redirects: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
3261
3269
|
source: z.ZodString;
|
|
@@ -4112,6 +4120,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4112
4120
|
custom?: string[] | undefined;
|
|
4113
4121
|
} | undefined;
|
|
4114
4122
|
} | undefined;
|
|
4123
|
+
latex?: boolean | undefined;
|
|
4115
4124
|
} | undefined;
|
|
4116
4125
|
redirects?: {
|
|
4117
4126
|
source: string;
|
|
@@ -4523,6 +4532,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4523
4532
|
custom?: string[] | undefined;
|
|
4524
4533
|
} | undefined;
|
|
4525
4534
|
} | undefined;
|
|
4535
|
+
latex?: boolean | undefined;
|
|
4526
4536
|
} | undefined;
|
|
4527
4537
|
redirects?: {
|
|
4528
4538
|
source: string;
|
|
@@ -5549,6 +5559,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5549
5559
|
custom?: string[] | undefined;
|
|
5550
5560
|
} | undefined;
|
|
5551
5561
|
}>]>;
|
|
5562
|
+
latex: z.ZodOptional<z.ZodBoolean>;
|
|
5552
5563
|
}, "strip", z.ZodTypeAny, {
|
|
5553
5564
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
5554
5565
|
codeblocks?: "dark" | "system" | {
|
|
@@ -5563,6 +5574,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5563
5574
|
custom?: string[] | undefined;
|
|
5564
5575
|
} | undefined;
|
|
5565
5576
|
} | undefined;
|
|
5577
|
+
latex?: boolean | undefined;
|
|
5566
5578
|
}, {
|
|
5567
5579
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
5568
5580
|
codeblocks?: "dark" | "system" | {
|
|
@@ -5577,6 +5589,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5577
5589
|
custom?: string[] | undefined;
|
|
5578
5590
|
} | undefined;
|
|
5579
5591
|
} | undefined;
|
|
5592
|
+
latex?: boolean | undefined;
|
|
5580
5593
|
}>>;
|
|
5581
5594
|
redirects: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
5582
5595
|
source: z.ZodString;
|
|
@@ -6433,6 +6446,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6433
6446
|
custom?: string[] | undefined;
|
|
6434
6447
|
} | undefined;
|
|
6435
6448
|
} | undefined;
|
|
6449
|
+
latex?: boolean | undefined;
|
|
6436
6450
|
} | undefined;
|
|
6437
6451
|
redirects?: {
|
|
6438
6452
|
source: string;
|
|
@@ -6844,6 +6858,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6844
6858
|
custom?: string[] | undefined;
|
|
6845
6859
|
} | undefined;
|
|
6846
6860
|
} | undefined;
|
|
6861
|
+
latex?: boolean | undefined;
|
|
6847
6862
|
} | undefined;
|
|
6848
6863
|
redirects?: {
|
|
6849
6864
|
source: string;
|
|
@@ -7870,6 +7885,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7870
7885
|
custom?: string[] | undefined;
|
|
7871
7886
|
} | undefined;
|
|
7872
7887
|
}>]>;
|
|
7888
|
+
latex: z.ZodOptional<z.ZodBoolean>;
|
|
7873
7889
|
}, "strip", z.ZodTypeAny, {
|
|
7874
7890
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
7875
7891
|
codeblocks?: "dark" | "system" | {
|
|
@@ -7884,6 +7900,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7884
7900
|
custom?: string[] | undefined;
|
|
7885
7901
|
} | undefined;
|
|
7886
7902
|
} | undefined;
|
|
7903
|
+
latex?: boolean | undefined;
|
|
7887
7904
|
}, {
|
|
7888
7905
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
7889
7906
|
codeblocks?: "dark" | "system" | {
|
|
@@ -7898,6 +7915,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7898
7915
|
custom?: string[] | undefined;
|
|
7899
7916
|
} | undefined;
|
|
7900
7917
|
} | undefined;
|
|
7918
|
+
latex?: boolean | undefined;
|
|
7901
7919
|
}>>;
|
|
7902
7920
|
redirects: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
7903
7921
|
source: z.ZodString;
|
|
@@ -8754,6 +8772,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8754
8772
|
custom?: string[] | undefined;
|
|
8755
8773
|
} | undefined;
|
|
8756
8774
|
} | undefined;
|
|
8775
|
+
latex?: boolean | undefined;
|
|
8757
8776
|
} | undefined;
|
|
8758
8777
|
redirects?: {
|
|
8759
8778
|
source: string;
|
|
@@ -9165,6 +9184,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9165
9184
|
custom?: string[] | undefined;
|
|
9166
9185
|
} | undefined;
|
|
9167
9186
|
} | undefined;
|
|
9187
|
+
latex?: boolean | undefined;
|
|
9168
9188
|
} | undefined;
|
|
9169
9189
|
redirects?: {
|
|
9170
9190
|
source: string;
|
|
@@ -10191,6 +10211,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10191
10211
|
custom?: string[] | undefined;
|
|
10192
10212
|
} | undefined;
|
|
10193
10213
|
}>]>;
|
|
10214
|
+
latex: z.ZodOptional<z.ZodBoolean>;
|
|
10194
10215
|
}, "strip", z.ZodTypeAny, {
|
|
10195
10216
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
10196
10217
|
codeblocks?: "dark" | "system" | {
|
|
@@ -10205,6 +10226,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10205
10226
|
custom?: string[] | undefined;
|
|
10206
10227
|
} | undefined;
|
|
10207
10228
|
} | undefined;
|
|
10229
|
+
latex?: boolean | undefined;
|
|
10208
10230
|
}, {
|
|
10209
10231
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
10210
10232
|
codeblocks?: "dark" | "system" | {
|
|
@@ -10219,6 +10241,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10219
10241
|
custom?: string[] | undefined;
|
|
10220
10242
|
} | undefined;
|
|
10221
10243
|
} | undefined;
|
|
10244
|
+
latex?: boolean | undefined;
|
|
10222
10245
|
}>>;
|
|
10223
10246
|
redirects: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
10224
10247
|
source: z.ZodString;
|
|
@@ -11075,6 +11098,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11075
11098
|
custom?: string[] | undefined;
|
|
11076
11099
|
} | undefined;
|
|
11077
11100
|
} | undefined;
|
|
11101
|
+
latex?: boolean | undefined;
|
|
11078
11102
|
} | undefined;
|
|
11079
11103
|
redirects?: {
|
|
11080
11104
|
source: string;
|
|
@@ -11486,6 +11510,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11486
11510
|
custom?: string[] | undefined;
|
|
11487
11511
|
} | undefined;
|
|
11488
11512
|
} | undefined;
|
|
11513
|
+
latex?: boolean | undefined;
|
|
11489
11514
|
} | undefined;
|
|
11490
11515
|
redirects?: {
|
|
11491
11516
|
source: string;
|
|
@@ -12512,6 +12537,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12512
12537
|
custom?: string[] | undefined;
|
|
12513
12538
|
} | undefined;
|
|
12514
12539
|
}>]>;
|
|
12540
|
+
latex: z.ZodOptional<z.ZodBoolean>;
|
|
12515
12541
|
}, "strip", z.ZodTypeAny, {
|
|
12516
12542
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
12517
12543
|
codeblocks?: "dark" | "system" | {
|
|
@@ -12526,6 +12552,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12526
12552
|
custom?: string[] | undefined;
|
|
12527
12553
|
} | undefined;
|
|
12528
12554
|
} | undefined;
|
|
12555
|
+
latex?: boolean | undefined;
|
|
12529
12556
|
}, {
|
|
12530
12557
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
12531
12558
|
codeblocks?: "dark" | "system" | {
|
|
@@ -12540,6 +12567,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12540
12567
|
custom?: string[] | undefined;
|
|
12541
12568
|
} | undefined;
|
|
12542
12569
|
} | undefined;
|
|
12570
|
+
latex?: boolean | undefined;
|
|
12543
12571
|
}>>;
|
|
12544
12572
|
redirects: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
12545
12573
|
source: z.ZodString;
|
|
@@ -13396,6 +13424,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13396
13424
|
custom?: string[] | undefined;
|
|
13397
13425
|
} | undefined;
|
|
13398
13426
|
} | undefined;
|
|
13427
|
+
latex?: boolean | undefined;
|
|
13399
13428
|
} | undefined;
|
|
13400
13429
|
redirects?: {
|
|
13401
13430
|
source: string;
|
|
@@ -13807,6 +13836,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13807
13836
|
custom?: string[] | undefined;
|
|
13808
13837
|
} | undefined;
|
|
13809
13838
|
} | undefined;
|
|
13839
|
+
latex?: boolean | undefined;
|
|
13810
13840
|
} | undefined;
|
|
13811
13841
|
redirects?: {
|
|
13812
13842
|
source: string;
|
|
@@ -14833,6 +14863,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14833
14863
|
custom?: string[] | undefined;
|
|
14834
14864
|
} | undefined;
|
|
14835
14865
|
}>]>;
|
|
14866
|
+
latex: z.ZodOptional<z.ZodBoolean>;
|
|
14836
14867
|
}, "strip", z.ZodTypeAny, {
|
|
14837
14868
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
14838
14869
|
codeblocks?: "dark" | "system" | {
|
|
@@ -14847,6 +14878,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14847
14878
|
custom?: string[] | undefined;
|
|
14848
14879
|
} | undefined;
|
|
14849
14880
|
} | undefined;
|
|
14881
|
+
latex?: boolean | undefined;
|
|
14850
14882
|
}, {
|
|
14851
14883
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
14852
14884
|
codeblocks?: "dark" | "system" | {
|
|
@@ -14861,6 +14893,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14861
14893
|
custom?: string[] | undefined;
|
|
14862
14894
|
} | undefined;
|
|
14863
14895
|
} | undefined;
|
|
14896
|
+
latex?: boolean | undefined;
|
|
14864
14897
|
}>>;
|
|
14865
14898
|
redirects: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
14866
14899
|
source: z.ZodString;
|
|
@@ -15717,6 +15750,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15717
15750
|
custom?: string[] | undefined;
|
|
15718
15751
|
} | undefined;
|
|
15719
15752
|
} | undefined;
|
|
15753
|
+
latex?: boolean | undefined;
|
|
15720
15754
|
} | undefined;
|
|
15721
15755
|
redirects?: {
|
|
15722
15756
|
source: string;
|
|
@@ -16128,6 +16162,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16128
16162
|
custom?: string[] | undefined;
|
|
16129
16163
|
} | undefined;
|
|
16130
16164
|
} | undefined;
|
|
16165
|
+
latex?: boolean | undefined;
|
|
16131
16166
|
} | undefined;
|
|
16132
16167
|
redirects?: {
|
|
16133
16168
|
source: string;
|
|
@@ -42,6 +42,7 @@ export declare const stylingSchema: z.ZodObject<{
|
|
|
42
42
|
custom?: string[] | undefined;
|
|
43
43
|
} | undefined;
|
|
44
44
|
}>]>;
|
|
45
|
+
latex: z.ZodOptional<z.ZodBoolean>;
|
|
45
46
|
}, "strip", z.ZodTypeAny, {
|
|
46
47
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
47
48
|
codeblocks?: "dark" | "system" | {
|
|
@@ -56,6 +57,7 @@ export declare const stylingSchema: z.ZodObject<{
|
|
|
56
57
|
custom?: string[] | undefined;
|
|
57
58
|
} | undefined;
|
|
58
59
|
} | undefined;
|
|
60
|
+
latex?: boolean | undefined;
|
|
59
61
|
}, {
|
|
60
62
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
61
63
|
codeblocks?: "dark" | "system" | {
|
|
@@ -70,4 +72,5 @@ export declare const stylingSchema: z.ZodObject<{
|
|
|
70
72
|
custom?: string[] | undefined;
|
|
71
73
|
} | undefined;
|
|
72
74
|
} | undefined;
|
|
75
|
+
latex?: boolean | undefined;
|
|
73
76
|
}>;
|
|
@@ -30,5 +30,9 @@ export const stylingSchema = z
|
|
|
30
30
|
}),
|
|
31
31
|
])
|
|
32
32
|
.describe('The codeblock theme configuration. Defaults to `system`. To use a built-in shiki theme, add the theme name as "theme" in the object. To use different shiki themes for light and dark modes, add "themes" in the object with "dark" and "light" keys.'),
|
|
33
|
+
latex: z
|
|
34
|
+
.boolean()
|
|
35
|
+
.optional()
|
|
36
|
+
.describe('Whether to include latex styling, overriding our default latex detection'),
|
|
33
37
|
})
|
|
34
38
|
.describe('Styling configurations');
|
|
@@ -904,6 +904,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
904
904
|
custom?: string[] | undefined;
|
|
905
905
|
} | undefined;
|
|
906
906
|
}>]>;
|
|
907
|
+
latex: z.ZodOptional<z.ZodBoolean>;
|
|
907
908
|
}, "strip", z.ZodTypeAny, {
|
|
908
909
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
909
910
|
codeblocks?: "dark" | "system" | {
|
|
@@ -918,6 +919,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
918
919
|
custom?: string[] | undefined;
|
|
919
920
|
} | undefined;
|
|
920
921
|
} | undefined;
|
|
922
|
+
latex?: boolean | undefined;
|
|
921
923
|
}, {
|
|
922
924
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
923
925
|
codeblocks?: "dark" | "system" | {
|
|
@@ -932,6 +934,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
932
934
|
custom?: string[] | undefined;
|
|
933
935
|
} | undefined;
|
|
934
936
|
} | undefined;
|
|
937
|
+
latex?: boolean | undefined;
|
|
935
938
|
}>>;
|
|
936
939
|
redirects: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
937
940
|
source: z.ZodString;
|
|
@@ -1788,6 +1791,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1788
1791
|
custom?: string[] | undefined;
|
|
1789
1792
|
} | undefined;
|
|
1790
1793
|
} | undefined;
|
|
1794
|
+
latex?: boolean | undefined;
|
|
1791
1795
|
} | undefined;
|
|
1792
1796
|
redirects?: {
|
|
1793
1797
|
source: string;
|
|
@@ -2199,6 +2203,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
2199
2203
|
custom?: string[] | undefined;
|
|
2200
2204
|
} | undefined;
|
|
2201
2205
|
} | undefined;
|
|
2206
|
+
latex?: boolean | undefined;
|
|
2202
2207
|
} | undefined;
|
|
2203
2208
|
redirects?: {
|
|
2204
2209
|
source: string;
|
|
@@ -904,6 +904,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
904
904
|
custom?: string[] | undefined;
|
|
905
905
|
} | undefined;
|
|
906
906
|
}>]>;
|
|
907
|
+
latex: z.ZodOptional<z.ZodBoolean>;
|
|
907
908
|
}, "strip", z.ZodTypeAny, {
|
|
908
909
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
909
910
|
codeblocks?: "dark" | "system" | {
|
|
@@ -918,6 +919,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
918
919
|
custom?: string[] | undefined;
|
|
919
920
|
} | undefined;
|
|
920
921
|
} | undefined;
|
|
922
|
+
latex?: boolean | undefined;
|
|
921
923
|
}, {
|
|
922
924
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
923
925
|
codeblocks?: "dark" | "system" | {
|
|
@@ -932,6 +934,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
932
934
|
custom?: string[] | undefined;
|
|
933
935
|
} | undefined;
|
|
934
936
|
} | undefined;
|
|
937
|
+
latex?: boolean | undefined;
|
|
935
938
|
}>>;
|
|
936
939
|
redirects: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
937
940
|
source: z.ZodString;
|
|
@@ -1788,6 +1791,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1788
1791
|
custom?: string[] | undefined;
|
|
1789
1792
|
} | undefined;
|
|
1790
1793
|
} | undefined;
|
|
1794
|
+
latex?: boolean | undefined;
|
|
1791
1795
|
} | undefined;
|
|
1792
1796
|
redirects?: {
|
|
1793
1797
|
source: string;
|
|
@@ -2199,6 +2203,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
2199
2203
|
custom?: string[] | undefined;
|
|
2200
2204
|
} | undefined;
|
|
2201
2205
|
} | undefined;
|
|
2206
|
+
latex?: boolean | undefined;
|
|
2202
2207
|
} | undefined;
|
|
2203
2208
|
redirects?: {
|
|
2204
2209
|
source: string;
|
|
@@ -904,6 +904,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
904
904
|
custom?: string[] | undefined;
|
|
905
905
|
} | undefined;
|
|
906
906
|
}>]>;
|
|
907
|
+
latex: z.ZodOptional<z.ZodBoolean>;
|
|
907
908
|
}, "strip", z.ZodTypeAny, {
|
|
908
909
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
909
910
|
codeblocks?: "dark" | "system" | {
|
|
@@ -918,6 +919,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
918
919
|
custom?: string[] | undefined;
|
|
919
920
|
} | undefined;
|
|
920
921
|
} | undefined;
|
|
922
|
+
latex?: boolean | undefined;
|
|
921
923
|
}, {
|
|
922
924
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
923
925
|
codeblocks?: "dark" | "system" | {
|
|
@@ -932,6 +934,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
932
934
|
custom?: string[] | undefined;
|
|
933
935
|
} | undefined;
|
|
934
936
|
} | undefined;
|
|
937
|
+
latex?: boolean | undefined;
|
|
935
938
|
}>>;
|
|
936
939
|
redirects: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
937
940
|
source: z.ZodString;
|
|
@@ -1788,6 +1791,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1788
1791
|
custom?: string[] | undefined;
|
|
1789
1792
|
} | undefined;
|
|
1790
1793
|
} | undefined;
|
|
1794
|
+
latex?: boolean | undefined;
|
|
1791
1795
|
} | undefined;
|
|
1792
1796
|
redirects?: {
|
|
1793
1797
|
source: string;
|
|
@@ -2199,6 +2203,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
2199
2203
|
custom?: string[] | undefined;
|
|
2200
2204
|
} | undefined;
|
|
2201
2205
|
} | undefined;
|
|
2206
|
+
latex?: boolean | undefined;
|
|
2202
2207
|
} | undefined;
|
|
2203
2208
|
redirects?: {
|
|
2204
2209
|
source: string;
|
|
@@ -904,6 +904,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
904
904
|
custom?: string[] | undefined;
|
|
905
905
|
} | undefined;
|
|
906
906
|
}>]>;
|
|
907
|
+
latex: z.ZodOptional<z.ZodBoolean>;
|
|
907
908
|
}, "strip", z.ZodTypeAny, {
|
|
908
909
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
909
910
|
codeblocks?: "dark" | "system" | {
|
|
@@ -918,6 +919,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
918
919
|
custom?: string[] | undefined;
|
|
919
920
|
} | undefined;
|
|
920
921
|
} | undefined;
|
|
922
|
+
latex?: boolean | undefined;
|
|
921
923
|
}, {
|
|
922
924
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
923
925
|
codeblocks?: "dark" | "system" | {
|
|
@@ -932,6 +934,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
932
934
|
custom?: string[] | undefined;
|
|
933
935
|
} | undefined;
|
|
934
936
|
} | undefined;
|
|
937
|
+
latex?: boolean | undefined;
|
|
935
938
|
}>>;
|
|
936
939
|
redirects: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
937
940
|
source: z.ZodString;
|
|
@@ -1788,6 +1791,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1788
1791
|
custom?: string[] | undefined;
|
|
1789
1792
|
} | undefined;
|
|
1790
1793
|
} | undefined;
|
|
1794
|
+
latex?: boolean | undefined;
|
|
1791
1795
|
} | undefined;
|
|
1792
1796
|
redirects?: {
|
|
1793
1797
|
source: string;
|
|
@@ -2199,6 +2203,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
2199
2203
|
custom?: string[] | undefined;
|
|
2200
2204
|
} | undefined;
|
|
2201
2205
|
} | undefined;
|
|
2206
|
+
latex?: boolean | undefined;
|
|
2202
2207
|
} | undefined;
|
|
2203
2208
|
redirects?: {
|
|
2204
2209
|
source: string;
|
|
@@ -904,6 +904,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
904
904
|
custom?: string[] | undefined;
|
|
905
905
|
} | undefined;
|
|
906
906
|
}>]>;
|
|
907
|
+
latex: z.ZodOptional<z.ZodBoolean>;
|
|
907
908
|
}, "strip", z.ZodTypeAny, {
|
|
908
909
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
909
910
|
codeblocks?: "dark" | "system" | {
|
|
@@ -918,6 +919,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
918
919
|
custom?: string[] | undefined;
|
|
919
920
|
} | undefined;
|
|
920
921
|
} | undefined;
|
|
922
|
+
latex?: boolean | undefined;
|
|
921
923
|
}, {
|
|
922
924
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
923
925
|
codeblocks?: "dark" | "system" | {
|
|
@@ -932,6 +934,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
932
934
|
custom?: string[] | undefined;
|
|
933
935
|
} | undefined;
|
|
934
936
|
} | undefined;
|
|
937
|
+
latex?: boolean | undefined;
|
|
935
938
|
}>>;
|
|
936
939
|
redirects: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
937
940
|
source: z.ZodString;
|
|
@@ -1788,6 +1791,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1788
1791
|
custom?: string[] | undefined;
|
|
1789
1792
|
} | undefined;
|
|
1790
1793
|
} | undefined;
|
|
1794
|
+
latex?: boolean | undefined;
|
|
1791
1795
|
} | undefined;
|
|
1792
1796
|
redirects?: {
|
|
1793
1797
|
source: string;
|
|
@@ -2199,6 +2203,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
2199
2203
|
custom?: string[] | undefined;
|
|
2200
2204
|
} | undefined;
|
|
2201
2205
|
} | undefined;
|
|
2206
|
+
latex?: boolean | undefined;
|
|
2202
2207
|
} | undefined;
|
|
2203
2208
|
redirects?: {
|
|
2204
2209
|
source: string;
|
|
@@ -904,6 +904,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
904
904
|
custom?: string[] | undefined;
|
|
905
905
|
} | undefined;
|
|
906
906
|
}>]>;
|
|
907
|
+
latex: z.ZodOptional<z.ZodBoolean>;
|
|
907
908
|
}, "strip", z.ZodTypeAny, {
|
|
908
909
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
909
910
|
codeblocks?: "dark" | "system" | {
|
|
@@ -918,6 +919,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
918
919
|
custom?: string[] | undefined;
|
|
919
920
|
} | undefined;
|
|
920
921
|
} | undefined;
|
|
922
|
+
latex?: boolean | undefined;
|
|
921
923
|
}, {
|
|
922
924
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
923
925
|
codeblocks?: "dark" | "system" | {
|
|
@@ -932,6 +934,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
932
934
|
custom?: string[] | undefined;
|
|
933
935
|
} | undefined;
|
|
934
936
|
} | undefined;
|
|
937
|
+
latex?: boolean | undefined;
|
|
935
938
|
}>>;
|
|
936
939
|
redirects: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
937
940
|
source: z.ZodString;
|
|
@@ -1788,6 +1791,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1788
1791
|
custom?: string[] | undefined;
|
|
1789
1792
|
} | undefined;
|
|
1790
1793
|
} | undefined;
|
|
1794
|
+
latex?: boolean | undefined;
|
|
1791
1795
|
} | undefined;
|
|
1792
1796
|
redirects?: {
|
|
1793
1797
|
source: string;
|
|
@@ -2199,6 +2203,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
2199
2203
|
custom?: string[] | undefined;
|
|
2200
2204
|
} | undefined;
|
|
2201
2205
|
} | undefined;
|
|
2206
|
+
latex?: boolean | undefined;
|
|
2202
2207
|
} | undefined;
|
|
2203
2208
|
redirects?: {
|
|
2204
2209
|
source: string;
|
|
@@ -903,6 +903,7 @@ export declare const standardConfigSchema: {
|
|
|
903
903
|
custom?: string[] | undefined;
|
|
904
904
|
} | undefined;
|
|
905
905
|
}>]>;
|
|
906
|
+
latex: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
906
907
|
}, "strip", import("zod").ZodTypeAny, {
|
|
907
908
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
908
909
|
codeblocks?: "dark" | "system" | {
|
|
@@ -917,6 +918,7 @@ export declare const standardConfigSchema: {
|
|
|
917
918
|
custom?: string[] | undefined;
|
|
918
919
|
} | undefined;
|
|
919
920
|
} | undefined;
|
|
921
|
+
latex?: boolean | undefined;
|
|
920
922
|
}, {
|
|
921
923
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
922
924
|
codeblocks?: "dark" | "system" | {
|
|
@@ -931,6 +933,7 @@ export declare const standardConfigSchema: {
|
|
|
931
933
|
custom?: string[] | undefined;
|
|
932
934
|
} | undefined;
|
|
933
935
|
} | undefined;
|
|
936
|
+
latex?: boolean | undefined;
|
|
934
937
|
}>>;
|
|
935
938
|
redirects: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodArray<import("zod").ZodObject<{
|
|
936
939
|
source: import("zod").ZodString;
|
|
@@ -904,6 +904,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
904
904
|
custom?: string[] | undefined;
|
|
905
905
|
} | undefined;
|
|
906
906
|
}>]>;
|
|
907
|
+
latex: z.ZodOptional<z.ZodBoolean>;
|
|
907
908
|
}, "strip", z.ZodTypeAny, {
|
|
908
909
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
909
910
|
codeblocks?: "dark" | "system" | {
|
|
@@ -918,6 +919,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
918
919
|
custom?: string[] | undefined;
|
|
919
920
|
} | undefined;
|
|
920
921
|
} | undefined;
|
|
922
|
+
latex?: boolean | undefined;
|
|
921
923
|
}, {
|
|
922
924
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
923
925
|
codeblocks?: "dark" | "system" | {
|
|
@@ -932,6 +934,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
932
934
|
custom?: string[] | undefined;
|
|
933
935
|
} | undefined;
|
|
934
936
|
} | undefined;
|
|
937
|
+
latex?: boolean | undefined;
|
|
935
938
|
}>>;
|
|
936
939
|
redirects: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
937
940
|
source: z.ZodString;
|
|
@@ -1788,6 +1791,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1788
1791
|
custom?: string[] | undefined;
|
|
1789
1792
|
} | undefined;
|
|
1790
1793
|
} | undefined;
|
|
1794
|
+
latex?: boolean | undefined;
|
|
1791
1795
|
} | undefined;
|
|
1792
1796
|
redirects?: {
|
|
1793
1797
|
source: string;
|
|
@@ -2199,6 +2203,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
2199
2203
|
custom?: string[] | undefined;
|
|
2200
2204
|
} | undefined;
|
|
2201
2205
|
} | undefined;
|
|
2206
|
+
latex?: boolean | undefined;
|
|
2202
2207
|
} | undefined;
|
|
2203
2208
|
redirects?: {
|
|
2204
2209
|
source: string;
|