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.
- package/dist/schemas/chat.d.ts +380 -0
- package/dist/schemas/game.d.ts +4159 -2639
- package/dist/schemas/game.js +11 -11
- package/dist/schemas/list.d.ts +380 -0
- package/dist/schemas/moderation.d.ts +304 -0
- package/dist/schemas/notification.d.ts +198 -198
- package/dist/schemas/rating.d.ts +558 -330
- package/dist/schemas/stadium.d.ts +612 -308
- package/dist/schemas/user.d.ts +1034 -725
- package/dist/schemas/user.js +24 -0
- package/dist/schemas/userEvent.d.ts +228 -0
- package/dist/schemas/voting.d.ts +228 -0
- package/package.json +1 -1
package/dist/schemas/user.d.ts
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
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",
|
|
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:
|
|
38
|
-
export declare const oneTimeProgressSchema:
|
|
39
|
-
current:
|
|
40
|
-
target:
|
|
41
|
-
label:
|
|
42
|
-
context:
|
|
43
|
-
}, "strip",
|
|
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:
|
|
55
|
-
id:
|
|
56
|
-
name:
|
|
57
|
-
description:
|
|
58
|
-
progress:
|
|
59
|
-
tiers:
|
|
60
|
-
bronze:
|
|
61
|
-
threshold:
|
|
62
|
-
achievedAt:
|
|
63
|
-
}, "strip",
|
|
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:
|
|
71
|
-
threshold:
|
|
72
|
-
achievedAt:
|
|
73
|
-
}, "strip",
|
|
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:
|
|
81
|
-
threshold:
|
|
82
|
-
achievedAt:
|
|
83
|
-
}, "strip",
|
|
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",
|
|
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:
|
|
118
|
-
oneTimeProgress:
|
|
119
|
-
current:
|
|
120
|
-
target:
|
|
121
|
-
label:
|
|
122
|
-
context:
|
|
123
|
-
}, "strip",
|
|
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:
|
|
135
|
-
type:
|
|
136
|
-
league:
|
|
137
|
-
sport:
|
|
138
|
-
}, "strip",
|
|
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:
|
|
200
|
-
id:
|
|
201
|
-
email:
|
|
202
|
-
username:
|
|
203
|
-
avatarUrl:
|
|
204
|
-
createdAt:
|
|
205
|
-
updatedAt:
|
|
206
|
-
leagues:
|
|
207
|
-
nba:
|
|
208
|
-
totalRatedGames:
|
|
209
|
-
commentsLeft:
|
|
210
|
-
avgRating:
|
|
211
|
-
avgRatings:
|
|
212
|
-
initialWindowRating:
|
|
213
|
-
normalRating:
|
|
214
|
-
weightedRating:
|
|
215
|
-
}, "strip",
|
|
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",
|
|
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:
|
|
244
|
-
totalRatedGames:
|
|
245
|
-
commentsLeft:
|
|
246
|
-
avgRating:
|
|
247
|
-
avgRatings:
|
|
248
|
-
initialWindowRating:
|
|
249
|
-
normalRating:
|
|
250
|
-
weightedRating:
|
|
251
|
-
}, "strip",
|
|
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",
|
|
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:
|
|
280
|
-
totalRatedGames:
|
|
281
|
-
commentsLeft:
|
|
282
|
-
avgRating:
|
|
283
|
-
avgRatings:
|
|
284
|
-
initialWindowRating:
|
|
285
|
-
normalRating:
|
|
286
|
-
weightedRating:
|
|
287
|
-
}, "strip",
|
|
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",
|
|
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:
|
|
316
|
-
totalRatedGames:
|
|
317
|
-
commentsLeft:
|
|
318
|
-
avgRating:
|
|
319
|
-
avgRatings:
|
|
320
|
-
initialWindowRating:
|
|
321
|
-
normalRating:
|
|
322
|
-
weightedRating:
|
|
323
|
-
}, "strip",
|
|
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",
|
|
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:
|
|
352
|
-
totalRatedGames:
|
|
353
|
-
commentsLeft:
|
|
354
|
-
avgRating:
|
|
355
|
-
avgRatings:
|
|
356
|
-
initialWindowRating:
|
|
357
|
-
normalRating:
|
|
358
|
-
weightedRating:
|
|
359
|
-
}, "strip",
|
|
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",
|
|
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:
|
|
388
|
-
totalRatedGames:
|
|
389
|
-
commentsLeft:
|
|
390
|
-
avgRating:
|
|
391
|
-
avgRatings:
|
|
392
|
-
initialWindowRating:
|
|
393
|
-
normalRating:
|
|
394
|
-
weightedRating:
|
|
395
|
-
}, "strip",
|
|
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",
|
|
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:
|
|
424
|
-
totalRatedGames:
|
|
425
|
-
commentsLeft:
|
|
426
|
-
avgRating:
|
|
427
|
-
avgRatings:
|
|
428
|
-
initialWindowRating:
|
|
429
|
-
normalRating:
|
|
430
|
-
weightedRating:
|
|
431
|
-
}, "strip",
|
|
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",
|
|
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:
|
|
460
|
-
totalRatedGames:
|
|
461
|
-
commentsLeft:
|
|
462
|
-
avgRating:
|
|
463
|
-
avgRatings:
|
|
464
|
-
initialWindowRating:
|
|
465
|
-
normalRating:
|
|
466
|
-
weightedRating:
|
|
467
|
-
}, "strip",
|
|
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",
|
|
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:
|
|
496
|
-
totalRatedGames:
|
|
497
|
-
commentsLeft:
|
|
498
|
-
avgRating:
|
|
499
|
-
avgRatings:
|
|
500
|
-
initialWindowRating:
|
|
501
|
-
normalRating:
|
|
502
|
-
weightedRating:
|
|
503
|
-
}, "strip",
|
|
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",
|
|
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:
|
|
532
|
-
totalRatedGames:
|
|
533
|
-
commentsLeft:
|
|
534
|
-
avgRating:
|
|
535
|
-
avgRatings:
|
|
536
|
-
initialWindowRating:
|
|
537
|
-
normalRating:
|
|
538
|
-
weightedRating:
|
|
539
|
-
}, "strip",
|
|
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",
|
|
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:
|
|
568
|
-
totalRatedGames:
|
|
569
|
-
commentsLeft:
|
|
570
|
-
avgRating:
|
|
571
|
-
avgRatings:
|
|
572
|
-
initialWindowRating:
|
|
573
|
-
normalRating:
|
|
574
|
-
weightedRating:
|
|
575
|
-
}, "strip",
|
|
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",
|
|
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",
|
|
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:
|
|
827
|
-
commentsLeft:
|
|
828
|
-
avgRating:
|
|
829
|
-
isRegistrationComplete:
|
|
830
|
-
deviceTokens:
|
|
831
|
-
token:
|
|
832
|
-
usedAt:
|
|
833
|
-
}, "strip",
|
|
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:
|
|
841
|
-
acceptedPushNotifications:
|
|
842
|
-
badge:
|
|
843
|
-
registrationStep:
|
|
844
|
-
selectedLeagues:
|
|
845
|
-
selectedTeams:
|
|
846
|
-
lockedGameMessageSeen:
|
|
847
|
-
bio:
|
|
848
|
-
socialLinks:
|
|
849
|
-
instagram:
|
|
850
|
-
x:
|
|
851
|
-
youtube:
|
|
852
|
-
tiktok:
|
|
853
|
-
}, "strip",
|
|
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:
|
|
865
|
-
selectedTeamsPerLeague:
|
|
866
|
-
favoriteTeamsPerLeague:
|
|
867
|
-
promptedLeagues:
|
|
868
|
-
notificationSettings:
|
|
869
|
-
allGames:
|
|
870
|
-
favoriteLeagues:
|
|
871
|
-
favoriteTeams:
|
|
872
|
-
|
|
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:
|
|
882
|
-
viewedChangelogs:
|
|
883
|
-
lastSelectedLeague:
|
|
884
|
-
lastSelectedFilter:
|
|
885
|
-
lastSelectedRatingFilter:
|
|
886
|
-
lastSelectedGamesFeedType:
|
|
887
|
-
lastSelectedCombinedFeedType:
|
|
888
|
-
creatorLeague:
|
|
889
|
-
role:
|
|
890
|
-
preferTraditionalTeamLayout:
|
|
891
|
-
wasPromptedForReview:
|
|
892
|
-
isAnonymous:
|
|
893
|
-
streak:
|
|
894
|
-
current:
|
|
895
|
-
longest:
|
|
896
|
-
updatedAt:
|
|
897
|
-
}, "strip",
|
|
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:
|
|
907
|
-
ratings:
|
|
908
|
-
count:
|
|
909
|
-
achievedAt:
|
|
910
|
-
}, "strip",
|
|
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:
|
|
918
|
-
count:
|
|
919
|
-
achievedAt:
|
|
920
|
-
}, "strip",
|
|
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",
|
|
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:
|
|
947
|
-
id:
|
|
948
|
-
name:
|
|
949
|
-
description:
|
|
950
|
-
progress:
|
|
951
|
-
tiers:
|
|
952
|
-
bronze:
|
|
953
|
-
threshold:
|
|
954
|
-
achievedAt:
|
|
955
|
-
}, "strip",
|
|
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:
|
|
963
|
-
threshold:
|
|
964
|
-
achievedAt:
|
|
965
|
-
}, "strip",
|
|
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:
|
|
973
|
-
threshold:
|
|
974
|
-
achievedAt:
|
|
975
|
-
}, "strip",
|
|
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",
|
|
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:
|
|
1010
|
-
oneTimeProgress:
|
|
1011
|
-
current:
|
|
1012
|
-
target:
|
|
1013
|
-
label:
|
|
1014
|
-
context:
|
|
1015
|
-
}, "strip",
|
|
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:
|
|
1027
|
-
type:
|
|
1028
|
-
league:
|
|
1029
|
-
sport:
|
|
1030
|
-
}, "strip",
|
|
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:
|
|
1092
|
-
listRepliesLeft:
|
|
1093
|
-
viewedToS:
|
|
1094
|
-
banned:
|
|
1095
|
-
lowercaseUsername:
|
|
1096
|
-
headerColor:
|
|
1097
|
-
profileCompletionTrackerDismissed:
|
|
1098
|
-
profileCompletionStatus:
|
|
1099
|
-
profilePicture:
|
|
1100
|
-
bio:
|
|
1101
|
-
favoriteTeam:
|
|
1102
|
-
pinnedRatings:
|
|
1103
|
-
favoriteGames:
|
|
1104
|
-
gradientColor:
|
|
1105
|
-
}, "strip",
|
|
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",
|
|
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:
|
|
1568
|
-
id:
|
|
1569
|
-
email:
|
|
1570
|
-
username:
|
|
1571
|
-
avatarUrl:
|
|
1572
|
-
createdAt:
|
|
1573
|
-
updatedAt:
|
|
1574
|
-
leagues:
|
|
1575
|
-
nba:
|
|
1576
|
-
totalRatedGames:
|
|
1577
|
-
commentsLeft:
|
|
1578
|
-
avgRating:
|
|
1579
|
-
avgRatings:
|
|
1580
|
-
initialWindowRating:
|
|
1581
|
-
normalRating:
|
|
1582
|
-
weightedRating:
|
|
1583
|
-
}, "strip",
|
|
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",
|
|
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:
|
|
1612
|
-
totalRatedGames:
|
|
1613
|
-
commentsLeft:
|
|
1614
|
-
avgRating:
|
|
1615
|
-
avgRatings:
|
|
1616
|
-
initialWindowRating:
|
|
1617
|
-
normalRating:
|
|
1618
|
-
weightedRating:
|
|
1619
|
-
}, "strip",
|
|
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",
|
|
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:
|
|
1648
|
-
totalRatedGames:
|
|
1649
|
-
commentsLeft:
|
|
1650
|
-
avgRating:
|
|
1651
|
-
avgRatings:
|
|
1652
|
-
initialWindowRating:
|
|
1653
|
-
normalRating:
|
|
1654
|
-
weightedRating:
|
|
1655
|
-
}, "strip",
|
|
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",
|
|
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:
|
|
1684
|
-
totalRatedGames:
|
|
1685
|
-
commentsLeft:
|
|
1686
|
-
avgRating:
|
|
1687
|
-
avgRatings:
|
|
1688
|
-
initialWindowRating:
|
|
1689
|
-
normalRating:
|
|
1690
|
-
weightedRating:
|
|
1691
|
-
}, "strip",
|
|
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",
|
|
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:
|
|
1720
|
-
totalRatedGames:
|
|
1721
|
-
commentsLeft:
|
|
1722
|
-
avgRating:
|
|
1723
|
-
avgRatings:
|
|
1724
|
-
initialWindowRating:
|
|
1725
|
-
normalRating:
|
|
1726
|
-
weightedRating:
|
|
1727
|
-
}, "strip",
|
|
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",
|
|
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:
|
|
1756
|
-
totalRatedGames:
|
|
1757
|
-
commentsLeft:
|
|
1758
|
-
avgRating:
|
|
1759
|
-
avgRatings:
|
|
1760
|
-
initialWindowRating:
|
|
1761
|
-
normalRating:
|
|
1762
|
-
weightedRating:
|
|
1763
|
-
}, "strip",
|
|
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",
|
|
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:
|
|
1792
|
-
totalRatedGames:
|
|
1793
|
-
commentsLeft:
|
|
1794
|
-
avgRating:
|
|
1795
|
-
avgRatings:
|
|
1796
|
-
initialWindowRating:
|
|
1797
|
-
normalRating:
|
|
1798
|
-
weightedRating:
|
|
1799
|
-
}, "strip",
|
|
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",
|
|
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:
|
|
1828
|
-
totalRatedGames:
|
|
1829
|
-
commentsLeft:
|
|
1830
|
-
avgRating:
|
|
1831
|
-
avgRatings:
|
|
1832
|
-
initialWindowRating:
|
|
1833
|
-
normalRating:
|
|
1834
|
-
weightedRating:
|
|
1835
|
-
}, "strip",
|
|
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",
|
|
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:
|
|
1864
|
-
totalRatedGames:
|
|
1865
|
-
commentsLeft:
|
|
1866
|
-
avgRating:
|
|
1867
|
-
avgRatings:
|
|
1868
|
-
initialWindowRating:
|
|
1869
|
-
normalRating:
|
|
1870
|
-
weightedRating:
|
|
1871
|
-
}, "strip",
|
|
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",
|
|
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:
|
|
1900
|
-
totalRatedGames:
|
|
1901
|
-
commentsLeft:
|
|
1902
|
-
avgRating:
|
|
1903
|
-
avgRatings:
|
|
1904
|
-
initialWindowRating:
|
|
1905
|
-
normalRating:
|
|
1906
|
-
weightedRating:
|
|
1907
|
-
}, "strip",
|
|
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",
|
|
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:
|
|
1936
|
-
totalRatedGames:
|
|
1937
|
-
commentsLeft:
|
|
1938
|
-
avgRating:
|
|
1939
|
-
avgRatings:
|
|
1940
|
-
initialWindowRating:
|
|
1941
|
-
normalRating:
|
|
1942
|
-
weightedRating:
|
|
1943
|
-
}, "strip",
|
|
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",
|
|
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",
|
|
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:
|
|
2195
|
-
commentsLeft:
|
|
2196
|
-
avgRating:
|
|
2197
|
-
isRegistrationComplete:
|
|
2198
|
-
deviceTokens:
|
|
2199
|
-
token:
|
|
2200
|
-
usedAt:
|
|
2201
|
-
}, "strip",
|
|
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:
|
|
2209
|
-
acceptedPushNotifications:
|
|
2210
|
-
badge:
|
|
2211
|
-
registrationStep:
|
|
2212
|
-
selectedLeagues:
|
|
2213
|
-
selectedTeams:
|
|
2214
|
-
lockedGameMessageSeen:
|
|
2215
|
-
bio:
|
|
2216
|
-
socialLinks:
|
|
2217
|
-
instagram:
|
|
2218
|
-
x:
|
|
2219
|
-
youtube:
|
|
2220
|
-
tiktok:
|
|
2221
|
-
}, "strip",
|
|
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:
|
|
2233
|
-
selectedTeamsPerLeague:
|
|
2234
|
-
favoriteTeamsPerLeague:
|
|
2235
|
-
promptedLeagues:
|
|
2236
|
-
notificationSettings:
|
|
2237
|
-
allGames:
|
|
2238
|
-
favoriteLeagues:
|
|
2239
|
-
favoriteTeams:
|
|
2240
|
-
|
|
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:
|
|
2250
|
-
viewedChangelogs:
|
|
2251
|
-
lastSelectedLeague:
|
|
2252
|
-
lastSelectedFilter:
|
|
2253
|
-
lastSelectedRatingFilter:
|
|
2254
|
-
lastSelectedGamesFeedType:
|
|
2255
|
-
lastSelectedCombinedFeedType:
|
|
2256
|
-
creatorLeague:
|
|
2257
|
-
role:
|
|
2258
|
-
preferTraditionalTeamLayout:
|
|
2259
|
-
wasPromptedForReview:
|
|
2260
|
-
isAnonymous:
|
|
2261
|
-
streak:
|
|
2262
|
-
current:
|
|
2263
|
-
longest:
|
|
2264
|
-
updatedAt:
|
|
2265
|
-
}, "strip",
|
|
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:
|
|
2275
|
-
ratings:
|
|
2276
|
-
count:
|
|
2277
|
-
achievedAt:
|
|
2278
|
-
}, "strip",
|
|
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:
|
|
2286
|
-
count:
|
|
2287
|
-
achievedAt:
|
|
2288
|
-
}, "strip",
|
|
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",
|
|
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:
|
|
2315
|
-
id:
|
|
2316
|
-
name:
|
|
2317
|
-
description:
|
|
2318
|
-
progress:
|
|
2319
|
-
tiers:
|
|
2320
|
-
bronze:
|
|
2321
|
-
threshold:
|
|
2322
|
-
achievedAt:
|
|
2323
|
-
}, "strip",
|
|
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:
|
|
2331
|
-
threshold:
|
|
2332
|
-
achievedAt:
|
|
2333
|
-
}, "strip",
|
|
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:
|
|
2341
|
-
threshold:
|
|
2342
|
-
achievedAt:
|
|
2343
|
-
}, "strip",
|
|
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",
|
|
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:
|
|
2378
|
-
oneTimeProgress:
|
|
2379
|
-
current:
|
|
2380
|
-
target:
|
|
2381
|
-
label:
|
|
2382
|
-
context:
|
|
2383
|
-
}, "strip",
|
|
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:
|
|
2395
|
-
type:
|
|
2396
|
-
league:
|
|
2397
|
-
sport:
|
|
2398
|
-
}, "strip",
|
|
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:
|
|
2460
|
-
listRepliesLeft:
|
|
2461
|
-
viewedToS:
|
|
2462
|
-
banned:
|
|
2463
|
-
lowercaseUsername:
|
|
2464
|
-
headerColor:
|
|
2465
|
-
profileCompletionTrackerDismissed:
|
|
2466
|
-
profileCompletionStatus:
|
|
2467
|
-
profilePicture:
|
|
2468
|
-
bio:
|
|
2469
|
-
favoriteTeam:
|
|
2470
|
-
pinnedRatings:
|
|
2471
|
-
favoriteGames:
|
|
2472
|
-
gradientColor:
|
|
2473
|
-
}, "strip",
|
|
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",
|
|
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:
|
|
2914
|
-
id:
|
|
2915
|
-
email:
|
|
2916
|
-
username:
|
|
2917
|
-
avatarUrl:
|
|
2918
|
-
createdAt:
|
|
2919
|
-
updatedAt:
|
|
2920
|
-
leagues:
|
|
2921
|
-
nba:
|
|
2922
|
-
totalRatedGames:
|
|
2923
|
-
commentsLeft:
|
|
2924
|
-
avgRating:
|
|
2925
|
-
avgRatings:
|
|
2926
|
-
initialWindowRating:
|
|
2927
|
-
normalRating:
|
|
2928
|
-
weightedRating:
|
|
2929
|
-
}, "strip",
|
|
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",
|
|
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:
|
|
2958
|
-
totalRatedGames:
|
|
2959
|
-
commentsLeft:
|
|
2960
|
-
avgRating:
|
|
2961
|
-
avgRatings:
|
|
2962
|
-
initialWindowRating:
|
|
2963
|
-
normalRating:
|
|
2964
|
-
weightedRating:
|
|
2965
|
-
}, "strip",
|
|
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",
|
|
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:
|
|
2994
|
-
totalRatedGames:
|
|
2995
|
-
commentsLeft:
|
|
2996
|
-
avgRating:
|
|
2997
|
-
avgRatings:
|
|
2998
|
-
initialWindowRating:
|
|
2999
|
-
normalRating:
|
|
3000
|
-
weightedRating:
|
|
3001
|
-
}, "strip",
|
|
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",
|
|
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:
|
|
3030
|
-
totalRatedGames:
|
|
3031
|
-
commentsLeft:
|
|
3032
|
-
avgRating:
|
|
3033
|
-
avgRatings:
|
|
3034
|
-
initialWindowRating:
|
|
3035
|
-
normalRating:
|
|
3036
|
-
weightedRating:
|
|
3037
|
-
}, "strip",
|
|
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",
|
|
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:
|
|
3066
|
-
totalRatedGames:
|
|
3067
|
-
commentsLeft:
|
|
3068
|
-
avgRating:
|
|
3069
|
-
avgRatings:
|
|
3070
|
-
initialWindowRating:
|
|
3071
|
-
normalRating:
|
|
3072
|
-
weightedRating:
|
|
3073
|
-
}, "strip",
|
|
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",
|
|
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:
|
|
3102
|
-
totalRatedGames:
|
|
3103
|
-
commentsLeft:
|
|
3104
|
-
avgRating:
|
|
3105
|
-
avgRatings:
|
|
3106
|
-
initialWindowRating:
|
|
3107
|
-
normalRating:
|
|
3108
|
-
weightedRating:
|
|
3109
|
-
}, "strip",
|
|
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",
|
|
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:
|
|
3138
|
-
totalRatedGames:
|
|
3139
|
-
commentsLeft:
|
|
3140
|
-
avgRating:
|
|
3141
|
-
avgRatings:
|
|
3142
|
-
initialWindowRating:
|
|
3143
|
-
normalRating:
|
|
3144
|
-
weightedRating:
|
|
3145
|
-
}, "strip",
|
|
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",
|
|
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:
|
|
3174
|
-
totalRatedGames:
|
|
3175
|
-
commentsLeft:
|
|
3176
|
-
avgRating:
|
|
3177
|
-
avgRatings:
|
|
3178
|
-
initialWindowRating:
|
|
3179
|
-
normalRating:
|
|
3180
|
-
weightedRating:
|
|
3181
|
-
}, "strip",
|
|
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",
|
|
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:
|
|
3210
|
-
totalRatedGames:
|
|
3211
|
-
commentsLeft:
|
|
3212
|
-
avgRating:
|
|
3213
|
-
avgRatings:
|
|
3214
|
-
initialWindowRating:
|
|
3215
|
-
normalRating:
|
|
3216
|
-
weightedRating:
|
|
3217
|
-
}, "strip",
|
|
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",
|
|
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:
|
|
3246
|
-
totalRatedGames:
|
|
3247
|
-
commentsLeft:
|
|
3248
|
-
avgRating:
|
|
3249
|
-
avgRatings:
|
|
3250
|
-
initialWindowRating:
|
|
3251
|
-
normalRating:
|
|
3252
|
-
weightedRating:
|
|
3253
|
-
}, "strip",
|
|
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",
|
|
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:
|
|
3282
|
-
totalRatedGames:
|
|
3283
|
-
commentsLeft:
|
|
3284
|
-
avgRating:
|
|
3285
|
-
avgRatings:
|
|
3286
|
-
initialWindowRating:
|
|
3287
|
-
normalRating:
|
|
3288
|
-
weightedRating:
|
|
3289
|
-
}, "strip",
|
|
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",
|
|
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",
|
|
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:
|
|
3541
|
-
commentsLeft:
|
|
3542
|
-
avgRating:
|
|
3543
|
-
isRegistrationComplete:
|
|
3544
|
-
deviceTokens:
|
|
3545
|
-
token:
|
|
3546
|
-
usedAt:
|
|
3547
|
-
}, "strip",
|
|
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:
|
|
3555
|
-
acceptedPushNotifications:
|
|
3556
|
-
badge:
|
|
3557
|
-
registrationStep:
|
|
3558
|
-
selectedLeagues:
|
|
3559
|
-
selectedTeams:
|
|
3560
|
-
lockedGameMessageSeen:
|
|
3561
|
-
bio:
|
|
3562
|
-
socialLinks:
|
|
3563
|
-
instagram:
|
|
3564
|
-
x:
|
|
3565
|
-
youtube:
|
|
3566
|
-
tiktok:
|
|
3567
|
-
}, "strip",
|
|
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:
|
|
3579
|
-
selectedTeamsPerLeague:
|
|
3580
|
-
favoriteTeamsPerLeague:
|
|
3581
|
-
promptedLeagues:
|
|
3582
|
-
notificationSettings:
|
|
3583
|
-
allGames:
|
|
3584
|
-
favoriteLeagues:
|
|
3585
|
-
favoriteTeams:
|
|
3586
|
-
|
|
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:
|
|
3596
|
-
viewedChangelogs:
|
|
3597
|
-
lastSelectedLeague:
|
|
3598
|
-
lastSelectedFilter:
|
|
3599
|
-
lastSelectedRatingFilter:
|
|
3600
|
-
lastSelectedGamesFeedType:
|
|
3601
|
-
lastSelectedCombinedFeedType:
|
|
3602
|
-
creatorLeague:
|
|
3603
|
-
role:
|
|
3604
|
-
preferTraditionalTeamLayout:
|
|
3605
|
-
wasPromptedForReview:
|
|
3606
|
-
isAnonymous:
|
|
3607
|
-
streak:
|
|
3608
|
-
current:
|
|
3609
|
-
longest:
|
|
3610
|
-
updatedAt:
|
|
3611
|
-
}, "strip",
|
|
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:
|
|
3621
|
-
ratings:
|
|
3622
|
-
count:
|
|
3623
|
-
achievedAt:
|
|
3624
|
-
}, "strip",
|
|
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:
|
|
3632
|
-
count:
|
|
3633
|
-
achievedAt:
|
|
3634
|
-
}, "strip",
|
|
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",
|
|
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:
|
|
3661
|
-
id:
|
|
3662
|
-
name:
|
|
3663
|
-
description:
|
|
3664
|
-
progress:
|
|
3665
|
-
tiers:
|
|
3666
|
-
bronze:
|
|
3667
|
-
threshold:
|
|
3668
|
-
achievedAt:
|
|
3669
|
-
}, "strip",
|
|
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:
|
|
3677
|
-
threshold:
|
|
3678
|
-
achievedAt:
|
|
3679
|
-
}, "strip",
|
|
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:
|
|
3687
|
-
threshold:
|
|
3688
|
-
achievedAt:
|
|
3689
|
-
}, "strip",
|
|
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",
|
|
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:
|
|
3724
|
-
oneTimeProgress:
|
|
3725
|
-
current:
|
|
3726
|
-
target:
|
|
3727
|
-
label:
|
|
3728
|
-
context:
|
|
3729
|
-
}, "strip",
|
|
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:
|
|
3741
|
-
type:
|
|
3742
|
-
league:
|
|
3743
|
-
sport:
|
|
3744
|
-
}, "strip",
|
|
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:
|
|
3806
|
-
listRepliesLeft:
|
|
3807
|
-
viewedToS:
|
|
3808
|
-
banned:
|
|
3809
|
-
lowercaseUsername:
|
|
3810
|
-
headerColor:
|
|
3811
|
-
profileCompletionTrackerDismissed:
|
|
3812
|
-
profileCompletionStatus:
|
|
3813
|
-
profilePicture:
|
|
3814
|
-
bio:
|
|
3815
|
-
favoriteTeam:
|
|
3816
|
-
pinnedRatings:
|
|
3817
|
-
favoriteGames:
|
|
3818
|
-
gradientColor:
|
|
3819
|
-
}, "strip",
|
|
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",
|
|
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:
|
|
3848
|
-
q:
|
|
3849
|
-
limit:
|
|
3850
|
-
offset:
|
|
3851
|
-
}, "strip",
|
|
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;
|