@mintlify/validation 0.1.463 → 0.1.465
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 +98 -0
- package/dist/mint-config/schemas/v2/properties/errors.d.ts +10 -0
- package/dist/mint-config/schemas/v2/properties/errors.js +5 -0
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +14 -0
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +14 -0
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +14 -0
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +14 -0
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +14 -0
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +14 -0
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +10 -0
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +14 -0
- package/dist/mint-config/validateConfig.d.ts +28 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +3 -3
|
@@ -1183,18 +1183,28 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1183
1183
|
errors: z.ZodOptional<z.ZodObject<{
|
|
1184
1184
|
'404': z.ZodObject<{
|
|
1185
1185
|
redirect: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1186
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1187
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1186
1188
|
}, "strip", z.ZodTypeAny, {
|
|
1187
1189
|
redirect: boolean;
|
|
1190
|
+
title?: string | undefined;
|
|
1191
|
+
description?: string | undefined;
|
|
1188
1192
|
}, {
|
|
1189
1193
|
redirect?: boolean | undefined;
|
|
1194
|
+
title?: string | undefined;
|
|
1195
|
+
description?: string | undefined;
|
|
1190
1196
|
}>;
|
|
1191
1197
|
}, "strip", z.ZodTypeAny, {
|
|
1192
1198
|
'404': {
|
|
1193
1199
|
redirect: boolean;
|
|
1200
|
+
title?: string | undefined;
|
|
1201
|
+
description?: string | undefined;
|
|
1194
1202
|
};
|
|
1195
1203
|
}, {
|
|
1196
1204
|
'404': {
|
|
1197
1205
|
redirect?: boolean | undefined;
|
|
1206
|
+
title?: string | undefined;
|
|
1207
|
+
description?: string | undefined;
|
|
1198
1208
|
};
|
|
1199
1209
|
}>>;
|
|
1200
1210
|
contextual: z.ZodOptional<z.ZodObject<{
|
|
@@ -1741,6 +1751,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1741
1751
|
errors?: {
|
|
1742
1752
|
'404': {
|
|
1743
1753
|
redirect: boolean;
|
|
1754
|
+
title?: string | undefined;
|
|
1755
|
+
description?: string | undefined;
|
|
1744
1756
|
};
|
|
1745
1757
|
} | undefined;
|
|
1746
1758
|
contextual?: {
|
|
@@ -2126,6 +2138,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2126
2138
|
errors?: {
|
|
2127
2139
|
'404': {
|
|
2128
2140
|
redirect?: boolean | undefined;
|
|
2141
|
+
title?: string | undefined;
|
|
2142
|
+
description?: string | undefined;
|
|
2129
2143
|
};
|
|
2130
2144
|
} | undefined;
|
|
2131
2145
|
contextual?: {
|
|
@@ -3340,18 +3354,28 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3340
3354
|
errors: z.ZodOptional<z.ZodObject<{
|
|
3341
3355
|
'404': z.ZodObject<{
|
|
3342
3356
|
redirect: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
3357
|
+
title: z.ZodOptional<z.ZodString>;
|
|
3358
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3343
3359
|
}, "strip", z.ZodTypeAny, {
|
|
3344
3360
|
redirect: boolean;
|
|
3361
|
+
title?: string | undefined;
|
|
3362
|
+
description?: string | undefined;
|
|
3345
3363
|
}, {
|
|
3346
3364
|
redirect?: boolean | undefined;
|
|
3365
|
+
title?: string | undefined;
|
|
3366
|
+
description?: string | undefined;
|
|
3347
3367
|
}>;
|
|
3348
3368
|
}, "strip", z.ZodTypeAny, {
|
|
3349
3369
|
'404': {
|
|
3350
3370
|
redirect: boolean;
|
|
3371
|
+
title?: string | undefined;
|
|
3372
|
+
description?: string | undefined;
|
|
3351
3373
|
};
|
|
3352
3374
|
}, {
|
|
3353
3375
|
'404': {
|
|
3354
3376
|
redirect?: boolean | undefined;
|
|
3377
|
+
title?: string | undefined;
|
|
3378
|
+
description?: string | undefined;
|
|
3355
3379
|
};
|
|
3356
3380
|
}>>;
|
|
3357
3381
|
contextual: z.ZodOptional<z.ZodObject<{
|
|
@@ -3898,6 +3922,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3898
3922
|
errors?: {
|
|
3899
3923
|
'404': {
|
|
3900
3924
|
redirect: boolean;
|
|
3925
|
+
title?: string | undefined;
|
|
3926
|
+
description?: string | undefined;
|
|
3901
3927
|
};
|
|
3902
3928
|
} | undefined;
|
|
3903
3929
|
contextual?: {
|
|
@@ -4283,6 +4309,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4283
4309
|
errors?: {
|
|
4284
4310
|
'404': {
|
|
4285
4311
|
redirect?: boolean | undefined;
|
|
4312
|
+
title?: string | undefined;
|
|
4313
|
+
description?: string | undefined;
|
|
4286
4314
|
};
|
|
4287
4315
|
} | undefined;
|
|
4288
4316
|
contextual?: {
|
|
@@ -5497,18 +5525,28 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5497
5525
|
errors: z.ZodOptional<z.ZodObject<{
|
|
5498
5526
|
'404': z.ZodObject<{
|
|
5499
5527
|
redirect: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
5528
|
+
title: z.ZodOptional<z.ZodString>;
|
|
5529
|
+
description: z.ZodOptional<z.ZodString>;
|
|
5500
5530
|
}, "strip", z.ZodTypeAny, {
|
|
5501
5531
|
redirect: boolean;
|
|
5532
|
+
title?: string | undefined;
|
|
5533
|
+
description?: string | undefined;
|
|
5502
5534
|
}, {
|
|
5503
5535
|
redirect?: boolean | undefined;
|
|
5536
|
+
title?: string | undefined;
|
|
5537
|
+
description?: string | undefined;
|
|
5504
5538
|
}>;
|
|
5505
5539
|
}, "strip", z.ZodTypeAny, {
|
|
5506
5540
|
'404': {
|
|
5507
5541
|
redirect: boolean;
|
|
5542
|
+
title?: string | undefined;
|
|
5543
|
+
description?: string | undefined;
|
|
5508
5544
|
};
|
|
5509
5545
|
}, {
|
|
5510
5546
|
'404': {
|
|
5511
5547
|
redirect?: boolean | undefined;
|
|
5548
|
+
title?: string | undefined;
|
|
5549
|
+
description?: string | undefined;
|
|
5512
5550
|
};
|
|
5513
5551
|
}>>;
|
|
5514
5552
|
contextual: z.ZodOptional<z.ZodObject<{
|
|
@@ -6055,6 +6093,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6055
6093
|
errors?: {
|
|
6056
6094
|
'404': {
|
|
6057
6095
|
redirect: boolean;
|
|
6096
|
+
title?: string | undefined;
|
|
6097
|
+
description?: string | undefined;
|
|
6058
6098
|
};
|
|
6059
6099
|
} | undefined;
|
|
6060
6100
|
contextual?: {
|
|
@@ -6440,6 +6480,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6440
6480
|
errors?: {
|
|
6441
6481
|
'404': {
|
|
6442
6482
|
redirect?: boolean | undefined;
|
|
6483
|
+
title?: string | undefined;
|
|
6484
|
+
description?: string | undefined;
|
|
6443
6485
|
};
|
|
6444
6486
|
} | undefined;
|
|
6445
6487
|
contextual?: {
|
|
@@ -7654,18 +7696,28 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7654
7696
|
errors: z.ZodOptional<z.ZodObject<{
|
|
7655
7697
|
'404': z.ZodObject<{
|
|
7656
7698
|
redirect: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
7699
|
+
title: z.ZodOptional<z.ZodString>;
|
|
7700
|
+
description: z.ZodOptional<z.ZodString>;
|
|
7657
7701
|
}, "strip", z.ZodTypeAny, {
|
|
7658
7702
|
redirect: boolean;
|
|
7703
|
+
title?: string | undefined;
|
|
7704
|
+
description?: string | undefined;
|
|
7659
7705
|
}, {
|
|
7660
7706
|
redirect?: boolean | undefined;
|
|
7707
|
+
title?: string | undefined;
|
|
7708
|
+
description?: string | undefined;
|
|
7661
7709
|
}>;
|
|
7662
7710
|
}, "strip", z.ZodTypeAny, {
|
|
7663
7711
|
'404': {
|
|
7664
7712
|
redirect: boolean;
|
|
7713
|
+
title?: string | undefined;
|
|
7714
|
+
description?: string | undefined;
|
|
7665
7715
|
};
|
|
7666
7716
|
}, {
|
|
7667
7717
|
'404': {
|
|
7668
7718
|
redirect?: boolean | undefined;
|
|
7719
|
+
title?: string | undefined;
|
|
7720
|
+
description?: string | undefined;
|
|
7669
7721
|
};
|
|
7670
7722
|
}>>;
|
|
7671
7723
|
contextual: z.ZodOptional<z.ZodObject<{
|
|
@@ -8212,6 +8264,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8212
8264
|
errors?: {
|
|
8213
8265
|
'404': {
|
|
8214
8266
|
redirect: boolean;
|
|
8267
|
+
title?: string | undefined;
|
|
8268
|
+
description?: string | undefined;
|
|
8215
8269
|
};
|
|
8216
8270
|
} | undefined;
|
|
8217
8271
|
contextual?: {
|
|
@@ -8597,6 +8651,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8597
8651
|
errors?: {
|
|
8598
8652
|
'404': {
|
|
8599
8653
|
redirect?: boolean | undefined;
|
|
8654
|
+
title?: string | undefined;
|
|
8655
|
+
description?: string | undefined;
|
|
8600
8656
|
};
|
|
8601
8657
|
} | undefined;
|
|
8602
8658
|
contextual?: {
|
|
@@ -9811,18 +9867,28 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9811
9867
|
errors: z.ZodOptional<z.ZodObject<{
|
|
9812
9868
|
'404': z.ZodObject<{
|
|
9813
9869
|
redirect: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
9870
|
+
title: z.ZodOptional<z.ZodString>;
|
|
9871
|
+
description: z.ZodOptional<z.ZodString>;
|
|
9814
9872
|
}, "strip", z.ZodTypeAny, {
|
|
9815
9873
|
redirect: boolean;
|
|
9874
|
+
title?: string | undefined;
|
|
9875
|
+
description?: string | undefined;
|
|
9816
9876
|
}, {
|
|
9817
9877
|
redirect?: boolean | undefined;
|
|
9878
|
+
title?: string | undefined;
|
|
9879
|
+
description?: string | undefined;
|
|
9818
9880
|
}>;
|
|
9819
9881
|
}, "strip", z.ZodTypeAny, {
|
|
9820
9882
|
'404': {
|
|
9821
9883
|
redirect: boolean;
|
|
9884
|
+
title?: string | undefined;
|
|
9885
|
+
description?: string | undefined;
|
|
9822
9886
|
};
|
|
9823
9887
|
}, {
|
|
9824
9888
|
'404': {
|
|
9825
9889
|
redirect?: boolean | undefined;
|
|
9890
|
+
title?: string | undefined;
|
|
9891
|
+
description?: string | undefined;
|
|
9826
9892
|
};
|
|
9827
9893
|
}>>;
|
|
9828
9894
|
contextual: z.ZodOptional<z.ZodObject<{
|
|
@@ -10369,6 +10435,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10369
10435
|
errors?: {
|
|
10370
10436
|
'404': {
|
|
10371
10437
|
redirect: boolean;
|
|
10438
|
+
title?: string | undefined;
|
|
10439
|
+
description?: string | undefined;
|
|
10372
10440
|
};
|
|
10373
10441
|
} | undefined;
|
|
10374
10442
|
contextual?: {
|
|
@@ -10754,6 +10822,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10754
10822
|
errors?: {
|
|
10755
10823
|
'404': {
|
|
10756
10824
|
redirect?: boolean | undefined;
|
|
10825
|
+
title?: string | undefined;
|
|
10826
|
+
description?: string | undefined;
|
|
10757
10827
|
};
|
|
10758
10828
|
} | undefined;
|
|
10759
10829
|
contextual?: {
|
|
@@ -11968,18 +12038,28 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11968
12038
|
errors: z.ZodOptional<z.ZodObject<{
|
|
11969
12039
|
'404': z.ZodObject<{
|
|
11970
12040
|
redirect: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
12041
|
+
title: z.ZodOptional<z.ZodString>;
|
|
12042
|
+
description: z.ZodOptional<z.ZodString>;
|
|
11971
12043
|
}, "strip", z.ZodTypeAny, {
|
|
11972
12044
|
redirect: boolean;
|
|
12045
|
+
title?: string | undefined;
|
|
12046
|
+
description?: string | undefined;
|
|
11973
12047
|
}, {
|
|
11974
12048
|
redirect?: boolean | undefined;
|
|
12049
|
+
title?: string | undefined;
|
|
12050
|
+
description?: string | undefined;
|
|
11975
12051
|
}>;
|
|
11976
12052
|
}, "strip", z.ZodTypeAny, {
|
|
11977
12053
|
'404': {
|
|
11978
12054
|
redirect: boolean;
|
|
12055
|
+
title?: string | undefined;
|
|
12056
|
+
description?: string | undefined;
|
|
11979
12057
|
};
|
|
11980
12058
|
}, {
|
|
11981
12059
|
'404': {
|
|
11982
12060
|
redirect?: boolean | undefined;
|
|
12061
|
+
title?: string | undefined;
|
|
12062
|
+
description?: string | undefined;
|
|
11983
12063
|
};
|
|
11984
12064
|
}>>;
|
|
11985
12065
|
contextual: z.ZodOptional<z.ZodObject<{
|
|
@@ -12526,6 +12606,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12526
12606
|
errors?: {
|
|
12527
12607
|
'404': {
|
|
12528
12608
|
redirect: boolean;
|
|
12609
|
+
title?: string | undefined;
|
|
12610
|
+
description?: string | undefined;
|
|
12529
12611
|
};
|
|
12530
12612
|
} | undefined;
|
|
12531
12613
|
contextual?: {
|
|
@@ -12911,6 +12993,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12911
12993
|
errors?: {
|
|
12912
12994
|
'404': {
|
|
12913
12995
|
redirect?: boolean | undefined;
|
|
12996
|
+
title?: string | undefined;
|
|
12997
|
+
description?: string | undefined;
|
|
12914
12998
|
};
|
|
12915
12999
|
} | undefined;
|
|
12916
13000
|
contextual?: {
|
|
@@ -14125,18 +14209,28 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14125
14209
|
errors: z.ZodOptional<z.ZodObject<{
|
|
14126
14210
|
'404': z.ZodObject<{
|
|
14127
14211
|
redirect: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
14212
|
+
title: z.ZodOptional<z.ZodString>;
|
|
14213
|
+
description: z.ZodOptional<z.ZodString>;
|
|
14128
14214
|
}, "strip", z.ZodTypeAny, {
|
|
14129
14215
|
redirect: boolean;
|
|
14216
|
+
title?: string | undefined;
|
|
14217
|
+
description?: string | undefined;
|
|
14130
14218
|
}, {
|
|
14131
14219
|
redirect?: boolean | undefined;
|
|
14220
|
+
title?: string | undefined;
|
|
14221
|
+
description?: string | undefined;
|
|
14132
14222
|
}>;
|
|
14133
14223
|
}, "strip", z.ZodTypeAny, {
|
|
14134
14224
|
'404': {
|
|
14135
14225
|
redirect: boolean;
|
|
14226
|
+
title?: string | undefined;
|
|
14227
|
+
description?: string | undefined;
|
|
14136
14228
|
};
|
|
14137
14229
|
}, {
|
|
14138
14230
|
'404': {
|
|
14139
14231
|
redirect?: boolean | undefined;
|
|
14232
|
+
title?: string | undefined;
|
|
14233
|
+
description?: string | undefined;
|
|
14140
14234
|
};
|
|
14141
14235
|
}>>;
|
|
14142
14236
|
contextual: z.ZodOptional<z.ZodObject<{
|
|
@@ -14683,6 +14777,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14683
14777
|
errors?: {
|
|
14684
14778
|
'404': {
|
|
14685
14779
|
redirect: boolean;
|
|
14780
|
+
title?: string | undefined;
|
|
14781
|
+
description?: string | undefined;
|
|
14686
14782
|
};
|
|
14687
14783
|
} | undefined;
|
|
14688
14784
|
contextual?: {
|
|
@@ -15068,6 +15164,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15068
15164
|
errors?: {
|
|
15069
15165
|
'404': {
|
|
15070
15166
|
redirect?: boolean | undefined;
|
|
15167
|
+
title?: string | undefined;
|
|
15168
|
+
description?: string | undefined;
|
|
15071
15169
|
};
|
|
15072
15170
|
} | undefined;
|
|
15073
15171
|
contextual?: {
|
|
@@ -2,17 +2,27 @@ import { z } from 'zod';
|
|
|
2
2
|
export declare const errorsSchema: z.ZodObject<{
|
|
3
3
|
'404': z.ZodObject<{
|
|
4
4
|
redirect: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
5
|
+
title: z.ZodOptional<z.ZodString>;
|
|
6
|
+
description: z.ZodOptional<z.ZodString>;
|
|
5
7
|
}, "strip", z.ZodTypeAny, {
|
|
6
8
|
redirect: boolean;
|
|
9
|
+
title?: string | undefined;
|
|
10
|
+
description?: string | undefined;
|
|
7
11
|
}, {
|
|
8
12
|
redirect?: boolean | undefined;
|
|
13
|
+
title?: string | undefined;
|
|
14
|
+
description?: string | undefined;
|
|
9
15
|
}>;
|
|
10
16
|
}, "strip", z.ZodTypeAny, {
|
|
11
17
|
'404': {
|
|
12
18
|
redirect: boolean;
|
|
19
|
+
title?: string | undefined;
|
|
20
|
+
description?: string | undefined;
|
|
13
21
|
};
|
|
14
22
|
}, {
|
|
15
23
|
'404': {
|
|
16
24
|
redirect?: boolean | undefined;
|
|
25
|
+
title?: string | undefined;
|
|
26
|
+
description?: string | undefined;
|
|
17
27
|
};
|
|
18
28
|
}>;
|
|
@@ -7,6 +7,11 @@ export const errorsSchema = z
|
|
|
7
7
|
.optional()
|
|
8
8
|
.default(true)
|
|
9
9
|
.describe('Whether to redirect to the home page, if the page is not found'),
|
|
10
|
+
title: z.string().optional().describe('The title of the error page'),
|
|
11
|
+
description: z
|
|
12
|
+
.string()
|
|
13
|
+
.optional()
|
|
14
|
+
.describe('The description of the error page. Supports basic MDX formatting including links, bold, and italic text. Custom components are not supported.'),
|
|
10
15
|
}),
|
|
11
16
|
})
|
|
12
17
|
.describe('Error pages configuration');
|
|
@@ -1180,18 +1180,28 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1180
1180
|
errors: z.ZodOptional<z.ZodObject<{
|
|
1181
1181
|
'404': z.ZodObject<{
|
|
1182
1182
|
redirect: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1183
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1184
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1183
1185
|
}, "strip", z.ZodTypeAny, {
|
|
1184
1186
|
redirect: boolean;
|
|
1187
|
+
title?: string | undefined;
|
|
1188
|
+
description?: string | undefined;
|
|
1185
1189
|
}, {
|
|
1186
1190
|
redirect?: boolean | undefined;
|
|
1191
|
+
title?: string | undefined;
|
|
1192
|
+
description?: string | undefined;
|
|
1187
1193
|
}>;
|
|
1188
1194
|
}, "strip", z.ZodTypeAny, {
|
|
1189
1195
|
'404': {
|
|
1190
1196
|
redirect: boolean;
|
|
1197
|
+
title?: string | undefined;
|
|
1198
|
+
description?: string | undefined;
|
|
1191
1199
|
};
|
|
1192
1200
|
}, {
|
|
1193
1201
|
'404': {
|
|
1194
1202
|
redirect?: boolean | undefined;
|
|
1203
|
+
title?: string | undefined;
|
|
1204
|
+
description?: string | undefined;
|
|
1195
1205
|
};
|
|
1196
1206
|
}>>;
|
|
1197
1207
|
contextual: z.ZodOptional<z.ZodObject<{
|
|
@@ -1738,6 +1748,8 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1738
1748
|
errors?: {
|
|
1739
1749
|
'404': {
|
|
1740
1750
|
redirect: boolean;
|
|
1751
|
+
title?: string | undefined;
|
|
1752
|
+
description?: string | undefined;
|
|
1741
1753
|
};
|
|
1742
1754
|
} | undefined;
|
|
1743
1755
|
contextual?: {
|
|
@@ -2123,6 +2135,8 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
2123
2135
|
errors?: {
|
|
2124
2136
|
'404': {
|
|
2125
2137
|
redirect?: boolean | undefined;
|
|
2138
|
+
title?: string | undefined;
|
|
2139
|
+
description?: string | undefined;
|
|
2126
2140
|
};
|
|
2127
2141
|
} | undefined;
|
|
2128
2142
|
contextual?: {
|
|
@@ -1180,18 +1180,28 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1180
1180
|
errors: z.ZodOptional<z.ZodObject<{
|
|
1181
1181
|
'404': z.ZodObject<{
|
|
1182
1182
|
redirect: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1183
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1184
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1183
1185
|
}, "strip", z.ZodTypeAny, {
|
|
1184
1186
|
redirect: boolean;
|
|
1187
|
+
title?: string | undefined;
|
|
1188
|
+
description?: string | undefined;
|
|
1185
1189
|
}, {
|
|
1186
1190
|
redirect?: boolean | undefined;
|
|
1191
|
+
title?: string | undefined;
|
|
1192
|
+
description?: string | undefined;
|
|
1187
1193
|
}>;
|
|
1188
1194
|
}, "strip", z.ZodTypeAny, {
|
|
1189
1195
|
'404': {
|
|
1190
1196
|
redirect: boolean;
|
|
1197
|
+
title?: string | undefined;
|
|
1198
|
+
description?: string | undefined;
|
|
1191
1199
|
};
|
|
1192
1200
|
}, {
|
|
1193
1201
|
'404': {
|
|
1194
1202
|
redirect?: boolean | undefined;
|
|
1203
|
+
title?: string | undefined;
|
|
1204
|
+
description?: string | undefined;
|
|
1195
1205
|
};
|
|
1196
1206
|
}>>;
|
|
1197
1207
|
contextual: z.ZodOptional<z.ZodObject<{
|
|
@@ -1738,6 +1748,8 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1738
1748
|
errors?: {
|
|
1739
1749
|
'404': {
|
|
1740
1750
|
redirect: boolean;
|
|
1751
|
+
title?: string | undefined;
|
|
1752
|
+
description?: string | undefined;
|
|
1741
1753
|
};
|
|
1742
1754
|
} | undefined;
|
|
1743
1755
|
contextual?: {
|
|
@@ -2123,6 +2135,8 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
2123
2135
|
errors?: {
|
|
2124
2136
|
'404': {
|
|
2125
2137
|
redirect?: boolean | undefined;
|
|
2138
|
+
title?: string | undefined;
|
|
2139
|
+
description?: string | undefined;
|
|
2126
2140
|
};
|
|
2127
2141
|
} | undefined;
|
|
2128
2142
|
contextual?: {
|
|
@@ -1180,18 +1180,28 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1180
1180
|
errors: z.ZodOptional<z.ZodObject<{
|
|
1181
1181
|
'404': z.ZodObject<{
|
|
1182
1182
|
redirect: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1183
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1184
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1183
1185
|
}, "strip", z.ZodTypeAny, {
|
|
1184
1186
|
redirect: boolean;
|
|
1187
|
+
title?: string | undefined;
|
|
1188
|
+
description?: string | undefined;
|
|
1185
1189
|
}, {
|
|
1186
1190
|
redirect?: boolean | undefined;
|
|
1191
|
+
title?: string | undefined;
|
|
1192
|
+
description?: string | undefined;
|
|
1187
1193
|
}>;
|
|
1188
1194
|
}, "strip", z.ZodTypeAny, {
|
|
1189
1195
|
'404': {
|
|
1190
1196
|
redirect: boolean;
|
|
1197
|
+
title?: string | undefined;
|
|
1198
|
+
description?: string | undefined;
|
|
1191
1199
|
};
|
|
1192
1200
|
}, {
|
|
1193
1201
|
'404': {
|
|
1194
1202
|
redirect?: boolean | undefined;
|
|
1203
|
+
title?: string | undefined;
|
|
1204
|
+
description?: string | undefined;
|
|
1195
1205
|
};
|
|
1196
1206
|
}>>;
|
|
1197
1207
|
contextual: z.ZodOptional<z.ZodObject<{
|
|
@@ -1738,6 +1748,8 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1738
1748
|
errors?: {
|
|
1739
1749
|
'404': {
|
|
1740
1750
|
redirect: boolean;
|
|
1751
|
+
title?: string | undefined;
|
|
1752
|
+
description?: string | undefined;
|
|
1741
1753
|
};
|
|
1742
1754
|
} | undefined;
|
|
1743
1755
|
contextual?: {
|
|
@@ -2123,6 +2135,8 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
2123
2135
|
errors?: {
|
|
2124
2136
|
'404': {
|
|
2125
2137
|
redirect?: boolean | undefined;
|
|
2138
|
+
title?: string | undefined;
|
|
2139
|
+
description?: string | undefined;
|
|
2126
2140
|
};
|
|
2127
2141
|
} | undefined;
|
|
2128
2142
|
contextual?: {
|
|
@@ -1180,18 +1180,28 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1180
1180
|
errors: z.ZodOptional<z.ZodObject<{
|
|
1181
1181
|
'404': z.ZodObject<{
|
|
1182
1182
|
redirect: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1183
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1184
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1183
1185
|
}, "strip", z.ZodTypeAny, {
|
|
1184
1186
|
redirect: boolean;
|
|
1187
|
+
title?: string | undefined;
|
|
1188
|
+
description?: string | undefined;
|
|
1185
1189
|
}, {
|
|
1186
1190
|
redirect?: boolean | undefined;
|
|
1191
|
+
title?: string | undefined;
|
|
1192
|
+
description?: string | undefined;
|
|
1187
1193
|
}>;
|
|
1188
1194
|
}, "strip", z.ZodTypeAny, {
|
|
1189
1195
|
'404': {
|
|
1190
1196
|
redirect: boolean;
|
|
1197
|
+
title?: string | undefined;
|
|
1198
|
+
description?: string | undefined;
|
|
1191
1199
|
};
|
|
1192
1200
|
}, {
|
|
1193
1201
|
'404': {
|
|
1194
1202
|
redirect?: boolean | undefined;
|
|
1203
|
+
title?: string | undefined;
|
|
1204
|
+
description?: string | undefined;
|
|
1195
1205
|
};
|
|
1196
1206
|
}>>;
|
|
1197
1207
|
contextual: z.ZodOptional<z.ZodObject<{
|
|
@@ -1738,6 +1748,8 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1738
1748
|
errors?: {
|
|
1739
1749
|
'404': {
|
|
1740
1750
|
redirect: boolean;
|
|
1751
|
+
title?: string | undefined;
|
|
1752
|
+
description?: string | undefined;
|
|
1741
1753
|
};
|
|
1742
1754
|
} | undefined;
|
|
1743
1755
|
contextual?: {
|
|
@@ -2123,6 +2135,8 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
2123
2135
|
errors?: {
|
|
2124
2136
|
'404': {
|
|
2125
2137
|
redirect?: boolean | undefined;
|
|
2138
|
+
title?: string | undefined;
|
|
2139
|
+
description?: string | undefined;
|
|
2126
2140
|
};
|
|
2127
2141
|
} | undefined;
|
|
2128
2142
|
contextual?: {
|
|
@@ -1180,18 +1180,28 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1180
1180
|
errors: z.ZodOptional<z.ZodObject<{
|
|
1181
1181
|
'404': z.ZodObject<{
|
|
1182
1182
|
redirect: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1183
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1184
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1183
1185
|
}, "strip", z.ZodTypeAny, {
|
|
1184
1186
|
redirect: boolean;
|
|
1187
|
+
title?: string | undefined;
|
|
1188
|
+
description?: string | undefined;
|
|
1185
1189
|
}, {
|
|
1186
1190
|
redirect?: boolean | undefined;
|
|
1191
|
+
title?: string | undefined;
|
|
1192
|
+
description?: string | undefined;
|
|
1187
1193
|
}>;
|
|
1188
1194
|
}, "strip", z.ZodTypeAny, {
|
|
1189
1195
|
'404': {
|
|
1190
1196
|
redirect: boolean;
|
|
1197
|
+
title?: string | undefined;
|
|
1198
|
+
description?: string | undefined;
|
|
1191
1199
|
};
|
|
1192
1200
|
}, {
|
|
1193
1201
|
'404': {
|
|
1194
1202
|
redirect?: boolean | undefined;
|
|
1203
|
+
title?: string | undefined;
|
|
1204
|
+
description?: string | undefined;
|
|
1195
1205
|
};
|
|
1196
1206
|
}>>;
|
|
1197
1207
|
contextual: z.ZodOptional<z.ZodObject<{
|
|
@@ -1738,6 +1748,8 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1738
1748
|
errors?: {
|
|
1739
1749
|
'404': {
|
|
1740
1750
|
redirect: boolean;
|
|
1751
|
+
title?: string | undefined;
|
|
1752
|
+
description?: string | undefined;
|
|
1741
1753
|
};
|
|
1742
1754
|
} | undefined;
|
|
1743
1755
|
contextual?: {
|
|
@@ -2123,6 +2135,8 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
2123
2135
|
errors?: {
|
|
2124
2136
|
'404': {
|
|
2125
2137
|
redirect?: boolean | undefined;
|
|
2138
|
+
title?: string | undefined;
|
|
2139
|
+
description?: string | undefined;
|
|
2126
2140
|
};
|
|
2127
2141
|
} | undefined;
|
|
2128
2142
|
contextual?: {
|
|
@@ -1180,18 +1180,28 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1180
1180
|
errors: z.ZodOptional<z.ZodObject<{
|
|
1181
1181
|
'404': z.ZodObject<{
|
|
1182
1182
|
redirect: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1183
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1184
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1183
1185
|
}, "strip", z.ZodTypeAny, {
|
|
1184
1186
|
redirect: boolean;
|
|
1187
|
+
title?: string | undefined;
|
|
1188
|
+
description?: string | undefined;
|
|
1185
1189
|
}, {
|
|
1186
1190
|
redirect?: boolean | undefined;
|
|
1191
|
+
title?: string | undefined;
|
|
1192
|
+
description?: string | undefined;
|
|
1187
1193
|
}>;
|
|
1188
1194
|
}, "strip", z.ZodTypeAny, {
|
|
1189
1195
|
'404': {
|
|
1190
1196
|
redirect: boolean;
|
|
1197
|
+
title?: string | undefined;
|
|
1198
|
+
description?: string | undefined;
|
|
1191
1199
|
};
|
|
1192
1200
|
}, {
|
|
1193
1201
|
'404': {
|
|
1194
1202
|
redirect?: boolean | undefined;
|
|
1203
|
+
title?: string | undefined;
|
|
1204
|
+
description?: string | undefined;
|
|
1195
1205
|
};
|
|
1196
1206
|
}>>;
|
|
1197
1207
|
contextual: z.ZodOptional<z.ZodObject<{
|
|
@@ -1738,6 +1748,8 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1738
1748
|
errors?: {
|
|
1739
1749
|
'404': {
|
|
1740
1750
|
redirect: boolean;
|
|
1751
|
+
title?: string | undefined;
|
|
1752
|
+
description?: string | undefined;
|
|
1741
1753
|
};
|
|
1742
1754
|
} | undefined;
|
|
1743
1755
|
contextual?: {
|
|
@@ -2123,6 +2135,8 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
2123
2135
|
errors?: {
|
|
2124
2136
|
'404': {
|
|
2125
2137
|
redirect?: boolean | undefined;
|
|
2138
|
+
title?: string | undefined;
|
|
2139
|
+
description?: string | undefined;
|
|
2126
2140
|
};
|
|
2127
2141
|
} | undefined;
|
|
2128
2142
|
contextual?: {
|
|
@@ -1179,18 +1179,28 @@ export declare const standardConfigSchema: {
|
|
|
1179
1179
|
errors: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
1180
1180
|
'404': import("zod").ZodObject<{
|
|
1181
1181
|
redirect: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
1182
|
+
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1183
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1182
1184
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1183
1185
|
redirect: boolean;
|
|
1186
|
+
title?: string | undefined;
|
|
1187
|
+
description?: string | undefined;
|
|
1184
1188
|
}, {
|
|
1185
1189
|
redirect?: boolean | undefined;
|
|
1190
|
+
title?: string | undefined;
|
|
1191
|
+
description?: string | undefined;
|
|
1186
1192
|
}>;
|
|
1187
1193
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1188
1194
|
'404': {
|
|
1189
1195
|
redirect: boolean;
|
|
1196
|
+
title?: string | undefined;
|
|
1197
|
+
description?: string | undefined;
|
|
1190
1198
|
};
|
|
1191
1199
|
}, {
|
|
1192
1200
|
'404': {
|
|
1193
1201
|
redirect?: boolean | undefined;
|
|
1202
|
+
title?: string | undefined;
|
|
1203
|
+
description?: string | undefined;
|
|
1194
1204
|
};
|
|
1195
1205
|
}>>;
|
|
1196
1206
|
contextual: import("zod").ZodOptional<import("zod").ZodObject<{
|