rategame-shared 1.1.272 → 1.1.274

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.
@@ -1,12 +1,13 @@
1
- export declare const leagueStatsSchema: import("zod").ZodObject<{
2
- totalRatedGames: import("zod").ZodNumber;
3
- commentsLeft: import("zod").ZodNumber;
4
- avgRating: import("zod").ZodNumber;
5
- avgRatings: import("zod").ZodObject<{
6
- initialWindowRating: import("zod").ZodNumber;
7
- normalRating: import("zod").ZodNumber;
8
- weightedRating: import("zod").ZodNumber;
9
- }, "strip", import("zod").ZodTypeAny, {
1
+ import { z } from "zod";
2
+ export declare const leagueStatsSchema: z.ZodObject<{
3
+ totalRatedGames: z.ZodNumber;
4
+ commentsLeft: z.ZodNumber;
5
+ avgRating: z.ZodNumber;
6
+ avgRatings: z.ZodObject<{
7
+ initialWindowRating: z.ZodNumber;
8
+ normalRating: z.ZodNumber;
9
+ weightedRating: z.ZodNumber;
10
+ }, "strip", z.ZodTypeAny, {
10
11
  initialWindowRating: number;
11
12
  normalRating: number;
12
13
  weightedRating: number;
@@ -15,7 +16,7 @@ export declare const leagueStatsSchema: import("zod").ZodObject<{
15
16
  normalRating: number;
16
17
  weightedRating: number;
17
18
  }>;
18
- }, "strip", import("zod").ZodTypeAny, {
19
+ }, "strip", z.ZodTypeAny, {
19
20
  totalRatedGames: number;
20
21
  commentsLeft: number;
21
22
  avgRating: number;
@@ -34,13 +35,13 @@ export declare const leagueStatsSchema: import("zod").ZodObject<{
34
35
  weightedRating: number;
35
36
  };
36
37
  }>;
37
- export declare const achievementId: import("zod").ZodUnion<[import("zod").ZodLiteral<"speed_rater">, import("zod").ZodLiteral<"take_this">, import("zod").ZodLiteral<"front_runner">, import("zod").ZodLiteral<"loyal_till_the_end">, import("zod").ZodLiteral<"around_the_world">, import("zod").ZodLiteral<"take_off">, import("zod").ZodLiteral<"embrace_debate">, import("zod").ZodLiteral<"fan_of_the_people">, import("zod").ZodLiteral<"the_peoples_fan">, import("zod").ZodLiteral<"take_titan">, import("zod").ZodLiteral<"take_first">, import("zod").ZodLiteral<"hall_of_takes">, import("zod").ZodLiteral<"superfan">, import("zod").ZodLiteral<"fan-tastic">, import("zod").ZodLiteral<"marathon_fan">, import("zod").ZodLiteral<"new_years_resolution">, import("zod").ZodLiteral<"dog_days_of_summer">, import("zod").ZodLiteral<"50_50_club">, import("zod").ZodLiteral<"ball_knower">, import("zod").ZodLiteral<"heating_up">, import("zod").ZodLiteral<"full_court_press">, import("zod").ZodLiteral<"grid_iron_guru">, import("zod").ZodLiteral<"across_the_yard">, import("zod").ZodLiteral<"pigskin_power">, import("zod").ZodLiteral<"goal_getter">, import("zod").ZodLiteral<"footie_fanatic">, import("zod").ZodLiteral<"campaign_conqueror">, import("zod").ZodLiteral<"diamond_hands">, import("zod").ZodLiteral<"field_of_dreams">, import("zod").ZodLiteral<"charlie_hustle">, import("zod").ZodLiteral<"power_play">, import("zod").ZodLiteral<"ice_king">, import("zod").ZodLiteral<"marleau_master">, import("zod").ZodLiteral<"the_admiral">, import("zod").ZodLiteral<"the_kick_six">, import("zod").ZodLiteral<"coin_toss">, import("zod").ZodLiteral<"golden_jacket">, import("zod").ZodLiteral<"pop_the_champagne">, import("zod").ZodLiteral<"game_grower">, import("zod").ZodLiteral<"fandon_donovan">, import("zod").ZodLiteral<"soccer_stud">, import("zod").ZodLiteral<"the_big_o">, import("zod").ZodLiteral<"the_grateful_red">, import("zod").ZodLiteral<"mad_march">, import("zod").ZodLiteral<"the_logo">, import("zod").ZodLiteral<"the_big_dipper">, import("zod").ZodLiteral<"mid_table">, import("zod").ZodLiteral<"fan_of_the_match">, import("zod").ZodLiteral<"super_mario">, import("zod").ZodLiteral<"dick_butkus">, import("zod").ZodLiteral<"hit_the_heismann">, import("zod").ZodLiteral<"lobos_legacy">, import("zod").ZodLiteral<"tau3asi">, import("zod").ZodLiteral<"queenb">, import("zod").ZodLiteral<"rookie_rater">, import("zod").ZodLiteral<"six_three">, import("zod").ZodLiteral<"groupie">, import("zod").ZodLiteral<"for_your_confederations">]>;
38
- export declare const oneTimeProgressSchema: import("zod").ZodObject<{
39
- current: import("zod").ZodNumber;
40
- target: import("zod").ZodNumber;
41
- label: import("zod").ZodOptional<import("zod").ZodString>;
42
- context: import("zod").ZodOptional<import("zod").ZodString>;
43
- }, "strip", import("zod").ZodTypeAny, {
38
+ export declare const achievementId: z.ZodUnion<[z.ZodLiteral<"speed_rater">, z.ZodLiteral<"take_this">, z.ZodLiteral<"front_runner">, z.ZodLiteral<"loyal_till_the_end">, z.ZodLiteral<"around_the_world">, z.ZodLiteral<"take_off">, z.ZodLiteral<"embrace_debate">, z.ZodLiteral<"fan_of_the_people">, z.ZodLiteral<"the_peoples_fan">, z.ZodLiteral<"take_titan">, z.ZodLiteral<"take_first">, z.ZodLiteral<"hall_of_takes">, z.ZodLiteral<"superfan">, z.ZodLiteral<"fan-tastic">, z.ZodLiteral<"marathon_fan">, z.ZodLiteral<"new_years_resolution">, z.ZodLiteral<"dog_days_of_summer">, z.ZodLiteral<"50_50_club">, z.ZodLiteral<"ball_knower">, z.ZodLiteral<"heating_up">, z.ZodLiteral<"full_court_press">, z.ZodLiteral<"grid_iron_guru">, z.ZodLiteral<"across_the_yard">, z.ZodLiteral<"pigskin_power">, z.ZodLiteral<"goal_getter">, z.ZodLiteral<"footie_fanatic">, z.ZodLiteral<"campaign_conqueror">, z.ZodLiteral<"diamond_hands">, z.ZodLiteral<"field_of_dreams">, z.ZodLiteral<"charlie_hustle">, z.ZodLiteral<"power_play">, z.ZodLiteral<"ice_king">, z.ZodLiteral<"marleau_master">, z.ZodLiteral<"the_admiral">, z.ZodLiteral<"the_kick_six">, z.ZodLiteral<"coin_toss">, z.ZodLiteral<"golden_jacket">, z.ZodLiteral<"pop_the_champagne">, z.ZodLiteral<"game_grower">, z.ZodLiteral<"fandon_donovan">, z.ZodLiteral<"soccer_stud">, z.ZodLiteral<"the_big_o">, z.ZodLiteral<"the_grateful_red">, z.ZodLiteral<"mad_march">, z.ZodLiteral<"the_logo">, z.ZodLiteral<"the_big_dipper">, z.ZodLiteral<"mid_table">, z.ZodLiteral<"fan_of_the_match">, z.ZodLiteral<"super_mario">, z.ZodLiteral<"dick_butkus">, z.ZodLiteral<"hit_the_heismann">, z.ZodLiteral<"lobos_legacy">, z.ZodLiteral<"tau3asi">, z.ZodLiteral<"queenb">, z.ZodLiteral<"rookie_rater">, z.ZodLiteral<"six_three">, z.ZodLiteral<"groupie">, z.ZodLiteral<"for_your_confederations">]>;
39
+ export declare const oneTimeProgressSchema: z.ZodObject<{
40
+ current: z.ZodNumber;
41
+ target: z.ZodNumber;
42
+ label: z.ZodOptional<z.ZodString>;
43
+ context: z.ZodOptional<z.ZodString>;
44
+ }, "strip", z.ZodTypeAny, {
44
45
  target: number;
45
46
  current: number;
46
47
  label?: string | undefined;
@@ -51,43 +52,43 @@ export declare const oneTimeProgressSchema: import("zod").ZodObject<{
51
52
  label?: string | undefined;
52
53
  context?: string | undefined;
53
54
  }>;
54
- export declare const achievementSchema: import("zod").ZodObject<{
55
- id: import("zod").ZodString;
56
- name: import("zod").ZodString;
57
- description: import("zod").ZodString;
58
- progress: import("zod").ZodOptional<import("zod").ZodNumber>;
59
- tiers: import("zod").ZodOptional<import("zod").ZodObject<{
60
- bronze: import("zod").ZodObject<{
61
- threshold: import("zod").ZodNumber;
62
- achievedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
63
- }, "strip", import("zod").ZodTypeAny, {
55
+ export declare const achievementSchema: z.ZodObject<{
56
+ id: z.ZodString;
57
+ name: z.ZodString;
58
+ description: z.ZodString;
59
+ progress: z.ZodOptional<z.ZodNumber>;
60
+ tiers: z.ZodOptional<z.ZodObject<{
61
+ bronze: z.ZodObject<{
62
+ threshold: z.ZodNumber;
63
+ achievedAt: z.ZodOptional<z.ZodNumber>;
64
+ }, "strip", z.ZodTypeAny, {
64
65
  threshold: number;
65
66
  achievedAt?: number | undefined;
66
67
  }, {
67
68
  threshold: number;
68
69
  achievedAt?: number | undefined;
69
70
  }>;
70
- silver: import("zod").ZodObject<{
71
- threshold: import("zod").ZodNumber;
72
- achievedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
73
- }, "strip", import("zod").ZodTypeAny, {
71
+ silver: z.ZodObject<{
72
+ threshold: z.ZodNumber;
73
+ achievedAt: z.ZodOptional<z.ZodNumber>;
74
+ }, "strip", z.ZodTypeAny, {
74
75
  threshold: number;
75
76
  achievedAt?: number | undefined;
76
77
  }, {
77
78
  threshold: number;
78
79
  achievedAt?: number | undefined;
79
80
  }>;
80
- gold: import("zod").ZodObject<{
81
- threshold: import("zod").ZodNumber;
82
- achievedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
83
- }, "strip", import("zod").ZodTypeAny, {
81
+ gold: z.ZodObject<{
82
+ threshold: z.ZodNumber;
83
+ achievedAt: z.ZodOptional<z.ZodNumber>;
84
+ }, "strip", z.ZodTypeAny, {
84
85
  threshold: number;
85
86
  achievedAt?: number | undefined;
86
87
  }, {
87
88
  threshold: number;
88
89
  achievedAt?: number | undefined;
89
90
  }>;
90
- }, "strip", import("zod").ZodTypeAny, {
91
+ }, "strip", z.ZodTypeAny, {
91
92
  bronze: {
92
93
  threshold: number;
93
94
  achievedAt?: number | undefined;
@@ -114,13 +115,13 @@ export declare const achievementSchema: import("zod").ZodObject<{
114
115
  achievedAt?: number | undefined;
115
116
  };
116
117
  }>>;
117
- currentTier: import("zod").ZodOptional<import("zod").ZodNumber>;
118
- oneTimeProgress: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
119
- current: import("zod").ZodNumber;
120
- target: import("zod").ZodNumber;
121
- label: import("zod").ZodOptional<import("zod").ZodString>;
122
- context: import("zod").ZodOptional<import("zod").ZodString>;
123
- }, "strip", import("zod").ZodTypeAny, {
118
+ currentTier: z.ZodOptional<z.ZodNumber>;
119
+ oneTimeProgress: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
120
+ current: z.ZodNumber;
121
+ target: z.ZodNumber;
122
+ label: z.ZodOptional<z.ZodString>;
123
+ context: z.ZodOptional<z.ZodString>;
124
+ }, "strip", z.ZodTypeAny, {
124
125
  target: number;
125
126
  current: number;
126
127
  label?: string | undefined;
@@ -131,11 +132,11 @@ export declare const achievementSchema: import("zod").ZodObject<{
131
132
  label?: string | undefined;
132
133
  context?: string | undefined;
133
134
  }>>>;
134
- seen: import("zod").ZodOptional<import("zod").ZodBoolean>;
135
- type: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"global">, import("zod").ZodLiteral<"sport">, import("zod").ZodLiteral<"league">]>>;
136
- league: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"nba">, import("zod").ZodLiteral<"ncaa">, import("zod").ZodLiteral<"nfl">, import("zod").ZodLiteral<"nhl">, import("zod").ZodLiteral<"mlb">, import("zod").ZodLiteral<"cbb">, import("zod").ZodLiteral<"cfb">, import("zod").ZodLiteral<"epl">, import("zod").ZodLiteral<"mls">, import("zod").ZodLiteral<"wnba">, import("zod").ZodLiteral<"cwc">, import("zod").ZodLiteral<"global">]>>;
137
- sport: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"basketball">, import("zod").ZodLiteral<"football">, import("zod").ZodLiteral<"soccer">, import("zod").ZodLiteral<"baseball">, import("zod").ZodLiteral<"hockey">]>>;
138
- }, "strip", import("zod").ZodTypeAny, {
135
+ seen: z.ZodOptional<z.ZodBoolean>;
136
+ type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
137
+ league: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"global">]>>;
138
+ sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
139
+ }, "strip", z.ZodTypeAny, {
139
140
  id: string;
140
141
  name: string;
141
142
  description: string;
@@ -196,23 +197,23 @@ export declare const achievementSchema: import("zod").ZodObject<{
196
197
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
197
198
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
198
199
  }>;
199
- export declare const userSchema: import("zod").ZodObject<{
200
- id: import("zod").ZodString;
201
- email: import("zod").ZodString;
202
- username: import("zod").ZodString;
203
- avatarUrl: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
204
- createdAt: import("zod").ZodNumber;
205
- updatedAt: import("zod").ZodNumber;
206
- leagues: import("zod").ZodOptional<import("zod").ZodObject<{
207
- nba: import("zod").ZodObject<{
208
- totalRatedGames: import("zod").ZodNumber;
209
- commentsLeft: import("zod").ZodNumber;
210
- avgRating: import("zod").ZodNumber;
211
- avgRatings: import("zod").ZodObject<{
212
- initialWindowRating: import("zod").ZodNumber;
213
- normalRating: import("zod").ZodNumber;
214
- weightedRating: import("zod").ZodNumber;
215
- }, "strip", import("zod").ZodTypeAny, {
200
+ export declare const userSchema: z.ZodObject<{
201
+ id: z.ZodString;
202
+ email: z.ZodString;
203
+ username: z.ZodString;
204
+ avatarUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
205
+ createdAt: z.ZodNumber;
206
+ updatedAt: z.ZodNumber;
207
+ leagues: z.ZodOptional<z.ZodObject<{
208
+ nba: z.ZodObject<{
209
+ totalRatedGames: z.ZodNumber;
210
+ commentsLeft: z.ZodNumber;
211
+ avgRating: z.ZodNumber;
212
+ avgRatings: z.ZodObject<{
213
+ initialWindowRating: z.ZodNumber;
214
+ normalRating: z.ZodNumber;
215
+ weightedRating: z.ZodNumber;
216
+ }, "strip", z.ZodTypeAny, {
216
217
  initialWindowRating: number;
217
218
  normalRating: number;
218
219
  weightedRating: number;
@@ -221,7 +222,7 @@ export declare const userSchema: import("zod").ZodObject<{
221
222
  normalRating: number;
222
223
  weightedRating: number;
223
224
  }>;
224
- }, "strip", import("zod").ZodTypeAny, {
225
+ }, "strip", z.ZodTypeAny, {
225
226
  totalRatedGames: number;
226
227
  commentsLeft: number;
227
228
  avgRating: number;
@@ -240,15 +241,15 @@ export declare const userSchema: import("zod").ZodObject<{
240
241
  weightedRating: number;
241
242
  };
242
243
  }>;
243
- ncaa: import("zod").ZodObject<{
244
- totalRatedGames: import("zod").ZodNumber;
245
- commentsLeft: import("zod").ZodNumber;
246
- avgRating: import("zod").ZodNumber;
247
- avgRatings: import("zod").ZodObject<{
248
- initialWindowRating: import("zod").ZodNumber;
249
- normalRating: import("zod").ZodNumber;
250
- weightedRating: import("zod").ZodNumber;
251
- }, "strip", import("zod").ZodTypeAny, {
244
+ ncaa: z.ZodObject<{
245
+ totalRatedGames: z.ZodNumber;
246
+ commentsLeft: z.ZodNumber;
247
+ avgRating: z.ZodNumber;
248
+ avgRatings: z.ZodObject<{
249
+ initialWindowRating: z.ZodNumber;
250
+ normalRating: z.ZodNumber;
251
+ weightedRating: z.ZodNumber;
252
+ }, "strip", z.ZodTypeAny, {
252
253
  initialWindowRating: number;
253
254
  normalRating: number;
254
255
  weightedRating: number;
@@ -257,7 +258,7 @@ export declare const userSchema: import("zod").ZodObject<{
257
258
  normalRating: number;
258
259
  weightedRating: number;
259
260
  }>;
260
- }, "strip", import("zod").ZodTypeAny, {
261
+ }, "strip", z.ZodTypeAny, {
261
262
  totalRatedGames: number;
262
263
  commentsLeft: number;
263
264
  avgRating: number;
@@ -276,15 +277,15 @@ export declare const userSchema: import("zod").ZodObject<{
276
277
  weightedRating: number;
277
278
  };
278
279
  }>;
279
- mlb: import("zod").ZodObject<{
280
- totalRatedGames: import("zod").ZodNumber;
281
- commentsLeft: import("zod").ZodNumber;
282
- avgRating: import("zod").ZodNumber;
283
- avgRatings: import("zod").ZodObject<{
284
- initialWindowRating: import("zod").ZodNumber;
285
- normalRating: import("zod").ZodNumber;
286
- weightedRating: import("zod").ZodNumber;
287
- }, "strip", import("zod").ZodTypeAny, {
280
+ mlb: z.ZodObject<{
281
+ totalRatedGames: z.ZodNumber;
282
+ commentsLeft: z.ZodNumber;
283
+ avgRating: z.ZodNumber;
284
+ avgRatings: z.ZodObject<{
285
+ initialWindowRating: z.ZodNumber;
286
+ normalRating: z.ZodNumber;
287
+ weightedRating: z.ZodNumber;
288
+ }, "strip", z.ZodTypeAny, {
288
289
  initialWindowRating: number;
289
290
  normalRating: number;
290
291
  weightedRating: number;
@@ -293,7 +294,7 @@ export declare const userSchema: import("zod").ZodObject<{
293
294
  normalRating: number;
294
295
  weightedRating: number;
295
296
  }>;
296
- }, "strip", import("zod").ZodTypeAny, {
297
+ }, "strip", z.ZodTypeAny, {
297
298
  totalRatedGames: number;
298
299
  commentsLeft: number;
299
300
  avgRating: number;
@@ -312,15 +313,15 @@ export declare const userSchema: import("zod").ZodObject<{
312
313
  weightedRating: number;
313
314
  };
314
315
  }>;
315
- nfl: import("zod").ZodObject<{
316
- totalRatedGames: import("zod").ZodNumber;
317
- commentsLeft: import("zod").ZodNumber;
318
- avgRating: import("zod").ZodNumber;
319
- avgRatings: import("zod").ZodObject<{
320
- initialWindowRating: import("zod").ZodNumber;
321
- normalRating: import("zod").ZodNumber;
322
- weightedRating: import("zod").ZodNumber;
323
- }, "strip", import("zod").ZodTypeAny, {
316
+ nfl: z.ZodObject<{
317
+ totalRatedGames: z.ZodNumber;
318
+ commentsLeft: z.ZodNumber;
319
+ avgRating: z.ZodNumber;
320
+ avgRatings: z.ZodObject<{
321
+ initialWindowRating: z.ZodNumber;
322
+ normalRating: z.ZodNumber;
323
+ weightedRating: z.ZodNumber;
324
+ }, "strip", z.ZodTypeAny, {
324
325
  initialWindowRating: number;
325
326
  normalRating: number;
326
327
  weightedRating: number;
@@ -329,7 +330,7 @@ export declare const userSchema: import("zod").ZodObject<{
329
330
  normalRating: number;
330
331
  weightedRating: number;
331
332
  }>;
332
- }, "strip", import("zod").ZodTypeAny, {
333
+ }, "strip", z.ZodTypeAny, {
333
334
  totalRatedGames: number;
334
335
  commentsLeft: number;
335
336
  avgRating: number;
@@ -348,15 +349,15 @@ export declare const userSchema: import("zod").ZodObject<{
348
349
  weightedRating: number;
349
350
  };
350
351
  }>;
351
- nhl: import("zod").ZodObject<{
352
- totalRatedGames: import("zod").ZodNumber;
353
- commentsLeft: import("zod").ZodNumber;
354
- avgRating: import("zod").ZodNumber;
355
- avgRatings: import("zod").ZodObject<{
356
- initialWindowRating: import("zod").ZodNumber;
357
- normalRating: import("zod").ZodNumber;
358
- weightedRating: import("zod").ZodNumber;
359
- }, "strip", import("zod").ZodTypeAny, {
352
+ nhl: z.ZodObject<{
353
+ totalRatedGames: z.ZodNumber;
354
+ commentsLeft: z.ZodNumber;
355
+ avgRating: z.ZodNumber;
356
+ avgRatings: z.ZodObject<{
357
+ initialWindowRating: z.ZodNumber;
358
+ normalRating: z.ZodNumber;
359
+ weightedRating: z.ZodNumber;
360
+ }, "strip", z.ZodTypeAny, {
360
361
  initialWindowRating: number;
361
362
  normalRating: number;
362
363
  weightedRating: number;
@@ -365,7 +366,7 @@ export declare const userSchema: import("zod").ZodObject<{
365
366
  normalRating: number;
366
367
  weightedRating: number;
367
368
  }>;
368
- }, "strip", import("zod").ZodTypeAny, {
369
+ }, "strip", z.ZodTypeAny, {
369
370
  totalRatedGames: number;
370
371
  commentsLeft: number;
371
372
  avgRating: number;
@@ -384,15 +385,15 @@ export declare const userSchema: import("zod").ZodObject<{
384
385
  weightedRating: number;
385
386
  };
386
387
  }>;
387
- mls: import("zod").ZodObject<{
388
- totalRatedGames: import("zod").ZodNumber;
389
- commentsLeft: import("zod").ZodNumber;
390
- avgRating: import("zod").ZodNumber;
391
- avgRatings: import("zod").ZodObject<{
392
- initialWindowRating: import("zod").ZodNumber;
393
- normalRating: import("zod").ZodNumber;
394
- weightedRating: import("zod").ZodNumber;
395
- }, "strip", import("zod").ZodTypeAny, {
388
+ mls: z.ZodObject<{
389
+ totalRatedGames: z.ZodNumber;
390
+ commentsLeft: z.ZodNumber;
391
+ avgRating: z.ZodNumber;
392
+ avgRatings: z.ZodObject<{
393
+ initialWindowRating: z.ZodNumber;
394
+ normalRating: z.ZodNumber;
395
+ weightedRating: z.ZodNumber;
396
+ }, "strip", z.ZodTypeAny, {
396
397
  initialWindowRating: number;
397
398
  normalRating: number;
398
399
  weightedRating: number;
@@ -401,7 +402,7 @@ export declare const userSchema: import("zod").ZodObject<{
401
402
  normalRating: number;
402
403
  weightedRating: number;
403
404
  }>;
404
- }, "strip", import("zod").ZodTypeAny, {
405
+ }, "strip", z.ZodTypeAny, {
405
406
  totalRatedGames: number;
406
407
  commentsLeft: number;
407
408
  avgRating: number;
@@ -420,15 +421,15 @@ export declare const userSchema: import("zod").ZodObject<{
420
421
  weightedRating: number;
421
422
  };
422
423
  }>;
423
- cwc: import("zod").ZodObject<{
424
- totalRatedGames: import("zod").ZodNumber;
425
- commentsLeft: import("zod").ZodNumber;
426
- avgRating: import("zod").ZodNumber;
427
- avgRatings: import("zod").ZodObject<{
428
- initialWindowRating: import("zod").ZodNumber;
429
- normalRating: import("zod").ZodNumber;
430
- weightedRating: import("zod").ZodNumber;
431
- }, "strip", import("zod").ZodTypeAny, {
424
+ cwc: z.ZodObject<{
425
+ totalRatedGames: z.ZodNumber;
426
+ commentsLeft: z.ZodNumber;
427
+ avgRating: z.ZodNumber;
428
+ avgRatings: z.ZodObject<{
429
+ initialWindowRating: z.ZodNumber;
430
+ normalRating: z.ZodNumber;
431
+ weightedRating: z.ZodNumber;
432
+ }, "strip", z.ZodTypeAny, {
432
433
  initialWindowRating: number;
433
434
  normalRating: number;
434
435
  weightedRating: number;
@@ -437,7 +438,7 @@ export declare const userSchema: import("zod").ZodObject<{
437
438
  normalRating: number;
438
439
  weightedRating: number;
439
440
  }>;
440
- }, "strip", import("zod").ZodTypeAny, {
441
+ }, "strip", z.ZodTypeAny, {
441
442
  totalRatedGames: number;
442
443
  commentsLeft: number;
443
444
  avgRating: number;
@@ -456,15 +457,15 @@ export declare const userSchema: import("zod").ZodObject<{
456
457
  weightedRating: number;
457
458
  };
458
459
  }>;
459
- cfb: import("zod").ZodObject<{
460
- totalRatedGames: import("zod").ZodNumber;
461
- commentsLeft: import("zod").ZodNumber;
462
- avgRating: import("zod").ZodNumber;
463
- avgRatings: import("zod").ZodObject<{
464
- initialWindowRating: import("zod").ZodNumber;
465
- normalRating: import("zod").ZodNumber;
466
- weightedRating: import("zod").ZodNumber;
467
- }, "strip", import("zod").ZodTypeAny, {
460
+ cfb: z.ZodObject<{
461
+ totalRatedGames: z.ZodNumber;
462
+ commentsLeft: z.ZodNumber;
463
+ avgRating: z.ZodNumber;
464
+ avgRatings: z.ZodObject<{
465
+ initialWindowRating: z.ZodNumber;
466
+ normalRating: z.ZodNumber;
467
+ weightedRating: z.ZodNumber;
468
+ }, "strip", z.ZodTypeAny, {
468
469
  initialWindowRating: number;
469
470
  normalRating: number;
470
471
  weightedRating: number;
@@ -473,7 +474,7 @@ export declare const userSchema: import("zod").ZodObject<{
473
474
  normalRating: number;
474
475
  weightedRating: number;
475
476
  }>;
476
- }, "strip", import("zod").ZodTypeAny, {
477
+ }, "strip", z.ZodTypeAny, {
477
478
  totalRatedGames: number;
478
479
  commentsLeft: number;
479
480
  avgRating: number;
@@ -492,15 +493,15 @@ export declare const userSchema: import("zod").ZodObject<{
492
493
  weightedRating: number;
493
494
  };
494
495
  }>;
495
- cbb: import("zod").ZodObject<{
496
- totalRatedGames: import("zod").ZodNumber;
497
- commentsLeft: import("zod").ZodNumber;
498
- avgRating: import("zod").ZodNumber;
499
- avgRatings: import("zod").ZodObject<{
500
- initialWindowRating: import("zod").ZodNumber;
501
- normalRating: import("zod").ZodNumber;
502
- weightedRating: import("zod").ZodNumber;
503
- }, "strip", import("zod").ZodTypeAny, {
496
+ cbb: z.ZodObject<{
497
+ totalRatedGames: z.ZodNumber;
498
+ commentsLeft: z.ZodNumber;
499
+ avgRating: z.ZodNumber;
500
+ avgRatings: z.ZodObject<{
501
+ initialWindowRating: z.ZodNumber;
502
+ normalRating: z.ZodNumber;
503
+ weightedRating: z.ZodNumber;
504
+ }, "strip", z.ZodTypeAny, {
504
505
  initialWindowRating: number;
505
506
  normalRating: number;
506
507
  weightedRating: number;
@@ -509,7 +510,7 @@ export declare const userSchema: import("zod").ZodObject<{
509
510
  normalRating: number;
510
511
  weightedRating: number;
511
512
  }>;
512
- }, "strip", import("zod").ZodTypeAny, {
513
+ }, "strip", z.ZodTypeAny, {
513
514
  totalRatedGames: number;
514
515
  commentsLeft: number;
515
516
  avgRating: number;
@@ -528,15 +529,15 @@ export declare const userSchema: import("zod").ZodObject<{
528
529
  weightedRating: number;
529
530
  };
530
531
  }>;
531
- epl: import("zod").ZodObject<{
532
- totalRatedGames: import("zod").ZodNumber;
533
- commentsLeft: import("zod").ZodNumber;
534
- avgRating: import("zod").ZodNumber;
535
- avgRatings: import("zod").ZodObject<{
536
- initialWindowRating: import("zod").ZodNumber;
537
- normalRating: import("zod").ZodNumber;
538
- weightedRating: import("zod").ZodNumber;
539
- }, "strip", import("zod").ZodTypeAny, {
532
+ epl: z.ZodObject<{
533
+ totalRatedGames: z.ZodNumber;
534
+ commentsLeft: z.ZodNumber;
535
+ avgRating: z.ZodNumber;
536
+ avgRatings: z.ZodObject<{
537
+ initialWindowRating: z.ZodNumber;
538
+ normalRating: z.ZodNumber;
539
+ weightedRating: z.ZodNumber;
540
+ }, "strip", z.ZodTypeAny, {
540
541
  initialWindowRating: number;
541
542
  normalRating: number;
542
543
  weightedRating: number;
@@ -545,7 +546,7 @@ export declare const userSchema: import("zod").ZodObject<{
545
546
  normalRating: number;
546
547
  weightedRating: number;
547
548
  }>;
548
- }, "strip", import("zod").ZodTypeAny, {
549
+ }, "strip", z.ZodTypeAny, {
549
550
  totalRatedGames: number;
550
551
  commentsLeft: number;
551
552
  avgRating: number;
@@ -564,15 +565,15 @@ export declare const userSchema: import("zod").ZodObject<{
564
565
  weightedRating: number;
565
566
  };
566
567
  }>;
567
- wnba: import("zod").ZodObject<{
568
- totalRatedGames: import("zod").ZodNumber;
569
- commentsLeft: import("zod").ZodNumber;
570
- avgRating: import("zod").ZodNumber;
571
- avgRatings: import("zod").ZodObject<{
572
- initialWindowRating: import("zod").ZodNumber;
573
- normalRating: import("zod").ZodNumber;
574
- weightedRating: import("zod").ZodNumber;
575
- }, "strip", import("zod").ZodTypeAny, {
568
+ wnba: z.ZodObject<{
569
+ totalRatedGames: z.ZodNumber;
570
+ commentsLeft: z.ZodNumber;
571
+ avgRating: z.ZodNumber;
572
+ avgRatings: z.ZodObject<{
573
+ initialWindowRating: z.ZodNumber;
574
+ normalRating: z.ZodNumber;
575
+ weightedRating: z.ZodNumber;
576
+ }, "strip", z.ZodTypeAny, {
576
577
  initialWindowRating: number;
577
578
  normalRating: number;
578
579
  weightedRating: number;
@@ -581,7 +582,7 @@ export declare const userSchema: import("zod").ZodObject<{
581
582
  normalRating: number;
582
583
  weightedRating: number;
583
584
  }>;
584
- }, "strip", import("zod").ZodTypeAny, {
585
+ }, "strip", z.ZodTypeAny, {
585
586
  totalRatedGames: number;
586
587
  commentsLeft: number;
587
588
  avgRating: number;
@@ -600,7 +601,7 @@ export declare const userSchema: import("zod").ZodObject<{
600
601
  weightedRating: number;
601
602
  };
602
603
  }>;
603
- }, "strip", import("zod").ZodTypeAny, {
604
+ }, "strip", z.ZodTypeAny, {
604
605
  nba: {
605
606
  totalRatedGames: number;
606
607
  commentsLeft: number;
@@ -823,34 +824,34 @@ export declare const userSchema: import("zod").ZodObject<{
823
824
  };
824
825
  };
825
826
  }>>;
826
- totalRatedGames: import("zod").ZodOptional<import("zod").ZodNumber>;
827
- commentsLeft: import("zod").ZodOptional<import("zod").ZodNumber>;
828
- avgRating: import("zod").ZodOptional<import("zod").ZodNumber>;
829
- isRegistrationComplete: import("zod").ZodOptional<import("zod").ZodBoolean>;
830
- deviceTokens: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
831
- token: import("zod").ZodString;
832
- usedAt: import("zod").ZodNumber;
833
- }, "strip", import("zod").ZodTypeAny, {
827
+ totalRatedGames: z.ZodOptional<z.ZodNumber>;
828
+ commentsLeft: z.ZodOptional<z.ZodNumber>;
829
+ avgRating: z.ZodOptional<z.ZodNumber>;
830
+ isRegistrationComplete: z.ZodOptional<z.ZodBoolean>;
831
+ deviceTokens: z.ZodRecord<z.ZodString, z.ZodObject<{
832
+ token: z.ZodString;
833
+ usedAt: z.ZodNumber;
834
+ }, "strip", z.ZodTypeAny, {
834
835
  token: string;
835
836
  usedAt: number;
836
837
  }, {
837
838
  token: string;
838
839
  usedAt: number;
839
840
  }>>;
840
- askedForPushNotifications: import("zod").ZodBoolean;
841
- acceptedPushNotifications: import("zod").ZodBoolean;
842
- badge: import("zod").ZodOptional<import("zod").ZodString>;
843
- registrationStep: import("zod").ZodOptional<import("zod").ZodNumber>;
844
- selectedLeagues: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
845
- selectedTeams: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
846
- lockedGameMessageSeen: import("zod").ZodOptional<import("zod").ZodBoolean>;
847
- bio: import("zod").ZodOptional<import("zod").ZodString>;
848
- socialLinks: import("zod").ZodOptional<import("zod").ZodObject<{
849
- instagram: import("zod").ZodOptional<import("zod").ZodString>;
850
- x: import("zod").ZodOptional<import("zod").ZodString>;
851
- youtube: import("zod").ZodOptional<import("zod").ZodString>;
852
- tiktok: import("zod").ZodOptional<import("zod").ZodString>;
853
- }, "strip", import("zod").ZodTypeAny, {
841
+ askedForPushNotifications: z.ZodBoolean;
842
+ acceptedPushNotifications: z.ZodBoolean;
843
+ badge: z.ZodOptional<z.ZodString>;
844
+ registrationStep: z.ZodOptional<z.ZodNumber>;
845
+ selectedLeagues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
846
+ selectedTeams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
847
+ lockedGameMessageSeen: z.ZodOptional<z.ZodBoolean>;
848
+ bio: z.ZodOptional<z.ZodString>;
849
+ socialLinks: z.ZodOptional<z.ZodObject<{
850
+ instagram: z.ZodOptional<z.ZodString>;
851
+ x: z.ZodOptional<z.ZodString>;
852
+ youtube: z.ZodOptional<z.ZodString>;
853
+ tiktok: z.ZodOptional<z.ZodString>;
854
+ }, "strip", z.ZodTypeAny, {
854
855
  instagram?: string | undefined;
855
856
  x?: string | undefined;
856
857
  youtube?: string | undefined;
@@ -861,40 +862,116 @@ export declare const userSchema: import("zod").ZodObject<{
861
862
  youtube?: string | undefined;
862
863
  tiktok?: string | undefined;
863
864
  }>>;
864
- platform: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"ios">, import("zod").ZodLiteral<"android">, import("zod").ZodLiteral<"macos">, import("zod").ZodLiteral<"windows">, import("zod").ZodLiteral<"web">]>>;
865
- selectedTeamsPerLeague: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">>>;
866
- favoriteTeamsPerLeague: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
867
- promptedLeagues: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodBoolean>>;
868
- notificationSettings: import("zod").ZodOptional<import("zod").ZodObject<{
869
- allGames: import("zod").ZodOptional<import("zod").ZodBoolean>;
870
- favoriteLeagues: import("zod").ZodOptional<import("zod").ZodBoolean>;
871
- favoriteTeams: import("zod").ZodOptional<import("zod").ZodBoolean>;
872
- }, "strip", import("zod").ZodTypeAny, {
865
+ platform: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"ios">, z.ZodLiteral<"android">, z.ZodLiteral<"macos">, z.ZodLiteral<"windows">, z.ZodLiteral<"web">]>>;
866
+ selectedTeamsPerLeague: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>>;
867
+ favoriteTeamsPerLeague: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
868
+ promptedLeagues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
869
+ notificationSettings: z.ZodOptional<z.ZodObject<{
870
+ allGames: z.ZodOptional<z.ZodBoolean>;
871
+ favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
872
+ favoriteTeams: z.ZodOptional<z.ZodBoolean>;
873
+ lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
874
+ leaderboardChanges: z.ZodOptional<z.ZodBoolean>;
875
+ chatReplies: z.ZodOptional<z.ZodBoolean>;
876
+ repliesToRatings: z.ZodOptional<z.ZodBoolean>;
877
+ repliesToComments: z.ZodOptional<z.ZodBoolean>;
878
+ ratingLikes: z.ZodOptional<z.ZodBoolean>;
879
+ listLikes: z.ZodOptional<z.ZodBoolean>;
880
+ eventLikes: z.ZodOptional<z.ZodBoolean>;
881
+ commentLikes: z.ZodOptional<z.ZodBoolean>;
882
+ trendingGames: z.ZodOptional<z.ZodBoolean>;
883
+ gameChanges: z.ZodOptional<z.ZodObject<{
884
+ topRatedGameChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
885
+ mostRatedGameChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
886
+ worstRatedGameChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
887
+ }, "strip", z.ZodTypeAny, {
888
+ topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
889
+ mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
890
+ worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
891
+ }, {
892
+ topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
893
+ mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
894
+ worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
895
+ }>>;
896
+ gameTopLists: z.ZodOptional<z.ZodObject<{
897
+ topRated: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
898
+ mostRated: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
899
+ worstRated: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
900
+ }, "strip", z.ZodTypeAny, {
901
+ topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
902
+ mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
903
+ worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
904
+ }, {
905
+ topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
906
+ mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
907
+ worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
908
+ }>>;
909
+ }, "strip", z.ZodTypeAny, {
873
910
  allGames?: boolean | undefined;
874
911
  favoriteLeagues?: boolean | undefined;
875
912
  favoriteTeams?: boolean | undefined;
913
+ lastWeekScoreLeaderboard?: boolean | undefined;
914
+ leaderboardChanges?: boolean | undefined;
915
+ chatReplies?: boolean | undefined;
916
+ repliesToRatings?: boolean | undefined;
917
+ repliesToComments?: boolean | undefined;
918
+ ratingLikes?: boolean | undefined;
919
+ listLikes?: boolean | undefined;
920
+ eventLikes?: boolean | undefined;
921
+ commentLikes?: boolean | undefined;
922
+ trendingGames?: boolean | undefined;
923
+ gameChanges?: {
924
+ topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
925
+ mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
926
+ worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
927
+ } | undefined;
928
+ gameTopLists?: {
929
+ topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
930
+ mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
931
+ worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
932
+ } | undefined;
876
933
  }, {
877
934
  allGames?: boolean | undefined;
878
935
  favoriteLeagues?: boolean | undefined;
879
936
  favoriteTeams?: boolean | undefined;
937
+ lastWeekScoreLeaderboard?: boolean | undefined;
938
+ leaderboardChanges?: boolean | undefined;
939
+ chatReplies?: boolean | undefined;
940
+ repliesToRatings?: boolean | undefined;
941
+ repliesToComments?: boolean | undefined;
942
+ ratingLikes?: boolean | undefined;
943
+ listLikes?: boolean | undefined;
944
+ eventLikes?: boolean | undefined;
945
+ commentLikes?: boolean | undefined;
946
+ trendingGames?: boolean | undefined;
947
+ gameChanges?: {
948
+ topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
949
+ mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
950
+ worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
951
+ } | undefined;
952
+ gameTopLists?: {
953
+ topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
954
+ mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
955
+ worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
956
+ } | undefined;
880
957
  }>>;
881
- spoilersEnabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
882
- viewedChangelogs: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodBoolean>>;
883
- lastSelectedLeague: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"nba">, import("zod").ZodLiteral<"ncaa">, import("zod").ZodLiteral<"nfl">, import("zod").ZodLiteral<"nhl">, import("zod").ZodLiteral<"mlb">, import("zod").ZodLiteral<"cbb">, import("zod").ZodLiteral<"cfb">, import("zod").ZodLiteral<"epl">, import("zod").ZodLiteral<"mls">, import("zod").ZodLiteral<"wnba">, import("zod").ZodLiteral<"cwc">, import("zod").ZodLiteral<"global">]>>;
884
- lastSelectedFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>;
885
- lastSelectedRatingFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"rating:asc">, import("zod").ZodLiteral<"rating:desc">, import("zod").ZodLiteral<"createdAt:asc">, import("zod").ZodLiteral<"createdAt:desc">, import("zod").ZodLiteral<"userLikes:asc">, import("zod").ZodLiteral<"userLikes:desc">]>>;
886
- lastSelectedGamesFeedType: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"newest">, import("zod").ZodLiteral<"forYou">]>>;
887
- lastSelectedCombinedFeedType: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"newest">, import("zod").ZodLiteral<"following">]>>;
888
- creatorLeague: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"nba">, import("zod").ZodLiteral<"ncaa">, import("zod").ZodLiteral<"nfl">, import("zod").ZodLiteral<"nhl">, import("zod").ZodLiteral<"mlb">, import("zod").ZodLiteral<"cbb">, import("zod").ZodLiteral<"cfb">, import("zod").ZodLiteral<"epl">, import("zod").ZodLiteral<"mls">, import("zod").ZodLiteral<"wnba">, import("zod").ZodLiteral<"cwc">, import("zod").ZodLiteral<"global">]>>;
889
- role: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Admin">, import("zod").ZodLiteral<"Creator">]>>;
890
- preferTraditionalTeamLayout: import("zod").ZodOptional<import("zod").ZodBoolean>;
891
- wasPromptedForReview: import("zod").ZodOptional<import("zod").ZodBoolean>;
892
- isAnonymous: import("zod").ZodOptional<import("zod").ZodBoolean>;
893
- streak: import("zod").ZodOptional<import("zod").ZodObject<{
894
- current: import("zod").ZodNumber;
895
- longest: import("zod").ZodNumber;
896
- updatedAt: import("zod").ZodNumber;
897
- }, "strip", import("zod").ZodTypeAny, {
958
+ spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
959
+ viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
960
+ lastSelectedLeague: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"global">]>>;
961
+ lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
962
+ lastSelectedRatingFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"rating:asc">, z.ZodLiteral<"rating:desc">, z.ZodLiteral<"createdAt:asc">, z.ZodLiteral<"createdAt:desc">, z.ZodLiteral<"userLikes:asc">, z.ZodLiteral<"userLikes:desc">]>>;
963
+ lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
964
+ lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
965
+ creatorLeague: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"global">]>>;
966
+ role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">]>>;
967
+ preferTraditionalTeamLayout: z.ZodOptional<z.ZodBoolean>;
968
+ wasPromptedForReview: z.ZodOptional<z.ZodBoolean>;
969
+ isAnonymous: z.ZodOptional<z.ZodBoolean>;
970
+ streak: z.ZodOptional<z.ZodObject<{
971
+ current: z.ZodNumber;
972
+ longest: z.ZodNumber;
973
+ updatedAt: z.ZodNumber;
974
+ }, "strip", z.ZodTypeAny, {
898
975
  current: number;
899
976
  updatedAt: number;
900
977
  longest: number;
@@ -903,28 +980,28 @@ export declare const userSchema: import("zod").ZodObject<{
903
980
  updatedAt: number;
904
981
  longest: number;
905
982
  }>>;
906
- milestones: import("zod").ZodOptional<import("zod").ZodObject<{
907
- ratings: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
908
- count: import("zod").ZodNumber;
909
- achievedAt: import("zod").ZodNumber;
910
- }, "strip", import("zod").ZodTypeAny, {
983
+ milestones: z.ZodOptional<z.ZodObject<{
984
+ ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
985
+ count: z.ZodNumber;
986
+ achievedAt: z.ZodNumber;
987
+ }, "strip", z.ZodTypeAny, {
911
988
  achievedAt: number;
912
989
  count: number;
913
990
  }, {
914
991
  achievedAt: number;
915
992
  count: number;
916
993
  }>, "many">>;
917
- streaks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
918
- count: import("zod").ZodNumber;
919
- achievedAt: import("zod").ZodNumber;
920
- }, "strip", import("zod").ZodTypeAny, {
994
+ streaks: z.ZodOptional<z.ZodArray<z.ZodObject<{
995
+ count: z.ZodNumber;
996
+ achievedAt: z.ZodNumber;
997
+ }, "strip", z.ZodTypeAny, {
921
998
  achievedAt: number;
922
999
  count: number;
923
1000
  }, {
924
1001
  achievedAt: number;
925
1002
  count: number;
926
1003
  }>, "many">>;
927
- }, "strip", import("zod").ZodTypeAny, {
1004
+ }, "strip", z.ZodTypeAny, {
928
1005
  ratings?: {
929
1006
  achievedAt: number;
930
1007
  count: number;
@@ -943,43 +1020,43 @@ export declare const userSchema: import("zod").ZodObject<{
943
1020
  count: number;
944
1021
  }[] | undefined;
945
1022
  }>>;
946
- achievements: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodUnion<[import("zod").ZodLiteral<"speed_rater">, import("zod").ZodLiteral<"take_this">, import("zod").ZodLiteral<"front_runner">, import("zod").ZodLiteral<"loyal_till_the_end">, import("zod").ZodLiteral<"around_the_world">, import("zod").ZodLiteral<"take_off">, import("zod").ZodLiteral<"embrace_debate">, import("zod").ZodLiteral<"fan_of_the_people">, import("zod").ZodLiteral<"the_peoples_fan">, import("zod").ZodLiteral<"take_titan">, import("zod").ZodLiteral<"take_first">, import("zod").ZodLiteral<"hall_of_takes">, import("zod").ZodLiteral<"superfan">, import("zod").ZodLiteral<"fan-tastic">, import("zod").ZodLiteral<"marathon_fan">, import("zod").ZodLiteral<"new_years_resolution">, import("zod").ZodLiteral<"dog_days_of_summer">, import("zod").ZodLiteral<"50_50_club">, import("zod").ZodLiteral<"ball_knower">, import("zod").ZodLiteral<"heating_up">, import("zod").ZodLiteral<"full_court_press">, import("zod").ZodLiteral<"grid_iron_guru">, import("zod").ZodLiteral<"across_the_yard">, import("zod").ZodLiteral<"pigskin_power">, import("zod").ZodLiteral<"goal_getter">, import("zod").ZodLiteral<"footie_fanatic">, import("zod").ZodLiteral<"campaign_conqueror">, import("zod").ZodLiteral<"diamond_hands">, import("zod").ZodLiteral<"field_of_dreams">, import("zod").ZodLiteral<"charlie_hustle">, import("zod").ZodLiteral<"power_play">, import("zod").ZodLiteral<"ice_king">, import("zod").ZodLiteral<"marleau_master">, import("zod").ZodLiteral<"the_admiral">, import("zod").ZodLiteral<"the_kick_six">, import("zod").ZodLiteral<"coin_toss">, import("zod").ZodLiteral<"golden_jacket">, import("zod").ZodLiteral<"pop_the_champagne">, import("zod").ZodLiteral<"game_grower">, import("zod").ZodLiteral<"fandon_donovan">, import("zod").ZodLiteral<"soccer_stud">, import("zod").ZodLiteral<"the_big_o">, import("zod").ZodLiteral<"the_grateful_red">, import("zod").ZodLiteral<"mad_march">, import("zod").ZodLiteral<"the_logo">, import("zod").ZodLiteral<"the_big_dipper">, import("zod").ZodLiteral<"mid_table">, import("zod").ZodLiteral<"fan_of_the_match">, import("zod").ZodLiteral<"super_mario">, import("zod").ZodLiteral<"dick_butkus">, import("zod").ZodLiteral<"hit_the_heismann">, import("zod").ZodLiteral<"lobos_legacy">, import("zod").ZodLiteral<"tau3asi">, import("zod").ZodLiteral<"queenb">, import("zod").ZodLiteral<"rookie_rater">, import("zod").ZodLiteral<"six_three">, import("zod").ZodLiteral<"groupie">, import("zod").ZodLiteral<"for_your_confederations">]>, import("zod").ZodObject<{
947
- id: import("zod").ZodString;
948
- name: import("zod").ZodString;
949
- description: import("zod").ZodString;
950
- progress: import("zod").ZodOptional<import("zod").ZodNumber>;
951
- tiers: import("zod").ZodOptional<import("zod").ZodObject<{
952
- bronze: import("zod").ZodObject<{
953
- threshold: import("zod").ZodNumber;
954
- achievedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
955
- }, "strip", import("zod").ZodTypeAny, {
1023
+ achievements: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"speed_rater">, z.ZodLiteral<"take_this">, z.ZodLiteral<"front_runner">, z.ZodLiteral<"loyal_till_the_end">, z.ZodLiteral<"around_the_world">, z.ZodLiteral<"take_off">, z.ZodLiteral<"embrace_debate">, z.ZodLiteral<"fan_of_the_people">, z.ZodLiteral<"the_peoples_fan">, z.ZodLiteral<"take_titan">, z.ZodLiteral<"take_first">, z.ZodLiteral<"hall_of_takes">, z.ZodLiteral<"superfan">, z.ZodLiteral<"fan-tastic">, z.ZodLiteral<"marathon_fan">, z.ZodLiteral<"new_years_resolution">, z.ZodLiteral<"dog_days_of_summer">, z.ZodLiteral<"50_50_club">, z.ZodLiteral<"ball_knower">, z.ZodLiteral<"heating_up">, z.ZodLiteral<"full_court_press">, z.ZodLiteral<"grid_iron_guru">, z.ZodLiteral<"across_the_yard">, z.ZodLiteral<"pigskin_power">, z.ZodLiteral<"goal_getter">, z.ZodLiteral<"footie_fanatic">, z.ZodLiteral<"campaign_conqueror">, z.ZodLiteral<"diamond_hands">, z.ZodLiteral<"field_of_dreams">, z.ZodLiteral<"charlie_hustle">, z.ZodLiteral<"power_play">, z.ZodLiteral<"ice_king">, z.ZodLiteral<"marleau_master">, z.ZodLiteral<"the_admiral">, z.ZodLiteral<"the_kick_six">, z.ZodLiteral<"coin_toss">, z.ZodLiteral<"golden_jacket">, z.ZodLiteral<"pop_the_champagne">, z.ZodLiteral<"game_grower">, z.ZodLiteral<"fandon_donovan">, z.ZodLiteral<"soccer_stud">, z.ZodLiteral<"the_big_o">, z.ZodLiteral<"the_grateful_red">, z.ZodLiteral<"mad_march">, z.ZodLiteral<"the_logo">, z.ZodLiteral<"the_big_dipper">, z.ZodLiteral<"mid_table">, z.ZodLiteral<"fan_of_the_match">, z.ZodLiteral<"super_mario">, z.ZodLiteral<"dick_butkus">, z.ZodLiteral<"hit_the_heismann">, z.ZodLiteral<"lobos_legacy">, z.ZodLiteral<"tau3asi">, z.ZodLiteral<"queenb">, z.ZodLiteral<"rookie_rater">, z.ZodLiteral<"six_three">, z.ZodLiteral<"groupie">, z.ZodLiteral<"for_your_confederations">]>, z.ZodObject<{
1024
+ id: z.ZodString;
1025
+ name: z.ZodString;
1026
+ description: z.ZodString;
1027
+ progress: z.ZodOptional<z.ZodNumber>;
1028
+ tiers: z.ZodOptional<z.ZodObject<{
1029
+ bronze: z.ZodObject<{
1030
+ threshold: z.ZodNumber;
1031
+ achievedAt: z.ZodOptional<z.ZodNumber>;
1032
+ }, "strip", z.ZodTypeAny, {
956
1033
  threshold: number;
957
1034
  achievedAt?: number | undefined;
958
1035
  }, {
959
1036
  threshold: number;
960
1037
  achievedAt?: number | undefined;
961
1038
  }>;
962
- silver: import("zod").ZodObject<{
963
- threshold: import("zod").ZodNumber;
964
- achievedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
965
- }, "strip", import("zod").ZodTypeAny, {
1039
+ silver: z.ZodObject<{
1040
+ threshold: z.ZodNumber;
1041
+ achievedAt: z.ZodOptional<z.ZodNumber>;
1042
+ }, "strip", z.ZodTypeAny, {
966
1043
  threshold: number;
967
1044
  achievedAt?: number | undefined;
968
1045
  }, {
969
1046
  threshold: number;
970
1047
  achievedAt?: number | undefined;
971
1048
  }>;
972
- gold: import("zod").ZodObject<{
973
- threshold: import("zod").ZodNumber;
974
- achievedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
975
- }, "strip", import("zod").ZodTypeAny, {
1049
+ gold: z.ZodObject<{
1050
+ threshold: z.ZodNumber;
1051
+ achievedAt: z.ZodOptional<z.ZodNumber>;
1052
+ }, "strip", z.ZodTypeAny, {
976
1053
  threshold: number;
977
1054
  achievedAt?: number | undefined;
978
1055
  }, {
979
1056
  threshold: number;
980
1057
  achievedAt?: number | undefined;
981
1058
  }>;
982
- }, "strip", import("zod").ZodTypeAny, {
1059
+ }, "strip", z.ZodTypeAny, {
983
1060
  bronze: {
984
1061
  threshold: number;
985
1062
  achievedAt?: number | undefined;
@@ -1006,13 +1083,13 @@ export declare const userSchema: import("zod").ZodObject<{
1006
1083
  achievedAt?: number | undefined;
1007
1084
  };
1008
1085
  }>>;
1009
- currentTier: import("zod").ZodOptional<import("zod").ZodNumber>;
1010
- oneTimeProgress: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
1011
- current: import("zod").ZodNumber;
1012
- target: import("zod").ZodNumber;
1013
- label: import("zod").ZodOptional<import("zod").ZodString>;
1014
- context: import("zod").ZodOptional<import("zod").ZodString>;
1015
- }, "strip", import("zod").ZodTypeAny, {
1086
+ currentTier: z.ZodOptional<z.ZodNumber>;
1087
+ oneTimeProgress: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
1088
+ current: z.ZodNumber;
1089
+ target: z.ZodNumber;
1090
+ label: z.ZodOptional<z.ZodString>;
1091
+ context: z.ZodOptional<z.ZodString>;
1092
+ }, "strip", z.ZodTypeAny, {
1016
1093
  target: number;
1017
1094
  current: number;
1018
1095
  label?: string | undefined;
@@ -1023,11 +1100,11 @@ export declare const userSchema: import("zod").ZodObject<{
1023
1100
  label?: string | undefined;
1024
1101
  context?: string | undefined;
1025
1102
  }>>>;
1026
- seen: import("zod").ZodOptional<import("zod").ZodBoolean>;
1027
- type: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"global">, import("zod").ZodLiteral<"sport">, import("zod").ZodLiteral<"league">]>>;
1028
- league: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"nba">, import("zod").ZodLiteral<"ncaa">, import("zod").ZodLiteral<"nfl">, import("zod").ZodLiteral<"nhl">, import("zod").ZodLiteral<"mlb">, import("zod").ZodLiteral<"cbb">, import("zod").ZodLiteral<"cfb">, import("zod").ZodLiteral<"epl">, import("zod").ZodLiteral<"mls">, import("zod").ZodLiteral<"wnba">, import("zod").ZodLiteral<"cwc">, import("zod").ZodLiteral<"global">]>>;
1029
- sport: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"basketball">, import("zod").ZodLiteral<"football">, import("zod").ZodLiteral<"soccer">, import("zod").ZodLiteral<"baseball">, import("zod").ZodLiteral<"hockey">]>>;
1030
- }, "strip", import("zod").ZodTypeAny, {
1103
+ seen: z.ZodOptional<z.ZodBoolean>;
1104
+ type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
1105
+ league: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"global">]>>;
1106
+ sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
1107
+ }, "strip", z.ZodTypeAny, {
1031
1108
  id: string;
1032
1109
  name: string;
1033
1110
  description: string;
@@ -1088,21 +1165,21 @@ export declare const userSchema: import("zod").ZodObject<{
1088
1165
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
1089
1166
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
1090
1167
  }>>>;
1091
- repliesLeft: import("zod").ZodOptional<import("zod").ZodNumber>;
1092
- listRepliesLeft: import("zod").ZodOptional<import("zod").ZodNumber>;
1093
- viewedToS: import("zod").ZodOptional<import("zod").ZodBoolean>;
1094
- banned: import("zod").ZodOptional<import("zod").ZodBoolean>;
1095
- lowercaseUsername: import("zod").ZodOptional<import("zod").ZodString>;
1096
- headerColor: import("zod").ZodOptional<import("zod").ZodString>;
1097
- profileCompletionTrackerDismissed: import("zod").ZodOptional<import("zod").ZodBoolean>;
1098
- profileCompletionStatus: import("zod").ZodOptional<import("zod").ZodObject<{
1099
- profilePicture: import("zod").ZodBoolean;
1100
- bio: import("zod").ZodBoolean;
1101
- favoriteTeam: import("zod").ZodBoolean;
1102
- pinnedRatings: import("zod").ZodBoolean;
1103
- favoriteGames: import("zod").ZodBoolean;
1104
- gradientColor: import("zod").ZodBoolean;
1105
- }, "strip", import("zod").ZodTypeAny, {
1168
+ repliesLeft: z.ZodOptional<z.ZodNumber>;
1169
+ listRepliesLeft: z.ZodOptional<z.ZodNumber>;
1170
+ viewedToS: z.ZodOptional<z.ZodBoolean>;
1171
+ banned: z.ZodOptional<z.ZodBoolean>;
1172
+ lowercaseUsername: z.ZodOptional<z.ZodString>;
1173
+ headerColor: z.ZodOptional<z.ZodString>;
1174
+ profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
1175
+ profileCompletionStatus: z.ZodOptional<z.ZodObject<{
1176
+ profilePicture: z.ZodBoolean;
1177
+ bio: z.ZodBoolean;
1178
+ favoriteTeam: z.ZodBoolean;
1179
+ pinnedRatings: z.ZodBoolean;
1180
+ favoriteGames: z.ZodBoolean;
1181
+ gradientColor: z.ZodBoolean;
1182
+ }, "strip", z.ZodTypeAny, {
1106
1183
  bio: boolean;
1107
1184
  profilePicture: boolean;
1108
1185
  favoriteTeam: boolean;
@@ -1117,7 +1194,7 @@ export declare const userSchema: import("zod").ZodObject<{
1117
1194
  favoriteGames: boolean;
1118
1195
  gradientColor: boolean;
1119
1196
  }>>;
1120
- }, "strip", import("zod").ZodTypeAny, {
1197
+ }, "strip", z.ZodTypeAny, {
1121
1198
  id: string;
1122
1199
  email: string;
1123
1200
  username: string;
@@ -1267,6 +1344,26 @@ export declare const userSchema: import("zod").ZodObject<{
1267
1344
  allGames?: boolean | undefined;
1268
1345
  favoriteLeagues?: boolean | undefined;
1269
1346
  favoriteTeams?: boolean | undefined;
1347
+ lastWeekScoreLeaderboard?: boolean | undefined;
1348
+ leaderboardChanges?: boolean | undefined;
1349
+ chatReplies?: boolean | undefined;
1350
+ repliesToRatings?: boolean | undefined;
1351
+ repliesToComments?: boolean | undefined;
1352
+ ratingLikes?: boolean | undefined;
1353
+ listLikes?: boolean | undefined;
1354
+ eventLikes?: boolean | undefined;
1355
+ commentLikes?: boolean | undefined;
1356
+ trendingGames?: boolean | undefined;
1357
+ gameChanges?: {
1358
+ topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
1359
+ mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
1360
+ worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
1361
+ } | undefined;
1362
+ gameTopLists?: {
1363
+ topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
1364
+ mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
1365
+ worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
1366
+ } | undefined;
1270
1367
  } | undefined;
1271
1368
  spoilersEnabled?: boolean | undefined;
1272
1369
  viewedChangelogs?: Record<string, boolean> | undefined;
@@ -1490,6 +1587,26 @@ export declare const userSchema: import("zod").ZodObject<{
1490
1587
  allGames?: boolean | undefined;
1491
1588
  favoriteLeagues?: boolean | undefined;
1492
1589
  favoriteTeams?: boolean | undefined;
1590
+ lastWeekScoreLeaderboard?: boolean | undefined;
1591
+ leaderboardChanges?: boolean | undefined;
1592
+ chatReplies?: boolean | undefined;
1593
+ repliesToRatings?: boolean | undefined;
1594
+ repliesToComments?: boolean | undefined;
1595
+ ratingLikes?: boolean | undefined;
1596
+ listLikes?: boolean | undefined;
1597
+ eventLikes?: boolean | undefined;
1598
+ commentLikes?: boolean | undefined;
1599
+ trendingGames?: boolean | undefined;
1600
+ gameChanges?: {
1601
+ topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
1602
+ mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
1603
+ worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
1604
+ } | undefined;
1605
+ gameTopLists?: {
1606
+ topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
1607
+ mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
1608
+ worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
1609
+ } | undefined;
1493
1610
  } | undefined;
1494
1611
  spoilersEnabled?: boolean | undefined;
1495
1612
  viewedChangelogs?: Record<string, boolean> | undefined;
@@ -1564,23 +1681,23 @@ export declare const userSchema: import("zod").ZodObject<{
1564
1681
  gradientColor: boolean;
1565
1682
  } | undefined;
1566
1683
  }>;
1567
- export declare const createUserSchema: import("zod").ZodObject<Omit<{
1568
- id: import("zod").ZodString;
1569
- email: import("zod").ZodString;
1570
- username: import("zod").ZodString;
1571
- avatarUrl: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
1572
- createdAt: import("zod").ZodNumber;
1573
- updatedAt: import("zod").ZodNumber;
1574
- leagues: import("zod").ZodOptional<import("zod").ZodObject<{
1575
- nba: import("zod").ZodObject<{
1576
- totalRatedGames: import("zod").ZodNumber;
1577
- commentsLeft: import("zod").ZodNumber;
1578
- avgRating: import("zod").ZodNumber;
1579
- avgRatings: import("zod").ZodObject<{
1580
- initialWindowRating: import("zod").ZodNumber;
1581
- normalRating: import("zod").ZodNumber;
1582
- weightedRating: import("zod").ZodNumber;
1583
- }, "strip", import("zod").ZodTypeAny, {
1684
+ export declare const createUserSchema: z.ZodObject<Omit<{
1685
+ id: z.ZodString;
1686
+ email: z.ZodString;
1687
+ username: z.ZodString;
1688
+ avatarUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1689
+ createdAt: z.ZodNumber;
1690
+ updatedAt: z.ZodNumber;
1691
+ leagues: z.ZodOptional<z.ZodObject<{
1692
+ nba: z.ZodObject<{
1693
+ totalRatedGames: z.ZodNumber;
1694
+ commentsLeft: z.ZodNumber;
1695
+ avgRating: z.ZodNumber;
1696
+ avgRatings: z.ZodObject<{
1697
+ initialWindowRating: z.ZodNumber;
1698
+ normalRating: z.ZodNumber;
1699
+ weightedRating: z.ZodNumber;
1700
+ }, "strip", z.ZodTypeAny, {
1584
1701
  initialWindowRating: number;
1585
1702
  normalRating: number;
1586
1703
  weightedRating: number;
@@ -1589,7 +1706,7 @@ export declare const createUserSchema: import("zod").ZodObject<Omit<{
1589
1706
  normalRating: number;
1590
1707
  weightedRating: number;
1591
1708
  }>;
1592
- }, "strip", import("zod").ZodTypeAny, {
1709
+ }, "strip", z.ZodTypeAny, {
1593
1710
  totalRatedGames: number;
1594
1711
  commentsLeft: number;
1595
1712
  avgRating: number;
@@ -1608,15 +1725,15 @@ export declare const createUserSchema: import("zod").ZodObject<Omit<{
1608
1725
  weightedRating: number;
1609
1726
  };
1610
1727
  }>;
1611
- ncaa: import("zod").ZodObject<{
1612
- totalRatedGames: import("zod").ZodNumber;
1613
- commentsLeft: import("zod").ZodNumber;
1614
- avgRating: import("zod").ZodNumber;
1615
- avgRatings: import("zod").ZodObject<{
1616
- initialWindowRating: import("zod").ZodNumber;
1617
- normalRating: import("zod").ZodNumber;
1618
- weightedRating: import("zod").ZodNumber;
1619
- }, "strip", import("zod").ZodTypeAny, {
1728
+ ncaa: z.ZodObject<{
1729
+ totalRatedGames: z.ZodNumber;
1730
+ commentsLeft: z.ZodNumber;
1731
+ avgRating: z.ZodNumber;
1732
+ avgRatings: z.ZodObject<{
1733
+ initialWindowRating: z.ZodNumber;
1734
+ normalRating: z.ZodNumber;
1735
+ weightedRating: z.ZodNumber;
1736
+ }, "strip", z.ZodTypeAny, {
1620
1737
  initialWindowRating: number;
1621
1738
  normalRating: number;
1622
1739
  weightedRating: number;
@@ -1625,7 +1742,7 @@ export declare const createUserSchema: import("zod").ZodObject<Omit<{
1625
1742
  normalRating: number;
1626
1743
  weightedRating: number;
1627
1744
  }>;
1628
- }, "strip", import("zod").ZodTypeAny, {
1745
+ }, "strip", z.ZodTypeAny, {
1629
1746
  totalRatedGames: number;
1630
1747
  commentsLeft: number;
1631
1748
  avgRating: number;
@@ -1644,15 +1761,15 @@ export declare const createUserSchema: import("zod").ZodObject<Omit<{
1644
1761
  weightedRating: number;
1645
1762
  };
1646
1763
  }>;
1647
- mlb: import("zod").ZodObject<{
1648
- totalRatedGames: import("zod").ZodNumber;
1649
- commentsLeft: import("zod").ZodNumber;
1650
- avgRating: import("zod").ZodNumber;
1651
- avgRatings: import("zod").ZodObject<{
1652
- initialWindowRating: import("zod").ZodNumber;
1653
- normalRating: import("zod").ZodNumber;
1654
- weightedRating: import("zod").ZodNumber;
1655
- }, "strip", import("zod").ZodTypeAny, {
1764
+ mlb: z.ZodObject<{
1765
+ totalRatedGames: z.ZodNumber;
1766
+ commentsLeft: z.ZodNumber;
1767
+ avgRating: z.ZodNumber;
1768
+ avgRatings: z.ZodObject<{
1769
+ initialWindowRating: z.ZodNumber;
1770
+ normalRating: z.ZodNumber;
1771
+ weightedRating: z.ZodNumber;
1772
+ }, "strip", z.ZodTypeAny, {
1656
1773
  initialWindowRating: number;
1657
1774
  normalRating: number;
1658
1775
  weightedRating: number;
@@ -1661,7 +1778,7 @@ export declare const createUserSchema: import("zod").ZodObject<Omit<{
1661
1778
  normalRating: number;
1662
1779
  weightedRating: number;
1663
1780
  }>;
1664
- }, "strip", import("zod").ZodTypeAny, {
1781
+ }, "strip", z.ZodTypeAny, {
1665
1782
  totalRatedGames: number;
1666
1783
  commentsLeft: number;
1667
1784
  avgRating: number;
@@ -1680,15 +1797,15 @@ export declare const createUserSchema: import("zod").ZodObject<Omit<{
1680
1797
  weightedRating: number;
1681
1798
  };
1682
1799
  }>;
1683
- nfl: import("zod").ZodObject<{
1684
- totalRatedGames: import("zod").ZodNumber;
1685
- commentsLeft: import("zod").ZodNumber;
1686
- avgRating: import("zod").ZodNumber;
1687
- avgRatings: import("zod").ZodObject<{
1688
- initialWindowRating: import("zod").ZodNumber;
1689
- normalRating: import("zod").ZodNumber;
1690
- weightedRating: import("zod").ZodNumber;
1691
- }, "strip", import("zod").ZodTypeAny, {
1800
+ nfl: z.ZodObject<{
1801
+ totalRatedGames: z.ZodNumber;
1802
+ commentsLeft: z.ZodNumber;
1803
+ avgRating: z.ZodNumber;
1804
+ avgRatings: z.ZodObject<{
1805
+ initialWindowRating: z.ZodNumber;
1806
+ normalRating: z.ZodNumber;
1807
+ weightedRating: z.ZodNumber;
1808
+ }, "strip", z.ZodTypeAny, {
1692
1809
  initialWindowRating: number;
1693
1810
  normalRating: number;
1694
1811
  weightedRating: number;
@@ -1697,7 +1814,7 @@ export declare const createUserSchema: import("zod").ZodObject<Omit<{
1697
1814
  normalRating: number;
1698
1815
  weightedRating: number;
1699
1816
  }>;
1700
- }, "strip", import("zod").ZodTypeAny, {
1817
+ }, "strip", z.ZodTypeAny, {
1701
1818
  totalRatedGames: number;
1702
1819
  commentsLeft: number;
1703
1820
  avgRating: number;
@@ -1716,15 +1833,15 @@ export declare const createUserSchema: import("zod").ZodObject<Omit<{
1716
1833
  weightedRating: number;
1717
1834
  };
1718
1835
  }>;
1719
- nhl: import("zod").ZodObject<{
1720
- totalRatedGames: import("zod").ZodNumber;
1721
- commentsLeft: import("zod").ZodNumber;
1722
- avgRating: import("zod").ZodNumber;
1723
- avgRatings: import("zod").ZodObject<{
1724
- initialWindowRating: import("zod").ZodNumber;
1725
- normalRating: import("zod").ZodNumber;
1726
- weightedRating: import("zod").ZodNumber;
1727
- }, "strip", import("zod").ZodTypeAny, {
1836
+ nhl: z.ZodObject<{
1837
+ totalRatedGames: z.ZodNumber;
1838
+ commentsLeft: z.ZodNumber;
1839
+ avgRating: z.ZodNumber;
1840
+ avgRatings: z.ZodObject<{
1841
+ initialWindowRating: z.ZodNumber;
1842
+ normalRating: z.ZodNumber;
1843
+ weightedRating: z.ZodNumber;
1844
+ }, "strip", z.ZodTypeAny, {
1728
1845
  initialWindowRating: number;
1729
1846
  normalRating: number;
1730
1847
  weightedRating: number;
@@ -1733,7 +1850,7 @@ export declare const createUserSchema: import("zod").ZodObject<Omit<{
1733
1850
  normalRating: number;
1734
1851
  weightedRating: number;
1735
1852
  }>;
1736
- }, "strip", import("zod").ZodTypeAny, {
1853
+ }, "strip", z.ZodTypeAny, {
1737
1854
  totalRatedGames: number;
1738
1855
  commentsLeft: number;
1739
1856
  avgRating: number;
@@ -1752,15 +1869,15 @@ export declare const createUserSchema: import("zod").ZodObject<Omit<{
1752
1869
  weightedRating: number;
1753
1870
  };
1754
1871
  }>;
1755
- mls: import("zod").ZodObject<{
1756
- totalRatedGames: import("zod").ZodNumber;
1757
- commentsLeft: import("zod").ZodNumber;
1758
- avgRating: import("zod").ZodNumber;
1759
- avgRatings: import("zod").ZodObject<{
1760
- initialWindowRating: import("zod").ZodNumber;
1761
- normalRating: import("zod").ZodNumber;
1762
- weightedRating: import("zod").ZodNumber;
1763
- }, "strip", import("zod").ZodTypeAny, {
1872
+ mls: z.ZodObject<{
1873
+ totalRatedGames: z.ZodNumber;
1874
+ commentsLeft: z.ZodNumber;
1875
+ avgRating: z.ZodNumber;
1876
+ avgRatings: z.ZodObject<{
1877
+ initialWindowRating: z.ZodNumber;
1878
+ normalRating: z.ZodNumber;
1879
+ weightedRating: z.ZodNumber;
1880
+ }, "strip", z.ZodTypeAny, {
1764
1881
  initialWindowRating: number;
1765
1882
  normalRating: number;
1766
1883
  weightedRating: number;
@@ -1769,7 +1886,7 @@ export declare const createUserSchema: import("zod").ZodObject<Omit<{
1769
1886
  normalRating: number;
1770
1887
  weightedRating: number;
1771
1888
  }>;
1772
- }, "strip", import("zod").ZodTypeAny, {
1889
+ }, "strip", z.ZodTypeAny, {
1773
1890
  totalRatedGames: number;
1774
1891
  commentsLeft: number;
1775
1892
  avgRating: number;
@@ -1788,15 +1905,15 @@ export declare const createUserSchema: import("zod").ZodObject<Omit<{
1788
1905
  weightedRating: number;
1789
1906
  };
1790
1907
  }>;
1791
- cwc: import("zod").ZodObject<{
1792
- totalRatedGames: import("zod").ZodNumber;
1793
- commentsLeft: import("zod").ZodNumber;
1794
- avgRating: import("zod").ZodNumber;
1795
- avgRatings: import("zod").ZodObject<{
1796
- initialWindowRating: import("zod").ZodNumber;
1797
- normalRating: import("zod").ZodNumber;
1798
- weightedRating: import("zod").ZodNumber;
1799
- }, "strip", import("zod").ZodTypeAny, {
1908
+ cwc: z.ZodObject<{
1909
+ totalRatedGames: z.ZodNumber;
1910
+ commentsLeft: z.ZodNumber;
1911
+ avgRating: z.ZodNumber;
1912
+ avgRatings: z.ZodObject<{
1913
+ initialWindowRating: z.ZodNumber;
1914
+ normalRating: z.ZodNumber;
1915
+ weightedRating: z.ZodNumber;
1916
+ }, "strip", z.ZodTypeAny, {
1800
1917
  initialWindowRating: number;
1801
1918
  normalRating: number;
1802
1919
  weightedRating: number;
@@ -1805,7 +1922,7 @@ export declare const createUserSchema: import("zod").ZodObject<Omit<{
1805
1922
  normalRating: number;
1806
1923
  weightedRating: number;
1807
1924
  }>;
1808
- }, "strip", import("zod").ZodTypeAny, {
1925
+ }, "strip", z.ZodTypeAny, {
1809
1926
  totalRatedGames: number;
1810
1927
  commentsLeft: number;
1811
1928
  avgRating: number;
@@ -1824,15 +1941,15 @@ export declare const createUserSchema: import("zod").ZodObject<Omit<{
1824
1941
  weightedRating: number;
1825
1942
  };
1826
1943
  }>;
1827
- cfb: import("zod").ZodObject<{
1828
- totalRatedGames: import("zod").ZodNumber;
1829
- commentsLeft: import("zod").ZodNumber;
1830
- avgRating: import("zod").ZodNumber;
1831
- avgRatings: import("zod").ZodObject<{
1832
- initialWindowRating: import("zod").ZodNumber;
1833
- normalRating: import("zod").ZodNumber;
1834
- weightedRating: import("zod").ZodNumber;
1835
- }, "strip", import("zod").ZodTypeAny, {
1944
+ cfb: z.ZodObject<{
1945
+ totalRatedGames: z.ZodNumber;
1946
+ commentsLeft: z.ZodNumber;
1947
+ avgRating: z.ZodNumber;
1948
+ avgRatings: z.ZodObject<{
1949
+ initialWindowRating: z.ZodNumber;
1950
+ normalRating: z.ZodNumber;
1951
+ weightedRating: z.ZodNumber;
1952
+ }, "strip", z.ZodTypeAny, {
1836
1953
  initialWindowRating: number;
1837
1954
  normalRating: number;
1838
1955
  weightedRating: number;
@@ -1841,7 +1958,7 @@ export declare const createUserSchema: import("zod").ZodObject<Omit<{
1841
1958
  normalRating: number;
1842
1959
  weightedRating: number;
1843
1960
  }>;
1844
- }, "strip", import("zod").ZodTypeAny, {
1961
+ }, "strip", z.ZodTypeAny, {
1845
1962
  totalRatedGames: number;
1846
1963
  commentsLeft: number;
1847
1964
  avgRating: number;
@@ -1860,15 +1977,15 @@ export declare const createUserSchema: import("zod").ZodObject<Omit<{
1860
1977
  weightedRating: number;
1861
1978
  };
1862
1979
  }>;
1863
- cbb: import("zod").ZodObject<{
1864
- totalRatedGames: import("zod").ZodNumber;
1865
- commentsLeft: import("zod").ZodNumber;
1866
- avgRating: import("zod").ZodNumber;
1867
- avgRatings: import("zod").ZodObject<{
1868
- initialWindowRating: import("zod").ZodNumber;
1869
- normalRating: import("zod").ZodNumber;
1870
- weightedRating: import("zod").ZodNumber;
1871
- }, "strip", import("zod").ZodTypeAny, {
1980
+ cbb: z.ZodObject<{
1981
+ totalRatedGames: z.ZodNumber;
1982
+ commentsLeft: z.ZodNumber;
1983
+ avgRating: z.ZodNumber;
1984
+ avgRatings: z.ZodObject<{
1985
+ initialWindowRating: z.ZodNumber;
1986
+ normalRating: z.ZodNumber;
1987
+ weightedRating: z.ZodNumber;
1988
+ }, "strip", z.ZodTypeAny, {
1872
1989
  initialWindowRating: number;
1873
1990
  normalRating: number;
1874
1991
  weightedRating: number;
@@ -1877,7 +1994,7 @@ export declare const createUserSchema: import("zod").ZodObject<Omit<{
1877
1994
  normalRating: number;
1878
1995
  weightedRating: number;
1879
1996
  }>;
1880
- }, "strip", import("zod").ZodTypeAny, {
1997
+ }, "strip", z.ZodTypeAny, {
1881
1998
  totalRatedGames: number;
1882
1999
  commentsLeft: number;
1883
2000
  avgRating: number;
@@ -1896,15 +2013,15 @@ export declare const createUserSchema: import("zod").ZodObject<Omit<{
1896
2013
  weightedRating: number;
1897
2014
  };
1898
2015
  }>;
1899
- epl: import("zod").ZodObject<{
1900
- totalRatedGames: import("zod").ZodNumber;
1901
- commentsLeft: import("zod").ZodNumber;
1902
- avgRating: import("zod").ZodNumber;
1903
- avgRatings: import("zod").ZodObject<{
1904
- initialWindowRating: import("zod").ZodNumber;
1905
- normalRating: import("zod").ZodNumber;
1906
- weightedRating: import("zod").ZodNumber;
1907
- }, "strip", import("zod").ZodTypeAny, {
2016
+ epl: z.ZodObject<{
2017
+ totalRatedGames: z.ZodNumber;
2018
+ commentsLeft: z.ZodNumber;
2019
+ avgRating: z.ZodNumber;
2020
+ avgRatings: z.ZodObject<{
2021
+ initialWindowRating: z.ZodNumber;
2022
+ normalRating: z.ZodNumber;
2023
+ weightedRating: z.ZodNumber;
2024
+ }, "strip", z.ZodTypeAny, {
1908
2025
  initialWindowRating: number;
1909
2026
  normalRating: number;
1910
2027
  weightedRating: number;
@@ -1913,7 +2030,7 @@ export declare const createUserSchema: import("zod").ZodObject<Omit<{
1913
2030
  normalRating: number;
1914
2031
  weightedRating: number;
1915
2032
  }>;
1916
- }, "strip", import("zod").ZodTypeAny, {
2033
+ }, "strip", z.ZodTypeAny, {
1917
2034
  totalRatedGames: number;
1918
2035
  commentsLeft: number;
1919
2036
  avgRating: number;
@@ -1932,15 +2049,15 @@ export declare const createUserSchema: import("zod").ZodObject<Omit<{
1932
2049
  weightedRating: number;
1933
2050
  };
1934
2051
  }>;
1935
- wnba: import("zod").ZodObject<{
1936
- totalRatedGames: import("zod").ZodNumber;
1937
- commentsLeft: import("zod").ZodNumber;
1938
- avgRating: import("zod").ZodNumber;
1939
- avgRatings: import("zod").ZodObject<{
1940
- initialWindowRating: import("zod").ZodNumber;
1941
- normalRating: import("zod").ZodNumber;
1942
- weightedRating: import("zod").ZodNumber;
1943
- }, "strip", import("zod").ZodTypeAny, {
2052
+ wnba: z.ZodObject<{
2053
+ totalRatedGames: z.ZodNumber;
2054
+ commentsLeft: z.ZodNumber;
2055
+ avgRating: z.ZodNumber;
2056
+ avgRatings: z.ZodObject<{
2057
+ initialWindowRating: z.ZodNumber;
2058
+ normalRating: z.ZodNumber;
2059
+ weightedRating: z.ZodNumber;
2060
+ }, "strip", z.ZodTypeAny, {
1944
2061
  initialWindowRating: number;
1945
2062
  normalRating: number;
1946
2063
  weightedRating: number;
@@ -1949,7 +2066,7 @@ export declare const createUserSchema: import("zod").ZodObject<Omit<{
1949
2066
  normalRating: number;
1950
2067
  weightedRating: number;
1951
2068
  }>;
1952
- }, "strip", import("zod").ZodTypeAny, {
2069
+ }, "strip", z.ZodTypeAny, {
1953
2070
  totalRatedGames: number;
1954
2071
  commentsLeft: number;
1955
2072
  avgRating: number;
@@ -1968,7 +2085,7 @@ export declare const createUserSchema: import("zod").ZodObject<Omit<{
1968
2085
  weightedRating: number;
1969
2086
  };
1970
2087
  }>;
1971
- }, "strip", import("zod").ZodTypeAny, {
2088
+ }, "strip", z.ZodTypeAny, {
1972
2089
  nba: {
1973
2090
  totalRatedGames: number;
1974
2091
  commentsLeft: number;
@@ -2191,34 +2308,34 @@ export declare const createUserSchema: import("zod").ZodObject<Omit<{
2191
2308
  };
2192
2309
  };
2193
2310
  }>>;
2194
- totalRatedGames: import("zod").ZodOptional<import("zod").ZodNumber>;
2195
- commentsLeft: import("zod").ZodOptional<import("zod").ZodNumber>;
2196
- avgRating: import("zod").ZodOptional<import("zod").ZodNumber>;
2197
- isRegistrationComplete: import("zod").ZodOptional<import("zod").ZodBoolean>;
2198
- deviceTokens: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
2199
- token: import("zod").ZodString;
2200
- usedAt: import("zod").ZodNumber;
2201
- }, "strip", import("zod").ZodTypeAny, {
2311
+ totalRatedGames: z.ZodOptional<z.ZodNumber>;
2312
+ commentsLeft: z.ZodOptional<z.ZodNumber>;
2313
+ avgRating: z.ZodOptional<z.ZodNumber>;
2314
+ isRegistrationComplete: z.ZodOptional<z.ZodBoolean>;
2315
+ deviceTokens: z.ZodRecord<z.ZodString, z.ZodObject<{
2316
+ token: z.ZodString;
2317
+ usedAt: z.ZodNumber;
2318
+ }, "strip", z.ZodTypeAny, {
2202
2319
  token: string;
2203
2320
  usedAt: number;
2204
2321
  }, {
2205
2322
  token: string;
2206
2323
  usedAt: number;
2207
2324
  }>>;
2208
- askedForPushNotifications: import("zod").ZodBoolean;
2209
- acceptedPushNotifications: import("zod").ZodBoolean;
2210
- badge: import("zod").ZodOptional<import("zod").ZodString>;
2211
- registrationStep: import("zod").ZodOptional<import("zod").ZodNumber>;
2212
- selectedLeagues: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
2213
- selectedTeams: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
2214
- lockedGameMessageSeen: import("zod").ZodOptional<import("zod").ZodBoolean>;
2215
- bio: import("zod").ZodOptional<import("zod").ZodString>;
2216
- socialLinks: import("zod").ZodOptional<import("zod").ZodObject<{
2217
- instagram: import("zod").ZodOptional<import("zod").ZodString>;
2218
- x: import("zod").ZodOptional<import("zod").ZodString>;
2219
- youtube: import("zod").ZodOptional<import("zod").ZodString>;
2220
- tiktok: import("zod").ZodOptional<import("zod").ZodString>;
2221
- }, "strip", import("zod").ZodTypeAny, {
2325
+ askedForPushNotifications: z.ZodBoolean;
2326
+ acceptedPushNotifications: z.ZodBoolean;
2327
+ badge: z.ZodOptional<z.ZodString>;
2328
+ registrationStep: z.ZodOptional<z.ZodNumber>;
2329
+ selectedLeagues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2330
+ selectedTeams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2331
+ lockedGameMessageSeen: z.ZodOptional<z.ZodBoolean>;
2332
+ bio: z.ZodOptional<z.ZodString>;
2333
+ socialLinks: z.ZodOptional<z.ZodObject<{
2334
+ instagram: z.ZodOptional<z.ZodString>;
2335
+ x: z.ZodOptional<z.ZodString>;
2336
+ youtube: z.ZodOptional<z.ZodString>;
2337
+ tiktok: z.ZodOptional<z.ZodString>;
2338
+ }, "strip", z.ZodTypeAny, {
2222
2339
  instagram?: string | undefined;
2223
2340
  x?: string | undefined;
2224
2341
  youtube?: string | undefined;
@@ -2229,40 +2346,116 @@ export declare const createUserSchema: import("zod").ZodObject<Omit<{
2229
2346
  youtube?: string | undefined;
2230
2347
  tiktok?: string | undefined;
2231
2348
  }>>;
2232
- platform: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"ios">, import("zod").ZodLiteral<"android">, import("zod").ZodLiteral<"macos">, import("zod").ZodLiteral<"windows">, import("zod").ZodLiteral<"web">]>>;
2233
- selectedTeamsPerLeague: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">>>;
2234
- favoriteTeamsPerLeague: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
2235
- promptedLeagues: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodBoolean>>;
2236
- notificationSettings: import("zod").ZodOptional<import("zod").ZodObject<{
2237
- allGames: import("zod").ZodOptional<import("zod").ZodBoolean>;
2238
- favoriteLeagues: import("zod").ZodOptional<import("zod").ZodBoolean>;
2239
- favoriteTeams: import("zod").ZodOptional<import("zod").ZodBoolean>;
2240
- }, "strip", import("zod").ZodTypeAny, {
2349
+ platform: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"ios">, z.ZodLiteral<"android">, z.ZodLiteral<"macos">, z.ZodLiteral<"windows">, z.ZodLiteral<"web">]>>;
2350
+ selectedTeamsPerLeague: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>>;
2351
+ favoriteTeamsPerLeague: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2352
+ promptedLeagues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
2353
+ notificationSettings: z.ZodOptional<z.ZodObject<{
2354
+ allGames: z.ZodOptional<z.ZodBoolean>;
2355
+ favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
2356
+ favoriteTeams: z.ZodOptional<z.ZodBoolean>;
2357
+ lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
2358
+ leaderboardChanges: z.ZodOptional<z.ZodBoolean>;
2359
+ chatReplies: z.ZodOptional<z.ZodBoolean>;
2360
+ repliesToRatings: z.ZodOptional<z.ZodBoolean>;
2361
+ repliesToComments: z.ZodOptional<z.ZodBoolean>;
2362
+ ratingLikes: z.ZodOptional<z.ZodBoolean>;
2363
+ listLikes: z.ZodOptional<z.ZodBoolean>;
2364
+ eventLikes: z.ZodOptional<z.ZodBoolean>;
2365
+ commentLikes: z.ZodOptional<z.ZodBoolean>;
2366
+ trendingGames: z.ZodOptional<z.ZodBoolean>;
2367
+ gameChanges: z.ZodOptional<z.ZodObject<{
2368
+ topRatedGameChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
2369
+ mostRatedGameChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
2370
+ worstRatedGameChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
2371
+ }, "strip", z.ZodTypeAny, {
2372
+ topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2373
+ mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2374
+ worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2375
+ }, {
2376
+ topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2377
+ mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2378
+ worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2379
+ }>>;
2380
+ gameTopLists: z.ZodOptional<z.ZodObject<{
2381
+ topRated: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
2382
+ mostRated: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
2383
+ worstRated: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
2384
+ }, "strip", z.ZodTypeAny, {
2385
+ topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2386
+ mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2387
+ worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2388
+ }, {
2389
+ topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2390
+ mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2391
+ worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2392
+ }>>;
2393
+ }, "strip", z.ZodTypeAny, {
2241
2394
  allGames?: boolean | undefined;
2242
2395
  favoriteLeagues?: boolean | undefined;
2243
2396
  favoriteTeams?: boolean | undefined;
2397
+ lastWeekScoreLeaderboard?: boolean | undefined;
2398
+ leaderboardChanges?: boolean | undefined;
2399
+ chatReplies?: boolean | undefined;
2400
+ repliesToRatings?: boolean | undefined;
2401
+ repliesToComments?: boolean | undefined;
2402
+ ratingLikes?: boolean | undefined;
2403
+ listLikes?: boolean | undefined;
2404
+ eventLikes?: boolean | undefined;
2405
+ commentLikes?: boolean | undefined;
2406
+ trendingGames?: boolean | undefined;
2407
+ gameChanges?: {
2408
+ topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2409
+ mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2410
+ worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2411
+ } | undefined;
2412
+ gameTopLists?: {
2413
+ topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2414
+ mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2415
+ worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2416
+ } | undefined;
2244
2417
  }, {
2245
2418
  allGames?: boolean | undefined;
2246
2419
  favoriteLeagues?: boolean | undefined;
2247
2420
  favoriteTeams?: boolean | undefined;
2421
+ lastWeekScoreLeaderboard?: boolean | undefined;
2422
+ leaderboardChanges?: boolean | undefined;
2423
+ chatReplies?: boolean | undefined;
2424
+ repliesToRatings?: boolean | undefined;
2425
+ repliesToComments?: boolean | undefined;
2426
+ ratingLikes?: boolean | undefined;
2427
+ listLikes?: boolean | undefined;
2428
+ eventLikes?: boolean | undefined;
2429
+ commentLikes?: boolean | undefined;
2430
+ trendingGames?: boolean | undefined;
2431
+ gameChanges?: {
2432
+ topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2433
+ mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2434
+ worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2435
+ } | undefined;
2436
+ gameTopLists?: {
2437
+ topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2438
+ mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2439
+ worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2440
+ } | undefined;
2248
2441
  }>>;
2249
- spoilersEnabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
2250
- viewedChangelogs: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodBoolean>>;
2251
- lastSelectedLeague: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"nba">, import("zod").ZodLiteral<"ncaa">, import("zod").ZodLiteral<"nfl">, import("zod").ZodLiteral<"nhl">, import("zod").ZodLiteral<"mlb">, import("zod").ZodLiteral<"cbb">, import("zod").ZodLiteral<"cfb">, import("zod").ZodLiteral<"epl">, import("zod").ZodLiteral<"mls">, import("zod").ZodLiteral<"wnba">, import("zod").ZodLiteral<"cwc">, import("zod").ZodLiteral<"global">]>>;
2252
- lastSelectedFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>;
2253
- lastSelectedRatingFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"rating:asc">, import("zod").ZodLiteral<"rating:desc">, import("zod").ZodLiteral<"createdAt:asc">, import("zod").ZodLiteral<"createdAt:desc">, import("zod").ZodLiteral<"userLikes:asc">, import("zod").ZodLiteral<"userLikes:desc">]>>;
2254
- lastSelectedGamesFeedType: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"newest">, import("zod").ZodLiteral<"forYou">]>>;
2255
- lastSelectedCombinedFeedType: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"newest">, import("zod").ZodLiteral<"following">]>>;
2256
- creatorLeague: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"nba">, import("zod").ZodLiteral<"ncaa">, import("zod").ZodLiteral<"nfl">, import("zod").ZodLiteral<"nhl">, import("zod").ZodLiteral<"mlb">, import("zod").ZodLiteral<"cbb">, import("zod").ZodLiteral<"cfb">, import("zod").ZodLiteral<"epl">, import("zod").ZodLiteral<"mls">, import("zod").ZodLiteral<"wnba">, import("zod").ZodLiteral<"cwc">, import("zod").ZodLiteral<"global">]>>;
2257
- role: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Admin">, import("zod").ZodLiteral<"Creator">]>>;
2258
- preferTraditionalTeamLayout: import("zod").ZodOptional<import("zod").ZodBoolean>;
2259
- wasPromptedForReview: import("zod").ZodOptional<import("zod").ZodBoolean>;
2260
- isAnonymous: import("zod").ZodOptional<import("zod").ZodBoolean>;
2261
- streak: import("zod").ZodOptional<import("zod").ZodObject<{
2262
- current: import("zod").ZodNumber;
2263
- longest: import("zod").ZodNumber;
2264
- updatedAt: import("zod").ZodNumber;
2265
- }, "strip", import("zod").ZodTypeAny, {
2442
+ spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
2443
+ viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
2444
+ lastSelectedLeague: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"global">]>>;
2445
+ lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
2446
+ lastSelectedRatingFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"rating:asc">, z.ZodLiteral<"rating:desc">, z.ZodLiteral<"createdAt:asc">, z.ZodLiteral<"createdAt:desc">, z.ZodLiteral<"userLikes:asc">, z.ZodLiteral<"userLikes:desc">]>>;
2447
+ lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
2448
+ lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
2449
+ creatorLeague: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"global">]>>;
2450
+ role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">]>>;
2451
+ preferTraditionalTeamLayout: z.ZodOptional<z.ZodBoolean>;
2452
+ wasPromptedForReview: z.ZodOptional<z.ZodBoolean>;
2453
+ isAnonymous: z.ZodOptional<z.ZodBoolean>;
2454
+ streak: z.ZodOptional<z.ZodObject<{
2455
+ current: z.ZodNumber;
2456
+ longest: z.ZodNumber;
2457
+ updatedAt: z.ZodNumber;
2458
+ }, "strip", z.ZodTypeAny, {
2266
2459
  current: number;
2267
2460
  updatedAt: number;
2268
2461
  longest: number;
@@ -2271,28 +2464,28 @@ export declare const createUserSchema: import("zod").ZodObject<Omit<{
2271
2464
  updatedAt: number;
2272
2465
  longest: number;
2273
2466
  }>>;
2274
- milestones: import("zod").ZodOptional<import("zod").ZodObject<{
2275
- ratings: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
2276
- count: import("zod").ZodNumber;
2277
- achievedAt: import("zod").ZodNumber;
2278
- }, "strip", import("zod").ZodTypeAny, {
2467
+ milestones: z.ZodOptional<z.ZodObject<{
2468
+ ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
2469
+ count: z.ZodNumber;
2470
+ achievedAt: z.ZodNumber;
2471
+ }, "strip", z.ZodTypeAny, {
2279
2472
  achievedAt: number;
2280
2473
  count: number;
2281
2474
  }, {
2282
2475
  achievedAt: number;
2283
2476
  count: number;
2284
2477
  }>, "many">>;
2285
- streaks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
2286
- count: import("zod").ZodNumber;
2287
- achievedAt: import("zod").ZodNumber;
2288
- }, "strip", import("zod").ZodTypeAny, {
2478
+ streaks: z.ZodOptional<z.ZodArray<z.ZodObject<{
2479
+ count: z.ZodNumber;
2480
+ achievedAt: z.ZodNumber;
2481
+ }, "strip", z.ZodTypeAny, {
2289
2482
  achievedAt: number;
2290
2483
  count: number;
2291
2484
  }, {
2292
2485
  achievedAt: number;
2293
2486
  count: number;
2294
2487
  }>, "many">>;
2295
- }, "strip", import("zod").ZodTypeAny, {
2488
+ }, "strip", z.ZodTypeAny, {
2296
2489
  ratings?: {
2297
2490
  achievedAt: number;
2298
2491
  count: number;
@@ -2311,43 +2504,43 @@ export declare const createUserSchema: import("zod").ZodObject<Omit<{
2311
2504
  count: number;
2312
2505
  }[] | undefined;
2313
2506
  }>>;
2314
- achievements: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodUnion<[import("zod").ZodLiteral<"speed_rater">, import("zod").ZodLiteral<"take_this">, import("zod").ZodLiteral<"front_runner">, import("zod").ZodLiteral<"loyal_till_the_end">, import("zod").ZodLiteral<"around_the_world">, import("zod").ZodLiteral<"take_off">, import("zod").ZodLiteral<"embrace_debate">, import("zod").ZodLiteral<"fan_of_the_people">, import("zod").ZodLiteral<"the_peoples_fan">, import("zod").ZodLiteral<"take_titan">, import("zod").ZodLiteral<"take_first">, import("zod").ZodLiteral<"hall_of_takes">, import("zod").ZodLiteral<"superfan">, import("zod").ZodLiteral<"fan-tastic">, import("zod").ZodLiteral<"marathon_fan">, import("zod").ZodLiteral<"new_years_resolution">, import("zod").ZodLiteral<"dog_days_of_summer">, import("zod").ZodLiteral<"50_50_club">, import("zod").ZodLiteral<"ball_knower">, import("zod").ZodLiteral<"heating_up">, import("zod").ZodLiteral<"full_court_press">, import("zod").ZodLiteral<"grid_iron_guru">, import("zod").ZodLiteral<"across_the_yard">, import("zod").ZodLiteral<"pigskin_power">, import("zod").ZodLiteral<"goal_getter">, import("zod").ZodLiteral<"footie_fanatic">, import("zod").ZodLiteral<"campaign_conqueror">, import("zod").ZodLiteral<"diamond_hands">, import("zod").ZodLiteral<"field_of_dreams">, import("zod").ZodLiteral<"charlie_hustle">, import("zod").ZodLiteral<"power_play">, import("zod").ZodLiteral<"ice_king">, import("zod").ZodLiteral<"marleau_master">, import("zod").ZodLiteral<"the_admiral">, import("zod").ZodLiteral<"the_kick_six">, import("zod").ZodLiteral<"coin_toss">, import("zod").ZodLiteral<"golden_jacket">, import("zod").ZodLiteral<"pop_the_champagne">, import("zod").ZodLiteral<"game_grower">, import("zod").ZodLiteral<"fandon_donovan">, import("zod").ZodLiteral<"soccer_stud">, import("zod").ZodLiteral<"the_big_o">, import("zod").ZodLiteral<"the_grateful_red">, import("zod").ZodLiteral<"mad_march">, import("zod").ZodLiteral<"the_logo">, import("zod").ZodLiteral<"the_big_dipper">, import("zod").ZodLiteral<"mid_table">, import("zod").ZodLiteral<"fan_of_the_match">, import("zod").ZodLiteral<"super_mario">, import("zod").ZodLiteral<"dick_butkus">, import("zod").ZodLiteral<"hit_the_heismann">, import("zod").ZodLiteral<"lobos_legacy">, import("zod").ZodLiteral<"tau3asi">, import("zod").ZodLiteral<"queenb">, import("zod").ZodLiteral<"rookie_rater">, import("zod").ZodLiteral<"six_three">, import("zod").ZodLiteral<"groupie">, import("zod").ZodLiteral<"for_your_confederations">]>, import("zod").ZodObject<{
2315
- id: import("zod").ZodString;
2316
- name: import("zod").ZodString;
2317
- description: import("zod").ZodString;
2318
- progress: import("zod").ZodOptional<import("zod").ZodNumber>;
2319
- tiers: import("zod").ZodOptional<import("zod").ZodObject<{
2320
- bronze: import("zod").ZodObject<{
2321
- threshold: import("zod").ZodNumber;
2322
- achievedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
2323
- }, "strip", import("zod").ZodTypeAny, {
2507
+ achievements: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"speed_rater">, z.ZodLiteral<"take_this">, z.ZodLiteral<"front_runner">, z.ZodLiteral<"loyal_till_the_end">, z.ZodLiteral<"around_the_world">, z.ZodLiteral<"take_off">, z.ZodLiteral<"embrace_debate">, z.ZodLiteral<"fan_of_the_people">, z.ZodLiteral<"the_peoples_fan">, z.ZodLiteral<"take_titan">, z.ZodLiteral<"take_first">, z.ZodLiteral<"hall_of_takes">, z.ZodLiteral<"superfan">, z.ZodLiteral<"fan-tastic">, z.ZodLiteral<"marathon_fan">, z.ZodLiteral<"new_years_resolution">, z.ZodLiteral<"dog_days_of_summer">, z.ZodLiteral<"50_50_club">, z.ZodLiteral<"ball_knower">, z.ZodLiteral<"heating_up">, z.ZodLiteral<"full_court_press">, z.ZodLiteral<"grid_iron_guru">, z.ZodLiteral<"across_the_yard">, z.ZodLiteral<"pigskin_power">, z.ZodLiteral<"goal_getter">, z.ZodLiteral<"footie_fanatic">, z.ZodLiteral<"campaign_conqueror">, z.ZodLiteral<"diamond_hands">, z.ZodLiteral<"field_of_dreams">, z.ZodLiteral<"charlie_hustle">, z.ZodLiteral<"power_play">, z.ZodLiteral<"ice_king">, z.ZodLiteral<"marleau_master">, z.ZodLiteral<"the_admiral">, z.ZodLiteral<"the_kick_six">, z.ZodLiteral<"coin_toss">, z.ZodLiteral<"golden_jacket">, z.ZodLiteral<"pop_the_champagne">, z.ZodLiteral<"game_grower">, z.ZodLiteral<"fandon_donovan">, z.ZodLiteral<"soccer_stud">, z.ZodLiteral<"the_big_o">, z.ZodLiteral<"the_grateful_red">, z.ZodLiteral<"mad_march">, z.ZodLiteral<"the_logo">, z.ZodLiteral<"the_big_dipper">, z.ZodLiteral<"mid_table">, z.ZodLiteral<"fan_of_the_match">, z.ZodLiteral<"super_mario">, z.ZodLiteral<"dick_butkus">, z.ZodLiteral<"hit_the_heismann">, z.ZodLiteral<"lobos_legacy">, z.ZodLiteral<"tau3asi">, z.ZodLiteral<"queenb">, z.ZodLiteral<"rookie_rater">, z.ZodLiteral<"six_three">, z.ZodLiteral<"groupie">, z.ZodLiteral<"for_your_confederations">]>, z.ZodObject<{
2508
+ id: z.ZodString;
2509
+ name: z.ZodString;
2510
+ description: z.ZodString;
2511
+ progress: z.ZodOptional<z.ZodNumber>;
2512
+ tiers: z.ZodOptional<z.ZodObject<{
2513
+ bronze: z.ZodObject<{
2514
+ threshold: z.ZodNumber;
2515
+ achievedAt: z.ZodOptional<z.ZodNumber>;
2516
+ }, "strip", z.ZodTypeAny, {
2324
2517
  threshold: number;
2325
2518
  achievedAt?: number | undefined;
2326
2519
  }, {
2327
2520
  threshold: number;
2328
2521
  achievedAt?: number | undefined;
2329
2522
  }>;
2330
- silver: import("zod").ZodObject<{
2331
- threshold: import("zod").ZodNumber;
2332
- achievedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
2333
- }, "strip", import("zod").ZodTypeAny, {
2523
+ silver: z.ZodObject<{
2524
+ threshold: z.ZodNumber;
2525
+ achievedAt: z.ZodOptional<z.ZodNumber>;
2526
+ }, "strip", z.ZodTypeAny, {
2334
2527
  threshold: number;
2335
2528
  achievedAt?: number | undefined;
2336
2529
  }, {
2337
2530
  threshold: number;
2338
2531
  achievedAt?: number | undefined;
2339
2532
  }>;
2340
- gold: import("zod").ZodObject<{
2341
- threshold: import("zod").ZodNumber;
2342
- achievedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
2343
- }, "strip", import("zod").ZodTypeAny, {
2533
+ gold: z.ZodObject<{
2534
+ threshold: z.ZodNumber;
2535
+ achievedAt: z.ZodOptional<z.ZodNumber>;
2536
+ }, "strip", z.ZodTypeAny, {
2344
2537
  threshold: number;
2345
2538
  achievedAt?: number | undefined;
2346
2539
  }, {
2347
2540
  threshold: number;
2348
2541
  achievedAt?: number | undefined;
2349
2542
  }>;
2350
- }, "strip", import("zod").ZodTypeAny, {
2543
+ }, "strip", z.ZodTypeAny, {
2351
2544
  bronze: {
2352
2545
  threshold: number;
2353
2546
  achievedAt?: number | undefined;
@@ -2374,13 +2567,13 @@ export declare const createUserSchema: import("zod").ZodObject<Omit<{
2374
2567
  achievedAt?: number | undefined;
2375
2568
  };
2376
2569
  }>>;
2377
- currentTier: import("zod").ZodOptional<import("zod").ZodNumber>;
2378
- oneTimeProgress: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
2379
- current: import("zod").ZodNumber;
2380
- target: import("zod").ZodNumber;
2381
- label: import("zod").ZodOptional<import("zod").ZodString>;
2382
- context: import("zod").ZodOptional<import("zod").ZodString>;
2383
- }, "strip", import("zod").ZodTypeAny, {
2570
+ currentTier: z.ZodOptional<z.ZodNumber>;
2571
+ oneTimeProgress: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
2572
+ current: z.ZodNumber;
2573
+ target: z.ZodNumber;
2574
+ label: z.ZodOptional<z.ZodString>;
2575
+ context: z.ZodOptional<z.ZodString>;
2576
+ }, "strip", z.ZodTypeAny, {
2384
2577
  target: number;
2385
2578
  current: number;
2386
2579
  label?: string | undefined;
@@ -2391,11 +2584,11 @@ export declare const createUserSchema: import("zod").ZodObject<Omit<{
2391
2584
  label?: string | undefined;
2392
2585
  context?: string | undefined;
2393
2586
  }>>>;
2394
- seen: import("zod").ZodOptional<import("zod").ZodBoolean>;
2395
- type: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"global">, import("zod").ZodLiteral<"sport">, import("zod").ZodLiteral<"league">]>>;
2396
- league: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"nba">, import("zod").ZodLiteral<"ncaa">, import("zod").ZodLiteral<"nfl">, import("zod").ZodLiteral<"nhl">, import("zod").ZodLiteral<"mlb">, import("zod").ZodLiteral<"cbb">, import("zod").ZodLiteral<"cfb">, import("zod").ZodLiteral<"epl">, import("zod").ZodLiteral<"mls">, import("zod").ZodLiteral<"wnba">, import("zod").ZodLiteral<"cwc">, import("zod").ZodLiteral<"global">]>>;
2397
- sport: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"basketball">, import("zod").ZodLiteral<"football">, import("zod").ZodLiteral<"soccer">, import("zod").ZodLiteral<"baseball">, import("zod").ZodLiteral<"hockey">]>>;
2398
- }, "strip", import("zod").ZodTypeAny, {
2587
+ seen: z.ZodOptional<z.ZodBoolean>;
2588
+ type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
2589
+ league: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"global">]>>;
2590
+ sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
2591
+ }, "strip", z.ZodTypeAny, {
2399
2592
  id: string;
2400
2593
  name: string;
2401
2594
  description: string;
@@ -2456,21 +2649,21 @@ export declare const createUserSchema: import("zod").ZodObject<Omit<{
2456
2649
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
2457
2650
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
2458
2651
  }>>>;
2459
- repliesLeft: import("zod").ZodOptional<import("zod").ZodNumber>;
2460
- listRepliesLeft: import("zod").ZodOptional<import("zod").ZodNumber>;
2461
- viewedToS: import("zod").ZodOptional<import("zod").ZodBoolean>;
2462
- banned: import("zod").ZodOptional<import("zod").ZodBoolean>;
2463
- lowercaseUsername: import("zod").ZodOptional<import("zod").ZodString>;
2464
- headerColor: import("zod").ZodOptional<import("zod").ZodString>;
2465
- profileCompletionTrackerDismissed: import("zod").ZodOptional<import("zod").ZodBoolean>;
2466
- profileCompletionStatus: import("zod").ZodOptional<import("zod").ZodObject<{
2467
- profilePicture: import("zod").ZodBoolean;
2468
- bio: import("zod").ZodBoolean;
2469
- favoriteTeam: import("zod").ZodBoolean;
2470
- pinnedRatings: import("zod").ZodBoolean;
2471
- favoriteGames: import("zod").ZodBoolean;
2472
- gradientColor: import("zod").ZodBoolean;
2473
- }, "strip", import("zod").ZodTypeAny, {
2652
+ repliesLeft: z.ZodOptional<z.ZodNumber>;
2653
+ listRepliesLeft: z.ZodOptional<z.ZodNumber>;
2654
+ viewedToS: z.ZodOptional<z.ZodBoolean>;
2655
+ banned: z.ZodOptional<z.ZodBoolean>;
2656
+ lowercaseUsername: z.ZodOptional<z.ZodString>;
2657
+ headerColor: z.ZodOptional<z.ZodString>;
2658
+ profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
2659
+ profileCompletionStatus: z.ZodOptional<z.ZodObject<{
2660
+ profilePicture: z.ZodBoolean;
2661
+ bio: z.ZodBoolean;
2662
+ favoriteTeam: z.ZodBoolean;
2663
+ pinnedRatings: z.ZodBoolean;
2664
+ favoriteGames: z.ZodBoolean;
2665
+ gradientColor: z.ZodBoolean;
2666
+ }, "strip", z.ZodTypeAny, {
2474
2667
  bio: boolean;
2475
2668
  profilePicture: boolean;
2476
2669
  favoriteTeam: boolean;
@@ -2485,7 +2678,7 @@ export declare const createUserSchema: import("zod").ZodObject<Omit<{
2485
2678
  favoriteGames: boolean;
2486
2679
  gradientColor: boolean;
2487
2680
  }>>;
2488
- }, "id" | "totalRatedGames" | "avgRating" | "createdAt" | "updatedAt" | "deviceTokens" | "askedForPushNotifications" | "acceptedPushNotifications">, "strip", import("zod").ZodTypeAny, {
2681
+ }, "id" | "totalRatedGames" | "avgRating" | "createdAt" | "updatedAt" | "deviceTokens" | "askedForPushNotifications" | "acceptedPushNotifications">, "strip", z.ZodTypeAny, {
2489
2682
  email: string;
2490
2683
  username: string;
2491
2684
  platform?: "ios" | "android" | "macos" | "windows" | "web" | undefined;
@@ -2624,6 +2817,26 @@ export declare const createUserSchema: import("zod").ZodObject<Omit<{
2624
2817
  allGames?: boolean | undefined;
2625
2818
  favoriteLeagues?: boolean | undefined;
2626
2819
  favoriteTeams?: boolean | undefined;
2820
+ lastWeekScoreLeaderboard?: boolean | undefined;
2821
+ leaderboardChanges?: boolean | undefined;
2822
+ chatReplies?: boolean | undefined;
2823
+ repliesToRatings?: boolean | undefined;
2824
+ repliesToComments?: boolean | undefined;
2825
+ ratingLikes?: boolean | undefined;
2826
+ listLikes?: boolean | undefined;
2827
+ eventLikes?: boolean | undefined;
2828
+ commentLikes?: boolean | undefined;
2829
+ trendingGames?: boolean | undefined;
2830
+ gameChanges?: {
2831
+ topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2832
+ mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2833
+ worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2834
+ } | undefined;
2835
+ gameTopLists?: {
2836
+ topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2837
+ mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2838
+ worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2839
+ } | undefined;
2627
2840
  } | undefined;
2628
2841
  spoilersEnabled?: boolean | undefined;
2629
2842
  viewedChangelogs?: Record<string, boolean> | undefined;
@@ -2836,6 +3049,26 @@ export declare const createUserSchema: import("zod").ZodObject<Omit<{
2836
3049
  allGames?: boolean | undefined;
2837
3050
  favoriteLeagues?: boolean | undefined;
2838
3051
  favoriteTeams?: boolean | undefined;
3052
+ lastWeekScoreLeaderboard?: boolean | undefined;
3053
+ leaderboardChanges?: boolean | undefined;
3054
+ chatReplies?: boolean | undefined;
3055
+ repliesToRatings?: boolean | undefined;
3056
+ repliesToComments?: boolean | undefined;
3057
+ ratingLikes?: boolean | undefined;
3058
+ listLikes?: boolean | undefined;
3059
+ eventLikes?: boolean | undefined;
3060
+ commentLikes?: boolean | undefined;
3061
+ trendingGames?: boolean | undefined;
3062
+ gameChanges?: {
3063
+ topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
3064
+ mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
3065
+ worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
3066
+ } | undefined;
3067
+ gameTopLists?: {
3068
+ topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
3069
+ mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
3070
+ worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
3071
+ } | undefined;
2839
3072
  } | undefined;
2840
3073
  spoilersEnabled?: boolean | undefined;
2841
3074
  viewedChangelogs?: Record<string, boolean> | undefined;
@@ -2910,23 +3143,23 @@ export declare const createUserSchema: import("zod").ZodObject<Omit<{
2910
3143
  gradientColor: boolean;
2911
3144
  } | undefined;
2912
3145
  }>;
2913
- export declare const reducedUserSchema: import("zod").ZodObject<Pick<{
2914
- id: import("zod").ZodString;
2915
- email: import("zod").ZodString;
2916
- username: import("zod").ZodString;
2917
- avatarUrl: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
2918
- createdAt: import("zod").ZodNumber;
2919
- updatedAt: import("zod").ZodNumber;
2920
- leagues: import("zod").ZodOptional<import("zod").ZodObject<{
2921
- nba: import("zod").ZodObject<{
2922
- totalRatedGames: import("zod").ZodNumber;
2923
- commentsLeft: import("zod").ZodNumber;
2924
- avgRating: import("zod").ZodNumber;
2925
- avgRatings: import("zod").ZodObject<{
2926
- initialWindowRating: import("zod").ZodNumber;
2927
- normalRating: import("zod").ZodNumber;
2928
- weightedRating: import("zod").ZodNumber;
2929
- }, "strip", import("zod").ZodTypeAny, {
3146
+ export declare const reducedUserSchema: z.ZodObject<Pick<{
3147
+ id: z.ZodString;
3148
+ email: z.ZodString;
3149
+ username: z.ZodString;
3150
+ avatarUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3151
+ createdAt: z.ZodNumber;
3152
+ updatedAt: z.ZodNumber;
3153
+ leagues: z.ZodOptional<z.ZodObject<{
3154
+ nba: z.ZodObject<{
3155
+ totalRatedGames: z.ZodNumber;
3156
+ commentsLeft: z.ZodNumber;
3157
+ avgRating: z.ZodNumber;
3158
+ avgRatings: z.ZodObject<{
3159
+ initialWindowRating: z.ZodNumber;
3160
+ normalRating: z.ZodNumber;
3161
+ weightedRating: z.ZodNumber;
3162
+ }, "strip", z.ZodTypeAny, {
2930
3163
  initialWindowRating: number;
2931
3164
  normalRating: number;
2932
3165
  weightedRating: number;
@@ -2935,7 +3168,7 @@ export declare const reducedUserSchema: import("zod").ZodObject<Pick<{
2935
3168
  normalRating: number;
2936
3169
  weightedRating: number;
2937
3170
  }>;
2938
- }, "strip", import("zod").ZodTypeAny, {
3171
+ }, "strip", z.ZodTypeAny, {
2939
3172
  totalRatedGames: number;
2940
3173
  commentsLeft: number;
2941
3174
  avgRating: number;
@@ -2954,15 +3187,15 @@ export declare const reducedUserSchema: import("zod").ZodObject<Pick<{
2954
3187
  weightedRating: number;
2955
3188
  };
2956
3189
  }>;
2957
- ncaa: import("zod").ZodObject<{
2958
- totalRatedGames: import("zod").ZodNumber;
2959
- commentsLeft: import("zod").ZodNumber;
2960
- avgRating: import("zod").ZodNumber;
2961
- avgRatings: import("zod").ZodObject<{
2962
- initialWindowRating: import("zod").ZodNumber;
2963
- normalRating: import("zod").ZodNumber;
2964
- weightedRating: import("zod").ZodNumber;
2965
- }, "strip", import("zod").ZodTypeAny, {
3190
+ ncaa: z.ZodObject<{
3191
+ totalRatedGames: z.ZodNumber;
3192
+ commentsLeft: z.ZodNumber;
3193
+ avgRating: z.ZodNumber;
3194
+ avgRatings: z.ZodObject<{
3195
+ initialWindowRating: z.ZodNumber;
3196
+ normalRating: z.ZodNumber;
3197
+ weightedRating: z.ZodNumber;
3198
+ }, "strip", z.ZodTypeAny, {
2966
3199
  initialWindowRating: number;
2967
3200
  normalRating: number;
2968
3201
  weightedRating: number;
@@ -2971,7 +3204,7 @@ export declare const reducedUserSchema: import("zod").ZodObject<Pick<{
2971
3204
  normalRating: number;
2972
3205
  weightedRating: number;
2973
3206
  }>;
2974
- }, "strip", import("zod").ZodTypeAny, {
3207
+ }, "strip", z.ZodTypeAny, {
2975
3208
  totalRatedGames: number;
2976
3209
  commentsLeft: number;
2977
3210
  avgRating: number;
@@ -2990,15 +3223,15 @@ export declare const reducedUserSchema: import("zod").ZodObject<Pick<{
2990
3223
  weightedRating: number;
2991
3224
  };
2992
3225
  }>;
2993
- mlb: import("zod").ZodObject<{
2994
- totalRatedGames: import("zod").ZodNumber;
2995
- commentsLeft: import("zod").ZodNumber;
2996
- avgRating: import("zod").ZodNumber;
2997
- avgRatings: import("zod").ZodObject<{
2998
- initialWindowRating: import("zod").ZodNumber;
2999
- normalRating: import("zod").ZodNumber;
3000
- weightedRating: import("zod").ZodNumber;
3001
- }, "strip", import("zod").ZodTypeAny, {
3226
+ mlb: z.ZodObject<{
3227
+ totalRatedGames: z.ZodNumber;
3228
+ commentsLeft: z.ZodNumber;
3229
+ avgRating: z.ZodNumber;
3230
+ avgRatings: z.ZodObject<{
3231
+ initialWindowRating: z.ZodNumber;
3232
+ normalRating: z.ZodNumber;
3233
+ weightedRating: z.ZodNumber;
3234
+ }, "strip", z.ZodTypeAny, {
3002
3235
  initialWindowRating: number;
3003
3236
  normalRating: number;
3004
3237
  weightedRating: number;
@@ -3007,7 +3240,7 @@ export declare const reducedUserSchema: import("zod").ZodObject<Pick<{
3007
3240
  normalRating: number;
3008
3241
  weightedRating: number;
3009
3242
  }>;
3010
- }, "strip", import("zod").ZodTypeAny, {
3243
+ }, "strip", z.ZodTypeAny, {
3011
3244
  totalRatedGames: number;
3012
3245
  commentsLeft: number;
3013
3246
  avgRating: number;
@@ -3026,15 +3259,15 @@ export declare const reducedUserSchema: import("zod").ZodObject<Pick<{
3026
3259
  weightedRating: number;
3027
3260
  };
3028
3261
  }>;
3029
- nfl: import("zod").ZodObject<{
3030
- totalRatedGames: import("zod").ZodNumber;
3031
- commentsLeft: import("zod").ZodNumber;
3032
- avgRating: import("zod").ZodNumber;
3033
- avgRatings: import("zod").ZodObject<{
3034
- initialWindowRating: import("zod").ZodNumber;
3035
- normalRating: import("zod").ZodNumber;
3036
- weightedRating: import("zod").ZodNumber;
3037
- }, "strip", import("zod").ZodTypeAny, {
3262
+ nfl: z.ZodObject<{
3263
+ totalRatedGames: z.ZodNumber;
3264
+ commentsLeft: z.ZodNumber;
3265
+ avgRating: z.ZodNumber;
3266
+ avgRatings: z.ZodObject<{
3267
+ initialWindowRating: z.ZodNumber;
3268
+ normalRating: z.ZodNumber;
3269
+ weightedRating: z.ZodNumber;
3270
+ }, "strip", z.ZodTypeAny, {
3038
3271
  initialWindowRating: number;
3039
3272
  normalRating: number;
3040
3273
  weightedRating: number;
@@ -3043,7 +3276,7 @@ export declare const reducedUserSchema: import("zod").ZodObject<Pick<{
3043
3276
  normalRating: number;
3044
3277
  weightedRating: number;
3045
3278
  }>;
3046
- }, "strip", import("zod").ZodTypeAny, {
3279
+ }, "strip", z.ZodTypeAny, {
3047
3280
  totalRatedGames: number;
3048
3281
  commentsLeft: number;
3049
3282
  avgRating: number;
@@ -3062,15 +3295,15 @@ export declare const reducedUserSchema: import("zod").ZodObject<Pick<{
3062
3295
  weightedRating: number;
3063
3296
  };
3064
3297
  }>;
3065
- nhl: import("zod").ZodObject<{
3066
- totalRatedGames: import("zod").ZodNumber;
3067
- commentsLeft: import("zod").ZodNumber;
3068
- avgRating: import("zod").ZodNumber;
3069
- avgRatings: import("zod").ZodObject<{
3070
- initialWindowRating: import("zod").ZodNumber;
3071
- normalRating: import("zod").ZodNumber;
3072
- weightedRating: import("zod").ZodNumber;
3073
- }, "strip", import("zod").ZodTypeAny, {
3298
+ nhl: z.ZodObject<{
3299
+ totalRatedGames: z.ZodNumber;
3300
+ commentsLeft: z.ZodNumber;
3301
+ avgRating: z.ZodNumber;
3302
+ avgRatings: z.ZodObject<{
3303
+ initialWindowRating: z.ZodNumber;
3304
+ normalRating: z.ZodNumber;
3305
+ weightedRating: z.ZodNumber;
3306
+ }, "strip", z.ZodTypeAny, {
3074
3307
  initialWindowRating: number;
3075
3308
  normalRating: number;
3076
3309
  weightedRating: number;
@@ -3079,7 +3312,7 @@ export declare const reducedUserSchema: import("zod").ZodObject<Pick<{
3079
3312
  normalRating: number;
3080
3313
  weightedRating: number;
3081
3314
  }>;
3082
- }, "strip", import("zod").ZodTypeAny, {
3315
+ }, "strip", z.ZodTypeAny, {
3083
3316
  totalRatedGames: number;
3084
3317
  commentsLeft: number;
3085
3318
  avgRating: number;
@@ -3098,15 +3331,15 @@ export declare const reducedUserSchema: import("zod").ZodObject<Pick<{
3098
3331
  weightedRating: number;
3099
3332
  };
3100
3333
  }>;
3101
- mls: import("zod").ZodObject<{
3102
- totalRatedGames: import("zod").ZodNumber;
3103
- commentsLeft: import("zod").ZodNumber;
3104
- avgRating: import("zod").ZodNumber;
3105
- avgRatings: import("zod").ZodObject<{
3106
- initialWindowRating: import("zod").ZodNumber;
3107
- normalRating: import("zod").ZodNumber;
3108
- weightedRating: import("zod").ZodNumber;
3109
- }, "strip", import("zod").ZodTypeAny, {
3334
+ mls: z.ZodObject<{
3335
+ totalRatedGames: z.ZodNumber;
3336
+ commentsLeft: z.ZodNumber;
3337
+ avgRating: z.ZodNumber;
3338
+ avgRatings: z.ZodObject<{
3339
+ initialWindowRating: z.ZodNumber;
3340
+ normalRating: z.ZodNumber;
3341
+ weightedRating: z.ZodNumber;
3342
+ }, "strip", z.ZodTypeAny, {
3110
3343
  initialWindowRating: number;
3111
3344
  normalRating: number;
3112
3345
  weightedRating: number;
@@ -3115,7 +3348,7 @@ export declare const reducedUserSchema: import("zod").ZodObject<Pick<{
3115
3348
  normalRating: number;
3116
3349
  weightedRating: number;
3117
3350
  }>;
3118
- }, "strip", import("zod").ZodTypeAny, {
3351
+ }, "strip", z.ZodTypeAny, {
3119
3352
  totalRatedGames: number;
3120
3353
  commentsLeft: number;
3121
3354
  avgRating: number;
@@ -3134,15 +3367,15 @@ export declare const reducedUserSchema: import("zod").ZodObject<Pick<{
3134
3367
  weightedRating: number;
3135
3368
  };
3136
3369
  }>;
3137
- cwc: import("zod").ZodObject<{
3138
- totalRatedGames: import("zod").ZodNumber;
3139
- commentsLeft: import("zod").ZodNumber;
3140
- avgRating: import("zod").ZodNumber;
3141
- avgRatings: import("zod").ZodObject<{
3142
- initialWindowRating: import("zod").ZodNumber;
3143
- normalRating: import("zod").ZodNumber;
3144
- weightedRating: import("zod").ZodNumber;
3145
- }, "strip", import("zod").ZodTypeAny, {
3370
+ cwc: z.ZodObject<{
3371
+ totalRatedGames: z.ZodNumber;
3372
+ commentsLeft: z.ZodNumber;
3373
+ avgRating: z.ZodNumber;
3374
+ avgRatings: z.ZodObject<{
3375
+ initialWindowRating: z.ZodNumber;
3376
+ normalRating: z.ZodNumber;
3377
+ weightedRating: z.ZodNumber;
3378
+ }, "strip", z.ZodTypeAny, {
3146
3379
  initialWindowRating: number;
3147
3380
  normalRating: number;
3148
3381
  weightedRating: number;
@@ -3151,7 +3384,7 @@ export declare const reducedUserSchema: import("zod").ZodObject<Pick<{
3151
3384
  normalRating: number;
3152
3385
  weightedRating: number;
3153
3386
  }>;
3154
- }, "strip", import("zod").ZodTypeAny, {
3387
+ }, "strip", z.ZodTypeAny, {
3155
3388
  totalRatedGames: number;
3156
3389
  commentsLeft: number;
3157
3390
  avgRating: number;
@@ -3170,15 +3403,15 @@ export declare const reducedUserSchema: import("zod").ZodObject<Pick<{
3170
3403
  weightedRating: number;
3171
3404
  };
3172
3405
  }>;
3173
- cfb: import("zod").ZodObject<{
3174
- totalRatedGames: import("zod").ZodNumber;
3175
- commentsLeft: import("zod").ZodNumber;
3176
- avgRating: import("zod").ZodNumber;
3177
- avgRatings: import("zod").ZodObject<{
3178
- initialWindowRating: import("zod").ZodNumber;
3179
- normalRating: import("zod").ZodNumber;
3180
- weightedRating: import("zod").ZodNumber;
3181
- }, "strip", import("zod").ZodTypeAny, {
3406
+ cfb: z.ZodObject<{
3407
+ totalRatedGames: z.ZodNumber;
3408
+ commentsLeft: z.ZodNumber;
3409
+ avgRating: z.ZodNumber;
3410
+ avgRatings: z.ZodObject<{
3411
+ initialWindowRating: z.ZodNumber;
3412
+ normalRating: z.ZodNumber;
3413
+ weightedRating: z.ZodNumber;
3414
+ }, "strip", z.ZodTypeAny, {
3182
3415
  initialWindowRating: number;
3183
3416
  normalRating: number;
3184
3417
  weightedRating: number;
@@ -3187,7 +3420,7 @@ export declare const reducedUserSchema: import("zod").ZodObject<Pick<{
3187
3420
  normalRating: number;
3188
3421
  weightedRating: number;
3189
3422
  }>;
3190
- }, "strip", import("zod").ZodTypeAny, {
3423
+ }, "strip", z.ZodTypeAny, {
3191
3424
  totalRatedGames: number;
3192
3425
  commentsLeft: number;
3193
3426
  avgRating: number;
@@ -3206,15 +3439,15 @@ export declare const reducedUserSchema: import("zod").ZodObject<Pick<{
3206
3439
  weightedRating: number;
3207
3440
  };
3208
3441
  }>;
3209
- cbb: import("zod").ZodObject<{
3210
- totalRatedGames: import("zod").ZodNumber;
3211
- commentsLeft: import("zod").ZodNumber;
3212
- avgRating: import("zod").ZodNumber;
3213
- avgRatings: import("zod").ZodObject<{
3214
- initialWindowRating: import("zod").ZodNumber;
3215
- normalRating: import("zod").ZodNumber;
3216
- weightedRating: import("zod").ZodNumber;
3217
- }, "strip", import("zod").ZodTypeAny, {
3442
+ cbb: z.ZodObject<{
3443
+ totalRatedGames: z.ZodNumber;
3444
+ commentsLeft: z.ZodNumber;
3445
+ avgRating: z.ZodNumber;
3446
+ avgRatings: z.ZodObject<{
3447
+ initialWindowRating: z.ZodNumber;
3448
+ normalRating: z.ZodNumber;
3449
+ weightedRating: z.ZodNumber;
3450
+ }, "strip", z.ZodTypeAny, {
3218
3451
  initialWindowRating: number;
3219
3452
  normalRating: number;
3220
3453
  weightedRating: number;
@@ -3223,7 +3456,7 @@ export declare const reducedUserSchema: import("zod").ZodObject<Pick<{
3223
3456
  normalRating: number;
3224
3457
  weightedRating: number;
3225
3458
  }>;
3226
- }, "strip", import("zod").ZodTypeAny, {
3459
+ }, "strip", z.ZodTypeAny, {
3227
3460
  totalRatedGames: number;
3228
3461
  commentsLeft: number;
3229
3462
  avgRating: number;
@@ -3242,15 +3475,15 @@ export declare const reducedUserSchema: import("zod").ZodObject<Pick<{
3242
3475
  weightedRating: number;
3243
3476
  };
3244
3477
  }>;
3245
- epl: import("zod").ZodObject<{
3246
- totalRatedGames: import("zod").ZodNumber;
3247
- commentsLeft: import("zod").ZodNumber;
3248
- avgRating: import("zod").ZodNumber;
3249
- avgRatings: import("zod").ZodObject<{
3250
- initialWindowRating: import("zod").ZodNumber;
3251
- normalRating: import("zod").ZodNumber;
3252
- weightedRating: import("zod").ZodNumber;
3253
- }, "strip", import("zod").ZodTypeAny, {
3478
+ epl: z.ZodObject<{
3479
+ totalRatedGames: z.ZodNumber;
3480
+ commentsLeft: z.ZodNumber;
3481
+ avgRating: z.ZodNumber;
3482
+ avgRatings: z.ZodObject<{
3483
+ initialWindowRating: z.ZodNumber;
3484
+ normalRating: z.ZodNumber;
3485
+ weightedRating: z.ZodNumber;
3486
+ }, "strip", z.ZodTypeAny, {
3254
3487
  initialWindowRating: number;
3255
3488
  normalRating: number;
3256
3489
  weightedRating: number;
@@ -3259,7 +3492,7 @@ export declare const reducedUserSchema: import("zod").ZodObject<Pick<{
3259
3492
  normalRating: number;
3260
3493
  weightedRating: number;
3261
3494
  }>;
3262
- }, "strip", import("zod").ZodTypeAny, {
3495
+ }, "strip", z.ZodTypeAny, {
3263
3496
  totalRatedGames: number;
3264
3497
  commentsLeft: number;
3265
3498
  avgRating: number;
@@ -3278,15 +3511,15 @@ export declare const reducedUserSchema: import("zod").ZodObject<Pick<{
3278
3511
  weightedRating: number;
3279
3512
  };
3280
3513
  }>;
3281
- wnba: import("zod").ZodObject<{
3282
- totalRatedGames: import("zod").ZodNumber;
3283
- commentsLeft: import("zod").ZodNumber;
3284
- avgRating: import("zod").ZodNumber;
3285
- avgRatings: import("zod").ZodObject<{
3286
- initialWindowRating: import("zod").ZodNumber;
3287
- normalRating: import("zod").ZodNumber;
3288
- weightedRating: import("zod").ZodNumber;
3289
- }, "strip", import("zod").ZodTypeAny, {
3514
+ wnba: z.ZodObject<{
3515
+ totalRatedGames: z.ZodNumber;
3516
+ commentsLeft: z.ZodNumber;
3517
+ avgRating: z.ZodNumber;
3518
+ avgRatings: z.ZodObject<{
3519
+ initialWindowRating: z.ZodNumber;
3520
+ normalRating: z.ZodNumber;
3521
+ weightedRating: z.ZodNumber;
3522
+ }, "strip", z.ZodTypeAny, {
3290
3523
  initialWindowRating: number;
3291
3524
  normalRating: number;
3292
3525
  weightedRating: number;
@@ -3295,7 +3528,7 @@ export declare const reducedUserSchema: import("zod").ZodObject<Pick<{
3295
3528
  normalRating: number;
3296
3529
  weightedRating: number;
3297
3530
  }>;
3298
- }, "strip", import("zod").ZodTypeAny, {
3531
+ }, "strip", z.ZodTypeAny, {
3299
3532
  totalRatedGames: number;
3300
3533
  commentsLeft: number;
3301
3534
  avgRating: number;
@@ -3314,7 +3547,7 @@ export declare const reducedUserSchema: import("zod").ZodObject<Pick<{
3314
3547
  weightedRating: number;
3315
3548
  };
3316
3549
  }>;
3317
- }, "strip", import("zod").ZodTypeAny, {
3550
+ }, "strip", z.ZodTypeAny, {
3318
3551
  nba: {
3319
3552
  totalRatedGames: number;
3320
3553
  commentsLeft: number;
@@ -3537,34 +3770,34 @@ export declare const reducedUserSchema: import("zod").ZodObject<Pick<{
3537
3770
  };
3538
3771
  };
3539
3772
  }>>;
3540
- totalRatedGames: import("zod").ZodOptional<import("zod").ZodNumber>;
3541
- commentsLeft: import("zod").ZodOptional<import("zod").ZodNumber>;
3542
- avgRating: import("zod").ZodOptional<import("zod").ZodNumber>;
3543
- isRegistrationComplete: import("zod").ZodOptional<import("zod").ZodBoolean>;
3544
- deviceTokens: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
3545
- token: import("zod").ZodString;
3546
- usedAt: import("zod").ZodNumber;
3547
- }, "strip", import("zod").ZodTypeAny, {
3773
+ totalRatedGames: z.ZodOptional<z.ZodNumber>;
3774
+ commentsLeft: z.ZodOptional<z.ZodNumber>;
3775
+ avgRating: z.ZodOptional<z.ZodNumber>;
3776
+ isRegistrationComplete: z.ZodOptional<z.ZodBoolean>;
3777
+ deviceTokens: z.ZodRecord<z.ZodString, z.ZodObject<{
3778
+ token: z.ZodString;
3779
+ usedAt: z.ZodNumber;
3780
+ }, "strip", z.ZodTypeAny, {
3548
3781
  token: string;
3549
3782
  usedAt: number;
3550
3783
  }, {
3551
3784
  token: string;
3552
3785
  usedAt: number;
3553
3786
  }>>;
3554
- askedForPushNotifications: import("zod").ZodBoolean;
3555
- acceptedPushNotifications: import("zod").ZodBoolean;
3556
- badge: import("zod").ZodOptional<import("zod").ZodString>;
3557
- registrationStep: import("zod").ZodOptional<import("zod").ZodNumber>;
3558
- selectedLeagues: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
3559
- selectedTeams: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
3560
- lockedGameMessageSeen: import("zod").ZodOptional<import("zod").ZodBoolean>;
3561
- bio: import("zod").ZodOptional<import("zod").ZodString>;
3562
- socialLinks: import("zod").ZodOptional<import("zod").ZodObject<{
3563
- instagram: import("zod").ZodOptional<import("zod").ZodString>;
3564
- x: import("zod").ZodOptional<import("zod").ZodString>;
3565
- youtube: import("zod").ZodOptional<import("zod").ZodString>;
3566
- tiktok: import("zod").ZodOptional<import("zod").ZodString>;
3567
- }, "strip", import("zod").ZodTypeAny, {
3787
+ askedForPushNotifications: z.ZodBoolean;
3788
+ acceptedPushNotifications: z.ZodBoolean;
3789
+ badge: z.ZodOptional<z.ZodString>;
3790
+ registrationStep: z.ZodOptional<z.ZodNumber>;
3791
+ selectedLeagues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3792
+ selectedTeams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3793
+ lockedGameMessageSeen: z.ZodOptional<z.ZodBoolean>;
3794
+ bio: z.ZodOptional<z.ZodString>;
3795
+ socialLinks: z.ZodOptional<z.ZodObject<{
3796
+ instagram: z.ZodOptional<z.ZodString>;
3797
+ x: z.ZodOptional<z.ZodString>;
3798
+ youtube: z.ZodOptional<z.ZodString>;
3799
+ tiktok: z.ZodOptional<z.ZodString>;
3800
+ }, "strip", z.ZodTypeAny, {
3568
3801
  instagram?: string | undefined;
3569
3802
  x?: string | undefined;
3570
3803
  youtube?: string | undefined;
@@ -3575,40 +3808,116 @@ export declare const reducedUserSchema: import("zod").ZodObject<Pick<{
3575
3808
  youtube?: string | undefined;
3576
3809
  tiktok?: string | undefined;
3577
3810
  }>>;
3578
- platform: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"ios">, import("zod").ZodLiteral<"android">, import("zod").ZodLiteral<"macos">, import("zod").ZodLiteral<"windows">, import("zod").ZodLiteral<"web">]>>;
3579
- selectedTeamsPerLeague: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">>>;
3580
- favoriteTeamsPerLeague: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
3581
- promptedLeagues: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodBoolean>>;
3582
- notificationSettings: import("zod").ZodOptional<import("zod").ZodObject<{
3583
- allGames: import("zod").ZodOptional<import("zod").ZodBoolean>;
3584
- favoriteLeagues: import("zod").ZodOptional<import("zod").ZodBoolean>;
3585
- favoriteTeams: import("zod").ZodOptional<import("zod").ZodBoolean>;
3586
- }, "strip", import("zod").ZodTypeAny, {
3811
+ platform: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"ios">, z.ZodLiteral<"android">, z.ZodLiteral<"macos">, z.ZodLiteral<"windows">, z.ZodLiteral<"web">]>>;
3812
+ selectedTeamsPerLeague: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>>;
3813
+ favoriteTeamsPerLeague: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3814
+ promptedLeagues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
3815
+ notificationSettings: z.ZodOptional<z.ZodObject<{
3816
+ allGames: z.ZodOptional<z.ZodBoolean>;
3817
+ favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
3818
+ favoriteTeams: z.ZodOptional<z.ZodBoolean>;
3819
+ lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
3820
+ leaderboardChanges: z.ZodOptional<z.ZodBoolean>;
3821
+ chatReplies: z.ZodOptional<z.ZodBoolean>;
3822
+ repliesToRatings: z.ZodOptional<z.ZodBoolean>;
3823
+ repliesToComments: z.ZodOptional<z.ZodBoolean>;
3824
+ ratingLikes: z.ZodOptional<z.ZodBoolean>;
3825
+ listLikes: z.ZodOptional<z.ZodBoolean>;
3826
+ eventLikes: z.ZodOptional<z.ZodBoolean>;
3827
+ commentLikes: z.ZodOptional<z.ZodBoolean>;
3828
+ trendingGames: z.ZodOptional<z.ZodBoolean>;
3829
+ gameChanges: z.ZodOptional<z.ZodObject<{
3830
+ topRatedGameChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
3831
+ mostRatedGameChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
3832
+ worstRatedGameChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
3833
+ }, "strip", z.ZodTypeAny, {
3834
+ topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
3835
+ mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
3836
+ worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
3837
+ }, {
3838
+ topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
3839
+ mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
3840
+ worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
3841
+ }>>;
3842
+ gameTopLists: z.ZodOptional<z.ZodObject<{
3843
+ topRated: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
3844
+ mostRated: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
3845
+ worstRated: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
3846
+ }, "strip", z.ZodTypeAny, {
3847
+ topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
3848
+ mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
3849
+ worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
3850
+ }, {
3851
+ topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
3852
+ mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
3853
+ worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
3854
+ }>>;
3855
+ }, "strip", z.ZodTypeAny, {
3587
3856
  allGames?: boolean | undefined;
3588
3857
  favoriteLeagues?: boolean | undefined;
3589
3858
  favoriteTeams?: boolean | undefined;
3859
+ lastWeekScoreLeaderboard?: boolean | undefined;
3860
+ leaderboardChanges?: boolean | undefined;
3861
+ chatReplies?: boolean | undefined;
3862
+ repliesToRatings?: boolean | undefined;
3863
+ repliesToComments?: boolean | undefined;
3864
+ ratingLikes?: boolean | undefined;
3865
+ listLikes?: boolean | undefined;
3866
+ eventLikes?: boolean | undefined;
3867
+ commentLikes?: boolean | undefined;
3868
+ trendingGames?: boolean | undefined;
3869
+ gameChanges?: {
3870
+ topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
3871
+ mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
3872
+ worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
3873
+ } | undefined;
3874
+ gameTopLists?: {
3875
+ topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
3876
+ mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
3877
+ worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
3878
+ } | undefined;
3590
3879
  }, {
3591
3880
  allGames?: boolean | undefined;
3592
3881
  favoriteLeagues?: boolean | undefined;
3593
3882
  favoriteTeams?: boolean | undefined;
3883
+ lastWeekScoreLeaderboard?: boolean | undefined;
3884
+ leaderboardChanges?: boolean | undefined;
3885
+ chatReplies?: boolean | undefined;
3886
+ repliesToRatings?: boolean | undefined;
3887
+ repliesToComments?: boolean | undefined;
3888
+ ratingLikes?: boolean | undefined;
3889
+ listLikes?: boolean | undefined;
3890
+ eventLikes?: boolean | undefined;
3891
+ commentLikes?: boolean | undefined;
3892
+ trendingGames?: boolean | undefined;
3893
+ gameChanges?: {
3894
+ topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
3895
+ mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
3896
+ worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
3897
+ } | undefined;
3898
+ gameTopLists?: {
3899
+ topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
3900
+ mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
3901
+ worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
3902
+ } | undefined;
3594
3903
  }>>;
3595
- spoilersEnabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
3596
- viewedChangelogs: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodBoolean>>;
3597
- lastSelectedLeague: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"nba">, import("zod").ZodLiteral<"ncaa">, import("zod").ZodLiteral<"nfl">, import("zod").ZodLiteral<"nhl">, import("zod").ZodLiteral<"mlb">, import("zod").ZodLiteral<"cbb">, import("zod").ZodLiteral<"cfb">, import("zod").ZodLiteral<"epl">, import("zod").ZodLiteral<"mls">, import("zod").ZodLiteral<"wnba">, import("zod").ZodLiteral<"cwc">, import("zod").ZodLiteral<"global">]>>;
3598
- lastSelectedFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>;
3599
- lastSelectedRatingFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"rating:asc">, import("zod").ZodLiteral<"rating:desc">, import("zod").ZodLiteral<"createdAt:asc">, import("zod").ZodLiteral<"createdAt:desc">, import("zod").ZodLiteral<"userLikes:asc">, import("zod").ZodLiteral<"userLikes:desc">]>>;
3600
- lastSelectedGamesFeedType: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"newest">, import("zod").ZodLiteral<"forYou">]>>;
3601
- lastSelectedCombinedFeedType: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"newest">, import("zod").ZodLiteral<"following">]>>;
3602
- creatorLeague: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"nba">, import("zod").ZodLiteral<"ncaa">, import("zod").ZodLiteral<"nfl">, import("zod").ZodLiteral<"nhl">, import("zod").ZodLiteral<"mlb">, import("zod").ZodLiteral<"cbb">, import("zod").ZodLiteral<"cfb">, import("zod").ZodLiteral<"epl">, import("zod").ZodLiteral<"mls">, import("zod").ZodLiteral<"wnba">, import("zod").ZodLiteral<"cwc">, import("zod").ZodLiteral<"global">]>>;
3603
- role: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Admin">, import("zod").ZodLiteral<"Creator">]>>;
3604
- preferTraditionalTeamLayout: import("zod").ZodOptional<import("zod").ZodBoolean>;
3605
- wasPromptedForReview: import("zod").ZodOptional<import("zod").ZodBoolean>;
3606
- isAnonymous: import("zod").ZodOptional<import("zod").ZodBoolean>;
3607
- streak: import("zod").ZodOptional<import("zod").ZodObject<{
3608
- current: import("zod").ZodNumber;
3609
- longest: import("zod").ZodNumber;
3610
- updatedAt: import("zod").ZodNumber;
3611
- }, "strip", import("zod").ZodTypeAny, {
3904
+ spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
3905
+ viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
3906
+ lastSelectedLeague: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"global">]>>;
3907
+ lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
3908
+ lastSelectedRatingFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"rating:asc">, z.ZodLiteral<"rating:desc">, z.ZodLiteral<"createdAt:asc">, z.ZodLiteral<"createdAt:desc">, z.ZodLiteral<"userLikes:asc">, z.ZodLiteral<"userLikes:desc">]>>;
3909
+ lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
3910
+ lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
3911
+ creatorLeague: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"global">]>>;
3912
+ role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">]>>;
3913
+ preferTraditionalTeamLayout: z.ZodOptional<z.ZodBoolean>;
3914
+ wasPromptedForReview: z.ZodOptional<z.ZodBoolean>;
3915
+ isAnonymous: z.ZodOptional<z.ZodBoolean>;
3916
+ streak: z.ZodOptional<z.ZodObject<{
3917
+ current: z.ZodNumber;
3918
+ longest: z.ZodNumber;
3919
+ updatedAt: z.ZodNumber;
3920
+ }, "strip", z.ZodTypeAny, {
3612
3921
  current: number;
3613
3922
  updatedAt: number;
3614
3923
  longest: number;
@@ -3617,28 +3926,28 @@ export declare const reducedUserSchema: import("zod").ZodObject<Pick<{
3617
3926
  updatedAt: number;
3618
3927
  longest: number;
3619
3928
  }>>;
3620
- milestones: import("zod").ZodOptional<import("zod").ZodObject<{
3621
- ratings: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
3622
- count: import("zod").ZodNumber;
3623
- achievedAt: import("zod").ZodNumber;
3624
- }, "strip", import("zod").ZodTypeAny, {
3929
+ milestones: z.ZodOptional<z.ZodObject<{
3930
+ ratings: z.ZodOptional<z.ZodArray<z.ZodObject<{
3931
+ count: z.ZodNumber;
3932
+ achievedAt: z.ZodNumber;
3933
+ }, "strip", z.ZodTypeAny, {
3625
3934
  achievedAt: number;
3626
3935
  count: number;
3627
3936
  }, {
3628
3937
  achievedAt: number;
3629
3938
  count: number;
3630
3939
  }>, "many">>;
3631
- streaks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
3632
- count: import("zod").ZodNumber;
3633
- achievedAt: import("zod").ZodNumber;
3634
- }, "strip", import("zod").ZodTypeAny, {
3940
+ streaks: z.ZodOptional<z.ZodArray<z.ZodObject<{
3941
+ count: z.ZodNumber;
3942
+ achievedAt: z.ZodNumber;
3943
+ }, "strip", z.ZodTypeAny, {
3635
3944
  achievedAt: number;
3636
3945
  count: number;
3637
3946
  }, {
3638
3947
  achievedAt: number;
3639
3948
  count: number;
3640
3949
  }>, "many">>;
3641
- }, "strip", import("zod").ZodTypeAny, {
3950
+ }, "strip", z.ZodTypeAny, {
3642
3951
  ratings?: {
3643
3952
  achievedAt: number;
3644
3953
  count: number;
@@ -3657,43 +3966,43 @@ export declare const reducedUserSchema: import("zod").ZodObject<Pick<{
3657
3966
  count: number;
3658
3967
  }[] | undefined;
3659
3968
  }>>;
3660
- achievements: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodUnion<[import("zod").ZodLiteral<"speed_rater">, import("zod").ZodLiteral<"take_this">, import("zod").ZodLiteral<"front_runner">, import("zod").ZodLiteral<"loyal_till_the_end">, import("zod").ZodLiteral<"around_the_world">, import("zod").ZodLiteral<"take_off">, import("zod").ZodLiteral<"embrace_debate">, import("zod").ZodLiteral<"fan_of_the_people">, import("zod").ZodLiteral<"the_peoples_fan">, import("zod").ZodLiteral<"take_titan">, import("zod").ZodLiteral<"take_first">, import("zod").ZodLiteral<"hall_of_takes">, import("zod").ZodLiteral<"superfan">, import("zod").ZodLiteral<"fan-tastic">, import("zod").ZodLiteral<"marathon_fan">, import("zod").ZodLiteral<"new_years_resolution">, import("zod").ZodLiteral<"dog_days_of_summer">, import("zod").ZodLiteral<"50_50_club">, import("zod").ZodLiteral<"ball_knower">, import("zod").ZodLiteral<"heating_up">, import("zod").ZodLiteral<"full_court_press">, import("zod").ZodLiteral<"grid_iron_guru">, import("zod").ZodLiteral<"across_the_yard">, import("zod").ZodLiteral<"pigskin_power">, import("zod").ZodLiteral<"goal_getter">, import("zod").ZodLiteral<"footie_fanatic">, import("zod").ZodLiteral<"campaign_conqueror">, import("zod").ZodLiteral<"diamond_hands">, import("zod").ZodLiteral<"field_of_dreams">, import("zod").ZodLiteral<"charlie_hustle">, import("zod").ZodLiteral<"power_play">, import("zod").ZodLiteral<"ice_king">, import("zod").ZodLiteral<"marleau_master">, import("zod").ZodLiteral<"the_admiral">, import("zod").ZodLiteral<"the_kick_six">, import("zod").ZodLiteral<"coin_toss">, import("zod").ZodLiteral<"golden_jacket">, import("zod").ZodLiteral<"pop_the_champagne">, import("zod").ZodLiteral<"game_grower">, import("zod").ZodLiteral<"fandon_donovan">, import("zod").ZodLiteral<"soccer_stud">, import("zod").ZodLiteral<"the_big_o">, import("zod").ZodLiteral<"the_grateful_red">, import("zod").ZodLiteral<"mad_march">, import("zod").ZodLiteral<"the_logo">, import("zod").ZodLiteral<"the_big_dipper">, import("zod").ZodLiteral<"mid_table">, import("zod").ZodLiteral<"fan_of_the_match">, import("zod").ZodLiteral<"super_mario">, import("zod").ZodLiteral<"dick_butkus">, import("zod").ZodLiteral<"hit_the_heismann">, import("zod").ZodLiteral<"lobos_legacy">, import("zod").ZodLiteral<"tau3asi">, import("zod").ZodLiteral<"queenb">, import("zod").ZodLiteral<"rookie_rater">, import("zod").ZodLiteral<"six_three">, import("zod").ZodLiteral<"groupie">, import("zod").ZodLiteral<"for_your_confederations">]>, import("zod").ZodObject<{
3661
- id: import("zod").ZodString;
3662
- name: import("zod").ZodString;
3663
- description: import("zod").ZodString;
3664
- progress: import("zod").ZodOptional<import("zod").ZodNumber>;
3665
- tiers: import("zod").ZodOptional<import("zod").ZodObject<{
3666
- bronze: import("zod").ZodObject<{
3667
- threshold: import("zod").ZodNumber;
3668
- achievedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
3669
- }, "strip", import("zod").ZodTypeAny, {
3969
+ achievements: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"speed_rater">, z.ZodLiteral<"take_this">, z.ZodLiteral<"front_runner">, z.ZodLiteral<"loyal_till_the_end">, z.ZodLiteral<"around_the_world">, z.ZodLiteral<"take_off">, z.ZodLiteral<"embrace_debate">, z.ZodLiteral<"fan_of_the_people">, z.ZodLiteral<"the_peoples_fan">, z.ZodLiteral<"take_titan">, z.ZodLiteral<"take_first">, z.ZodLiteral<"hall_of_takes">, z.ZodLiteral<"superfan">, z.ZodLiteral<"fan-tastic">, z.ZodLiteral<"marathon_fan">, z.ZodLiteral<"new_years_resolution">, z.ZodLiteral<"dog_days_of_summer">, z.ZodLiteral<"50_50_club">, z.ZodLiteral<"ball_knower">, z.ZodLiteral<"heating_up">, z.ZodLiteral<"full_court_press">, z.ZodLiteral<"grid_iron_guru">, z.ZodLiteral<"across_the_yard">, z.ZodLiteral<"pigskin_power">, z.ZodLiteral<"goal_getter">, z.ZodLiteral<"footie_fanatic">, z.ZodLiteral<"campaign_conqueror">, z.ZodLiteral<"diamond_hands">, z.ZodLiteral<"field_of_dreams">, z.ZodLiteral<"charlie_hustle">, z.ZodLiteral<"power_play">, z.ZodLiteral<"ice_king">, z.ZodLiteral<"marleau_master">, z.ZodLiteral<"the_admiral">, z.ZodLiteral<"the_kick_six">, z.ZodLiteral<"coin_toss">, z.ZodLiteral<"golden_jacket">, z.ZodLiteral<"pop_the_champagne">, z.ZodLiteral<"game_grower">, z.ZodLiteral<"fandon_donovan">, z.ZodLiteral<"soccer_stud">, z.ZodLiteral<"the_big_o">, z.ZodLiteral<"the_grateful_red">, z.ZodLiteral<"mad_march">, z.ZodLiteral<"the_logo">, z.ZodLiteral<"the_big_dipper">, z.ZodLiteral<"mid_table">, z.ZodLiteral<"fan_of_the_match">, z.ZodLiteral<"super_mario">, z.ZodLiteral<"dick_butkus">, z.ZodLiteral<"hit_the_heismann">, z.ZodLiteral<"lobos_legacy">, z.ZodLiteral<"tau3asi">, z.ZodLiteral<"queenb">, z.ZodLiteral<"rookie_rater">, z.ZodLiteral<"six_three">, z.ZodLiteral<"groupie">, z.ZodLiteral<"for_your_confederations">]>, z.ZodObject<{
3970
+ id: z.ZodString;
3971
+ name: z.ZodString;
3972
+ description: z.ZodString;
3973
+ progress: z.ZodOptional<z.ZodNumber>;
3974
+ tiers: z.ZodOptional<z.ZodObject<{
3975
+ bronze: z.ZodObject<{
3976
+ threshold: z.ZodNumber;
3977
+ achievedAt: z.ZodOptional<z.ZodNumber>;
3978
+ }, "strip", z.ZodTypeAny, {
3670
3979
  threshold: number;
3671
3980
  achievedAt?: number | undefined;
3672
3981
  }, {
3673
3982
  threshold: number;
3674
3983
  achievedAt?: number | undefined;
3675
3984
  }>;
3676
- silver: import("zod").ZodObject<{
3677
- threshold: import("zod").ZodNumber;
3678
- achievedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
3679
- }, "strip", import("zod").ZodTypeAny, {
3985
+ silver: z.ZodObject<{
3986
+ threshold: z.ZodNumber;
3987
+ achievedAt: z.ZodOptional<z.ZodNumber>;
3988
+ }, "strip", z.ZodTypeAny, {
3680
3989
  threshold: number;
3681
3990
  achievedAt?: number | undefined;
3682
3991
  }, {
3683
3992
  threshold: number;
3684
3993
  achievedAt?: number | undefined;
3685
3994
  }>;
3686
- gold: import("zod").ZodObject<{
3687
- threshold: import("zod").ZodNumber;
3688
- achievedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
3689
- }, "strip", import("zod").ZodTypeAny, {
3995
+ gold: z.ZodObject<{
3996
+ threshold: z.ZodNumber;
3997
+ achievedAt: z.ZodOptional<z.ZodNumber>;
3998
+ }, "strip", z.ZodTypeAny, {
3690
3999
  threshold: number;
3691
4000
  achievedAt?: number | undefined;
3692
4001
  }, {
3693
4002
  threshold: number;
3694
4003
  achievedAt?: number | undefined;
3695
4004
  }>;
3696
- }, "strip", import("zod").ZodTypeAny, {
4005
+ }, "strip", z.ZodTypeAny, {
3697
4006
  bronze: {
3698
4007
  threshold: number;
3699
4008
  achievedAt?: number | undefined;
@@ -3720,13 +4029,13 @@ export declare const reducedUserSchema: import("zod").ZodObject<Pick<{
3720
4029
  achievedAt?: number | undefined;
3721
4030
  };
3722
4031
  }>>;
3723
- currentTier: import("zod").ZodOptional<import("zod").ZodNumber>;
3724
- oneTimeProgress: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
3725
- current: import("zod").ZodNumber;
3726
- target: import("zod").ZodNumber;
3727
- label: import("zod").ZodOptional<import("zod").ZodString>;
3728
- context: import("zod").ZodOptional<import("zod").ZodString>;
3729
- }, "strip", import("zod").ZodTypeAny, {
4032
+ currentTier: z.ZodOptional<z.ZodNumber>;
4033
+ oneTimeProgress: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
4034
+ current: z.ZodNumber;
4035
+ target: z.ZodNumber;
4036
+ label: z.ZodOptional<z.ZodString>;
4037
+ context: z.ZodOptional<z.ZodString>;
4038
+ }, "strip", z.ZodTypeAny, {
3730
4039
  target: number;
3731
4040
  current: number;
3732
4041
  label?: string | undefined;
@@ -3737,11 +4046,11 @@ export declare const reducedUserSchema: import("zod").ZodObject<Pick<{
3737
4046
  label?: string | undefined;
3738
4047
  context?: string | undefined;
3739
4048
  }>>>;
3740
- seen: import("zod").ZodOptional<import("zod").ZodBoolean>;
3741
- type: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"global">, import("zod").ZodLiteral<"sport">, import("zod").ZodLiteral<"league">]>>;
3742
- league: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"nba">, import("zod").ZodLiteral<"ncaa">, import("zod").ZodLiteral<"nfl">, import("zod").ZodLiteral<"nhl">, import("zod").ZodLiteral<"mlb">, import("zod").ZodLiteral<"cbb">, import("zod").ZodLiteral<"cfb">, import("zod").ZodLiteral<"epl">, import("zod").ZodLiteral<"mls">, import("zod").ZodLiteral<"wnba">, import("zod").ZodLiteral<"cwc">, import("zod").ZodLiteral<"global">]>>;
3743
- sport: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"basketball">, import("zod").ZodLiteral<"football">, import("zod").ZodLiteral<"soccer">, import("zod").ZodLiteral<"baseball">, import("zod").ZodLiteral<"hockey">]>>;
3744
- }, "strip", import("zod").ZodTypeAny, {
4049
+ seen: z.ZodOptional<z.ZodBoolean>;
4050
+ type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
4051
+ league: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"global">]>>;
4052
+ sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
4053
+ }, "strip", z.ZodTypeAny, {
3745
4054
  id: string;
3746
4055
  name: string;
3747
4056
  description: string;
@@ -3802,21 +4111,21 @@ export declare const reducedUserSchema: import("zod").ZodObject<Pick<{
3802
4111
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
3803
4112
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
3804
4113
  }>>>;
3805
- repliesLeft: import("zod").ZodOptional<import("zod").ZodNumber>;
3806
- listRepliesLeft: import("zod").ZodOptional<import("zod").ZodNumber>;
3807
- viewedToS: import("zod").ZodOptional<import("zod").ZodBoolean>;
3808
- banned: import("zod").ZodOptional<import("zod").ZodBoolean>;
3809
- lowercaseUsername: import("zod").ZodOptional<import("zod").ZodString>;
3810
- headerColor: import("zod").ZodOptional<import("zod").ZodString>;
3811
- profileCompletionTrackerDismissed: import("zod").ZodOptional<import("zod").ZodBoolean>;
3812
- profileCompletionStatus: import("zod").ZodOptional<import("zod").ZodObject<{
3813
- profilePicture: import("zod").ZodBoolean;
3814
- bio: import("zod").ZodBoolean;
3815
- favoriteTeam: import("zod").ZodBoolean;
3816
- pinnedRatings: import("zod").ZodBoolean;
3817
- favoriteGames: import("zod").ZodBoolean;
3818
- gradientColor: import("zod").ZodBoolean;
3819
- }, "strip", import("zod").ZodTypeAny, {
4114
+ repliesLeft: z.ZodOptional<z.ZodNumber>;
4115
+ listRepliesLeft: z.ZodOptional<z.ZodNumber>;
4116
+ viewedToS: z.ZodOptional<z.ZodBoolean>;
4117
+ banned: z.ZodOptional<z.ZodBoolean>;
4118
+ lowercaseUsername: z.ZodOptional<z.ZodString>;
4119
+ headerColor: z.ZodOptional<z.ZodString>;
4120
+ profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
4121
+ profileCompletionStatus: z.ZodOptional<z.ZodObject<{
4122
+ profilePicture: z.ZodBoolean;
4123
+ bio: z.ZodBoolean;
4124
+ favoriteTeam: z.ZodBoolean;
4125
+ pinnedRatings: z.ZodBoolean;
4126
+ favoriteGames: z.ZodBoolean;
4127
+ gradientColor: z.ZodBoolean;
4128
+ }, "strip", z.ZodTypeAny, {
3820
4129
  bio: boolean;
3821
4130
  profilePicture: boolean;
3822
4131
  favoriteTeam: boolean;
@@ -3831,7 +4140,7 @@ export declare const reducedUserSchema: import("zod").ZodObject<Pick<{
3831
4140
  favoriteGames: boolean;
3832
4141
  gradientColor: boolean;
3833
4142
  }>>;
3834
- }, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", import("zod").ZodTypeAny, {
4143
+ }, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
3835
4144
  id: string;
3836
4145
  email: string;
3837
4146
  username: string;
@@ -3844,11 +4153,11 @@ export declare const reducedUserSchema: import("zod").ZodObject<Pick<{
3844
4153
  avatarUrl?: string | null | undefined;
3845
4154
  badge?: string | undefined;
3846
4155
  }>;
3847
- export declare const searchUserSchema: import("zod").ZodObject<{
3848
- q: import("zod").ZodOptional<import("zod").ZodString>;
3849
- limit: import("zod").ZodOptional<import("zod").ZodString>;
3850
- offset: import("zod").ZodOptional<import("zod").ZodString>;
3851
- }, "strip", import("zod").ZodTypeAny, {
4156
+ export declare const searchUserSchema: z.ZodObject<{
4157
+ q: z.ZodOptional<z.ZodString>;
4158
+ limit: z.ZodOptional<z.ZodString>;
4159
+ offset: z.ZodOptional<z.ZodString>;
4160
+ }, "strip", z.ZodTypeAny, {
3852
4161
  offset?: string | undefined;
3853
4162
  q?: string | undefined;
3854
4163
  limit?: string | undefined;