@mintlify/validation 0.1.241 → 0.1.243

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.
@@ -75,19 +75,6 @@ export declare const prismConfigSchema: z.ZodObject<{
75
75
  languages?: string[] | undefined;
76
76
  } | undefined;
77
77
  }>>;
78
- feedback: z.ZodOptional<z.ZodObject<{
79
- thumbs: z.ZodOptional<z.ZodBoolean>;
80
- edits: z.ZodOptional<z.ZodBoolean>;
81
- issues: z.ZodOptional<z.ZodBoolean>;
82
- }, "strip", z.ZodTypeAny, {
83
- thumbs?: boolean | undefined;
84
- edits?: boolean | undefined;
85
- issues?: boolean | undefined;
86
- }, {
87
- thumbs?: boolean | undefined;
88
- edits?: boolean | undefined;
89
- issues?: boolean | undefined;
90
- }>>;
91
78
  appearance: z.ZodOptional<z.ZodObject<{
92
79
  default: z.ZodDefault<z.ZodEnum<["system", "light", "dark"]>>;
93
80
  strict: z.ZodDefault<z.ZodBoolean>;
@@ -111,14 +98,14 @@ export declare const prismConfigSchema: z.ZodObject<{
111
98
  }>]>>;
112
99
  decoration: z.ZodDefault<z.ZodEnum<["gradient", "grid", "windows", "none"]>>;
113
100
  color: z.ZodOptional<z.ZodObject<{
114
- light: z.ZodString;
115
- dark: z.ZodString;
101
+ light: z.ZodOptional<z.ZodString>;
102
+ dark: z.ZodOptional<z.ZodString>;
116
103
  }, "strict", z.ZodTypeAny, {
117
- light: string;
118
- dark: string;
104
+ light?: string | undefined;
105
+ dark?: string | undefined;
119
106
  }, {
120
- light: string;
121
- dark: string;
107
+ light?: string | undefined;
108
+ dark?: string | undefined;
122
109
  }>>;
123
110
  }, "strip", z.ZodTypeAny, {
124
111
  decoration: "none" | "gradient" | "grid" | "windows";
@@ -127,8 +114,8 @@ export declare const prismConfigSchema: z.ZodObject<{
127
114
  dark: string;
128
115
  } | undefined;
129
116
  color?: {
130
- light: string;
131
- dark: string;
117
+ light?: string | undefined;
118
+ dark?: string | undefined;
132
119
  } | undefined;
133
120
  }, {
134
121
  image?: string | {
@@ -137,8 +124,8 @@ export declare const prismConfigSchema: z.ZodObject<{
137
124
  } | undefined;
138
125
  decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
139
126
  color?: {
140
- light: string;
141
- dark: string;
127
+ light?: string | undefined;
128
+ dark?: string | undefined;
142
129
  } | undefined;
143
130
  }>>;
144
131
  topbar: z.ZodOptional<z.ZodObject<{
@@ -609,14 +596,14 @@ export declare const prismConfigSchema: z.ZodObject<{
609
596
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
610
597
  }>]>>;
611
598
  color: z.ZodOptional<z.ZodObject<{
612
- light: z.ZodString;
613
- dark: z.ZodString;
599
+ light: z.ZodOptional<z.ZodString>;
600
+ dark: z.ZodOptional<z.ZodString>;
614
601
  }, "strict", z.ZodTypeAny, {
615
- light: string;
616
- dark: string;
602
+ light?: string | undefined;
603
+ dark?: string | undefined;
617
604
  }, {
618
- light: string;
619
- dark: string;
605
+ light?: string | undefined;
606
+ dark?: string | undefined;
620
607
  }>>;
621
608
  hidden: z.ZodOptional<z.ZodBoolean>;
622
609
  }, "strip", z.ZodTypeAny, {
@@ -626,8 +613,8 @@ export declare const prismConfigSchema: z.ZodObject<{
626
613
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
627
614
  } | undefined;
628
615
  color?: {
629
- light: string;
630
- dark: string;
616
+ light?: string | undefined;
617
+ dark?: string | undefined;
631
618
  } | undefined;
632
619
  hidden?: boolean | undefined;
633
620
  }, {
@@ -637,8 +624,8 @@ export declare const prismConfigSchema: z.ZodObject<{
637
624
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
638
625
  } | undefined;
639
626
  color?: {
640
- light: string;
641
- dark: string;
627
+ light?: string | undefined;
628
+ dark?: string | undefined;
642
629
  } | undefined;
643
630
  hidden?: boolean | undefined;
644
631
  }>, z.ZodObject<{
@@ -688,8 +675,8 @@ export declare const prismConfigSchema: z.ZodObject<{
688
675
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
689
676
  } | undefined;
690
677
  color?: {
691
- light: string;
692
- dark: string;
678
+ light?: string | undefined;
679
+ dark?: string | undefined;
693
680
  } | undefined;
694
681
  hidden?: boolean | undefined;
695
682
  } & {
@@ -735,8 +722,8 @@ export declare const prismConfigSchema: z.ZodObject<{
735
722
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
736
723
  } | undefined;
737
724
  color?: {
738
- light: string;
739
- dark: string;
725
+ light?: string | undefined;
726
+ dark?: string | undefined;
740
727
  } | undefined;
741
728
  hidden?: boolean | undefined;
742
729
  } & {
@@ -784,8 +771,8 @@ export declare const prismConfigSchema: z.ZodObject<{
784
771
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
785
772
  } | undefined;
786
773
  color?: {
787
- light: string;
788
- dark: string;
774
+ light?: string | undefined;
775
+ dark?: string | undefined;
789
776
  } | undefined;
790
777
  hidden?: boolean | undefined;
791
778
  } & {
@@ -833,8 +820,8 @@ export declare const prismConfigSchema: z.ZodObject<{
833
820
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
834
821
  } | undefined;
835
822
  color?: {
836
- light: string;
837
- dark: string;
823
+ light?: string | undefined;
824
+ dark?: string | undefined;
838
825
  } | undefined;
839
826
  hidden?: boolean | undefined;
840
827
  } & {
@@ -1399,8 +1386,8 @@ export declare const prismConfigSchema: z.ZodObject<{
1399
1386
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1400
1387
  } | undefined;
1401
1388
  color?: {
1402
- light: string;
1403
- dark: string;
1389
+ light?: string | undefined;
1390
+ dark?: string | undefined;
1404
1391
  } | undefined;
1405
1392
  hidden?: boolean | undefined;
1406
1393
  } & {
@@ -1505,8 +1492,8 @@ export declare const prismConfigSchema: z.ZodObject<{
1505
1492
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1506
1493
  } | undefined;
1507
1494
  color?: {
1508
- light: string;
1509
- dark: string;
1495
+ light?: string | undefined;
1496
+ dark?: string | undefined;
1510
1497
  } | undefined;
1511
1498
  hidden?: boolean | undefined;
1512
1499
  } & {
@@ -1534,11 +1521,6 @@ export declare const prismConfigSchema: z.ZodObject<{
1534
1521
  languages?: string[] | undefined;
1535
1522
  } | undefined;
1536
1523
  } | undefined;
1537
- feedback?: {
1538
- thumbs?: boolean | undefined;
1539
- edits?: boolean | undefined;
1540
- issues?: boolean | undefined;
1541
- } | undefined;
1542
1524
  appearance?: {
1543
1525
  strict: boolean;
1544
1526
  default: "light" | "dark" | "system";
@@ -1550,8 +1532,8 @@ export declare const prismConfigSchema: z.ZodObject<{
1550
1532
  dark: string;
1551
1533
  } | undefined;
1552
1534
  color?: {
1553
- light: string;
1554
- dark: string;
1535
+ light?: string | undefined;
1536
+ dark?: string | undefined;
1555
1537
  } | undefined;
1556
1538
  } | undefined;
1557
1539
  topbar?: {
@@ -1779,8 +1761,8 @@ export declare const prismConfigSchema: z.ZodObject<{
1779
1761
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1780
1762
  } | undefined;
1781
1763
  color?: {
1782
- light: string;
1783
- dark: string;
1764
+ light?: string | undefined;
1765
+ dark?: string | undefined;
1784
1766
  } | undefined;
1785
1767
  hidden?: boolean | undefined;
1786
1768
  } & {
@@ -1885,8 +1867,8 @@ export declare const prismConfigSchema: z.ZodObject<{
1885
1867
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1886
1868
  } | undefined;
1887
1869
  color?: {
1888
- light: string;
1889
- dark: string;
1870
+ light?: string | undefined;
1871
+ dark?: string | undefined;
1890
1872
  } | undefined;
1891
1873
  hidden?: boolean | undefined;
1892
1874
  } & {
@@ -1915,11 +1897,6 @@ export declare const prismConfigSchema: z.ZodObject<{
1915
1897
  languages?: string[] | undefined;
1916
1898
  } | undefined;
1917
1899
  } | undefined;
1918
- feedback?: {
1919
- thumbs?: boolean | undefined;
1920
- edits?: boolean | undefined;
1921
- issues?: boolean | undefined;
1922
- } | undefined;
1923
1900
  appearance?: {
1924
1901
  default?: "light" | "dark" | "system" | undefined;
1925
1902
  strict?: boolean | undefined;
@@ -1931,8 +1908,8 @@ export declare const prismConfigSchema: z.ZodObject<{
1931
1908
  } | undefined;
1932
1909
  decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
1933
1910
  color?: {
1934
- light: string;
1935
- dark: string;
1911
+ light?: string | undefined;
1912
+ dark?: string | undefined;
1936
1913
  } | undefined;
1937
1914
  } | undefined;
1938
1915
  topbar?: {
@@ -75,19 +75,6 @@ export declare const quillConfigSchema: z.ZodObject<{
75
75
  languages?: string[] | undefined;
76
76
  } | undefined;
77
77
  }>>;
78
- feedback: z.ZodOptional<z.ZodObject<{
79
- thumbs: z.ZodOptional<z.ZodBoolean>;
80
- edits: z.ZodOptional<z.ZodBoolean>;
81
- issues: z.ZodOptional<z.ZodBoolean>;
82
- }, "strip", z.ZodTypeAny, {
83
- thumbs?: boolean | undefined;
84
- edits?: boolean | undefined;
85
- issues?: boolean | undefined;
86
- }, {
87
- thumbs?: boolean | undefined;
88
- edits?: boolean | undefined;
89
- issues?: boolean | undefined;
90
- }>>;
91
78
  appearance: z.ZodOptional<z.ZodObject<{
92
79
  default: z.ZodDefault<z.ZodEnum<["system", "light", "dark"]>>;
93
80
  strict: z.ZodDefault<z.ZodBoolean>;
@@ -111,14 +98,14 @@ export declare const quillConfigSchema: z.ZodObject<{
111
98
  }>]>>;
112
99
  decoration: z.ZodDefault<z.ZodEnum<["gradient", "grid", "windows", "none"]>>;
113
100
  color: z.ZodOptional<z.ZodObject<{
114
- light: z.ZodString;
115
- dark: z.ZodString;
101
+ light: z.ZodOptional<z.ZodString>;
102
+ dark: z.ZodOptional<z.ZodString>;
116
103
  }, "strict", z.ZodTypeAny, {
117
- light: string;
118
- dark: string;
104
+ light?: string | undefined;
105
+ dark?: string | undefined;
119
106
  }, {
120
- light: string;
121
- dark: string;
107
+ light?: string | undefined;
108
+ dark?: string | undefined;
122
109
  }>>;
123
110
  }, "strip", z.ZodTypeAny, {
124
111
  decoration: "none" | "gradient" | "grid" | "windows";
@@ -127,8 +114,8 @@ export declare const quillConfigSchema: z.ZodObject<{
127
114
  dark: string;
128
115
  } | undefined;
129
116
  color?: {
130
- light: string;
131
- dark: string;
117
+ light?: string | undefined;
118
+ dark?: string | undefined;
132
119
  } | undefined;
133
120
  }, {
134
121
  image?: string | {
@@ -137,8 +124,8 @@ export declare const quillConfigSchema: z.ZodObject<{
137
124
  } | undefined;
138
125
  decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
139
126
  color?: {
140
- light: string;
141
- dark: string;
127
+ light?: string | undefined;
128
+ dark?: string | undefined;
142
129
  } | undefined;
143
130
  }>>;
144
131
  topbar: z.ZodOptional<z.ZodObject<{
@@ -609,14 +596,14 @@ export declare const quillConfigSchema: z.ZodObject<{
609
596
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
610
597
  }>]>>;
611
598
  color: z.ZodOptional<z.ZodObject<{
612
- light: z.ZodString;
613
- dark: z.ZodString;
599
+ light: z.ZodOptional<z.ZodString>;
600
+ dark: z.ZodOptional<z.ZodString>;
614
601
  }, "strict", z.ZodTypeAny, {
615
- light: string;
616
- dark: string;
602
+ light?: string | undefined;
603
+ dark?: string | undefined;
617
604
  }, {
618
- light: string;
619
- dark: string;
605
+ light?: string | undefined;
606
+ dark?: string | undefined;
620
607
  }>>;
621
608
  hidden: z.ZodOptional<z.ZodBoolean>;
622
609
  }, "strip", z.ZodTypeAny, {
@@ -626,8 +613,8 @@ export declare const quillConfigSchema: z.ZodObject<{
626
613
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
627
614
  } | undefined;
628
615
  color?: {
629
- light: string;
630
- dark: string;
616
+ light?: string | undefined;
617
+ dark?: string | undefined;
631
618
  } | undefined;
632
619
  hidden?: boolean | undefined;
633
620
  }, {
@@ -637,8 +624,8 @@ export declare const quillConfigSchema: z.ZodObject<{
637
624
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
638
625
  } | undefined;
639
626
  color?: {
640
- light: string;
641
- dark: string;
627
+ light?: string | undefined;
628
+ dark?: string | undefined;
642
629
  } | undefined;
643
630
  hidden?: boolean | undefined;
644
631
  }>, z.ZodObject<{
@@ -688,8 +675,8 @@ export declare const quillConfigSchema: z.ZodObject<{
688
675
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
689
676
  } | undefined;
690
677
  color?: {
691
- light: string;
692
- dark: string;
678
+ light?: string | undefined;
679
+ dark?: string | undefined;
693
680
  } | undefined;
694
681
  hidden?: boolean | undefined;
695
682
  } & {
@@ -735,8 +722,8 @@ export declare const quillConfigSchema: z.ZodObject<{
735
722
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
736
723
  } | undefined;
737
724
  color?: {
738
- light: string;
739
- dark: string;
725
+ light?: string | undefined;
726
+ dark?: string | undefined;
740
727
  } | undefined;
741
728
  hidden?: boolean | undefined;
742
729
  } & {
@@ -784,8 +771,8 @@ export declare const quillConfigSchema: z.ZodObject<{
784
771
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
785
772
  } | undefined;
786
773
  color?: {
787
- light: string;
788
- dark: string;
774
+ light?: string | undefined;
775
+ dark?: string | undefined;
789
776
  } | undefined;
790
777
  hidden?: boolean | undefined;
791
778
  } & {
@@ -833,8 +820,8 @@ export declare const quillConfigSchema: z.ZodObject<{
833
820
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
834
821
  } | undefined;
835
822
  color?: {
836
- light: string;
837
- dark: string;
823
+ light?: string | undefined;
824
+ dark?: string | undefined;
838
825
  } | undefined;
839
826
  hidden?: boolean | undefined;
840
827
  } & {
@@ -1399,8 +1386,8 @@ export declare const quillConfigSchema: z.ZodObject<{
1399
1386
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1400
1387
  } | undefined;
1401
1388
  color?: {
1402
- light: string;
1403
- dark: string;
1389
+ light?: string | undefined;
1390
+ dark?: string | undefined;
1404
1391
  } | undefined;
1405
1392
  hidden?: boolean | undefined;
1406
1393
  } & {
@@ -1505,8 +1492,8 @@ export declare const quillConfigSchema: z.ZodObject<{
1505
1492
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1506
1493
  } | undefined;
1507
1494
  color?: {
1508
- light: string;
1509
- dark: string;
1495
+ light?: string | undefined;
1496
+ dark?: string | undefined;
1510
1497
  } | undefined;
1511
1498
  hidden?: boolean | undefined;
1512
1499
  } & {
@@ -1534,11 +1521,6 @@ export declare const quillConfigSchema: z.ZodObject<{
1534
1521
  languages?: string[] | undefined;
1535
1522
  } | undefined;
1536
1523
  } | undefined;
1537
- feedback?: {
1538
- thumbs?: boolean | undefined;
1539
- edits?: boolean | undefined;
1540
- issues?: boolean | undefined;
1541
- } | undefined;
1542
1524
  appearance?: {
1543
1525
  strict: boolean;
1544
1526
  default: "light" | "dark" | "system";
@@ -1550,8 +1532,8 @@ export declare const quillConfigSchema: z.ZodObject<{
1550
1532
  dark: string;
1551
1533
  } | undefined;
1552
1534
  color?: {
1553
- light: string;
1554
- dark: string;
1535
+ light?: string | undefined;
1536
+ dark?: string | undefined;
1555
1537
  } | undefined;
1556
1538
  } | undefined;
1557
1539
  topbar?: {
@@ -1779,8 +1761,8 @@ export declare const quillConfigSchema: z.ZodObject<{
1779
1761
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1780
1762
  } | undefined;
1781
1763
  color?: {
1782
- light: string;
1783
- dark: string;
1764
+ light?: string | undefined;
1765
+ dark?: string | undefined;
1784
1766
  } | undefined;
1785
1767
  hidden?: boolean | undefined;
1786
1768
  } & {
@@ -1885,8 +1867,8 @@ export declare const quillConfigSchema: z.ZodObject<{
1885
1867
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1886
1868
  } | undefined;
1887
1869
  color?: {
1888
- light: string;
1889
- dark: string;
1870
+ light?: string | undefined;
1871
+ dark?: string | undefined;
1890
1872
  } | undefined;
1891
1873
  hidden?: boolean | undefined;
1892
1874
  } & {
@@ -1915,11 +1897,6 @@ export declare const quillConfigSchema: z.ZodObject<{
1915
1897
  languages?: string[] | undefined;
1916
1898
  } | undefined;
1917
1899
  } | undefined;
1918
- feedback?: {
1919
- thumbs?: boolean | undefined;
1920
- edits?: boolean | undefined;
1921
- issues?: boolean | undefined;
1922
- } | undefined;
1923
1900
  appearance?: {
1924
1901
  default?: "light" | "dark" | "system" | undefined;
1925
1902
  strict?: boolean | undefined;
@@ -1931,8 +1908,8 @@ export declare const quillConfigSchema: z.ZodObject<{
1931
1908
  } | undefined;
1932
1909
  decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
1933
1910
  color?: {
1934
- light: string;
1935
- dark: string;
1911
+ light?: string | undefined;
1912
+ dark?: string | undefined;
1936
1913
  } | undefined;
1937
1914
  } | undefined;
1938
1915
  topbar?: {
@@ -74,19 +74,6 @@ export declare const standardConfigSchema: {
74
74
  languages?: string[] | undefined;
75
75
  } | undefined;
76
76
  }>>;
77
- feedback: import("zod").ZodOptional<import("zod").ZodObject<{
78
- thumbs: import("zod").ZodOptional<import("zod").ZodBoolean>;
79
- edits: import("zod").ZodOptional<import("zod").ZodBoolean>;
80
- issues: import("zod").ZodOptional<import("zod").ZodBoolean>;
81
- }, "strip", import("zod").ZodTypeAny, {
82
- thumbs?: boolean | undefined;
83
- edits?: boolean | undefined;
84
- issues?: boolean | undefined;
85
- }, {
86
- thumbs?: boolean | undefined;
87
- edits?: boolean | undefined;
88
- issues?: boolean | undefined;
89
- }>>;
90
77
  appearance: import("zod").ZodOptional<import("zod").ZodObject<{
91
78
  default: import("zod").ZodDefault<import("zod").ZodEnum<["system", "light", "dark"]>>;
92
79
  strict: import("zod").ZodDefault<import("zod").ZodBoolean>;
@@ -110,14 +97,14 @@ export declare const standardConfigSchema: {
110
97
  }>]>>;
111
98
  decoration: import("zod").ZodDefault<import("zod").ZodEnum<["gradient", "grid", "windows", "none"]>>;
112
99
  color: import("zod").ZodOptional<import("zod").ZodObject<{
113
- light: import("zod").ZodString;
114
- dark: import("zod").ZodString;
100
+ light: import("zod").ZodOptional<import("zod").ZodString>;
101
+ dark: import("zod").ZodOptional<import("zod").ZodString>;
115
102
  }, "strict", import("zod").ZodTypeAny, {
116
- light: string;
117
- dark: string;
103
+ light?: string | undefined;
104
+ dark?: string | undefined;
118
105
  }, {
119
- light: string;
120
- dark: string;
106
+ light?: string | undefined;
107
+ dark?: string | undefined;
121
108
  }>>;
122
109
  }, "strip", import("zod").ZodTypeAny, {
123
110
  decoration: "none" | "gradient" | "grid" | "windows";
@@ -126,8 +113,8 @@ export declare const standardConfigSchema: {
126
113
  dark: string;
127
114
  } | undefined;
128
115
  color?: {
129
- light: string;
130
- dark: string;
116
+ light?: string | undefined;
117
+ dark?: string | undefined;
131
118
  } | undefined;
132
119
  }, {
133
120
  image?: string | {
@@ -136,8 +123,8 @@ export declare const standardConfigSchema: {
136
123
  } | undefined;
137
124
  decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
138
125
  color?: {
139
- light: string;
140
- dark: string;
126
+ light?: string | undefined;
127
+ dark?: string | undefined;
141
128
  } | undefined;
142
129
  }>>;
143
130
  topbar: import("zod").ZodOptional<import("zod").ZodObject<{
@@ -608,14 +595,14 @@ export declare const standardConfigSchema: {
608
595
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
609
596
  }>]>>;
610
597
  color: import("zod").ZodOptional<import("zod").ZodObject<{
611
- light: import("zod").ZodString;
612
- dark: import("zod").ZodString;
598
+ light: import("zod").ZodOptional<import("zod").ZodString>;
599
+ dark: import("zod").ZodOptional<import("zod").ZodString>;
613
600
  }, "strict", import("zod").ZodTypeAny, {
614
- light: string;
615
- dark: string;
601
+ light?: string | undefined;
602
+ dark?: string | undefined;
616
603
  }, {
617
- light: string;
618
- dark: string;
604
+ light?: string | undefined;
605
+ dark?: string | undefined;
619
606
  }>>;
620
607
  hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
621
608
  }, "strip", import("zod").ZodTypeAny, {
@@ -625,8 +612,8 @@ export declare const standardConfigSchema: {
625
612
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
626
613
  } | undefined;
627
614
  color?: {
628
- light: string;
629
- dark: string;
615
+ light?: string | undefined;
616
+ dark?: string | undefined;
630
617
  } | undefined;
631
618
  hidden?: boolean | undefined;
632
619
  }, {
@@ -636,8 +623,8 @@ export declare const standardConfigSchema: {
636
623
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
637
624
  } | undefined;
638
625
  color?: {
639
- light: string;
640
- dark: string;
626
+ light?: string | undefined;
627
+ dark?: string | undefined;
641
628
  } | undefined;
642
629
  hidden?: boolean | undefined;
643
630
  }>, import("zod").ZodObject<{
@@ -687,8 +674,8 @@ export declare const standardConfigSchema: {
687
674
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
688
675
  } | undefined;
689
676
  color?: {
690
- light: string;
691
- dark: string;
677
+ light?: string | undefined;
678
+ dark?: string | undefined;
692
679
  } | undefined;
693
680
  hidden?: boolean | undefined;
694
681
  } & {
@@ -734,8 +721,8 @@ export declare const standardConfigSchema: {
734
721
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
735
722
  } | undefined;
736
723
  color?: {
737
- light: string;
738
- dark: string;
724
+ light?: string | undefined;
725
+ dark?: string | undefined;
739
726
  } | undefined;
740
727
  hidden?: boolean | undefined;
741
728
  } & {
@@ -783,8 +770,8 @@ export declare const standardConfigSchema: {
783
770
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
784
771
  } | undefined;
785
772
  color?: {
786
- light: string;
787
- dark: string;
773
+ light?: string | undefined;
774
+ dark?: string | undefined;
788
775
  } | undefined;
789
776
  hidden?: boolean | undefined;
790
777
  } & {
@@ -832,8 +819,8 @@ export declare const standardConfigSchema: {
832
819
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
833
820
  } | undefined;
834
821
  color?: {
835
- light: string;
836
- dark: string;
822
+ light?: string | undefined;
823
+ dark?: string | undefined;
837
824
  } | undefined;
838
825
  hidden?: boolean | undefined;
839
826
  } & {
@@ -6,7 +6,6 @@ import { backgroundSchema } from '../../properties/background.js';
6
6
  import { colorsSchema } from '../../properties/colors.js';
7
7
  import { descriptionSchema } from '../../properties/description.js';
8
8
  import { faviconSchema } from '../../properties/favicon.js';
9
- import { feedbackSchema } from '../../properties/feedback.js';
10
9
  import { fontsSchema } from '../../properties/font.js';
11
10
  import { footerSchema } from '../../properties/footer.js';
12
11
  import { iconsSchema } from '../../properties/icons.js';
@@ -28,7 +27,6 @@ export const standardConfigSchema = {
28
27
  favicon: faviconSchema.optional(),
29
28
  openapi: openApiSchema.optional(),
30
29
  api: apiSchema.optional(),
31
- feedback: feedbackSchema.optional(),
32
30
  appearance: appearanceSchema.optional(),
33
31
  background: backgroundSchema.optional(),
34
32
  topbar: topbarSchema.optional(),