@mintlify/validation 0.1.429 → 0.1.430
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/v1/navigation.js +1 -1
- package/dist/mint-config/schemas/v2/index.d.ts +189 -0
- package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +27 -0
- package/dist/mint-config/schemas/v2/properties/navigation/groups.js +2 -0
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +20 -0
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +27 -0
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +27 -0
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +27 -0
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +27 -0
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +27 -0
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +27 -0
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +15 -0
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +27 -0
- package/dist/mint-config/validateConfig.d.ts +84 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +3 -3
|
@@ -376,6 +376,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
376
376
|
}>]>>;
|
|
377
377
|
group: z.ZodString;
|
|
378
378
|
tag: z.ZodOptional<z.ZodString>;
|
|
379
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
379
380
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
380
381
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
381
382
|
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -403,6 +404,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
403
404
|
library?: "fontawesome" | "lucide" | undefined;
|
|
404
405
|
} | undefined;
|
|
405
406
|
tag?: string | undefined;
|
|
407
|
+
public?: boolean | undefined;
|
|
406
408
|
hidden?: boolean | undefined;
|
|
407
409
|
root?: string | undefined;
|
|
408
410
|
}, {
|
|
@@ -420,6 +422,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
420
422
|
library?: "fontawesome" | "lucide" | undefined;
|
|
421
423
|
} | undefined;
|
|
422
424
|
tag?: string | undefined;
|
|
425
|
+
public?: boolean | undefined;
|
|
423
426
|
hidden?: boolean | undefined;
|
|
424
427
|
root?: string | undefined;
|
|
425
428
|
}>, z.ZodObject<{
|
|
@@ -438,6 +441,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
438
441
|
}>]>>;
|
|
439
442
|
group: z.ZodString;
|
|
440
443
|
tag: z.ZodOptional<z.ZodString>;
|
|
444
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
441
445
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
442
446
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
443
447
|
asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -465,6 +469,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
465
469
|
library?: "fontawesome" | "lucide" | undefined;
|
|
466
470
|
} | undefined;
|
|
467
471
|
tag?: string | undefined;
|
|
472
|
+
public?: boolean | undefined;
|
|
468
473
|
hidden?: boolean | undefined;
|
|
469
474
|
root?: string | undefined;
|
|
470
475
|
}, {
|
|
@@ -482,6 +487,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
482
487
|
library?: "fontawesome" | "lucide" | undefined;
|
|
483
488
|
} | undefined;
|
|
484
489
|
tag?: string | undefined;
|
|
490
|
+
public?: boolean | undefined;
|
|
485
491
|
hidden?: boolean | undefined;
|
|
486
492
|
root?: string | undefined;
|
|
487
493
|
}>, z.ZodObject<{
|
|
@@ -500,6 +506,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
500
506
|
}>]>>;
|
|
501
507
|
group: z.ZodString;
|
|
502
508
|
tag: z.ZodOptional<z.ZodString>;
|
|
509
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
503
510
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
504
511
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
505
512
|
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
@@ -512,6 +519,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
512
519
|
library?: "fontawesome" | "lucide" | undefined;
|
|
513
520
|
} | undefined;
|
|
514
521
|
tag?: string | undefined;
|
|
522
|
+
public?: boolean | undefined;
|
|
515
523
|
hidden?: boolean | undefined;
|
|
516
524
|
root?: string | undefined;
|
|
517
525
|
}, {
|
|
@@ -523,6 +531,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
523
531
|
library?: "fontawesome" | "lucide" | undefined;
|
|
524
532
|
} | undefined;
|
|
525
533
|
tag?: string | undefined;
|
|
534
|
+
public?: boolean | undefined;
|
|
526
535
|
hidden?: boolean | undefined;
|
|
527
536
|
root?: string | undefined;
|
|
528
537
|
}>]>, "many">;
|
|
@@ -542,6 +551,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
542
551
|
library?: "fontawesome" | "lucide" | undefined;
|
|
543
552
|
} | undefined;
|
|
544
553
|
tag?: string | undefined;
|
|
554
|
+
public?: boolean | undefined;
|
|
545
555
|
hidden?: boolean | undefined;
|
|
546
556
|
root?: string | undefined;
|
|
547
557
|
} | {
|
|
@@ -559,6 +569,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
559
569
|
library?: "fontawesome" | "lucide" | undefined;
|
|
560
570
|
} | undefined;
|
|
561
571
|
tag?: string | undefined;
|
|
572
|
+
public?: boolean | undefined;
|
|
562
573
|
hidden?: boolean | undefined;
|
|
563
574
|
root?: string | undefined;
|
|
564
575
|
} | {
|
|
@@ -570,6 +581,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
570
581
|
library?: "fontawesome" | "lucide" | undefined;
|
|
571
582
|
} | undefined;
|
|
572
583
|
tag?: string | undefined;
|
|
584
|
+
public?: boolean | undefined;
|
|
573
585
|
hidden?: boolean | undefined;
|
|
574
586
|
root?: string | undefined;
|
|
575
587
|
})[];
|
|
@@ -590,6 +602,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
590
602
|
library?: "fontawesome" | "lucide" | undefined;
|
|
591
603
|
} | undefined;
|
|
592
604
|
tag?: string | undefined;
|
|
605
|
+
public?: boolean | undefined;
|
|
593
606
|
hidden?: boolean | undefined;
|
|
594
607
|
root?: string | undefined;
|
|
595
608
|
} | {
|
|
@@ -607,6 +620,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
607
620
|
library?: "fontawesome" | "lucide" | undefined;
|
|
608
621
|
} | undefined;
|
|
609
622
|
tag?: string | undefined;
|
|
623
|
+
public?: boolean | undefined;
|
|
610
624
|
hidden?: boolean | undefined;
|
|
611
625
|
root?: string | undefined;
|
|
612
626
|
} | {
|
|
@@ -618,6 +632,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
618
632
|
library?: "fontawesome" | "lucide" | undefined;
|
|
619
633
|
} | undefined;
|
|
620
634
|
tag?: string | undefined;
|
|
635
|
+
public?: boolean | undefined;
|
|
621
636
|
hidden?: boolean | undefined;
|
|
622
637
|
root?: string | undefined;
|
|
623
638
|
})[];
|
|
@@ -1361,6 +1376,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1361
1376
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1362
1377
|
} | undefined;
|
|
1363
1378
|
tag?: string | undefined;
|
|
1379
|
+
public?: boolean | undefined;
|
|
1364
1380
|
hidden?: boolean | undefined;
|
|
1365
1381
|
root?: string | undefined;
|
|
1366
1382
|
} | {
|
|
@@ -1378,6 +1394,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1378
1394
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1379
1395
|
} | undefined;
|
|
1380
1396
|
tag?: string | undefined;
|
|
1397
|
+
public?: boolean | undefined;
|
|
1381
1398
|
hidden?: boolean | undefined;
|
|
1382
1399
|
root?: string | undefined;
|
|
1383
1400
|
} | {
|
|
@@ -1389,6 +1406,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1389
1406
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1390
1407
|
} | undefined;
|
|
1391
1408
|
tag?: string | undefined;
|
|
1409
|
+
public?: boolean | undefined;
|
|
1392
1410
|
hidden?: boolean | undefined;
|
|
1393
1411
|
root?: string | undefined;
|
|
1394
1412
|
})[];
|
|
@@ -1427,6 +1445,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1427
1445
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1428
1446
|
} | undefined;
|
|
1429
1447
|
tag?: string | undefined;
|
|
1448
|
+
public?: boolean | undefined;
|
|
1430
1449
|
hidden?: boolean | undefined;
|
|
1431
1450
|
root?: string | undefined;
|
|
1432
1451
|
} | {
|
|
@@ -1444,6 +1463,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1444
1463
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1445
1464
|
} | undefined;
|
|
1446
1465
|
tag?: string | undefined;
|
|
1466
|
+
public?: boolean | undefined;
|
|
1447
1467
|
hidden?: boolean | undefined;
|
|
1448
1468
|
root?: string | undefined;
|
|
1449
1469
|
} | {
|
|
@@ -1455,6 +1475,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1455
1475
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1456
1476
|
} | undefined;
|
|
1457
1477
|
tag?: string | undefined;
|
|
1478
|
+
public?: boolean | undefined;
|
|
1458
1479
|
hidden?: boolean | undefined;
|
|
1459
1480
|
root?: string | undefined;
|
|
1460
1481
|
})[];
|
|
@@ -1722,6 +1743,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1722
1743
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1723
1744
|
} | undefined;
|
|
1724
1745
|
tag?: string | undefined;
|
|
1746
|
+
public?: boolean | undefined;
|
|
1725
1747
|
hidden?: boolean | undefined;
|
|
1726
1748
|
root?: string | undefined;
|
|
1727
1749
|
} | {
|
|
@@ -1739,6 +1761,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1739
1761
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1740
1762
|
} | undefined;
|
|
1741
1763
|
tag?: string | undefined;
|
|
1764
|
+
public?: boolean | undefined;
|
|
1742
1765
|
hidden?: boolean | undefined;
|
|
1743
1766
|
root?: string | undefined;
|
|
1744
1767
|
} | {
|
|
@@ -1750,6 +1773,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1750
1773
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1751
1774
|
} | undefined;
|
|
1752
1775
|
tag?: string | undefined;
|
|
1776
|
+
public?: boolean | undefined;
|
|
1753
1777
|
hidden?: boolean | undefined;
|
|
1754
1778
|
root?: string | undefined;
|
|
1755
1779
|
})[];
|
|
@@ -1788,6 +1812,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1788
1812
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1789
1813
|
} | undefined;
|
|
1790
1814
|
tag?: string | undefined;
|
|
1815
|
+
public?: boolean | undefined;
|
|
1791
1816
|
hidden?: boolean | undefined;
|
|
1792
1817
|
root?: string | undefined;
|
|
1793
1818
|
} | {
|
|
@@ -1805,6 +1830,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1805
1830
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1806
1831
|
} | undefined;
|
|
1807
1832
|
tag?: string | undefined;
|
|
1833
|
+
public?: boolean | undefined;
|
|
1808
1834
|
hidden?: boolean | undefined;
|
|
1809
1835
|
root?: string | undefined;
|
|
1810
1836
|
} | {
|
|
@@ -1816,6 +1842,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1816
1842
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1817
1843
|
} | undefined;
|
|
1818
1844
|
tag?: string | undefined;
|
|
1845
|
+
public?: boolean | undefined;
|
|
1819
1846
|
hidden?: boolean | undefined;
|
|
1820
1847
|
root?: string | undefined;
|
|
1821
1848
|
})[];
|
|
@@ -376,6 +376,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
376
376
|
}>]>>;
|
|
377
377
|
group: z.ZodString;
|
|
378
378
|
tag: z.ZodOptional<z.ZodString>;
|
|
379
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
379
380
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
380
381
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
381
382
|
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -403,6 +404,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
403
404
|
library?: "fontawesome" | "lucide" | undefined;
|
|
404
405
|
} | undefined;
|
|
405
406
|
tag?: string | undefined;
|
|
407
|
+
public?: boolean | undefined;
|
|
406
408
|
hidden?: boolean | undefined;
|
|
407
409
|
root?: string | undefined;
|
|
408
410
|
}, {
|
|
@@ -420,6 +422,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
420
422
|
library?: "fontawesome" | "lucide" | undefined;
|
|
421
423
|
} | undefined;
|
|
422
424
|
tag?: string | undefined;
|
|
425
|
+
public?: boolean | undefined;
|
|
423
426
|
hidden?: boolean | undefined;
|
|
424
427
|
root?: string | undefined;
|
|
425
428
|
}>, z.ZodObject<{
|
|
@@ -438,6 +441,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
438
441
|
}>]>>;
|
|
439
442
|
group: z.ZodString;
|
|
440
443
|
tag: z.ZodOptional<z.ZodString>;
|
|
444
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
441
445
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
442
446
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
443
447
|
asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -465,6 +469,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
465
469
|
library?: "fontawesome" | "lucide" | undefined;
|
|
466
470
|
} | undefined;
|
|
467
471
|
tag?: string | undefined;
|
|
472
|
+
public?: boolean | undefined;
|
|
468
473
|
hidden?: boolean | undefined;
|
|
469
474
|
root?: string | undefined;
|
|
470
475
|
}, {
|
|
@@ -482,6 +487,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
482
487
|
library?: "fontawesome" | "lucide" | undefined;
|
|
483
488
|
} | undefined;
|
|
484
489
|
tag?: string | undefined;
|
|
490
|
+
public?: boolean | undefined;
|
|
485
491
|
hidden?: boolean | undefined;
|
|
486
492
|
root?: string | undefined;
|
|
487
493
|
}>, z.ZodObject<{
|
|
@@ -500,6 +506,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
500
506
|
}>]>>;
|
|
501
507
|
group: z.ZodString;
|
|
502
508
|
tag: z.ZodOptional<z.ZodString>;
|
|
509
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
503
510
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
504
511
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
505
512
|
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
@@ -512,6 +519,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
512
519
|
library?: "fontawesome" | "lucide" | undefined;
|
|
513
520
|
} | undefined;
|
|
514
521
|
tag?: string | undefined;
|
|
522
|
+
public?: boolean | undefined;
|
|
515
523
|
hidden?: boolean | undefined;
|
|
516
524
|
root?: string | undefined;
|
|
517
525
|
}, {
|
|
@@ -523,6 +531,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
523
531
|
library?: "fontawesome" | "lucide" | undefined;
|
|
524
532
|
} | undefined;
|
|
525
533
|
tag?: string | undefined;
|
|
534
|
+
public?: boolean | undefined;
|
|
526
535
|
hidden?: boolean | undefined;
|
|
527
536
|
root?: string | undefined;
|
|
528
537
|
}>]>, "many">;
|
|
@@ -542,6 +551,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
542
551
|
library?: "fontawesome" | "lucide" | undefined;
|
|
543
552
|
} | undefined;
|
|
544
553
|
tag?: string | undefined;
|
|
554
|
+
public?: boolean | undefined;
|
|
545
555
|
hidden?: boolean | undefined;
|
|
546
556
|
root?: string | undefined;
|
|
547
557
|
} | {
|
|
@@ -559,6 +569,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
559
569
|
library?: "fontawesome" | "lucide" | undefined;
|
|
560
570
|
} | undefined;
|
|
561
571
|
tag?: string | undefined;
|
|
572
|
+
public?: boolean | undefined;
|
|
562
573
|
hidden?: boolean | undefined;
|
|
563
574
|
root?: string | undefined;
|
|
564
575
|
} | {
|
|
@@ -570,6 +581,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
570
581
|
library?: "fontawesome" | "lucide" | undefined;
|
|
571
582
|
} | undefined;
|
|
572
583
|
tag?: string | undefined;
|
|
584
|
+
public?: boolean | undefined;
|
|
573
585
|
hidden?: boolean | undefined;
|
|
574
586
|
root?: string | undefined;
|
|
575
587
|
})[];
|
|
@@ -590,6 +602,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
590
602
|
library?: "fontawesome" | "lucide" | undefined;
|
|
591
603
|
} | undefined;
|
|
592
604
|
tag?: string | undefined;
|
|
605
|
+
public?: boolean | undefined;
|
|
593
606
|
hidden?: boolean | undefined;
|
|
594
607
|
root?: string | undefined;
|
|
595
608
|
} | {
|
|
@@ -607,6 +620,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
607
620
|
library?: "fontawesome" | "lucide" | undefined;
|
|
608
621
|
} | undefined;
|
|
609
622
|
tag?: string | undefined;
|
|
623
|
+
public?: boolean | undefined;
|
|
610
624
|
hidden?: boolean | undefined;
|
|
611
625
|
root?: string | undefined;
|
|
612
626
|
} | {
|
|
@@ -618,6 +632,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
618
632
|
library?: "fontawesome" | "lucide" | undefined;
|
|
619
633
|
} | undefined;
|
|
620
634
|
tag?: string | undefined;
|
|
635
|
+
public?: boolean | undefined;
|
|
621
636
|
hidden?: boolean | undefined;
|
|
622
637
|
root?: string | undefined;
|
|
623
638
|
})[];
|
|
@@ -1361,6 +1376,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1361
1376
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1362
1377
|
} | undefined;
|
|
1363
1378
|
tag?: string | undefined;
|
|
1379
|
+
public?: boolean | undefined;
|
|
1364
1380
|
hidden?: boolean | undefined;
|
|
1365
1381
|
root?: string | undefined;
|
|
1366
1382
|
} | {
|
|
@@ -1378,6 +1394,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1378
1394
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1379
1395
|
} | undefined;
|
|
1380
1396
|
tag?: string | undefined;
|
|
1397
|
+
public?: boolean | undefined;
|
|
1381
1398
|
hidden?: boolean | undefined;
|
|
1382
1399
|
root?: string | undefined;
|
|
1383
1400
|
} | {
|
|
@@ -1389,6 +1406,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1389
1406
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1390
1407
|
} | undefined;
|
|
1391
1408
|
tag?: string | undefined;
|
|
1409
|
+
public?: boolean | undefined;
|
|
1392
1410
|
hidden?: boolean | undefined;
|
|
1393
1411
|
root?: string | undefined;
|
|
1394
1412
|
})[];
|
|
@@ -1427,6 +1445,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1427
1445
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1428
1446
|
} | undefined;
|
|
1429
1447
|
tag?: string | undefined;
|
|
1448
|
+
public?: boolean | undefined;
|
|
1430
1449
|
hidden?: boolean | undefined;
|
|
1431
1450
|
root?: string | undefined;
|
|
1432
1451
|
} | {
|
|
@@ -1444,6 +1463,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1444
1463
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1445
1464
|
} | undefined;
|
|
1446
1465
|
tag?: string | undefined;
|
|
1466
|
+
public?: boolean | undefined;
|
|
1447
1467
|
hidden?: boolean | undefined;
|
|
1448
1468
|
root?: string | undefined;
|
|
1449
1469
|
} | {
|
|
@@ -1455,6 +1475,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1455
1475
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1456
1476
|
} | undefined;
|
|
1457
1477
|
tag?: string | undefined;
|
|
1478
|
+
public?: boolean | undefined;
|
|
1458
1479
|
hidden?: boolean | undefined;
|
|
1459
1480
|
root?: string | undefined;
|
|
1460
1481
|
})[];
|
|
@@ -1722,6 +1743,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1722
1743
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1723
1744
|
} | undefined;
|
|
1724
1745
|
tag?: string | undefined;
|
|
1746
|
+
public?: boolean | undefined;
|
|
1725
1747
|
hidden?: boolean | undefined;
|
|
1726
1748
|
root?: string | undefined;
|
|
1727
1749
|
} | {
|
|
@@ -1739,6 +1761,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1739
1761
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1740
1762
|
} | undefined;
|
|
1741
1763
|
tag?: string | undefined;
|
|
1764
|
+
public?: boolean | undefined;
|
|
1742
1765
|
hidden?: boolean | undefined;
|
|
1743
1766
|
root?: string | undefined;
|
|
1744
1767
|
} | {
|
|
@@ -1750,6 +1773,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1750
1773
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1751
1774
|
} | undefined;
|
|
1752
1775
|
tag?: string | undefined;
|
|
1776
|
+
public?: boolean | undefined;
|
|
1753
1777
|
hidden?: boolean | undefined;
|
|
1754
1778
|
root?: string | undefined;
|
|
1755
1779
|
})[];
|
|
@@ -1788,6 +1812,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1788
1812
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1789
1813
|
} | undefined;
|
|
1790
1814
|
tag?: string | undefined;
|
|
1815
|
+
public?: boolean | undefined;
|
|
1791
1816
|
hidden?: boolean | undefined;
|
|
1792
1817
|
root?: string | undefined;
|
|
1793
1818
|
} | {
|
|
@@ -1805,6 +1830,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1805
1830
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1806
1831
|
} | undefined;
|
|
1807
1832
|
tag?: string | undefined;
|
|
1833
|
+
public?: boolean | undefined;
|
|
1808
1834
|
hidden?: boolean | undefined;
|
|
1809
1835
|
root?: string | undefined;
|
|
1810
1836
|
} | {
|
|
@@ -1816,6 +1842,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1816
1842
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1817
1843
|
} | undefined;
|
|
1818
1844
|
tag?: string | undefined;
|
|
1845
|
+
public?: boolean | undefined;
|
|
1819
1846
|
hidden?: boolean | undefined;
|
|
1820
1847
|
root?: string | undefined;
|
|
1821
1848
|
})[];
|
|
@@ -375,6 +375,7 @@ export declare const standardConfigSchema: {
|
|
|
375
375
|
}>]>>;
|
|
376
376
|
group: import("zod").ZodString;
|
|
377
377
|
tag: import("zod").ZodOptional<import("zod").ZodString>;
|
|
378
|
+
public: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
378
379
|
hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
379
380
|
root: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodString, string, string>>;
|
|
380
381
|
openapi: import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many">, import("zod").ZodObject<{
|
|
@@ -402,6 +403,7 @@ export declare const standardConfigSchema: {
|
|
|
402
403
|
library?: "fontawesome" | "lucide" | undefined;
|
|
403
404
|
} | undefined;
|
|
404
405
|
tag?: string | undefined;
|
|
406
|
+
public?: boolean | undefined;
|
|
405
407
|
hidden?: boolean | undefined;
|
|
406
408
|
root?: string | undefined;
|
|
407
409
|
}, {
|
|
@@ -419,6 +421,7 @@ export declare const standardConfigSchema: {
|
|
|
419
421
|
library?: "fontawesome" | "lucide" | undefined;
|
|
420
422
|
} | undefined;
|
|
421
423
|
tag?: string | undefined;
|
|
424
|
+
public?: boolean | undefined;
|
|
422
425
|
hidden?: boolean | undefined;
|
|
423
426
|
root?: string | undefined;
|
|
424
427
|
}>, import("zod").ZodObject<{
|
|
@@ -437,6 +440,7 @@ export declare const standardConfigSchema: {
|
|
|
437
440
|
}>]>>;
|
|
438
441
|
group: import("zod").ZodString;
|
|
439
442
|
tag: import("zod").ZodOptional<import("zod").ZodString>;
|
|
443
|
+
public: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
440
444
|
hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
441
445
|
root: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodString, string, string>>;
|
|
442
446
|
asyncapi: import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many">, import("zod").ZodObject<{
|
|
@@ -464,6 +468,7 @@ export declare const standardConfigSchema: {
|
|
|
464
468
|
library?: "fontawesome" | "lucide" | undefined;
|
|
465
469
|
} | undefined;
|
|
466
470
|
tag?: string | undefined;
|
|
471
|
+
public?: boolean | undefined;
|
|
467
472
|
hidden?: boolean | undefined;
|
|
468
473
|
root?: string | undefined;
|
|
469
474
|
}, {
|
|
@@ -481,6 +486,7 @@ export declare const standardConfigSchema: {
|
|
|
481
486
|
library?: "fontawesome" | "lucide" | undefined;
|
|
482
487
|
} | undefined;
|
|
483
488
|
tag?: string | undefined;
|
|
489
|
+
public?: boolean | undefined;
|
|
484
490
|
hidden?: boolean | undefined;
|
|
485
491
|
root?: string | undefined;
|
|
486
492
|
}>, import("zod").ZodObject<{
|
|
@@ -499,6 +505,7 @@ export declare const standardConfigSchema: {
|
|
|
499
505
|
}>]>>;
|
|
500
506
|
group: import("zod").ZodString;
|
|
501
507
|
tag: import("zod").ZodOptional<import("zod").ZodString>;
|
|
508
|
+
public: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
502
509
|
hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
503
510
|
root: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodString, string, string>>;
|
|
504
511
|
pages: import("zod").ZodLazy<import("zod").ZodArray<import("zod").ZodType<any, import("zod").ZodTypeDef, any>, "many">>;
|
|
@@ -511,6 +518,7 @@ export declare const standardConfigSchema: {
|
|
|
511
518
|
library?: "fontawesome" | "lucide" | undefined;
|
|
512
519
|
} | undefined;
|
|
513
520
|
tag?: string | undefined;
|
|
521
|
+
public?: boolean | undefined;
|
|
514
522
|
hidden?: boolean | undefined;
|
|
515
523
|
root?: string | undefined;
|
|
516
524
|
}, {
|
|
@@ -522,6 +530,7 @@ export declare const standardConfigSchema: {
|
|
|
522
530
|
library?: "fontawesome" | "lucide" | undefined;
|
|
523
531
|
} | undefined;
|
|
524
532
|
tag?: string | undefined;
|
|
533
|
+
public?: boolean | undefined;
|
|
525
534
|
hidden?: boolean | undefined;
|
|
526
535
|
root?: string | undefined;
|
|
527
536
|
}>]>, "many">;
|
|
@@ -541,6 +550,7 @@ export declare const standardConfigSchema: {
|
|
|
541
550
|
library?: "fontawesome" | "lucide" | undefined;
|
|
542
551
|
} | undefined;
|
|
543
552
|
tag?: string | undefined;
|
|
553
|
+
public?: boolean | undefined;
|
|
544
554
|
hidden?: boolean | undefined;
|
|
545
555
|
root?: string | undefined;
|
|
546
556
|
} | {
|
|
@@ -558,6 +568,7 @@ export declare const standardConfigSchema: {
|
|
|
558
568
|
library?: "fontawesome" | "lucide" | undefined;
|
|
559
569
|
} | undefined;
|
|
560
570
|
tag?: string | undefined;
|
|
571
|
+
public?: boolean | undefined;
|
|
561
572
|
hidden?: boolean | undefined;
|
|
562
573
|
root?: string | undefined;
|
|
563
574
|
} | {
|
|
@@ -569,6 +580,7 @@ export declare const standardConfigSchema: {
|
|
|
569
580
|
library?: "fontawesome" | "lucide" | undefined;
|
|
570
581
|
} | undefined;
|
|
571
582
|
tag?: string | undefined;
|
|
583
|
+
public?: boolean | undefined;
|
|
572
584
|
hidden?: boolean | undefined;
|
|
573
585
|
root?: string | undefined;
|
|
574
586
|
})[];
|
|
@@ -589,6 +601,7 @@ export declare const standardConfigSchema: {
|
|
|
589
601
|
library?: "fontawesome" | "lucide" | undefined;
|
|
590
602
|
} | undefined;
|
|
591
603
|
tag?: string | undefined;
|
|
604
|
+
public?: boolean | undefined;
|
|
592
605
|
hidden?: boolean | undefined;
|
|
593
606
|
root?: string | undefined;
|
|
594
607
|
} | {
|
|
@@ -606,6 +619,7 @@ export declare const standardConfigSchema: {
|
|
|
606
619
|
library?: "fontawesome" | "lucide" | undefined;
|
|
607
620
|
} | undefined;
|
|
608
621
|
tag?: string | undefined;
|
|
622
|
+
public?: boolean | undefined;
|
|
609
623
|
hidden?: boolean | undefined;
|
|
610
624
|
root?: string | undefined;
|
|
611
625
|
} | {
|
|
@@ -617,6 +631,7 @@ export declare const standardConfigSchema: {
|
|
|
617
631
|
library?: "fontawesome" | "lucide" | undefined;
|
|
618
632
|
} | undefined;
|
|
619
633
|
tag?: string | undefined;
|
|
634
|
+
public?: boolean | undefined;
|
|
620
635
|
hidden?: boolean | undefined;
|
|
621
636
|
root?: string | undefined;
|
|
622
637
|
})[];
|