@mintlify/validation 0.1.242 → 0.1.244

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.
@@ -76,19 +76,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
76
76
  languages?: string[] | undefined;
77
77
  } | undefined;
78
78
  }>>;
79
- feedback: z.ZodOptional<z.ZodObject<{
80
- thumbs: z.ZodOptional<z.ZodBoolean>;
81
- edits: z.ZodOptional<z.ZodBoolean>;
82
- issues: z.ZodOptional<z.ZodBoolean>;
83
- }, "strip", z.ZodTypeAny, {
84
- thumbs?: boolean | undefined;
85
- edits?: boolean | undefined;
86
- issues?: boolean | undefined;
87
- }, {
88
- thumbs?: boolean | undefined;
89
- edits?: boolean | undefined;
90
- issues?: boolean | undefined;
91
- }>>;
92
79
  appearance: z.ZodOptional<z.ZodObject<{
93
80
  default: z.ZodDefault<z.ZodEnum<["system", "light", "dark"]>>;
94
81
  strict: z.ZodDefault<z.ZodBoolean>;
@@ -110,7 +97,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
110
97
  light: string;
111
98
  dark: string;
112
99
  }>]>>;
113
- decoration: z.ZodDefault<z.ZodEnum<["gradient", "grid", "windows", "none"]>>;
100
+ decoration: z.ZodOptional<z.ZodEnum<["gradient", "grid", "windows"]>>;
114
101
  color: z.ZodOptional<z.ZodObject<{
115
102
  light: z.ZodOptional<z.ZodString>;
116
103
  dark: z.ZodOptional<z.ZodString>;
@@ -122,11 +109,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
122
109
  dark?: string | undefined;
123
110
  }>>;
124
111
  }, "strip", z.ZodTypeAny, {
125
- decoration: "none" | "gradient" | "grid" | "windows";
126
112
  image?: string | {
127
113
  light: string;
128
114
  dark: string;
129
115
  } | undefined;
116
+ decoration?: "gradient" | "grid" | "windows" | undefined;
130
117
  color?: {
131
118
  light?: string | undefined;
132
119
  dark?: string | undefined;
@@ -136,7 +123,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
136
123
  light: string;
137
124
  dark: string;
138
125
  } | undefined;
139
- decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
126
+ decoration?: "gradient" | "grid" | "windows" | undefined;
140
127
  color?: {
141
128
  light?: string | undefined;
142
129
  dark?: string | undefined;
@@ -1535,21 +1522,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1535
1522
  languages?: string[] | undefined;
1536
1523
  } | undefined;
1537
1524
  } | undefined;
1538
- feedback?: {
1539
- thumbs?: boolean | undefined;
1540
- edits?: boolean | undefined;
1541
- issues?: boolean | undefined;
1542
- } | undefined;
1543
1525
  appearance?: {
1544
1526
  strict: boolean;
1545
1527
  default: "light" | "dark" | "system";
1546
1528
  } | undefined;
1547
1529
  background?: {
1548
- decoration: "none" | "gradient" | "grid" | "windows";
1549
1530
  image?: string | {
1550
1531
  light: string;
1551
1532
  dark: string;
1552
1533
  } | undefined;
1534
+ decoration?: "gradient" | "grid" | "windows" | undefined;
1553
1535
  color?: {
1554
1536
  light?: string | undefined;
1555
1537
  dark?: string | undefined;
@@ -1916,11 +1898,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1916
1898
  languages?: string[] | undefined;
1917
1899
  } | undefined;
1918
1900
  } | undefined;
1919
- feedback?: {
1920
- thumbs?: boolean | undefined;
1921
- edits?: boolean | undefined;
1922
- issues?: boolean | undefined;
1923
- } | undefined;
1924
1901
  appearance?: {
1925
1902
  default?: "light" | "dark" | "system" | undefined;
1926
1903
  strict?: boolean | undefined;
@@ -1930,7 +1907,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1930
1907
  light: string;
1931
1908
  dark: string;
1932
1909
  } | undefined;
1933
- decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
1910
+ decoration?: "gradient" | "grid" | "windows" | undefined;
1934
1911
  color?: {
1935
1912
  light?: string | undefined;
1936
1913
  dark?: string | undefined;
@@ -2131,19 +2108,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2131
2108
  languages?: string[] | undefined;
2132
2109
  } | undefined;
2133
2110
  }>>;
2134
- feedback: z.ZodOptional<z.ZodObject<{
2135
- thumbs: z.ZodOptional<z.ZodBoolean>;
2136
- edits: z.ZodOptional<z.ZodBoolean>;
2137
- issues: z.ZodOptional<z.ZodBoolean>;
2138
- }, "strip", z.ZodTypeAny, {
2139
- thumbs?: boolean | undefined;
2140
- edits?: boolean | undefined;
2141
- issues?: boolean | undefined;
2142
- }, {
2143
- thumbs?: boolean | undefined;
2144
- edits?: boolean | undefined;
2145
- issues?: boolean | undefined;
2146
- }>>;
2147
2111
  appearance: z.ZodOptional<z.ZodObject<{
2148
2112
  default: z.ZodDefault<z.ZodEnum<["system", "light", "dark"]>>;
2149
2113
  strict: z.ZodDefault<z.ZodBoolean>;
@@ -2165,7 +2129,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2165
2129
  light: string;
2166
2130
  dark: string;
2167
2131
  }>]>>;
2168
- decoration: z.ZodDefault<z.ZodEnum<["gradient", "grid", "windows", "none"]>>;
2132
+ decoration: z.ZodOptional<z.ZodEnum<["gradient", "grid", "windows"]>>;
2169
2133
  color: z.ZodOptional<z.ZodObject<{
2170
2134
  light: z.ZodOptional<z.ZodString>;
2171
2135
  dark: z.ZodOptional<z.ZodString>;
@@ -2177,11 +2141,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2177
2141
  dark?: string | undefined;
2178
2142
  }>>;
2179
2143
  }, "strip", z.ZodTypeAny, {
2180
- decoration: "none" | "gradient" | "grid" | "windows";
2181
2144
  image?: string | {
2182
2145
  light: string;
2183
2146
  dark: string;
2184
2147
  } | undefined;
2148
+ decoration?: "gradient" | "grid" | "windows" | undefined;
2185
2149
  color?: {
2186
2150
  light?: string | undefined;
2187
2151
  dark?: string | undefined;
@@ -2191,7 +2155,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2191
2155
  light: string;
2192
2156
  dark: string;
2193
2157
  } | undefined;
2194
- decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
2158
+ decoration?: "gradient" | "grid" | "windows" | undefined;
2195
2159
  color?: {
2196
2160
  light?: string | undefined;
2197
2161
  dark?: string | undefined;
@@ -3590,21 +3554,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3590
3554
  languages?: string[] | undefined;
3591
3555
  } | undefined;
3592
3556
  } | undefined;
3593
- feedback?: {
3594
- thumbs?: boolean | undefined;
3595
- edits?: boolean | undefined;
3596
- issues?: boolean | undefined;
3597
- } | undefined;
3598
3557
  appearance?: {
3599
3558
  strict: boolean;
3600
3559
  default: "light" | "dark" | "system";
3601
3560
  } | undefined;
3602
3561
  background?: {
3603
- decoration: "none" | "gradient" | "grid" | "windows";
3604
3562
  image?: string | {
3605
3563
  light: string;
3606
3564
  dark: string;
3607
3565
  } | undefined;
3566
+ decoration?: "gradient" | "grid" | "windows" | undefined;
3608
3567
  color?: {
3609
3568
  light?: string | undefined;
3610
3569
  dark?: string | undefined;
@@ -3971,11 +3930,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3971
3930
  languages?: string[] | undefined;
3972
3931
  } | undefined;
3973
3932
  } | undefined;
3974
- feedback?: {
3975
- thumbs?: boolean | undefined;
3976
- edits?: boolean | undefined;
3977
- issues?: boolean | undefined;
3978
- } | undefined;
3979
3933
  appearance?: {
3980
3934
  default?: "light" | "dark" | "system" | undefined;
3981
3935
  strict?: boolean | undefined;
@@ -3985,7 +3939,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3985
3939
  light: string;
3986
3940
  dark: string;
3987
3941
  } | undefined;
3988
- decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
3942
+ decoration?: "gradient" | "grid" | "windows" | undefined;
3989
3943
  color?: {
3990
3944
  light?: string | undefined;
3991
3945
  dark?: string | undefined;
@@ -4186,19 +4140,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4186
4140
  languages?: string[] | undefined;
4187
4141
  } | undefined;
4188
4142
  }>>;
4189
- feedback: z.ZodOptional<z.ZodObject<{
4190
- thumbs: z.ZodOptional<z.ZodBoolean>;
4191
- edits: z.ZodOptional<z.ZodBoolean>;
4192
- issues: z.ZodOptional<z.ZodBoolean>;
4193
- }, "strip", z.ZodTypeAny, {
4194
- thumbs?: boolean | undefined;
4195
- edits?: boolean | undefined;
4196
- issues?: boolean | undefined;
4197
- }, {
4198
- thumbs?: boolean | undefined;
4199
- edits?: boolean | undefined;
4200
- issues?: boolean | undefined;
4201
- }>>;
4202
4143
  appearance: z.ZodOptional<z.ZodObject<{
4203
4144
  default: z.ZodDefault<z.ZodEnum<["system", "light", "dark"]>>;
4204
4145
  strict: z.ZodDefault<z.ZodBoolean>;
@@ -4220,7 +4161,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4220
4161
  light: string;
4221
4162
  dark: string;
4222
4163
  }>]>>;
4223
- decoration: z.ZodDefault<z.ZodEnum<["gradient", "grid", "windows", "none"]>>;
4164
+ decoration: z.ZodOptional<z.ZodEnum<["gradient", "grid", "windows"]>>;
4224
4165
  color: z.ZodOptional<z.ZodObject<{
4225
4166
  light: z.ZodOptional<z.ZodString>;
4226
4167
  dark: z.ZodOptional<z.ZodString>;
@@ -4232,11 +4173,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4232
4173
  dark?: string | undefined;
4233
4174
  }>>;
4234
4175
  }, "strip", z.ZodTypeAny, {
4235
- decoration: "none" | "gradient" | "grid" | "windows";
4236
4176
  image?: string | {
4237
4177
  light: string;
4238
4178
  dark: string;
4239
4179
  } | undefined;
4180
+ decoration?: "gradient" | "grid" | "windows" | undefined;
4240
4181
  color?: {
4241
4182
  light?: string | undefined;
4242
4183
  dark?: string | undefined;
@@ -4246,7 +4187,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4246
4187
  light: string;
4247
4188
  dark: string;
4248
4189
  } | undefined;
4249
- decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
4190
+ decoration?: "gradient" | "grid" | "windows" | undefined;
4250
4191
  color?: {
4251
4192
  light?: string | undefined;
4252
4193
  dark?: string | undefined;
@@ -5645,21 +5586,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5645
5586
  languages?: string[] | undefined;
5646
5587
  } | undefined;
5647
5588
  } | undefined;
5648
- feedback?: {
5649
- thumbs?: boolean | undefined;
5650
- edits?: boolean | undefined;
5651
- issues?: boolean | undefined;
5652
- } | undefined;
5653
5589
  appearance?: {
5654
5590
  strict: boolean;
5655
5591
  default: "light" | "dark" | "system";
5656
5592
  } | undefined;
5657
5593
  background?: {
5658
- decoration: "none" | "gradient" | "grid" | "windows";
5659
5594
  image?: string | {
5660
5595
  light: string;
5661
5596
  dark: string;
5662
5597
  } | undefined;
5598
+ decoration?: "gradient" | "grid" | "windows" | undefined;
5663
5599
  color?: {
5664
5600
  light?: string | undefined;
5665
5601
  dark?: string | undefined;
@@ -6026,11 +5962,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6026
5962
  languages?: string[] | undefined;
6027
5963
  } | undefined;
6028
5964
  } | undefined;
6029
- feedback?: {
6030
- thumbs?: boolean | undefined;
6031
- edits?: boolean | undefined;
6032
- issues?: boolean | undefined;
6033
- } | undefined;
6034
5965
  appearance?: {
6035
5966
  default?: "light" | "dark" | "system" | undefined;
6036
5967
  strict?: boolean | undefined;
@@ -6040,7 +5971,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6040
5971
  light: string;
6041
5972
  dark: string;
6042
5973
  } | undefined;
6043
- decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
5974
+ decoration?: "gradient" | "grid" | "windows" | undefined;
6044
5975
  color?: {
6045
5976
  light?: string | undefined;
6046
5977
  dark?: string | undefined;
@@ -6241,19 +6172,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6241
6172
  languages?: string[] | undefined;
6242
6173
  } | undefined;
6243
6174
  }>>;
6244
- feedback: z.ZodOptional<z.ZodObject<{
6245
- thumbs: z.ZodOptional<z.ZodBoolean>;
6246
- edits: z.ZodOptional<z.ZodBoolean>;
6247
- issues: z.ZodOptional<z.ZodBoolean>;
6248
- }, "strip", z.ZodTypeAny, {
6249
- thumbs?: boolean | undefined;
6250
- edits?: boolean | undefined;
6251
- issues?: boolean | undefined;
6252
- }, {
6253
- thumbs?: boolean | undefined;
6254
- edits?: boolean | undefined;
6255
- issues?: boolean | undefined;
6256
- }>>;
6257
6175
  appearance: z.ZodOptional<z.ZodObject<{
6258
6176
  default: z.ZodDefault<z.ZodEnum<["system", "light", "dark"]>>;
6259
6177
  strict: z.ZodDefault<z.ZodBoolean>;
@@ -6275,7 +6193,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6275
6193
  light: string;
6276
6194
  dark: string;
6277
6195
  }>]>>;
6278
- decoration: z.ZodDefault<z.ZodEnum<["gradient", "grid", "windows", "none"]>>;
6196
+ decoration: z.ZodOptional<z.ZodEnum<["gradient", "grid", "windows"]>>;
6279
6197
  color: z.ZodOptional<z.ZodObject<{
6280
6198
  light: z.ZodOptional<z.ZodString>;
6281
6199
  dark: z.ZodOptional<z.ZodString>;
@@ -6287,11 +6205,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6287
6205
  dark?: string | undefined;
6288
6206
  }>>;
6289
6207
  }, "strip", z.ZodTypeAny, {
6290
- decoration: "none" | "gradient" | "grid" | "windows";
6291
6208
  image?: string | {
6292
6209
  light: string;
6293
6210
  dark: string;
6294
6211
  } | undefined;
6212
+ decoration?: "gradient" | "grid" | "windows" | undefined;
6295
6213
  color?: {
6296
6214
  light?: string | undefined;
6297
6215
  dark?: string | undefined;
@@ -6301,7 +6219,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6301
6219
  light: string;
6302
6220
  dark: string;
6303
6221
  } | undefined;
6304
- decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
6222
+ decoration?: "gradient" | "grid" | "windows" | undefined;
6305
6223
  color?: {
6306
6224
  light?: string | undefined;
6307
6225
  dark?: string | undefined;
@@ -7700,21 +7618,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7700
7618
  languages?: string[] | undefined;
7701
7619
  } | undefined;
7702
7620
  } | undefined;
7703
- feedback?: {
7704
- thumbs?: boolean | undefined;
7705
- edits?: boolean | undefined;
7706
- issues?: boolean | undefined;
7707
- } | undefined;
7708
7621
  appearance?: {
7709
7622
  strict: boolean;
7710
7623
  default: "light" | "dark" | "system";
7711
7624
  } | undefined;
7712
7625
  background?: {
7713
- decoration: "none" | "gradient" | "grid" | "windows";
7714
7626
  image?: string | {
7715
7627
  light: string;
7716
7628
  dark: string;
7717
7629
  } | undefined;
7630
+ decoration?: "gradient" | "grid" | "windows" | undefined;
7718
7631
  color?: {
7719
7632
  light?: string | undefined;
7720
7633
  dark?: string | undefined;
@@ -8081,11 +7994,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8081
7994
  languages?: string[] | undefined;
8082
7995
  } | undefined;
8083
7996
  } | undefined;
8084
- feedback?: {
8085
- thumbs?: boolean | undefined;
8086
- edits?: boolean | undefined;
8087
- issues?: boolean | undefined;
8088
- } | undefined;
8089
7997
  appearance?: {
8090
7998
  default?: "light" | "dark" | "system" | undefined;
8091
7999
  strict?: boolean | undefined;
@@ -8095,7 +8003,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8095
8003
  light: string;
8096
8004
  dark: string;
8097
8005
  } | undefined;
8098
- decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
8006
+ decoration?: "gradient" | "grid" | "windows" | undefined;
8099
8007
  color?: {
8100
8008
  light?: string | undefined;
8101
8009
  dark?: string | undefined;
@@ -10,7 +10,7 @@ export declare const backgroundSchema: z.ZodObject<{
10
10
  light: string;
11
11
  dark: string;
12
12
  }>]>>;
13
- decoration: z.ZodDefault<z.ZodEnum<["gradient", "grid", "windows", "none"]>>;
13
+ decoration: z.ZodOptional<z.ZodEnum<["gradient", "grid", "windows"]>>;
14
14
  color: z.ZodOptional<z.ZodObject<{
15
15
  light: z.ZodOptional<z.ZodString>;
16
16
  dark: z.ZodOptional<z.ZodString>;
@@ -22,11 +22,11 @@ export declare const backgroundSchema: z.ZodObject<{
22
22
  dark?: string | undefined;
23
23
  }>>;
24
24
  }, "strip", z.ZodTypeAny, {
25
- decoration: "none" | "gradient" | "grid" | "windows";
26
25
  image?: string | {
27
26
  light: string;
28
27
  dark: string;
29
28
  } | undefined;
29
+ decoration?: "gradient" | "grid" | "windows" | undefined;
30
30
  color?: {
31
31
  light?: string | undefined;
32
32
  dark?: string | undefined;
@@ -36,7 +36,7 @@ export declare const backgroundSchema: z.ZodObject<{
36
36
  light: string;
37
37
  dark: string;
38
38
  } | undefined;
39
- decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
39
+ decoration?: "gradient" | "grid" | "windows" | undefined;
40
40
  color?: {
41
41
  light?: string | undefined;
42
42
  dark?: string | undefined;
@@ -13,8 +13,8 @@ export const backgroundSchema = z
13
13
  .optional()
14
14
  .describe('A fixed background image. Can be an absolute URL or relative path.'),
15
15
  decoration: z
16
- .enum(['gradient', 'grid', 'windows', 'none'])
17
- .default('none')
16
+ .enum(['gradient', 'grid', 'windows'])
17
+ .optional()
18
18
  .describe('The background decoration of the theme'),
19
19
  color: colorSchemaWithOptionalLightAndDark.optional().describe('The colors of the background'),
20
20
  })
@@ -75,19 +75,6 @@ export declare const mintConfigSchema: 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>;
@@ -109,7 +96,7 @@ export declare const mintConfigSchema: z.ZodObject<{
109
96
  light: string;
110
97
  dark: string;
111
98
  }>]>>;
112
- decoration: z.ZodDefault<z.ZodEnum<["gradient", "grid", "windows", "none"]>>;
99
+ decoration: z.ZodOptional<z.ZodEnum<["gradient", "grid", "windows"]>>;
113
100
  color: z.ZodOptional<z.ZodObject<{
114
101
  light: z.ZodOptional<z.ZodString>;
115
102
  dark: z.ZodOptional<z.ZodString>;
@@ -121,11 +108,11 @@ export declare const mintConfigSchema: z.ZodObject<{
121
108
  dark?: string | undefined;
122
109
  }>>;
123
110
  }, "strip", z.ZodTypeAny, {
124
- decoration: "none" | "gradient" | "grid" | "windows";
125
111
  image?: string | {
126
112
  light: string;
127
113
  dark: string;
128
114
  } | undefined;
115
+ decoration?: "gradient" | "grid" | "windows" | undefined;
129
116
  color?: {
130
117
  light?: string | undefined;
131
118
  dark?: string | undefined;
@@ -135,7 +122,7 @@ export declare const mintConfigSchema: z.ZodObject<{
135
122
  light: string;
136
123
  dark: string;
137
124
  } | undefined;
138
- decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
125
+ decoration?: "gradient" | "grid" | "windows" | undefined;
139
126
  color?: {
140
127
  light?: string | undefined;
141
128
  dark?: string | undefined;
@@ -1534,21 +1521,16 @@ export declare const mintConfigSchema: 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";
1545
1527
  } | undefined;
1546
1528
  background?: {
1547
- decoration: "none" | "gradient" | "grid" | "windows";
1548
1529
  image?: string | {
1549
1530
  light: string;
1550
1531
  dark: string;
1551
1532
  } | undefined;
1533
+ decoration?: "gradient" | "grid" | "windows" | undefined;
1552
1534
  color?: {
1553
1535
  light?: string | undefined;
1554
1536
  dark?: string | undefined;
@@ -1915,11 +1897,6 @@ export declare const mintConfigSchema: 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;
@@ -1929,7 +1906,7 @@ export declare const mintConfigSchema: z.ZodObject<{
1929
1906
  light: string;
1930
1907
  dark: string;
1931
1908
  } | undefined;
1932
- decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
1909
+ decoration?: "gradient" | "grid" | "windows" | undefined;
1933
1910
  color?: {
1934
1911
  light?: string | undefined;
1935
1912
  dark?: string | undefined;
@@ -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>;
@@ -109,7 +96,7 @@ export declare const prismConfigSchema: z.ZodObject<{
109
96
  light: string;
110
97
  dark: string;
111
98
  }>]>>;
112
- decoration: z.ZodDefault<z.ZodEnum<["gradient", "grid", "windows", "none"]>>;
99
+ decoration: z.ZodOptional<z.ZodEnum<["gradient", "grid", "windows"]>>;
113
100
  color: z.ZodOptional<z.ZodObject<{
114
101
  light: z.ZodOptional<z.ZodString>;
115
102
  dark: z.ZodOptional<z.ZodString>;
@@ -121,11 +108,11 @@ export declare const prismConfigSchema: z.ZodObject<{
121
108
  dark?: string | undefined;
122
109
  }>>;
123
110
  }, "strip", z.ZodTypeAny, {
124
- decoration: "none" | "gradient" | "grid" | "windows";
125
111
  image?: string | {
126
112
  light: string;
127
113
  dark: string;
128
114
  } | undefined;
115
+ decoration?: "gradient" | "grid" | "windows" | undefined;
129
116
  color?: {
130
117
  light?: string | undefined;
131
118
  dark?: string | undefined;
@@ -135,7 +122,7 @@ export declare const prismConfigSchema: z.ZodObject<{
135
122
  light: string;
136
123
  dark: string;
137
124
  } | undefined;
138
- decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
125
+ decoration?: "gradient" | "grid" | "windows" | undefined;
139
126
  color?: {
140
127
  light?: string | undefined;
141
128
  dark?: string | undefined;
@@ -1534,21 +1521,16 @@ 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";
1545
1527
  } | undefined;
1546
1528
  background?: {
1547
- decoration: "none" | "gradient" | "grid" | "windows";
1548
1529
  image?: string | {
1549
1530
  light: string;
1550
1531
  dark: string;
1551
1532
  } | undefined;
1533
+ decoration?: "gradient" | "grid" | "windows" | undefined;
1552
1534
  color?: {
1553
1535
  light?: string | undefined;
1554
1536
  dark?: string | undefined;
@@ -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;
@@ -1929,7 +1906,7 @@ export declare const prismConfigSchema: z.ZodObject<{
1929
1906
  light: string;
1930
1907
  dark: string;
1931
1908
  } | undefined;
1932
- decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
1909
+ decoration?: "gradient" | "grid" | "windows" | undefined;
1933
1910
  color?: {
1934
1911
  light?: string | undefined;
1935
1912
  dark?: string | undefined;