@mintlify/validation 0.1.577 → 0.1.581
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 +1605 -109
- package/dist/mint-config/schemas/v2/properties/navbar.d.ts +162 -8
- package/dist/mint-config/schemas/v2/properties/navbar.js +25 -3
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +199 -12
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +199 -12
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +199 -12
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +199 -12
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +199 -12
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +199 -12
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +147 -8
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +199 -12
- package/dist/mint-config/validateConfig.d.ts +364 -28
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +3 -3
|
@@ -232,8 +232,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
232
232
|
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
233
233
|
}>>;
|
|
234
234
|
navbar: z.ZodOptional<z.ZodObject<{
|
|
235
|
-
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
236
|
-
label: z.ZodString;
|
|
235
|
+
links: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
237
236
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
238
237
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
239
238
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -248,9 +247,85 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
248
247
|
library?: "fontawesome" | "lucide" | undefined;
|
|
249
248
|
}>]>>;
|
|
250
249
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
251
|
-
},
|
|
250
|
+
}, {
|
|
251
|
+
label: z.ZodOptional<z.ZodString>;
|
|
252
|
+
type: z.ZodLiteral<"github">;
|
|
253
|
+
}>, "strip", z.ZodTypeAny, {
|
|
254
|
+
type: "github";
|
|
255
|
+
href: string;
|
|
256
|
+
icon?: string | {
|
|
257
|
+
name: string;
|
|
258
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
259
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
260
|
+
} | undefined;
|
|
261
|
+
label?: string | undefined;
|
|
262
|
+
}, {
|
|
263
|
+
type: "github";
|
|
264
|
+
href: string;
|
|
265
|
+
icon?: string | {
|
|
266
|
+
name: string;
|
|
267
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
268
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
269
|
+
} | undefined;
|
|
270
|
+
label?: string | undefined;
|
|
271
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
272
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
273
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
274
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
275
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
276
|
+
}, "strip", z.ZodTypeAny, {
|
|
277
|
+
name: string;
|
|
278
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
279
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
280
|
+
}, {
|
|
281
|
+
name: string;
|
|
282
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
283
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
284
|
+
}>]>>;
|
|
285
|
+
href: z.ZodEffects<z.ZodString, string, string>;
|
|
286
|
+
}, {
|
|
287
|
+
label: z.ZodOptional<z.ZodString>;
|
|
288
|
+
type: z.ZodLiteral<"discord">;
|
|
289
|
+
}>, "strip", z.ZodTypeAny, {
|
|
290
|
+
type: "discord";
|
|
291
|
+
href: string;
|
|
292
|
+
icon?: string | {
|
|
293
|
+
name: string;
|
|
294
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
295
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
296
|
+
} | undefined;
|
|
297
|
+
label?: string | undefined;
|
|
298
|
+
}, {
|
|
299
|
+
type: "discord";
|
|
300
|
+
href: string;
|
|
301
|
+
icon?: string | {
|
|
302
|
+
name: string;
|
|
303
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
304
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
305
|
+
} | undefined;
|
|
306
|
+
label?: string | undefined;
|
|
307
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
308
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
309
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
310
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
311
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
312
|
+
}, "strip", z.ZodTypeAny, {
|
|
313
|
+
name: string;
|
|
314
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
315
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
316
|
+
}, {
|
|
317
|
+
name: string;
|
|
318
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
319
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
320
|
+
}>]>>;
|
|
321
|
+
href: z.ZodEffects<z.ZodString, string, string>;
|
|
322
|
+
}, {
|
|
323
|
+
label: z.ZodString;
|
|
324
|
+
type: z.ZodOptional<z.ZodUndefined>;
|
|
325
|
+
}>, "strip", z.ZodTypeAny, {
|
|
252
326
|
href: string;
|
|
253
327
|
label: string;
|
|
328
|
+
type?: undefined;
|
|
254
329
|
icon?: string | {
|
|
255
330
|
name: string;
|
|
256
331
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -259,12 +334,13 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
259
334
|
}, {
|
|
260
335
|
href: string;
|
|
261
336
|
label: string;
|
|
337
|
+
type?: undefined;
|
|
262
338
|
icon?: string | {
|
|
263
339
|
name: string;
|
|
264
340
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
265
341
|
library?: "fontawesome" | "lucide" | undefined;
|
|
266
342
|
} | undefined;
|
|
267
|
-
}>, "many">>;
|
|
343
|
+
}>]>, "many">>;
|
|
268
344
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
269
345
|
type: z.ZodLiteral<"button">;
|
|
270
346
|
label: z.ZodString;
|
|
@@ -279,13 +355,28 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
279
355
|
label: string;
|
|
280
356
|
}>, z.ZodObject<{
|
|
281
357
|
type: z.ZodLiteral<"github">;
|
|
358
|
+
label: z.ZodOptional<z.ZodString>;
|
|
282
359
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
283
360
|
}, "strip", z.ZodTypeAny, {
|
|
284
361
|
type: "github";
|
|
285
362
|
href: string;
|
|
363
|
+
label?: string | undefined;
|
|
286
364
|
}, {
|
|
287
365
|
type: "github";
|
|
288
366
|
href: string;
|
|
367
|
+
label?: string | undefined;
|
|
368
|
+
}>, z.ZodObject<{
|
|
369
|
+
type: z.ZodLiteral<"discord">;
|
|
370
|
+
label: z.ZodOptional<z.ZodString>;
|
|
371
|
+
href: z.ZodEffects<z.ZodString, string, string>;
|
|
372
|
+
}, "strip", z.ZodTypeAny, {
|
|
373
|
+
type: "discord";
|
|
374
|
+
href: string;
|
|
375
|
+
label?: string | undefined;
|
|
376
|
+
}, {
|
|
377
|
+
type: "discord";
|
|
378
|
+
href: string;
|
|
379
|
+
label?: string | undefined;
|
|
289
380
|
}>]>>;
|
|
290
381
|
}, "strip", z.ZodTypeAny, {
|
|
291
382
|
primary?: {
|
|
@@ -295,16 +386,40 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
295
386
|
} | {
|
|
296
387
|
type: "github";
|
|
297
388
|
href: string;
|
|
389
|
+
label?: string | undefined;
|
|
390
|
+
} | {
|
|
391
|
+
type: "discord";
|
|
392
|
+
href: string;
|
|
393
|
+
label?: string | undefined;
|
|
298
394
|
} | undefined;
|
|
299
|
-
links?: {
|
|
395
|
+
links?: ({
|
|
300
396
|
href: string;
|
|
301
397
|
label: string;
|
|
398
|
+
type?: undefined;
|
|
302
399
|
icon?: string | {
|
|
303
400
|
name: string;
|
|
304
401
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
305
402
|
library?: "fontawesome" | "lucide" | undefined;
|
|
306
403
|
} | undefined;
|
|
307
|
-
}
|
|
404
|
+
} | {
|
|
405
|
+
type: "github";
|
|
406
|
+
href: string;
|
|
407
|
+
icon?: string | {
|
|
408
|
+
name: string;
|
|
409
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
410
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
411
|
+
} | undefined;
|
|
412
|
+
label?: string | undefined;
|
|
413
|
+
} | {
|
|
414
|
+
type: "discord";
|
|
415
|
+
href: string;
|
|
416
|
+
icon?: string | {
|
|
417
|
+
name: string;
|
|
418
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
419
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
420
|
+
} | undefined;
|
|
421
|
+
label?: string | undefined;
|
|
422
|
+
})[] | undefined;
|
|
308
423
|
}, {
|
|
309
424
|
primary?: {
|
|
310
425
|
type: "button";
|
|
@@ -313,16 +428,40 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
313
428
|
} | {
|
|
314
429
|
type: "github";
|
|
315
430
|
href: string;
|
|
431
|
+
label?: string | undefined;
|
|
432
|
+
} | {
|
|
433
|
+
type: "discord";
|
|
434
|
+
href: string;
|
|
435
|
+
label?: string | undefined;
|
|
316
436
|
} | undefined;
|
|
317
|
-
links?: {
|
|
437
|
+
links?: ({
|
|
318
438
|
href: string;
|
|
319
439
|
label: string;
|
|
440
|
+
type?: undefined;
|
|
320
441
|
icon?: string | {
|
|
321
442
|
name: string;
|
|
322
443
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
323
444
|
library?: "fontawesome" | "lucide" | undefined;
|
|
324
445
|
} | undefined;
|
|
325
|
-
}
|
|
446
|
+
} | {
|
|
447
|
+
type: "github";
|
|
448
|
+
href: string;
|
|
449
|
+
icon?: string | {
|
|
450
|
+
name: string;
|
|
451
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
452
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
453
|
+
} | undefined;
|
|
454
|
+
label?: string | undefined;
|
|
455
|
+
} | {
|
|
456
|
+
type: "discord";
|
|
457
|
+
href: string;
|
|
458
|
+
icon?: string | {
|
|
459
|
+
name: string;
|
|
460
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
461
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
462
|
+
} | undefined;
|
|
463
|
+
label?: string | undefined;
|
|
464
|
+
})[] | undefined;
|
|
326
465
|
}>>;
|
|
327
466
|
navigation: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
328
467
|
global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
@@ -1700,16 +1839,40 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1700
1839
|
} | {
|
|
1701
1840
|
type: "github";
|
|
1702
1841
|
href: string;
|
|
1842
|
+
label?: string | undefined;
|
|
1843
|
+
} | {
|
|
1844
|
+
type: "discord";
|
|
1845
|
+
href: string;
|
|
1846
|
+
label?: string | undefined;
|
|
1703
1847
|
} | undefined;
|
|
1704
|
-
links?: {
|
|
1848
|
+
links?: ({
|
|
1705
1849
|
href: string;
|
|
1706
1850
|
label: string;
|
|
1851
|
+
type?: undefined;
|
|
1707
1852
|
icon?: string | {
|
|
1708
1853
|
name: string;
|
|
1709
1854
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1710
1855
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1711
1856
|
} | undefined;
|
|
1712
|
-
}
|
|
1857
|
+
} | {
|
|
1858
|
+
type: "github";
|
|
1859
|
+
href: string;
|
|
1860
|
+
icon?: string | {
|
|
1861
|
+
name: string;
|
|
1862
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1863
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1864
|
+
} | undefined;
|
|
1865
|
+
label?: string | undefined;
|
|
1866
|
+
} | {
|
|
1867
|
+
type: "discord";
|
|
1868
|
+
href: string;
|
|
1869
|
+
icon?: string | {
|
|
1870
|
+
name: string;
|
|
1871
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1872
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1873
|
+
} | undefined;
|
|
1874
|
+
label?: string | undefined;
|
|
1875
|
+
})[] | undefined;
|
|
1713
1876
|
} | undefined;
|
|
1714
1877
|
icons?: {
|
|
1715
1878
|
library: "fontawesome" | "lucide";
|
|
@@ -2022,16 +2185,40 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
2022
2185
|
} | {
|
|
2023
2186
|
type: "github";
|
|
2024
2187
|
href: string;
|
|
2188
|
+
label?: string | undefined;
|
|
2189
|
+
} | {
|
|
2190
|
+
type: "discord";
|
|
2191
|
+
href: string;
|
|
2192
|
+
label?: string | undefined;
|
|
2025
2193
|
} | undefined;
|
|
2026
|
-
links?: {
|
|
2194
|
+
links?: ({
|
|
2027
2195
|
href: string;
|
|
2028
2196
|
label: string;
|
|
2197
|
+
type?: undefined;
|
|
2029
2198
|
icon?: string | {
|
|
2030
2199
|
name: string;
|
|
2031
2200
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2032
2201
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2033
2202
|
} | undefined;
|
|
2034
|
-
}
|
|
2203
|
+
} | {
|
|
2204
|
+
type: "github";
|
|
2205
|
+
href: string;
|
|
2206
|
+
icon?: string | {
|
|
2207
|
+
name: string;
|
|
2208
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2209
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2210
|
+
} | undefined;
|
|
2211
|
+
label?: string | undefined;
|
|
2212
|
+
} | {
|
|
2213
|
+
type: "discord";
|
|
2214
|
+
href: string;
|
|
2215
|
+
icon?: string | {
|
|
2216
|
+
name: string;
|
|
2217
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2218
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2219
|
+
} | undefined;
|
|
2220
|
+
label?: string | undefined;
|
|
2221
|
+
})[] | undefined;
|
|
2035
2222
|
} | undefined;
|
|
2036
2223
|
icons?: {
|
|
2037
2224
|
library: "fontawesome" | "lucide";
|
|
@@ -232,8 +232,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
232
232
|
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
233
233
|
}>>;
|
|
234
234
|
navbar: z.ZodOptional<z.ZodObject<{
|
|
235
|
-
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
236
|
-
label: z.ZodString;
|
|
235
|
+
links: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
237
236
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
238
237
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
239
238
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -248,9 +247,85 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
248
247
|
library?: "fontawesome" | "lucide" | undefined;
|
|
249
248
|
}>]>>;
|
|
250
249
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
251
|
-
},
|
|
250
|
+
}, {
|
|
251
|
+
label: z.ZodOptional<z.ZodString>;
|
|
252
|
+
type: z.ZodLiteral<"github">;
|
|
253
|
+
}>, "strip", z.ZodTypeAny, {
|
|
254
|
+
type: "github";
|
|
255
|
+
href: string;
|
|
256
|
+
icon?: string | {
|
|
257
|
+
name: string;
|
|
258
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
259
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
260
|
+
} | undefined;
|
|
261
|
+
label?: string | undefined;
|
|
262
|
+
}, {
|
|
263
|
+
type: "github";
|
|
264
|
+
href: string;
|
|
265
|
+
icon?: string | {
|
|
266
|
+
name: string;
|
|
267
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
268
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
269
|
+
} | undefined;
|
|
270
|
+
label?: string | undefined;
|
|
271
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
272
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
273
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
274
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
275
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
276
|
+
}, "strip", z.ZodTypeAny, {
|
|
277
|
+
name: string;
|
|
278
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
279
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
280
|
+
}, {
|
|
281
|
+
name: string;
|
|
282
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
283
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
284
|
+
}>]>>;
|
|
285
|
+
href: z.ZodEffects<z.ZodString, string, string>;
|
|
286
|
+
}, {
|
|
287
|
+
label: z.ZodOptional<z.ZodString>;
|
|
288
|
+
type: z.ZodLiteral<"discord">;
|
|
289
|
+
}>, "strip", z.ZodTypeAny, {
|
|
290
|
+
type: "discord";
|
|
291
|
+
href: string;
|
|
292
|
+
icon?: string | {
|
|
293
|
+
name: string;
|
|
294
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
295
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
296
|
+
} | undefined;
|
|
297
|
+
label?: string | undefined;
|
|
298
|
+
}, {
|
|
299
|
+
type: "discord";
|
|
300
|
+
href: string;
|
|
301
|
+
icon?: string | {
|
|
302
|
+
name: string;
|
|
303
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
304
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
305
|
+
} | undefined;
|
|
306
|
+
label?: string | undefined;
|
|
307
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
308
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
309
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
310
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
311
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
312
|
+
}, "strip", z.ZodTypeAny, {
|
|
313
|
+
name: string;
|
|
314
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
315
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
316
|
+
}, {
|
|
317
|
+
name: string;
|
|
318
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
319
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
320
|
+
}>]>>;
|
|
321
|
+
href: z.ZodEffects<z.ZodString, string, string>;
|
|
322
|
+
}, {
|
|
323
|
+
label: z.ZodString;
|
|
324
|
+
type: z.ZodOptional<z.ZodUndefined>;
|
|
325
|
+
}>, "strip", z.ZodTypeAny, {
|
|
252
326
|
href: string;
|
|
253
327
|
label: string;
|
|
328
|
+
type?: undefined;
|
|
254
329
|
icon?: string | {
|
|
255
330
|
name: string;
|
|
256
331
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -259,12 +334,13 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
259
334
|
}, {
|
|
260
335
|
href: string;
|
|
261
336
|
label: string;
|
|
337
|
+
type?: undefined;
|
|
262
338
|
icon?: string | {
|
|
263
339
|
name: string;
|
|
264
340
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
265
341
|
library?: "fontawesome" | "lucide" | undefined;
|
|
266
342
|
} | undefined;
|
|
267
|
-
}>, "many">>;
|
|
343
|
+
}>]>, "many">>;
|
|
268
344
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
269
345
|
type: z.ZodLiteral<"button">;
|
|
270
346
|
label: z.ZodString;
|
|
@@ -279,13 +355,28 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
279
355
|
label: string;
|
|
280
356
|
}>, z.ZodObject<{
|
|
281
357
|
type: z.ZodLiteral<"github">;
|
|
358
|
+
label: z.ZodOptional<z.ZodString>;
|
|
282
359
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
283
360
|
}, "strip", z.ZodTypeAny, {
|
|
284
361
|
type: "github";
|
|
285
362
|
href: string;
|
|
363
|
+
label?: string | undefined;
|
|
286
364
|
}, {
|
|
287
365
|
type: "github";
|
|
288
366
|
href: string;
|
|
367
|
+
label?: string | undefined;
|
|
368
|
+
}>, z.ZodObject<{
|
|
369
|
+
type: z.ZodLiteral<"discord">;
|
|
370
|
+
label: z.ZodOptional<z.ZodString>;
|
|
371
|
+
href: z.ZodEffects<z.ZodString, string, string>;
|
|
372
|
+
}, "strip", z.ZodTypeAny, {
|
|
373
|
+
type: "discord";
|
|
374
|
+
href: string;
|
|
375
|
+
label?: string | undefined;
|
|
376
|
+
}, {
|
|
377
|
+
type: "discord";
|
|
378
|
+
href: string;
|
|
379
|
+
label?: string | undefined;
|
|
289
380
|
}>]>>;
|
|
290
381
|
}, "strip", z.ZodTypeAny, {
|
|
291
382
|
primary?: {
|
|
@@ -295,16 +386,40 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
295
386
|
} | {
|
|
296
387
|
type: "github";
|
|
297
388
|
href: string;
|
|
389
|
+
label?: string | undefined;
|
|
390
|
+
} | {
|
|
391
|
+
type: "discord";
|
|
392
|
+
href: string;
|
|
393
|
+
label?: string | undefined;
|
|
298
394
|
} | undefined;
|
|
299
|
-
links?: {
|
|
395
|
+
links?: ({
|
|
300
396
|
href: string;
|
|
301
397
|
label: string;
|
|
398
|
+
type?: undefined;
|
|
302
399
|
icon?: string | {
|
|
303
400
|
name: string;
|
|
304
401
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
305
402
|
library?: "fontawesome" | "lucide" | undefined;
|
|
306
403
|
} | undefined;
|
|
307
|
-
}
|
|
404
|
+
} | {
|
|
405
|
+
type: "github";
|
|
406
|
+
href: string;
|
|
407
|
+
icon?: string | {
|
|
408
|
+
name: string;
|
|
409
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
410
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
411
|
+
} | undefined;
|
|
412
|
+
label?: string | undefined;
|
|
413
|
+
} | {
|
|
414
|
+
type: "discord";
|
|
415
|
+
href: string;
|
|
416
|
+
icon?: string | {
|
|
417
|
+
name: string;
|
|
418
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
419
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
420
|
+
} | undefined;
|
|
421
|
+
label?: string | undefined;
|
|
422
|
+
})[] | undefined;
|
|
308
423
|
}, {
|
|
309
424
|
primary?: {
|
|
310
425
|
type: "button";
|
|
@@ -313,16 +428,40 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
313
428
|
} | {
|
|
314
429
|
type: "github";
|
|
315
430
|
href: string;
|
|
431
|
+
label?: string | undefined;
|
|
432
|
+
} | {
|
|
433
|
+
type: "discord";
|
|
434
|
+
href: string;
|
|
435
|
+
label?: string | undefined;
|
|
316
436
|
} | undefined;
|
|
317
|
-
links?: {
|
|
437
|
+
links?: ({
|
|
318
438
|
href: string;
|
|
319
439
|
label: string;
|
|
440
|
+
type?: undefined;
|
|
320
441
|
icon?: string | {
|
|
321
442
|
name: string;
|
|
322
443
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
323
444
|
library?: "fontawesome" | "lucide" | undefined;
|
|
324
445
|
} | undefined;
|
|
325
|
-
}
|
|
446
|
+
} | {
|
|
447
|
+
type: "github";
|
|
448
|
+
href: string;
|
|
449
|
+
icon?: string | {
|
|
450
|
+
name: string;
|
|
451
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
452
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
453
|
+
} | undefined;
|
|
454
|
+
label?: string | undefined;
|
|
455
|
+
} | {
|
|
456
|
+
type: "discord";
|
|
457
|
+
href: string;
|
|
458
|
+
icon?: string | {
|
|
459
|
+
name: string;
|
|
460
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
461
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
462
|
+
} | undefined;
|
|
463
|
+
label?: string | undefined;
|
|
464
|
+
})[] | undefined;
|
|
326
465
|
}>>;
|
|
327
466
|
navigation: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
328
467
|
global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
@@ -1700,16 +1839,40 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1700
1839
|
} | {
|
|
1701
1840
|
type: "github";
|
|
1702
1841
|
href: string;
|
|
1842
|
+
label?: string | undefined;
|
|
1843
|
+
} | {
|
|
1844
|
+
type: "discord";
|
|
1845
|
+
href: string;
|
|
1846
|
+
label?: string | undefined;
|
|
1703
1847
|
} | undefined;
|
|
1704
|
-
links?: {
|
|
1848
|
+
links?: ({
|
|
1705
1849
|
href: string;
|
|
1706
1850
|
label: string;
|
|
1851
|
+
type?: undefined;
|
|
1707
1852
|
icon?: string | {
|
|
1708
1853
|
name: string;
|
|
1709
1854
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1710
1855
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1711
1856
|
} | undefined;
|
|
1712
|
-
}
|
|
1857
|
+
} | {
|
|
1858
|
+
type: "github";
|
|
1859
|
+
href: string;
|
|
1860
|
+
icon?: string | {
|
|
1861
|
+
name: string;
|
|
1862
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1863
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1864
|
+
} | undefined;
|
|
1865
|
+
label?: string | undefined;
|
|
1866
|
+
} | {
|
|
1867
|
+
type: "discord";
|
|
1868
|
+
href: string;
|
|
1869
|
+
icon?: string | {
|
|
1870
|
+
name: string;
|
|
1871
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1872
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1873
|
+
} | undefined;
|
|
1874
|
+
label?: string | undefined;
|
|
1875
|
+
})[] | undefined;
|
|
1713
1876
|
} | undefined;
|
|
1714
1877
|
icons?: {
|
|
1715
1878
|
library: "fontawesome" | "lucide";
|
|
@@ -2022,16 +2185,40 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
2022
2185
|
} | {
|
|
2023
2186
|
type: "github";
|
|
2024
2187
|
href: string;
|
|
2188
|
+
label?: string | undefined;
|
|
2189
|
+
} | {
|
|
2190
|
+
type: "discord";
|
|
2191
|
+
href: string;
|
|
2192
|
+
label?: string | undefined;
|
|
2025
2193
|
} | undefined;
|
|
2026
|
-
links?: {
|
|
2194
|
+
links?: ({
|
|
2027
2195
|
href: string;
|
|
2028
2196
|
label: string;
|
|
2197
|
+
type?: undefined;
|
|
2029
2198
|
icon?: string | {
|
|
2030
2199
|
name: string;
|
|
2031
2200
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2032
2201
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2033
2202
|
} | undefined;
|
|
2034
|
-
}
|
|
2203
|
+
} | {
|
|
2204
|
+
type: "github";
|
|
2205
|
+
href: string;
|
|
2206
|
+
icon?: string | {
|
|
2207
|
+
name: string;
|
|
2208
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2209
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2210
|
+
} | undefined;
|
|
2211
|
+
label?: string | undefined;
|
|
2212
|
+
} | {
|
|
2213
|
+
type: "discord";
|
|
2214
|
+
href: string;
|
|
2215
|
+
icon?: string | {
|
|
2216
|
+
name: string;
|
|
2217
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2218
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2219
|
+
} | undefined;
|
|
2220
|
+
label?: string | undefined;
|
|
2221
|
+
})[] | undefined;
|
|
2035
2222
|
} | undefined;
|
|
2036
2223
|
icons?: {
|
|
2037
2224
|
library: "fontawesome" | "lucide";
|