@mintlify/validation 0.1.433 → 0.1.434
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 +161 -35
- package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +16 -4
- package/dist/mint-config/schemas/v2/properties/navigation/groups.js +9 -3
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +13 -3
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +23 -5
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +23 -5
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +23 -5
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +23 -5
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +23 -5
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +23 -5
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +13 -3
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +23 -5
- package/dist/mint-config/validateConfig.d.ts +70 -14
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -70,6 +70,7 @@ export declare const groupSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
70
70
|
source: string;
|
|
71
71
|
directory?: string | undefined;
|
|
72
72
|
}>]>;
|
|
73
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
73
74
|
}, "strip", z.ZodTypeAny, {
|
|
74
75
|
openapi: (string | string[] | {
|
|
75
76
|
source: string;
|
|
@@ -79,6 +80,7 @@ export declare const groupSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
79
80
|
directory?: string | undefined;
|
|
80
81
|
} | undefined);
|
|
81
82
|
group: string;
|
|
83
|
+
pages: any[];
|
|
82
84
|
icon?: string | {
|
|
83
85
|
name: string;
|
|
84
86
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -106,6 +108,7 @@ export declare const groupSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
106
108
|
tag?: string | undefined;
|
|
107
109
|
hidden?: boolean | undefined;
|
|
108
110
|
root?: string | undefined;
|
|
111
|
+
pages?: any[] | undefined;
|
|
109
112
|
}>, z.ZodObject<{
|
|
110
113
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
111
114
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
@@ -135,8 +138,10 @@ export declare const groupSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
135
138
|
source: string;
|
|
136
139
|
directory?: string | undefined;
|
|
137
140
|
}>]>;
|
|
141
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
138
142
|
}, "strip", z.ZodTypeAny, {
|
|
139
143
|
group: string;
|
|
144
|
+
pages: any[];
|
|
140
145
|
asyncapi: (string | string[] | {
|
|
141
146
|
source: string;
|
|
142
147
|
directory?: string | undefined;
|
|
@@ -171,6 +176,7 @@ export declare const groupSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
171
176
|
tag?: string | undefined;
|
|
172
177
|
hidden?: boolean | undefined;
|
|
173
178
|
root?: string | undefined;
|
|
179
|
+
pages?: any[] | undefined;
|
|
174
180
|
}>, z.ZodObject<{
|
|
175
181
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
176
182
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
@@ -190,7 +196,7 @@ export declare const groupSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
190
196
|
tag: z.ZodOptional<z.ZodString>;
|
|
191
197
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
192
198
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
193
|
-
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many"
|
|
199
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
194
200
|
}, "strip", z.ZodTypeAny, {
|
|
195
201
|
group: string;
|
|
196
202
|
pages: any[];
|
|
@@ -205,7 +211,6 @@ export declare const groupSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
205
211
|
root?: string | undefined;
|
|
206
212
|
}, {
|
|
207
213
|
group: string;
|
|
208
|
-
pages: any[];
|
|
209
214
|
icon?: string | {
|
|
210
215
|
name: string;
|
|
211
216
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -215,6 +220,7 @@ export declare const groupSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
215
220
|
tag?: string | undefined;
|
|
216
221
|
hidden?: boolean | undefined;
|
|
217
222
|
root?: string | undefined;
|
|
223
|
+
pages?: any[] | undefined;
|
|
218
224
|
}>]>;
|
|
219
225
|
export declare const decoratedGroupSchema: z.ZodObject<{
|
|
220
226
|
group: z.ZodString;
|
|
@@ -448,6 +454,7 @@ export declare const groupsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
448
454
|
source: string;
|
|
449
455
|
directory?: string | undefined;
|
|
450
456
|
}>]>;
|
|
457
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
451
458
|
}, "strip", z.ZodTypeAny, {
|
|
452
459
|
openapi: (string | string[] | {
|
|
453
460
|
source: string;
|
|
@@ -457,6 +464,7 @@ export declare const groupsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
457
464
|
directory?: string | undefined;
|
|
458
465
|
} | undefined);
|
|
459
466
|
group: string;
|
|
467
|
+
pages: any[];
|
|
460
468
|
icon?: string | {
|
|
461
469
|
name: string;
|
|
462
470
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -484,6 +492,7 @@ export declare const groupsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
484
492
|
tag?: string | undefined;
|
|
485
493
|
hidden?: boolean | undefined;
|
|
486
494
|
root?: string | undefined;
|
|
495
|
+
pages?: any[] | undefined;
|
|
487
496
|
}>, z.ZodObject<{
|
|
488
497
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
489
498
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
@@ -513,8 +522,10 @@ export declare const groupsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
513
522
|
source: string;
|
|
514
523
|
directory?: string | undefined;
|
|
515
524
|
}>]>;
|
|
525
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
516
526
|
}, "strip", z.ZodTypeAny, {
|
|
517
527
|
group: string;
|
|
528
|
+
pages: any[];
|
|
518
529
|
asyncapi: (string | string[] | {
|
|
519
530
|
source: string;
|
|
520
531
|
directory?: string | undefined;
|
|
@@ -549,6 +560,7 @@ export declare const groupsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
549
560
|
tag?: string | undefined;
|
|
550
561
|
hidden?: boolean | undefined;
|
|
551
562
|
root?: string | undefined;
|
|
563
|
+
pages?: any[] | undefined;
|
|
552
564
|
}>, z.ZodObject<{
|
|
553
565
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
554
566
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
@@ -568,7 +580,7 @@ export declare const groupsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
568
580
|
tag: z.ZodOptional<z.ZodString>;
|
|
569
581
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
570
582
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
571
|
-
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many"
|
|
583
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
572
584
|
}, "strip", z.ZodTypeAny, {
|
|
573
585
|
group: string;
|
|
574
586
|
pages: any[];
|
|
@@ -583,7 +595,6 @@ export declare const groupsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
583
595
|
root?: string | undefined;
|
|
584
596
|
}, {
|
|
585
597
|
group: string;
|
|
586
|
-
pages: any[];
|
|
587
598
|
icon?: string | {
|
|
588
599
|
name: string;
|
|
589
600
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -593,6 +604,7 @@ export declare const groupsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
593
604
|
tag?: string | undefined;
|
|
594
605
|
hidden?: boolean | undefined;
|
|
595
606
|
root?: string | undefined;
|
|
607
|
+
pages?: any[] | undefined;
|
|
596
608
|
}>]>, "many">;
|
|
597
609
|
export declare const decoratedGroupsSchema: z.ZodArray<z.ZodObject<{
|
|
598
610
|
group: z.ZodString;
|
|
@@ -15,9 +15,15 @@ export const baseGroupSchema = z.object({
|
|
|
15
15
|
});
|
|
16
16
|
export const groupSchema = z
|
|
17
17
|
.union([
|
|
18
|
-
baseGroupSchema.extend({
|
|
19
|
-
|
|
20
|
-
|
|
18
|
+
baseGroupSchema.extend({
|
|
19
|
+
openapi: openApiSchema,
|
|
20
|
+
pages: z.lazy(() => pagesSchema).default([]),
|
|
21
|
+
}),
|
|
22
|
+
baseGroupSchema.extend({
|
|
23
|
+
asyncapi: asyncApiSchema,
|
|
24
|
+
pages: z.lazy(() => pagesSchema).default([]),
|
|
25
|
+
}),
|
|
26
|
+
baseGroupSchema.extend({ pages: z.lazy(() => pagesSchema).default([]) }),
|
|
21
27
|
])
|
|
22
28
|
.describe('Organizing by groups');
|
|
23
29
|
export const decoratedGroupSchema = z
|
|
@@ -82,6 +82,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
82
82
|
source: string;
|
|
83
83
|
directory?: string | undefined;
|
|
84
84
|
}>]>;
|
|
85
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
85
86
|
}, "strip", z.ZodTypeAny, {
|
|
86
87
|
openapi: (string | string[] | {
|
|
87
88
|
source: string;
|
|
@@ -91,6 +92,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
91
92
|
directory?: string | undefined;
|
|
92
93
|
} | undefined);
|
|
93
94
|
group: string;
|
|
95
|
+
pages: any[];
|
|
94
96
|
icon?: string | {
|
|
95
97
|
name: string;
|
|
96
98
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -118,6 +120,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
118
120
|
tag?: string | undefined;
|
|
119
121
|
hidden?: boolean | undefined;
|
|
120
122
|
root?: string | undefined;
|
|
123
|
+
pages?: any[] | undefined;
|
|
121
124
|
}>, z.ZodObject<{
|
|
122
125
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
123
126
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
@@ -147,8 +150,10 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
147
150
|
source: string;
|
|
148
151
|
directory?: string | undefined;
|
|
149
152
|
}>]>;
|
|
153
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
150
154
|
}, "strip", z.ZodTypeAny, {
|
|
151
155
|
group: string;
|
|
156
|
+
pages: any[];
|
|
152
157
|
asyncapi: (string | string[] | {
|
|
153
158
|
source: string;
|
|
154
159
|
directory?: string | undefined;
|
|
@@ -183,6 +188,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
183
188
|
tag?: string | undefined;
|
|
184
189
|
hidden?: boolean | undefined;
|
|
185
190
|
root?: string | undefined;
|
|
191
|
+
pages?: any[] | undefined;
|
|
186
192
|
}>, z.ZodObject<{
|
|
187
193
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
188
194
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
@@ -202,7 +208,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
202
208
|
tag: z.ZodOptional<z.ZodString>;
|
|
203
209
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
204
210
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
205
|
-
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many"
|
|
211
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
206
212
|
}, "strip", z.ZodTypeAny, {
|
|
207
213
|
group: string;
|
|
208
214
|
pages: any[];
|
|
@@ -217,7 +223,6 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
217
223
|
root?: string | undefined;
|
|
218
224
|
}, {
|
|
219
225
|
group: string;
|
|
220
|
-
pages: any[];
|
|
221
226
|
icon?: string | {
|
|
222
227
|
name: string;
|
|
223
228
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -227,6 +232,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
227
232
|
tag?: string | undefined;
|
|
228
233
|
hidden?: boolean | undefined;
|
|
229
234
|
root?: string | undefined;
|
|
235
|
+
pages?: any[] | undefined;
|
|
230
236
|
}>]>, "many">;
|
|
231
237
|
}, "strip", z.ZodTypeAny, {
|
|
232
238
|
groups: ({
|
|
@@ -238,6 +244,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
238
244
|
directory?: string | undefined;
|
|
239
245
|
} | undefined);
|
|
240
246
|
group: string;
|
|
247
|
+
pages: any[];
|
|
241
248
|
icon?: string | {
|
|
242
249
|
name: string;
|
|
243
250
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -249,6 +256,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
249
256
|
root?: string | undefined;
|
|
250
257
|
} | {
|
|
251
258
|
group: string;
|
|
259
|
+
pages: any[];
|
|
252
260
|
asyncapi: (string | string[] | {
|
|
253
261
|
source: string;
|
|
254
262
|
directory?: string | undefined;
|
|
@@ -298,6 +306,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
298
306
|
tag?: string | undefined;
|
|
299
307
|
hidden?: boolean | undefined;
|
|
300
308
|
root?: string | undefined;
|
|
309
|
+
pages?: any[] | undefined;
|
|
301
310
|
} | {
|
|
302
311
|
group: string;
|
|
303
312
|
asyncapi: (string | string[] | {
|
|
@@ -316,9 +325,9 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
316
325
|
tag?: string | undefined;
|
|
317
326
|
hidden?: boolean | undefined;
|
|
318
327
|
root?: string | undefined;
|
|
328
|
+
pages?: any[] | undefined;
|
|
319
329
|
} | {
|
|
320
330
|
group: string;
|
|
321
|
-
pages: any[];
|
|
322
331
|
icon?: string | {
|
|
323
332
|
name: string;
|
|
324
333
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -328,6 +337,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
328
337
|
tag?: string | undefined;
|
|
329
338
|
hidden?: boolean | undefined;
|
|
330
339
|
root?: string | undefined;
|
|
340
|
+
pages?: any[] | undefined;
|
|
331
341
|
})[];
|
|
332
342
|
global?: import("./divisionNav.js").GlobalNavigation | undefined;
|
|
333
343
|
}>, z.ZodObject<{
|
|
@@ -389,6 +389,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
389
389
|
source: string;
|
|
390
390
|
directory?: string | undefined;
|
|
391
391
|
}>]>;
|
|
392
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
392
393
|
}, "strip", z.ZodTypeAny, {
|
|
393
394
|
openapi: (string | string[] | {
|
|
394
395
|
source: string;
|
|
@@ -398,6 +399,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
398
399
|
directory?: string | undefined;
|
|
399
400
|
} | undefined);
|
|
400
401
|
group: string;
|
|
402
|
+
pages: any[];
|
|
401
403
|
icon?: string | {
|
|
402
404
|
name: string;
|
|
403
405
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -425,6 +427,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
425
427
|
tag?: string | undefined;
|
|
426
428
|
hidden?: boolean | undefined;
|
|
427
429
|
root?: string | undefined;
|
|
430
|
+
pages?: any[] | undefined;
|
|
428
431
|
}>, z.ZodObject<{
|
|
429
432
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
430
433
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
@@ -454,8 +457,10 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
454
457
|
source: string;
|
|
455
458
|
directory?: string | undefined;
|
|
456
459
|
}>]>;
|
|
460
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
457
461
|
}, "strip", z.ZodTypeAny, {
|
|
458
462
|
group: string;
|
|
463
|
+
pages: any[];
|
|
459
464
|
asyncapi: (string | string[] | {
|
|
460
465
|
source: string;
|
|
461
466
|
directory?: string | undefined;
|
|
@@ -490,6 +495,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
490
495
|
tag?: string | undefined;
|
|
491
496
|
hidden?: boolean | undefined;
|
|
492
497
|
root?: string | undefined;
|
|
498
|
+
pages?: any[] | undefined;
|
|
493
499
|
}>, z.ZodObject<{
|
|
494
500
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
495
501
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
@@ -509,7 +515,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
509
515
|
tag: z.ZodOptional<z.ZodString>;
|
|
510
516
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
511
517
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
512
|
-
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many"
|
|
518
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
513
519
|
}, "strip", z.ZodTypeAny, {
|
|
514
520
|
group: string;
|
|
515
521
|
pages: any[];
|
|
@@ -524,7 +530,6 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
524
530
|
root?: string | undefined;
|
|
525
531
|
}, {
|
|
526
532
|
group: string;
|
|
527
|
-
pages: any[];
|
|
528
533
|
icon?: string | {
|
|
529
534
|
name: string;
|
|
530
535
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -534,6 +539,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
534
539
|
tag?: string | undefined;
|
|
535
540
|
hidden?: boolean | undefined;
|
|
536
541
|
root?: string | undefined;
|
|
542
|
+
pages?: any[] | undefined;
|
|
537
543
|
}>]>, "many">;
|
|
538
544
|
}, "strip", z.ZodTypeAny, {
|
|
539
545
|
groups: ({
|
|
@@ -545,6 +551,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
545
551
|
directory?: string | undefined;
|
|
546
552
|
} | undefined);
|
|
547
553
|
group: string;
|
|
554
|
+
pages: any[];
|
|
548
555
|
icon?: string | {
|
|
549
556
|
name: string;
|
|
550
557
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -556,6 +563,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
556
563
|
root?: string | undefined;
|
|
557
564
|
} | {
|
|
558
565
|
group: string;
|
|
566
|
+
pages: any[];
|
|
559
567
|
asyncapi: (string | string[] | {
|
|
560
568
|
source: string;
|
|
561
569
|
directory?: string | undefined;
|
|
@@ -605,6 +613,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
605
613
|
tag?: string | undefined;
|
|
606
614
|
hidden?: boolean | undefined;
|
|
607
615
|
root?: string | undefined;
|
|
616
|
+
pages?: any[] | undefined;
|
|
608
617
|
} | {
|
|
609
618
|
group: string;
|
|
610
619
|
asyncapi: (string | string[] | {
|
|
@@ -623,9 +632,9 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
623
632
|
tag?: string | undefined;
|
|
624
633
|
hidden?: boolean | undefined;
|
|
625
634
|
root?: string | undefined;
|
|
635
|
+
pages?: any[] | undefined;
|
|
626
636
|
} | {
|
|
627
637
|
group: string;
|
|
628
|
-
pages: any[];
|
|
629
638
|
icon?: string | {
|
|
630
639
|
name: string;
|
|
631
640
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -635,6 +644,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
635
644
|
tag?: string | undefined;
|
|
636
645
|
hidden?: boolean | undefined;
|
|
637
646
|
root?: string | undefined;
|
|
647
|
+
pages?: any[] | undefined;
|
|
638
648
|
})[];
|
|
639
649
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
640
650
|
}>, z.ZodObject<{
|
|
@@ -1370,6 +1380,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1370
1380
|
directory?: string | undefined;
|
|
1371
1381
|
} | undefined);
|
|
1372
1382
|
group: string;
|
|
1383
|
+
pages: any[];
|
|
1373
1384
|
icon?: string | {
|
|
1374
1385
|
name: string;
|
|
1375
1386
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -1381,6 +1392,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1381
1392
|
root?: string | undefined;
|
|
1382
1393
|
} | {
|
|
1383
1394
|
group: string;
|
|
1395
|
+
pages: any[];
|
|
1384
1396
|
asyncapi: (string | string[] | {
|
|
1385
1397
|
source: string;
|
|
1386
1398
|
directory?: string | undefined;
|
|
@@ -1439,6 +1451,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1439
1451
|
directory?: string | undefined;
|
|
1440
1452
|
} | undefined);
|
|
1441
1453
|
group: string;
|
|
1454
|
+
pages: any[];
|
|
1442
1455
|
icon?: string | {
|
|
1443
1456
|
name: string;
|
|
1444
1457
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -1450,6 +1463,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1450
1463
|
root?: string | undefined;
|
|
1451
1464
|
} | {
|
|
1452
1465
|
group: string;
|
|
1466
|
+
pages: any[];
|
|
1453
1467
|
asyncapi: (string | string[] | {
|
|
1454
1468
|
source: string;
|
|
1455
1469
|
directory?: string | undefined;
|
|
@@ -1746,6 +1760,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1746
1760
|
tag?: string | undefined;
|
|
1747
1761
|
hidden?: boolean | undefined;
|
|
1748
1762
|
root?: string | undefined;
|
|
1763
|
+
pages?: any[] | undefined;
|
|
1749
1764
|
} | {
|
|
1750
1765
|
group: string;
|
|
1751
1766
|
asyncapi: (string | string[] | {
|
|
@@ -1764,9 +1779,9 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1764
1779
|
tag?: string | undefined;
|
|
1765
1780
|
hidden?: boolean | undefined;
|
|
1766
1781
|
root?: string | undefined;
|
|
1782
|
+
pages?: any[] | undefined;
|
|
1767
1783
|
} | {
|
|
1768
1784
|
group: string;
|
|
1769
|
-
pages: any[];
|
|
1770
1785
|
icon?: string | {
|
|
1771
1786
|
name: string;
|
|
1772
1787
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -1776,6 +1791,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1776
1791
|
tag?: string | undefined;
|
|
1777
1792
|
hidden?: boolean | undefined;
|
|
1778
1793
|
root?: string | undefined;
|
|
1794
|
+
pages?: any[] | undefined;
|
|
1779
1795
|
})[];
|
|
1780
1796
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1781
1797
|
} | {
|
|
@@ -1815,6 +1831,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1815
1831
|
tag?: string | undefined;
|
|
1816
1832
|
hidden?: boolean | undefined;
|
|
1817
1833
|
root?: string | undefined;
|
|
1834
|
+
pages?: any[] | undefined;
|
|
1818
1835
|
} | {
|
|
1819
1836
|
group: string;
|
|
1820
1837
|
asyncapi: (string | string[] | {
|
|
@@ -1833,9 +1850,9 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1833
1850
|
tag?: string | undefined;
|
|
1834
1851
|
hidden?: boolean | undefined;
|
|
1835
1852
|
root?: string | undefined;
|
|
1853
|
+
pages?: any[] | undefined;
|
|
1836
1854
|
} | {
|
|
1837
1855
|
group: string;
|
|
1838
|
-
pages: any[];
|
|
1839
1856
|
icon?: string | {
|
|
1840
1857
|
name: string;
|
|
1841
1858
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -1845,6 +1862,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1845
1862
|
tag?: string | undefined;
|
|
1846
1863
|
hidden?: boolean | undefined;
|
|
1847
1864
|
root?: string | undefined;
|
|
1865
|
+
pages?: any[] | undefined;
|
|
1848
1866
|
})[];
|
|
1849
1867
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1850
1868
|
} | {
|
|
@@ -389,6 +389,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
389
389
|
source: string;
|
|
390
390
|
directory?: string | undefined;
|
|
391
391
|
}>]>;
|
|
392
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
392
393
|
}, "strip", z.ZodTypeAny, {
|
|
393
394
|
openapi: (string | string[] | {
|
|
394
395
|
source: string;
|
|
@@ -398,6 +399,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
398
399
|
directory?: string | undefined;
|
|
399
400
|
} | undefined);
|
|
400
401
|
group: string;
|
|
402
|
+
pages: any[];
|
|
401
403
|
icon?: string | {
|
|
402
404
|
name: string;
|
|
403
405
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -425,6 +427,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
425
427
|
tag?: string | undefined;
|
|
426
428
|
hidden?: boolean | undefined;
|
|
427
429
|
root?: string | undefined;
|
|
430
|
+
pages?: any[] | undefined;
|
|
428
431
|
}>, z.ZodObject<{
|
|
429
432
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
430
433
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
@@ -454,8 +457,10 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
454
457
|
source: string;
|
|
455
458
|
directory?: string | undefined;
|
|
456
459
|
}>]>;
|
|
460
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
457
461
|
}, "strip", z.ZodTypeAny, {
|
|
458
462
|
group: string;
|
|
463
|
+
pages: any[];
|
|
459
464
|
asyncapi: (string | string[] | {
|
|
460
465
|
source: string;
|
|
461
466
|
directory?: string | undefined;
|
|
@@ -490,6 +495,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
490
495
|
tag?: string | undefined;
|
|
491
496
|
hidden?: boolean | undefined;
|
|
492
497
|
root?: string | undefined;
|
|
498
|
+
pages?: any[] | undefined;
|
|
493
499
|
}>, z.ZodObject<{
|
|
494
500
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
495
501
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
@@ -509,7 +515,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
509
515
|
tag: z.ZodOptional<z.ZodString>;
|
|
510
516
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
511
517
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
512
|
-
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many"
|
|
518
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
513
519
|
}, "strip", z.ZodTypeAny, {
|
|
514
520
|
group: string;
|
|
515
521
|
pages: any[];
|
|
@@ -524,7 +530,6 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
524
530
|
root?: string | undefined;
|
|
525
531
|
}, {
|
|
526
532
|
group: string;
|
|
527
|
-
pages: any[];
|
|
528
533
|
icon?: string | {
|
|
529
534
|
name: string;
|
|
530
535
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -534,6 +539,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
534
539
|
tag?: string | undefined;
|
|
535
540
|
hidden?: boolean | undefined;
|
|
536
541
|
root?: string | undefined;
|
|
542
|
+
pages?: any[] | undefined;
|
|
537
543
|
}>]>, "many">;
|
|
538
544
|
}, "strip", z.ZodTypeAny, {
|
|
539
545
|
groups: ({
|
|
@@ -545,6 +551,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
545
551
|
directory?: string | undefined;
|
|
546
552
|
} | undefined);
|
|
547
553
|
group: string;
|
|
554
|
+
pages: any[];
|
|
548
555
|
icon?: string | {
|
|
549
556
|
name: string;
|
|
550
557
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -556,6 +563,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
556
563
|
root?: string | undefined;
|
|
557
564
|
} | {
|
|
558
565
|
group: string;
|
|
566
|
+
pages: any[];
|
|
559
567
|
asyncapi: (string | string[] | {
|
|
560
568
|
source: string;
|
|
561
569
|
directory?: string | undefined;
|
|
@@ -605,6 +613,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
605
613
|
tag?: string | undefined;
|
|
606
614
|
hidden?: boolean | undefined;
|
|
607
615
|
root?: string | undefined;
|
|
616
|
+
pages?: any[] | undefined;
|
|
608
617
|
} | {
|
|
609
618
|
group: string;
|
|
610
619
|
asyncapi: (string | string[] | {
|
|
@@ -623,9 +632,9 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
623
632
|
tag?: string | undefined;
|
|
624
633
|
hidden?: boolean | undefined;
|
|
625
634
|
root?: string | undefined;
|
|
635
|
+
pages?: any[] | undefined;
|
|
626
636
|
} | {
|
|
627
637
|
group: string;
|
|
628
|
-
pages: any[];
|
|
629
638
|
icon?: string | {
|
|
630
639
|
name: string;
|
|
631
640
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -635,6 +644,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
635
644
|
tag?: string | undefined;
|
|
636
645
|
hidden?: boolean | undefined;
|
|
637
646
|
root?: string | undefined;
|
|
647
|
+
pages?: any[] | undefined;
|
|
638
648
|
})[];
|
|
639
649
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
640
650
|
}>, z.ZodObject<{
|
|
@@ -1370,6 +1380,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1370
1380
|
directory?: string | undefined;
|
|
1371
1381
|
} | undefined);
|
|
1372
1382
|
group: string;
|
|
1383
|
+
pages: any[];
|
|
1373
1384
|
icon?: string | {
|
|
1374
1385
|
name: string;
|
|
1375
1386
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -1381,6 +1392,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1381
1392
|
root?: string | undefined;
|
|
1382
1393
|
} | {
|
|
1383
1394
|
group: string;
|
|
1395
|
+
pages: any[];
|
|
1384
1396
|
asyncapi: (string | string[] | {
|
|
1385
1397
|
source: string;
|
|
1386
1398
|
directory?: string | undefined;
|
|
@@ -1439,6 +1451,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1439
1451
|
directory?: string | undefined;
|
|
1440
1452
|
} | undefined);
|
|
1441
1453
|
group: string;
|
|
1454
|
+
pages: any[];
|
|
1442
1455
|
icon?: string | {
|
|
1443
1456
|
name: string;
|
|
1444
1457
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -1450,6 +1463,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1450
1463
|
root?: string | undefined;
|
|
1451
1464
|
} | {
|
|
1452
1465
|
group: string;
|
|
1466
|
+
pages: any[];
|
|
1453
1467
|
asyncapi: (string | string[] | {
|
|
1454
1468
|
source: string;
|
|
1455
1469
|
directory?: string | undefined;
|
|
@@ -1746,6 +1760,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1746
1760
|
tag?: string | undefined;
|
|
1747
1761
|
hidden?: boolean | undefined;
|
|
1748
1762
|
root?: string | undefined;
|
|
1763
|
+
pages?: any[] | undefined;
|
|
1749
1764
|
} | {
|
|
1750
1765
|
group: string;
|
|
1751
1766
|
asyncapi: (string | string[] | {
|
|
@@ -1764,9 +1779,9 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1764
1779
|
tag?: string | undefined;
|
|
1765
1780
|
hidden?: boolean | undefined;
|
|
1766
1781
|
root?: string | undefined;
|
|
1782
|
+
pages?: any[] | undefined;
|
|
1767
1783
|
} | {
|
|
1768
1784
|
group: string;
|
|
1769
|
-
pages: any[];
|
|
1770
1785
|
icon?: string | {
|
|
1771
1786
|
name: string;
|
|
1772
1787
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -1776,6 +1791,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1776
1791
|
tag?: string | undefined;
|
|
1777
1792
|
hidden?: boolean | undefined;
|
|
1778
1793
|
root?: string | undefined;
|
|
1794
|
+
pages?: any[] | undefined;
|
|
1779
1795
|
})[];
|
|
1780
1796
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1781
1797
|
} | {
|
|
@@ -1815,6 +1831,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1815
1831
|
tag?: string | undefined;
|
|
1816
1832
|
hidden?: boolean | undefined;
|
|
1817
1833
|
root?: string | undefined;
|
|
1834
|
+
pages?: any[] | undefined;
|
|
1818
1835
|
} | {
|
|
1819
1836
|
group: string;
|
|
1820
1837
|
asyncapi: (string | string[] | {
|
|
@@ -1833,9 +1850,9 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1833
1850
|
tag?: string | undefined;
|
|
1834
1851
|
hidden?: boolean | undefined;
|
|
1835
1852
|
root?: string | undefined;
|
|
1853
|
+
pages?: any[] | undefined;
|
|
1836
1854
|
} | {
|
|
1837
1855
|
group: string;
|
|
1838
|
-
pages: any[];
|
|
1839
1856
|
icon?: string | {
|
|
1840
1857
|
name: string;
|
|
1841
1858
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -1845,6 +1862,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1845
1862
|
tag?: string | undefined;
|
|
1846
1863
|
hidden?: boolean | undefined;
|
|
1847
1864
|
root?: string | undefined;
|
|
1865
|
+
pages?: any[] | undefined;
|
|
1848
1866
|
})[];
|
|
1849
1867
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1850
1868
|
} | {
|