@mintlify/validation 0.1.679 → 0.1.681
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 +120 -0
- package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +7 -0
- package/dist/mint-config/schemas/v2/properties/navigation/groups.js +8 -2
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +20 -0
- package/dist/mint-config/schemas/v2/properties/navigation/pages.d.ts +6 -0
- package/dist/mint-config/schemas/v2/properties/reusable/page.d.ts +3 -0
- package/dist/mint-config/schemas/v2/properties/reusable/page.js +1 -0
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +12 -0
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +12 -0
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +12 -0
- package/dist/mint-config/schemas/v2/themes/luma.d.ts +12 -0
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +12 -0
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +12 -0
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +12 -0
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +8 -0
- package/dist/mint-config/schemas/v2/themes/sequoia.d.ts +12 -0
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +12 -0
- package/dist/mint-config/validateConfig.d.ts +36 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/deployment/editor.d.ts +1 -0
- package/package.json +3 -3
|
@@ -569,6 +569,7 @@ export declare const lumaConfigSchema: z.ZodObject<{
|
|
|
569
569
|
public?: boolean | undefined;
|
|
570
570
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
571
571
|
tag?: string | undefined;
|
|
572
|
+
boost?: number | undefined;
|
|
572
573
|
hidden?: boolean | undefined;
|
|
573
574
|
root?: string | undefined;
|
|
574
575
|
} & {
|
|
@@ -593,6 +594,7 @@ export declare const lumaConfigSchema: z.ZodObject<{
|
|
|
593
594
|
public?: boolean | undefined;
|
|
594
595
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
595
596
|
tag?: string | undefined;
|
|
597
|
+
boost?: number | undefined;
|
|
596
598
|
hidden?: boolean | undefined;
|
|
597
599
|
root?: string | undefined;
|
|
598
600
|
} & {
|
|
@@ -619,6 +621,7 @@ export declare const lumaConfigSchema: z.ZodObject<{
|
|
|
619
621
|
public?: boolean | undefined;
|
|
620
622
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
621
623
|
tag?: string | undefined;
|
|
624
|
+
boost?: number | undefined;
|
|
622
625
|
hidden?: boolean | undefined;
|
|
623
626
|
root?: string | undefined;
|
|
624
627
|
} & {
|
|
@@ -647,6 +650,7 @@ export declare const lumaConfigSchema: z.ZodObject<{
|
|
|
647
650
|
public?: boolean | undefined;
|
|
648
651
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
649
652
|
tag?: string | undefined;
|
|
653
|
+
boost?: number | undefined;
|
|
650
654
|
hidden?: boolean | undefined;
|
|
651
655
|
root?: string | undefined;
|
|
652
656
|
} & {
|
|
@@ -678,6 +682,7 @@ export declare const lumaConfigSchema: z.ZodObject<{
|
|
|
678
682
|
public?: boolean | undefined;
|
|
679
683
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
680
684
|
tag?: string | undefined;
|
|
685
|
+
boost?: number | undefined;
|
|
681
686
|
hidden?: boolean | undefined;
|
|
682
687
|
root?: string | undefined;
|
|
683
688
|
} & {
|
|
@@ -702,6 +707,7 @@ export declare const lumaConfigSchema: z.ZodObject<{
|
|
|
702
707
|
public?: boolean | undefined;
|
|
703
708
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
704
709
|
tag?: string | undefined;
|
|
710
|
+
boost?: number | undefined;
|
|
705
711
|
hidden?: boolean | undefined;
|
|
706
712
|
root?: string | undefined;
|
|
707
713
|
} & {
|
|
@@ -728,6 +734,7 @@ export declare const lumaConfigSchema: z.ZodObject<{
|
|
|
728
734
|
public?: boolean | undefined;
|
|
729
735
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
730
736
|
tag?: string | undefined;
|
|
737
|
+
boost?: number | undefined;
|
|
731
738
|
hidden?: boolean | undefined;
|
|
732
739
|
root?: string | undefined;
|
|
733
740
|
} & {
|
|
@@ -756,6 +763,7 @@ export declare const lumaConfigSchema: z.ZodObject<{
|
|
|
756
763
|
public?: boolean | undefined;
|
|
757
764
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
758
765
|
tag?: string | undefined;
|
|
766
|
+
boost?: number | undefined;
|
|
759
767
|
hidden?: boolean | undefined;
|
|
760
768
|
root?: string | undefined;
|
|
761
769
|
} & {
|
|
@@ -1622,6 +1630,7 @@ export declare const lumaConfigSchema: z.ZodObject<{
|
|
|
1622
1630
|
public?: boolean | undefined;
|
|
1623
1631
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1624
1632
|
tag?: string | undefined;
|
|
1633
|
+
boost?: number | undefined;
|
|
1625
1634
|
hidden?: boolean | undefined;
|
|
1626
1635
|
root?: string | undefined;
|
|
1627
1636
|
} & {
|
|
@@ -1650,6 +1659,7 @@ export declare const lumaConfigSchema: z.ZodObject<{
|
|
|
1650
1659
|
public?: boolean | undefined;
|
|
1651
1660
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1652
1661
|
tag?: string | undefined;
|
|
1662
|
+
boost?: number | undefined;
|
|
1653
1663
|
hidden?: boolean | undefined;
|
|
1654
1664
|
root?: string | undefined;
|
|
1655
1665
|
} & {
|
|
@@ -1990,6 +2000,7 @@ export declare const lumaConfigSchema: z.ZodObject<{
|
|
|
1990
2000
|
public?: boolean | undefined;
|
|
1991
2001
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1992
2002
|
tag?: string | undefined;
|
|
2003
|
+
boost?: number | undefined;
|
|
1993
2004
|
hidden?: boolean | undefined;
|
|
1994
2005
|
root?: string | undefined;
|
|
1995
2006
|
} & {
|
|
@@ -2018,6 +2029,7 @@ export declare const lumaConfigSchema: z.ZodObject<{
|
|
|
2018
2029
|
public?: boolean | undefined;
|
|
2019
2030
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
2020
2031
|
tag?: string | undefined;
|
|
2032
|
+
boost?: number | undefined;
|
|
2021
2033
|
hidden?: boolean | undefined;
|
|
2022
2034
|
root?: string | undefined;
|
|
2023
2035
|
} & {
|
|
@@ -569,6 +569,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
569
569
|
public?: boolean | undefined;
|
|
570
570
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
571
571
|
tag?: string | undefined;
|
|
572
|
+
boost?: number | undefined;
|
|
572
573
|
hidden?: boolean | undefined;
|
|
573
574
|
root?: string | undefined;
|
|
574
575
|
} & {
|
|
@@ -593,6 +594,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
593
594
|
public?: boolean | undefined;
|
|
594
595
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
595
596
|
tag?: string | undefined;
|
|
597
|
+
boost?: number | undefined;
|
|
596
598
|
hidden?: boolean | undefined;
|
|
597
599
|
root?: string | undefined;
|
|
598
600
|
} & {
|
|
@@ -619,6 +621,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
619
621
|
public?: boolean | undefined;
|
|
620
622
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
621
623
|
tag?: string | undefined;
|
|
624
|
+
boost?: number | undefined;
|
|
622
625
|
hidden?: boolean | undefined;
|
|
623
626
|
root?: string | undefined;
|
|
624
627
|
} & {
|
|
@@ -647,6 +650,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
647
650
|
public?: boolean | undefined;
|
|
648
651
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
649
652
|
tag?: string | undefined;
|
|
653
|
+
boost?: number | undefined;
|
|
650
654
|
hidden?: boolean | undefined;
|
|
651
655
|
root?: string | undefined;
|
|
652
656
|
} & {
|
|
@@ -678,6 +682,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
678
682
|
public?: boolean | undefined;
|
|
679
683
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
680
684
|
tag?: string | undefined;
|
|
685
|
+
boost?: number | undefined;
|
|
681
686
|
hidden?: boolean | undefined;
|
|
682
687
|
root?: string | undefined;
|
|
683
688
|
} & {
|
|
@@ -702,6 +707,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
702
707
|
public?: boolean | undefined;
|
|
703
708
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
704
709
|
tag?: string | undefined;
|
|
710
|
+
boost?: number | undefined;
|
|
705
711
|
hidden?: boolean | undefined;
|
|
706
712
|
root?: string | undefined;
|
|
707
713
|
} & {
|
|
@@ -728,6 +734,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
728
734
|
public?: boolean | undefined;
|
|
729
735
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
730
736
|
tag?: string | undefined;
|
|
737
|
+
boost?: number | undefined;
|
|
731
738
|
hidden?: boolean | undefined;
|
|
732
739
|
root?: string | undefined;
|
|
733
740
|
} & {
|
|
@@ -756,6 +763,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
756
763
|
public?: boolean | undefined;
|
|
757
764
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
758
765
|
tag?: string | undefined;
|
|
766
|
+
boost?: number | undefined;
|
|
759
767
|
hidden?: boolean | undefined;
|
|
760
768
|
root?: string | undefined;
|
|
761
769
|
} & {
|
|
@@ -1622,6 +1630,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1622
1630
|
public?: boolean | undefined;
|
|
1623
1631
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1624
1632
|
tag?: string | undefined;
|
|
1633
|
+
boost?: number | undefined;
|
|
1625
1634
|
hidden?: boolean | undefined;
|
|
1626
1635
|
root?: string | undefined;
|
|
1627
1636
|
} & {
|
|
@@ -1650,6 +1659,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1650
1659
|
public?: boolean | undefined;
|
|
1651
1660
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1652
1661
|
tag?: string | undefined;
|
|
1662
|
+
boost?: number | undefined;
|
|
1653
1663
|
hidden?: boolean | undefined;
|
|
1654
1664
|
root?: string | undefined;
|
|
1655
1665
|
} & {
|
|
@@ -1990,6 +2000,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1990
2000
|
public?: boolean | undefined;
|
|
1991
2001
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1992
2002
|
tag?: string | undefined;
|
|
2003
|
+
boost?: number | undefined;
|
|
1993
2004
|
hidden?: boolean | undefined;
|
|
1994
2005
|
root?: string | undefined;
|
|
1995
2006
|
} & {
|
|
@@ -2018,6 +2029,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
2018
2029
|
public?: boolean | undefined;
|
|
2019
2030
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
2020
2031
|
tag?: string | undefined;
|
|
2032
|
+
boost?: number | undefined;
|
|
2021
2033
|
hidden?: boolean | undefined;
|
|
2022
2034
|
root?: string | undefined;
|
|
2023
2035
|
} & {
|
|
@@ -569,6 +569,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
569
569
|
public?: boolean | undefined;
|
|
570
570
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
571
571
|
tag?: string | undefined;
|
|
572
|
+
boost?: number | undefined;
|
|
572
573
|
hidden?: boolean | undefined;
|
|
573
574
|
root?: string | undefined;
|
|
574
575
|
} & {
|
|
@@ -593,6 +594,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
593
594
|
public?: boolean | undefined;
|
|
594
595
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
595
596
|
tag?: string | undefined;
|
|
597
|
+
boost?: number | undefined;
|
|
596
598
|
hidden?: boolean | undefined;
|
|
597
599
|
root?: string | undefined;
|
|
598
600
|
} & {
|
|
@@ -619,6 +621,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
619
621
|
public?: boolean | undefined;
|
|
620
622
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
621
623
|
tag?: string | undefined;
|
|
624
|
+
boost?: number | undefined;
|
|
622
625
|
hidden?: boolean | undefined;
|
|
623
626
|
root?: string | undefined;
|
|
624
627
|
} & {
|
|
@@ -647,6 +650,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
647
650
|
public?: boolean | undefined;
|
|
648
651
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
649
652
|
tag?: string | undefined;
|
|
653
|
+
boost?: number | undefined;
|
|
650
654
|
hidden?: boolean | undefined;
|
|
651
655
|
root?: string | undefined;
|
|
652
656
|
} & {
|
|
@@ -678,6 +682,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
678
682
|
public?: boolean | undefined;
|
|
679
683
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
680
684
|
tag?: string | undefined;
|
|
685
|
+
boost?: number | undefined;
|
|
681
686
|
hidden?: boolean | undefined;
|
|
682
687
|
root?: string | undefined;
|
|
683
688
|
} & {
|
|
@@ -702,6 +707,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
702
707
|
public?: boolean | undefined;
|
|
703
708
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
704
709
|
tag?: string | undefined;
|
|
710
|
+
boost?: number | undefined;
|
|
705
711
|
hidden?: boolean | undefined;
|
|
706
712
|
root?: string | undefined;
|
|
707
713
|
} & {
|
|
@@ -728,6 +734,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
728
734
|
public?: boolean | undefined;
|
|
729
735
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
730
736
|
tag?: string | undefined;
|
|
737
|
+
boost?: number | undefined;
|
|
731
738
|
hidden?: boolean | undefined;
|
|
732
739
|
root?: string | undefined;
|
|
733
740
|
} & {
|
|
@@ -756,6 +763,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
756
763
|
public?: boolean | undefined;
|
|
757
764
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
758
765
|
tag?: string | undefined;
|
|
766
|
+
boost?: number | undefined;
|
|
759
767
|
hidden?: boolean | undefined;
|
|
760
768
|
root?: string | undefined;
|
|
761
769
|
} & {
|
|
@@ -1622,6 +1630,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1622
1630
|
public?: boolean | undefined;
|
|
1623
1631
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1624
1632
|
tag?: string | undefined;
|
|
1633
|
+
boost?: number | undefined;
|
|
1625
1634
|
hidden?: boolean | undefined;
|
|
1626
1635
|
root?: string | undefined;
|
|
1627
1636
|
} & {
|
|
@@ -1650,6 +1659,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1650
1659
|
public?: boolean | undefined;
|
|
1651
1660
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1652
1661
|
tag?: string | undefined;
|
|
1662
|
+
boost?: number | undefined;
|
|
1653
1663
|
hidden?: boolean | undefined;
|
|
1654
1664
|
root?: string | undefined;
|
|
1655
1665
|
} & {
|
|
@@ -1990,6 +2000,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1990
2000
|
public?: boolean | undefined;
|
|
1991
2001
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1992
2002
|
tag?: string | undefined;
|
|
2003
|
+
boost?: number | undefined;
|
|
1993
2004
|
hidden?: boolean | undefined;
|
|
1994
2005
|
root?: string | undefined;
|
|
1995
2006
|
} & {
|
|
@@ -2018,6 +2029,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
2018
2029
|
public?: boolean | undefined;
|
|
2019
2030
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
2020
2031
|
tag?: string | undefined;
|
|
2032
|
+
boost?: number | undefined;
|
|
2021
2033
|
hidden?: boolean | undefined;
|
|
2022
2034
|
root?: string | undefined;
|
|
2023
2035
|
} & {
|
|
@@ -569,6 +569,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
569
569
|
public?: boolean | undefined;
|
|
570
570
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
571
571
|
tag?: string | undefined;
|
|
572
|
+
boost?: number | undefined;
|
|
572
573
|
hidden?: boolean | undefined;
|
|
573
574
|
root?: string | undefined;
|
|
574
575
|
} & {
|
|
@@ -593,6 +594,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
593
594
|
public?: boolean | undefined;
|
|
594
595
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
595
596
|
tag?: string | undefined;
|
|
597
|
+
boost?: number | undefined;
|
|
596
598
|
hidden?: boolean | undefined;
|
|
597
599
|
root?: string | undefined;
|
|
598
600
|
} & {
|
|
@@ -619,6 +621,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
619
621
|
public?: boolean | undefined;
|
|
620
622
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
621
623
|
tag?: string | undefined;
|
|
624
|
+
boost?: number | undefined;
|
|
622
625
|
hidden?: boolean | undefined;
|
|
623
626
|
root?: string | undefined;
|
|
624
627
|
} & {
|
|
@@ -647,6 +650,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
647
650
|
public?: boolean | undefined;
|
|
648
651
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
649
652
|
tag?: string | undefined;
|
|
653
|
+
boost?: number | undefined;
|
|
650
654
|
hidden?: boolean | undefined;
|
|
651
655
|
root?: string | undefined;
|
|
652
656
|
} & {
|
|
@@ -678,6 +682,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
678
682
|
public?: boolean | undefined;
|
|
679
683
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
680
684
|
tag?: string | undefined;
|
|
685
|
+
boost?: number | undefined;
|
|
681
686
|
hidden?: boolean | undefined;
|
|
682
687
|
root?: string | undefined;
|
|
683
688
|
} & {
|
|
@@ -702,6 +707,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
702
707
|
public?: boolean | undefined;
|
|
703
708
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
704
709
|
tag?: string | undefined;
|
|
710
|
+
boost?: number | undefined;
|
|
705
711
|
hidden?: boolean | undefined;
|
|
706
712
|
root?: string | undefined;
|
|
707
713
|
} & {
|
|
@@ -728,6 +734,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
728
734
|
public?: boolean | undefined;
|
|
729
735
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
730
736
|
tag?: string | undefined;
|
|
737
|
+
boost?: number | undefined;
|
|
731
738
|
hidden?: boolean | undefined;
|
|
732
739
|
root?: string | undefined;
|
|
733
740
|
} & {
|
|
@@ -756,6 +763,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
756
763
|
public?: boolean | undefined;
|
|
757
764
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
758
765
|
tag?: string | undefined;
|
|
766
|
+
boost?: number | undefined;
|
|
759
767
|
hidden?: boolean | undefined;
|
|
760
768
|
root?: string | undefined;
|
|
761
769
|
} & {
|
|
@@ -1622,6 +1630,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1622
1630
|
public?: boolean | undefined;
|
|
1623
1631
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1624
1632
|
tag?: string | undefined;
|
|
1633
|
+
boost?: number | undefined;
|
|
1625
1634
|
hidden?: boolean | undefined;
|
|
1626
1635
|
root?: string | undefined;
|
|
1627
1636
|
} & {
|
|
@@ -1650,6 +1659,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1650
1659
|
public?: boolean | undefined;
|
|
1651
1660
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1652
1661
|
tag?: string | undefined;
|
|
1662
|
+
boost?: number | undefined;
|
|
1653
1663
|
hidden?: boolean | undefined;
|
|
1654
1664
|
root?: string | undefined;
|
|
1655
1665
|
} & {
|
|
@@ -1990,6 +2000,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1990
2000
|
public?: boolean | undefined;
|
|
1991
2001
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1992
2002
|
tag?: string | undefined;
|
|
2003
|
+
boost?: number | undefined;
|
|
1993
2004
|
hidden?: boolean | undefined;
|
|
1994
2005
|
root?: string | undefined;
|
|
1995
2006
|
} & {
|
|
@@ -2018,6 +2029,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
2018
2029
|
public?: boolean | undefined;
|
|
2019
2030
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
2020
2031
|
tag?: string | undefined;
|
|
2032
|
+
boost?: number | undefined;
|
|
2021
2033
|
hidden?: boolean | undefined;
|
|
2022
2034
|
root?: string | undefined;
|
|
2023
2035
|
} & {
|
|
@@ -568,6 +568,7 @@ export declare const standardConfigSchema: {
|
|
|
568
568
|
public?: boolean | undefined;
|
|
569
569
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
570
570
|
tag?: string | undefined;
|
|
571
|
+
boost?: number | undefined;
|
|
571
572
|
hidden?: boolean | undefined;
|
|
572
573
|
root?: string | undefined;
|
|
573
574
|
} & {
|
|
@@ -592,6 +593,7 @@ export declare const standardConfigSchema: {
|
|
|
592
593
|
public?: boolean | undefined;
|
|
593
594
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
594
595
|
tag?: string | undefined;
|
|
596
|
+
boost?: number | undefined;
|
|
595
597
|
hidden?: boolean | undefined;
|
|
596
598
|
root?: string | undefined;
|
|
597
599
|
} & {
|
|
@@ -618,6 +620,7 @@ export declare const standardConfigSchema: {
|
|
|
618
620
|
public?: boolean | undefined;
|
|
619
621
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
620
622
|
tag?: string | undefined;
|
|
623
|
+
boost?: number | undefined;
|
|
621
624
|
hidden?: boolean | undefined;
|
|
622
625
|
root?: string | undefined;
|
|
623
626
|
} & {
|
|
@@ -646,6 +649,7 @@ export declare const standardConfigSchema: {
|
|
|
646
649
|
public?: boolean | undefined;
|
|
647
650
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
648
651
|
tag?: string | undefined;
|
|
652
|
+
boost?: number | undefined;
|
|
649
653
|
hidden?: boolean | undefined;
|
|
650
654
|
root?: string | undefined;
|
|
651
655
|
} & {
|
|
@@ -677,6 +681,7 @@ export declare const standardConfigSchema: {
|
|
|
677
681
|
public?: boolean | undefined;
|
|
678
682
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
679
683
|
tag?: string | undefined;
|
|
684
|
+
boost?: number | undefined;
|
|
680
685
|
hidden?: boolean | undefined;
|
|
681
686
|
root?: string | undefined;
|
|
682
687
|
} & {
|
|
@@ -701,6 +706,7 @@ export declare const standardConfigSchema: {
|
|
|
701
706
|
public?: boolean | undefined;
|
|
702
707
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
703
708
|
tag?: string | undefined;
|
|
709
|
+
boost?: number | undefined;
|
|
704
710
|
hidden?: boolean | undefined;
|
|
705
711
|
root?: string | undefined;
|
|
706
712
|
} & {
|
|
@@ -727,6 +733,7 @@ export declare const standardConfigSchema: {
|
|
|
727
733
|
public?: boolean | undefined;
|
|
728
734
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
729
735
|
tag?: string | undefined;
|
|
736
|
+
boost?: number | undefined;
|
|
730
737
|
hidden?: boolean | undefined;
|
|
731
738
|
root?: string | undefined;
|
|
732
739
|
} & {
|
|
@@ -755,6 +762,7 @@ export declare const standardConfigSchema: {
|
|
|
755
762
|
public?: boolean | undefined;
|
|
756
763
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
757
764
|
tag?: string | undefined;
|
|
765
|
+
boost?: number | undefined;
|
|
758
766
|
hidden?: boolean | undefined;
|
|
759
767
|
root?: string | undefined;
|
|
760
768
|
} & {
|
|
@@ -569,6 +569,7 @@ export declare const sequoiaConfigSchema: z.ZodObject<{
|
|
|
569
569
|
public?: boolean | undefined;
|
|
570
570
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
571
571
|
tag?: string | undefined;
|
|
572
|
+
boost?: number | undefined;
|
|
572
573
|
hidden?: boolean | undefined;
|
|
573
574
|
root?: string | undefined;
|
|
574
575
|
} & {
|
|
@@ -593,6 +594,7 @@ export declare const sequoiaConfigSchema: z.ZodObject<{
|
|
|
593
594
|
public?: boolean | undefined;
|
|
594
595
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
595
596
|
tag?: string | undefined;
|
|
597
|
+
boost?: number | undefined;
|
|
596
598
|
hidden?: boolean | undefined;
|
|
597
599
|
root?: string | undefined;
|
|
598
600
|
} & {
|
|
@@ -619,6 +621,7 @@ export declare const sequoiaConfigSchema: z.ZodObject<{
|
|
|
619
621
|
public?: boolean | undefined;
|
|
620
622
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
621
623
|
tag?: string | undefined;
|
|
624
|
+
boost?: number | undefined;
|
|
622
625
|
hidden?: boolean | undefined;
|
|
623
626
|
root?: string | undefined;
|
|
624
627
|
} & {
|
|
@@ -647,6 +650,7 @@ export declare const sequoiaConfigSchema: z.ZodObject<{
|
|
|
647
650
|
public?: boolean | undefined;
|
|
648
651
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
649
652
|
tag?: string | undefined;
|
|
653
|
+
boost?: number | undefined;
|
|
650
654
|
hidden?: boolean | undefined;
|
|
651
655
|
root?: string | undefined;
|
|
652
656
|
} & {
|
|
@@ -678,6 +682,7 @@ export declare const sequoiaConfigSchema: z.ZodObject<{
|
|
|
678
682
|
public?: boolean | undefined;
|
|
679
683
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
680
684
|
tag?: string | undefined;
|
|
685
|
+
boost?: number | undefined;
|
|
681
686
|
hidden?: boolean | undefined;
|
|
682
687
|
root?: string | undefined;
|
|
683
688
|
} & {
|
|
@@ -702,6 +707,7 @@ export declare const sequoiaConfigSchema: z.ZodObject<{
|
|
|
702
707
|
public?: boolean | undefined;
|
|
703
708
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
704
709
|
tag?: string | undefined;
|
|
710
|
+
boost?: number | undefined;
|
|
705
711
|
hidden?: boolean | undefined;
|
|
706
712
|
root?: string | undefined;
|
|
707
713
|
} & {
|
|
@@ -728,6 +734,7 @@ export declare const sequoiaConfigSchema: z.ZodObject<{
|
|
|
728
734
|
public?: boolean | undefined;
|
|
729
735
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
730
736
|
tag?: string | undefined;
|
|
737
|
+
boost?: number | undefined;
|
|
731
738
|
hidden?: boolean | undefined;
|
|
732
739
|
root?: string | undefined;
|
|
733
740
|
} & {
|
|
@@ -756,6 +763,7 @@ export declare const sequoiaConfigSchema: z.ZodObject<{
|
|
|
756
763
|
public?: boolean | undefined;
|
|
757
764
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
758
765
|
tag?: string | undefined;
|
|
766
|
+
boost?: number | undefined;
|
|
759
767
|
hidden?: boolean | undefined;
|
|
760
768
|
root?: string | undefined;
|
|
761
769
|
} & {
|
|
@@ -1622,6 +1630,7 @@ export declare const sequoiaConfigSchema: z.ZodObject<{
|
|
|
1622
1630
|
public?: boolean | undefined;
|
|
1623
1631
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1624
1632
|
tag?: string | undefined;
|
|
1633
|
+
boost?: number | undefined;
|
|
1625
1634
|
hidden?: boolean | undefined;
|
|
1626
1635
|
root?: string | undefined;
|
|
1627
1636
|
} & {
|
|
@@ -1650,6 +1659,7 @@ export declare const sequoiaConfigSchema: z.ZodObject<{
|
|
|
1650
1659
|
public?: boolean | undefined;
|
|
1651
1660
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1652
1661
|
tag?: string | undefined;
|
|
1662
|
+
boost?: number | undefined;
|
|
1653
1663
|
hidden?: boolean | undefined;
|
|
1654
1664
|
root?: string | undefined;
|
|
1655
1665
|
} & {
|
|
@@ -1990,6 +2000,7 @@ export declare const sequoiaConfigSchema: z.ZodObject<{
|
|
|
1990
2000
|
public?: boolean | undefined;
|
|
1991
2001
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1992
2002
|
tag?: string | undefined;
|
|
2003
|
+
boost?: number | undefined;
|
|
1993
2004
|
hidden?: boolean | undefined;
|
|
1994
2005
|
root?: string | undefined;
|
|
1995
2006
|
} & {
|
|
@@ -2018,6 +2029,7 @@ export declare const sequoiaConfigSchema: z.ZodObject<{
|
|
|
2018
2029
|
public?: boolean | undefined;
|
|
2019
2030
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
2020
2031
|
tag?: string | undefined;
|
|
2032
|
+
boost?: number | undefined;
|
|
2021
2033
|
hidden?: boolean | undefined;
|
|
2022
2034
|
root?: string | undefined;
|
|
2023
2035
|
} & {
|
|
@@ -569,6 +569,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
569
569
|
public?: boolean | undefined;
|
|
570
570
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
571
571
|
tag?: string | undefined;
|
|
572
|
+
boost?: number | undefined;
|
|
572
573
|
hidden?: boolean | undefined;
|
|
573
574
|
root?: string | undefined;
|
|
574
575
|
} & {
|
|
@@ -593,6 +594,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
593
594
|
public?: boolean | undefined;
|
|
594
595
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
595
596
|
tag?: string | undefined;
|
|
597
|
+
boost?: number | undefined;
|
|
596
598
|
hidden?: boolean | undefined;
|
|
597
599
|
root?: string | undefined;
|
|
598
600
|
} & {
|
|
@@ -619,6 +621,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
619
621
|
public?: boolean | undefined;
|
|
620
622
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
621
623
|
tag?: string | undefined;
|
|
624
|
+
boost?: number | undefined;
|
|
622
625
|
hidden?: boolean | undefined;
|
|
623
626
|
root?: string | undefined;
|
|
624
627
|
} & {
|
|
@@ -647,6 +650,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
647
650
|
public?: boolean | undefined;
|
|
648
651
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
649
652
|
tag?: string | undefined;
|
|
653
|
+
boost?: number | undefined;
|
|
650
654
|
hidden?: boolean | undefined;
|
|
651
655
|
root?: string | undefined;
|
|
652
656
|
} & {
|
|
@@ -678,6 +682,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
678
682
|
public?: boolean | undefined;
|
|
679
683
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
680
684
|
tag?: string | undefined;
|
|
685
|
+
boost?: number | undefined;
|
|
681
686
|
hidden?: boolean | undefined;
|
|
682
687
|
root?: string | undefined;
|
|
683
688
|
} & {
|
|
@@ -702,6 +707,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
702
707
|
public?: boolean | undefined;
|
|
703
708
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
704
709
|
tag?: string | undefined;
|
|
710
|
+
boost?: number | undefined;
|
|
705
711
|
hidden?: boolean | undefined;
|
|
706
712
|
root?: string | undefined;
|
|
707
713
|
} & {
|
|
@@ -728,6 +734,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
728
734
|
public?: boolean | undefined;
|
|
729
735
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
730
736
|
tag?: string | undefined;
|
|
737
|
+
boost?: number | undefined;
|
|
731
738
|
hidden?: boolean | undefined;
|
|
732
739
|
root?: string | undefined;
|
|
733
740
|
} & {
|
|
@@ -756,6 +763,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
756
763
|
public?: boolean | undefined;
|
|
757
764
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
758
765
|
tag?: string | undefined;
|
|
766
|
+
boost?: number | undefined;
|
|
759
767
|
hidden?: boolean | undefined;
|
|
760
768
|
root?: string | undefined;
|
|
761
769
|
} & {
|
|
@@ -1622,6 +1630,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1622
1630
|
public?: boolean | undefined;
|
|
1623
1631
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1624
1632
|
tag?: string | undefined;
|
|
1633
|
+
boost?: number | undefined;
|
|
1625
1634
|
hidden?: boolean | undefined;
|
|
1626
1635
|
root?: string | undefined;
|
|
1627
1636
|
} & {
|
|
@@ -1650,6 +1659,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1650
1659
|
public?: boolean | undefined;
|
|
1651
1660
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1652
1661
|
tag?: string | undefined;
|
|
1662
|
+
boost?: number | undefined;
|
|
1653
1663
|
hidden?: boolean | undefined;
|
|
1654
1664
|
root?: string | undefined;
|
|
1655
1665
|
} & {
|
|
@@ -1990,6 +2000,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1990
2000
|
public?: boolean | undefined;
|
|
1991
2001
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1992
2002
|
tag?: string | undefined;
|
|
2003
|
+
boost?: number | undefined;
|
|
1993
2004
|
hidden?: boolean | undefined;
|
|
1994
2005
|
root?: string | undefined;
|
|
1995
2006
|
} & {
|
|
@@ -2018,6 +2029,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
2018
2029
|
public?: boolean | undefined;
|
|
2019
2030
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
2020
2031
|
tag?: string | undefined;
|
|
2032
|
+
boost?: number | undefined;
|
|
2021
2033
|
hidden?: boolean | undefined;
|
|
2022
2034
|
root?: string | undefined;
|
|
2023
2035
|
} & {
|