rategame-shared 1.1.314 → 1.1.316
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 +30 -5
- package/dist/schemas/game.d.ts +120 -20
- package/dist/schemas/list.d.ts +30 -5
- package/dist/schemas/moderation.d.ts +24 -4
- package/dist/schemas/rating.d.ts +21 -6
- package/dist/schemas/sharedTypes.d.ts +1 -1
- package/dist/schemas/sharedTypes.js +1 -0
- package/dist/schemas/stadium.d.ts +27 -7
- package/dist/schemas/user.d.ts +34 -7
- package/dist/schemas/user.js +1 -0
- package/dist/schemas/userEvent.d.ts +18 -3
- package/dist/schemas/voting.d.ts +54 -9
- package/package.json +1 -1
package/dist/schemas/game.d.ts
CHANGED
|
@@ -4047,7 +4047,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4047
4047
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
4048
4048
|
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">]>>;
|
|
4049
4049
|
lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, 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<"2025">, z.ZodLiteral<"2024">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
4050
|
-
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">]>>;
|
|
4050
|
+
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">, z.ZodLiteral<"game.startedAt:desc">]>>;
|
|
4051
4051
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
4052
4052
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
4053
4053
|
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">]>>;
|
|
@@ -4180,6 +4180,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4180
4180
|
context: z.ZodOptional<z.ZodString>;
|
|
4181
4181
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
4182
4182
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
4183
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
4183
4184
|
}, "strip", z.ZodTypeAny, {
|
|
4184
4185
|
target: number;
|
|
4185
4186
|
current: number;
|
|
@@ -4187,6 +4188,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4187
4188
|
context?: string | undefined;
|
|
4188
4189
|
achievedAt?: number | undefined;
|
|
4189
4190
|
seen?: boolean | undefined;
|
|
4191
|
+
isOngoing?: boolean | undefined;
|
|
4190
4192
|
}, {
|
|
4191
4193
|
target: number;
|
|
4192
4194
|
current: number;
|
|
@@ -4194,6 +4196,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4194
4196
|
context?: string | undefined;
|
|
4195
4197
|
achievedAt?: number | undefined;
|
|
4196
4198
|
seen?: boolean | undefined;
|
|
4199
|
+
isOngoing?: boolean | undefined;
|
|
4197
4200
|
}>>>;
|
|
4198
4201
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
4199
4202
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -4229,6 +4232,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4229
4232
|
context?: string | undefined;
|
|
4230
4233
|
achievedAt?: number | undefined;
|
|
4231
4234
|
seen?: boolean | undefined;
|
|
4235
|
+
isOngoing?: boolean | undefined;
|
|
4232
4236
|
}> | undefined;
|
|
4233
4237
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
4234
4238
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -4262,6 +4266,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4262
4266
|
context?: string | undefined;
|
|
4263
4267
|
achievedAt?: number | undefined;
|
|
4264
4268
|
seen?: boolean | undefined;
|
|
4269
|
+
isOngoing?: boolean | undefined;
|
|
4265
4270
|
}> | undefined;
|
|
4266
4271
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
4267
4272
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -6595,7 +6600,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6595
6600
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
6596
6601
|
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">]>>;
|
|
6597
6602
|
lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, 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<"2025">, z.ZodLiteral<"2024">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
6598
|
-
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">]>>;
|
|
6603
|
+
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">, z.ZodLiteral<"game.startedAt:desc">]>>;
|
|
6599
6604
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
6600
6605
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
6601
6606
|
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">]>>;
|
|
@@ -6728,6 +6733,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6728
6733
|
context: z.ZodOptional<z.ZodString>;
|
|
6729
6734
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
6730
6735
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
6736
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
6731
6737
|
}, "strip", z.ZodTypeAny, {
|
|
6732
6738
|
target: number;
|
|
6733
6739
|
current: number;
|
|
@@ -6735,6 +6741,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6735
6741
|
context?: string | undefined;
|
|
6736
6742
|
achievedAt?: number | undefined;
|
|
6737
6743
|
seen?: boolean | undefined;
|
|
6744
|
+
isOngoing?: boolean | undefined;
|
|
6738
6745
|
}, {
|
|
6739
6746
|
target: number;
|
|
6740
6747
|
current: number;
|
|
@@ -6742,6 +6749,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6742
6749
|
context?: string | undefined;
|
|
6743
6750
|
achievedAt?: number | undefined;
|
|
6744
6751
|
seen?: boolean | undefined;
|
|
6752
|
+
isOngoing?: boolean | undefined;
|
|
6745
6753
|
}>>>;
|
|
6746
6754
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
6747
6755
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -6777,6 +6785,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6777
6785
|
context?: string | undefined;
|
|
6778
6786
|
achievedAt?: number | undefined;
|
|
6779
6787
|
seen?: boolean | undefined;
|
|
6788
|
+
isOngoing?: boolean | undefined;
|
|
6780
6789
|
}> | undefined;
|
|
6781
6790
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
6782
6791
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -6810,6 +6819,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6810
6819
|
context?: string | undefined;
|
|
6811
6820
|
achievedAt?: number | undefined;
|
|
6812
6821
|
seen?: boolean | undefined;
|
|
6822
|
+
isOngoing?: boolean | undefined;
|
|
6813
6823
|
}> | undefined;
|
|
6814
6824
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
6815
6825
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -9204,7 +9214,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9204
9214
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
9205
9215
|
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">]>>;
|
|
9206
9216
|
lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, 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<"2025">, z.ZodLiteral<"2024">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
9207
|
-
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">]>>;
|
|
9217
|
+
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">, z.ZodLiteral<"game.startedAt:desc">]>>;
|
|
9208
9218
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
9209
9219
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
9210
9220
|
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">]>>;
|
|
@@ -9337,6 +9347,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9337
9347
|
context: z.ZodOptional<z.ZodString>;
|
|
9338
9348
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
9339
9349
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
9350
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
9340
9351
|
}, "strip", z.ZodTypeAny, {
|
|
9341
9352
|
target: number;
|
|
9342
9353
|
current: number;
|
|
@@ -9344,6 +9355,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9344
9355
|
context?: string | undefined;
|
|
9345
9356
|
achievedAt?: number | undefined;
|
|
9346
9357
|
seen?: boolean | undefined;
|
|
9358
|
+
isOngoing?: boolean | undefined;
|
|
9347
9359
|
}, {
|
|
9348
9360
|
target: number;
|
|
9349
9361
|
current: number;
|
|
@@ -9351,6 +9363,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9351
9363
|
context?: string | undefined;
|
|
9352
9364
|
achievedAt?: number | undefined;
|
|
9353
9365
|
seen?: boolean | undefined;
|
|
9366
|
+
isOngoing?: boolean | undefined;
|
|
9354
9367
|
}>>>;
|
|
9355
9368
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
9356
9369
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -9386,6 +9399,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9386
9399
|
context?: string | undefined;
|
|
9387
9400
|
achievedAt?: number | undefined;
|
|
9388
9401
|
seen?: boolean | undefined;
|
|
9402
|
+
isOngoing?: boolean | undefined;
|
|
9389
9403
|
}> | undefined;
|
|
9390
9404
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
9391
9405
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -9419,6 +9433,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9419
9433
|
context?: string | undefined;
|
|
9420
9434
|
achievedAt?: number | undefined;
|
|
9421
9435
|
seen?: boolean | undefined;
|
|
9436
|
+
isOngoing?: boolean | undefined;
|
|
9422
9437
|
}> | undefined;
|
|
9423
9438
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
9424
9439
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -11821,7 +11836,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11821
11836
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
11822
11837
|
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">]>>;
|
|
11823
11838
|
lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, 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<"2025">, z.ZodLiteral<"2024">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
11824
|
-
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">]>>;
|
|
11839
|
+
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">, z.ZodLiteral<"game.startedAt:desc">]>>;
|
|
11825
11840
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
11826
11841
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
11827
11842
|
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">]>>;
|
|
@@ -11954,6 +11969,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11954
11969
|
context: z.ZodOptional<z.ZodString>;
|
|
11955
11970
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
11956
11971
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
11972
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
11957
11973
|
}, "strip", z.ZodTypeAny, {
|
|
11958
11974
|
target: number;
|
|
11959
11975
|
current: number;
|
|
@@ -11961,6 +11977,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11961
11977
|
context?: string | undefined;
|
|
11962
11978
|
achievedAt?: number | undefined;
|
|
11963
11979
|
seen?: boolean | undefined;
|
|
11980
|
+
isOngoing?: boolean | undefined;
|
|
11964
11981
|
}, {
|
|
11965
11982
|
target: number;
|
|
11966
11983
|
current: number;
|
|
@@ -11968,6 +11985,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11968
11985
|
context?: string | undefined;
|
|
11969
11986
|
achievedAt?: number | undefined;
|
|
11970
11987
|
seen?: boolean | undefined;
|
|
11988
|
+
isOngoing?: boolean | undefined;
|
|
11971
11989
|
}>>>;
|
|
11972
11990
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
11973
11991
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -12003,6 +12021,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
12003
12021
|
context?: string | undefined;
|
|
12004
12022
|
achievedAt?: number | undefined;
|
|
12005
12023
|
seen?: boolean | undefined;
|
|
12024
|
+
isOngoing?: boolean | undefined;
|
|
12006
12025
|
}> | undefined;
|
|
12007
12026
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
12008
12027
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -12036,6 +12055,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
12036
12055
|
context?: string | undefined;
|
|
12037
12056
|
achievedAt?: number | undefined;
|
|
12038
12057
|
seen?: boolean | undefined;
|
|
12058
|
+
isOngoing?: boolean | undefined;
|
|
12039
12059
|
}> | undefined;
|
|
12040
12060
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
12041
12061
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -14523,7 +14543,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
14523
14543
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
14524
14544
|
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">]>>;
|
|
14525
14545
|
lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, 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<"2025">, z.ZodLiteral<"2024">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
14526
|
-
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">]>>;
|
|
14546
|
+
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">, z.ZodLiteral<"game.startedAt:desc">]>>;
|
|
14527
14547
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
14528
14548
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
14529
14549
|
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">]>>;
|
|
@@ -14656,6 +14676,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
14656
14676
|
context: z.ZodOptional<z.ZodString>;
|
|
14657
14677
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
14658
14678
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
14679
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
14659
14680
|
}, "strip", z.ZodTypeAny, {
|
|
14660
14681
|
target: number;
|
|
14661
14682
|
current: number;
|
|
@@ -14663,6 +14684,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
14663
14684
|
context?: string | undefined;
|
|
14664
14685
|
achievedAt?: number | undefined;
|
|
14665
14686
|
seen?: boolean | undefined;
|
|
14687
|
+
isOngoing?: boolean | undefined;
|
|
14666
14688
|
}, {
|
|
14667
14689
|
target: number;
|
|
14668
14690
|
current: number;
|
|
@@ -14670,6 +14692,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
14670
14692
|
context?: string | undefined;
|
|
14671
14693
|
achievedAt?: number | undefined;
|
|
14672
14694
|
seen?: boolean | undefined;
|
|
14695
|
+
isOngoing?: boolean | undefined;
|
|
14673
14696
|
}>>>;
|
|
14674
14697
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
14675
14698
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -14705,6 +14728,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
14705
14728
|
context?: string | undefined;
|
|
14706
14729
|
achievedAt?: number | undefined;
|
|
14707
14730
|
seen?: boolean | undefined;
|
|
14731
|
+
isOngoing?: boolean | undefined;
|
|
14708
14732
|
}> | undefined;
|
|
14709
14733
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
14710
14734
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -14738,6 +14762,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
14738
14762
|
context?: string | undefined;
|
|
14739
14763
|
achievedAt?: number | undefined;
|
|
14740
14764
|
seen?: boolean | undefined;
|
|
14765
|
+
isOngoing?: boolean | undefined;
|
|
14741
14766
|
}> | undefined;
|
|
14742
14767
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
14743
14768
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -17196,7 +17221,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
17196
17221
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
17197
17222
|
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">]>>;
|
|
17198
17223
|
lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, 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<"2025">, z.ZodLiteral<"2024">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
17199
|
-
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">]>>;
|
|
17224
|
+
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">, z.ZodLiteral<"game.startedAt:desc">]>>;
|
|
17200
17225
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
17201
17226
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
17202
17227
|
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">]>>;
|
|
@@ -17329,6 +17354,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
17329
17354
|
context: z.ZodOptional<z.ZodString>;
|
|
17330
17355
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
17331
17356
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
17357
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
17332
17358
|
}, "strip", z.ZodTypeAny, {
|
|
17333
17359
|
target: number;
|
|
17334
17360
|
current: number;
|
|
@@ -17336,6 +17362,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
17336
17362
|
context?: string | undefined;
|
|
17337
17363
|
achievedAt?: number | undefined;
|
|
17338
17364
|
seen?: boolean | undefined;
|
|
17365
|
+
isOngoing?: boolean | undefined;
|
|
17339
17366
|
}, {
|
|
17340
17367
|
target: number;
|
|
17341
17368
|
current: number;
|
|
@@ -17343,6 +17370,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
17343
17370
|
context?: string | undefined;
|
|
17344
17371
|
achievedAt?: number | undefined;
|
|
17345
17372
|
seen?: boolean | undefined;
|
|
17373
|
+
isOngoing?: boolean | undefined;
|
|
17346
17374
|
}>>>;
|
|
17347
17375
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
17348
17376
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -17378,6 +17406,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
17378
17406
|
context?: string | undefined;
|
|
17379
17407
|
achievedAt?: number | undefined;
|
|
17380
17408
|
seen?: boolean | undefined;
|
|
17409
|
+
isOngoing?: boolean | undefined;
|
|
17381
17410
|
}> | undefined;
|
|
17382
17411
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
17383
17412
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -17411,6 +17440,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
17411
17440
|
context?: string | undefined;
|
|
17412
17441
|
achievedAt?: number | undefined;
|
|
17413
17442
|
seen?: boolean | undefined;
|
|
17443
|
+
isOngoing?: boolean | undefined;
|
|
17414
17444
|
}> | undefined;
|
|
17415
17445
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
17416
17446
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -19851,7 +19881,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
19851
19881
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
19852
19882
|
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">]>>;
|
|
19853
19883
|
lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, 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<"2025">, z.ZodLiteral<"2024">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
19854
|
-
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">]>>;
|
|
19884
|
+
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">, z.ZodLiteral<"game.startedAt:desc">]>>;
|
|
19855
19885
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
19856
19886
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
19857
19887
|
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">]>>;
|
|
@@ -19984,6 +20014,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
19984
20014
|
context: z.ZodOptional<z.ZodString>;
|
|
19985
20015
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
19986
20016
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
20017
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
19987
20018
|
}, "strip", z.ZodTypeAny, {
|
|
19988
20019
|
target: number;
|
|
19989
20020
|
current: number;
|
|
@@ -19991,6 +20022,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
19991
20022
|
context?: string | undefined;
|
|
19992
20023
|
achievedAt?: number | undefined;
|
|
19993
20024
|
seen?: boolean | undefined;
|
|
20025
|
+
isOngoing?: boolean | undefined;
|
|
19994
20026
|
}, {
|
|
19995
20027
|
target: number;
|
|
19996
20028
|
current: number;
|
|
@@ -19998,6 +20030,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
19998
20030
|
context?: string | undefined;
|
|
19999
20031
|
achievedAt?: number | undefined;
|
|
20000
20032
|
seen?: boolean | undefined;
|
|
20033
|
+
isOngoing?: boolean | undefined;
|
|
20001
20034
|
}>>>;
|
|
20002
20035
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
20003
20036
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -20033,6 +20066,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
20033
20066
|
context?: string | undefined;
|
|
20034
20067
|
achievedAt?: number | undefined;
|
|
20035
20068
|
seen?: boolean | undefined;
|
|
20069
|
+
isOngoing?: boolean | undefined;
|
|
20036
20070
|
}> | undefined;
|
|
20037
20071
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
20038
20072
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -20066,6 +20100,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
20066
20100
|
context?: string | undefined;
|
|
20067
20101
|
achievedAt?: number | undefined;
|
|
20068
20102
|
seen?: boolean | undefined;
|
|
20103
|
+
isOngoing?: boolean | undefined;
|
|
20069
20104
|
}> | undefined;
|
|
20070
20105
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
20071
20106
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -22419,7 +22454,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22419
22454
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
22420
22455
|
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">]>>;
|
|
22421
22456
|
lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, 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<"2025">, z.ZodLiteral<"2024">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
22422
|
-
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">]>>;
|
|
22457
|
+
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">, z.ZodLiteral<"game.startedAt:desc">]>>;
|
|
22423
22458
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
22424
22459
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
22425
22460
|
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">]>>;
|
|
@@ -22552,6 +22587,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22552
22587
|
context: z.ZodOptional<z.ZodString>;
|
|
22553
22588
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
22554
22589
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
22590
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
22555
22591
|
}, "strip", z.ZodTypeAny, {
|
|
22556
22592
|
target: number;
|
|
22557
22593
|
current: number;
|
|
@@ -22559,6 +22595,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22559
22595
|
context?: string | undefined;
|
|
22560
22596
|
achievedAt?: number | undefined;
|
|
22561
22597
|
seen?: boolean | undefined;
|
|
22598
|
+
isOngoing?: boolean | undefined;
|
|
22562
22599
|
}, {
|
|
22563
22600
|
target: number;
|
|
22564
22601
|
current: number;
|
|
@@ -22566,6 +22603,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22566
22603
|
context?: string | undefined;
|
|
22567
22604
|
achievedAt?: number | undefined;
|
|
22568
22605
|
seen?: boolean | undefined;
|
|
22606
|
+
isOngoing?: boolean | undefined;
|
|
22569
22607
|
}>>>;
|
|
22570
22608
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
22571
22609
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -22601,6 +22639,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22601
22639
|
context?: string | undefined;
|
|
22602
22640
|
achievedAt?: number | undefined;
|
|
22603
22641
|
seen?: boolean | undefined;
|
|
22642
|
+
isOngoing?: boolean | undefined;
|
|
22604
22643
|
}> | undefined;
|
|
22605
22644
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
22606
22645
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -22634,6 +22673,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22634
22673
|
context?: string | undefined;
|
|
22635
22674
|
achievedAt?: number | undefined;
|
|
22636
22675
|
seen?: boolean | undefined;
|
|
22676
|
+
isOngoing?: boolean | undefined;
|
|
22637
22677
|
}> | undefined;
|
|
22638
22678
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
22639
22679
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -25014,7 +25054,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
25014
25054
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
25015
25055
|
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">]>>;
|
|
25016
25056
|
lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, 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<"2025">, z.ZodLiteral<"2024">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
25017
|
-
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">]>>;
|
|
25057
|
+
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">, z.ZodLiteral<"game.startedAt:desc">]>>;
|
|
25018
25058
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
25019
25059
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
25020
25060
|
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">]>>;
|
|
@@ -25147,6 +25187,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
25147
25187
|
context: z.ZodOptional<z.ZodString>;
|
|
25148
25188
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
25149
25189
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
25190
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
25150
25191
|
}, "strip", z.ZodTypeAny, {
|
|
25151
25192
|
target: number;
|
|
25152
25193
|
current: number;
|
|
@@ -25154,6 +25195,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
25154
25195
|
context?: string | undefined;
|
|
25155
25196
|
achievedAt?: number | undefined;
|
|
25156
25197
|
seen?: boolean | undefined;
|
|
25198
|
+
isOngoing?: boolean | undefined;
|
|
25157
25199
|
}, {
|
|
25158
25200
|
target: number;
|
|
25159
25201
|
current: number;
|
|
@@ -25161,6 +25203,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
25161
25203
|
context?: string | undefined;
|
|
25162
25204
|
achievedAt?: number | undefined;
|
|
25163
25205
|
seen?: boolean | undefined;
|
|
25206
|
+
isOngoing?: boolean | undefined;
|
|
25164
25207
|
}>>>;
|
|
25165
25208
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
25166
25209
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -25196,6 +25239,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
25196
25239
|
context?: string | undefined;
|
|
25197
25240
|
achievedAt?: number | undefined;
|
|
25198
25241
|
seen?: boolean | undefined;
|
|
25242
|
+
isOngoing?: boolean | undefined;
|
|
25199
25243
|
}> | undefined;
|
|
25200
25244
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
25201
25245
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -25229,6 +25273,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
25229
25273
|
context?: string | undefined;
|
|
25230
25274
|
achievedAt?: number | undefined;
|
|
25231
25275
|
seen?: boolean | undefined;
|
|
25276
|
+
isOngoing?: boolean | undefined;
|
|
25232
25277
|
}> | undefined;
|
|
25233
25278
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
25234
25279
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -27630,7 +27675,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27630
27675
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
27631
27676
|
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">]>>;
|
|
27632
27677
|
lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, 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<"2025">, z.ZodLiteral<"2024">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
27633
|
-
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">]>>;
|
|
27678
|
+
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">, z.ZodLiteral<"game.startedAt:desc">]>>;
|
|
27634
27679
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
27635
27680
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
27636
27681
|
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">]>>;
|
|
@@ -27763,6 +27808,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27763
27808
|
context: z.ZodOptional<z.ZodString>;
|
|
27764
27809
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
27765
27810
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
27811
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
27766
27812
|
}, "strip", z.ZodTypeAny, {
|
|
27767
27813
|
target: number;
|
|
27768
27814
|
current: number;
|
|
@@ -27770,6 +27816,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27770
27816
|
context?: string | undefined;
|
|
27771
27817
|
achievedAt?: number | undefined;
|
|
27772
27818
|
seen?: boolean | undefined;
|
|
27819
|
+
isOngoing?: boolean | undefined;
|
|
27773
27820
|
}, {
|
|
27774
27821
|
target: number;
|
|
27775
27822
|
current: number;
|
|
@@ -27777,6 +27824,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27777
27824
|
context?: string | undefined;
|
|
27778
27825
|
achievedAt?: number | undefined;
|
|
27779
27826
|
seen?: boolean | undefined;
|
|
27827
|
+
isOngoing?: boolean | undefined;
|
|
27780
27828
|
}>>>;
|
|
27781
27829
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
27782
27830
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -27812,6 +27860,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27812
27860
|
context?: string | undefined;
|
|
27813
27861
|
achievedAt?: number | undefined;
|
|
27814
27862
|
seen?: boolean | undefined;
|
|
27863
|
+
isOngoing?: boolean | undefined;
|
|
27815
27864
|
}> | undefined;
|
|
27816
27865
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
27817
27866
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -27845,6 +27894,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27845
27894
|
context?: string | undefined;
|
|
27846
27895
|
achievedAt?: number | undefined;
|
|
27847
27896
|
seen?: boolean | undefined;
|
|
27897
|
+
isOngoing?: boolean | undefined;
|
|
27848
27898
|
}> | undefined;
|
|
27849
27899
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
27850
27900
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -30331,7 +30381,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
30331
30381
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
30332
30382
|
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">]>>;
|
|
30333
30383
|
lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, 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<"2025">, z.ZodLiteral<"2024">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
30334
|
-
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">]>>;
|
|
30384
|
+
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">, z.ZodLiteral<"game.startedAt:desc">]>>;
|
|
30335
30385
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
30336
30386
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
30337
30387
|
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">]>>;
|
|
@@ -30464,6 +30514,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
30464
30514
|
context: z.ZodOptional<z.ZodString>;
|
|
30465
30515
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
30466
30516
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
30517
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
30467
30518
|
}, "strip", z.ZodTypeAny, {
|
|
30468
30519
|
target: number;
|
|
30469
30520
|
current: number;
|
|
@@ -30471,6 +30522,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
30471
30522
|
context?: string | undefined;
|
|
30472
30523
|
achievedAt?: number | undefined;
|
|
30473
30524
|
seen?: boolean | undefined;
|
|
30525
|
+
isOngoing?: boolean | undefined;
|
|
30474
30526
|
}, {
|
|
30475
30527
|
target: number;
|
|
30476
30528
|
current: number;
|
|
@@ -30478,6 +30530,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
30478
30530
|
context?: string | undefined;
|
|
30479
30531
|
achievedAt?: number | undefined;
|
|
30480
30532
|
seen?: boolean | undefined;
|
|
30533
|
+
isOngoing?: boolean | undefined;
|
|
30481
30534
|
}>>>;
|
|
30482
30535
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
30483
30536
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -30513,6 +30566,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
30513
30566
|
context?: string | undefined;
|
|
30514
30567
|
achievedAt?: number | undefined;
|
|
30515
30568
|
seen?: boolean | undefined;
|
|
30569
|
+
isOngoing?: boolean | undefined;
|
|
30516
30570
|
}> | undefined;
|
|
30517
30571
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
30518
30572
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -30546,6 +30600,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
30546
30600
|
context?: string | undefined;
|
|
30547
30601
|
achievedAt?: number | undefined;
|
|
30548
30602
|
seen?: boolean | undefined;
|
|
30603
|
+
isOngoing?: boolean | undefined;
|
|
30549
30604
|
}> | undefined;
|
|
30550
30605
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
30551
30606
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -33003,7 +33058,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
33003
33058
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
33004
33059
|
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">]>>;
|
|
33005
33060
|
lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, 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<"2025">, z.ZodLiteral<"2024">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
33006
|
-
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">]>>;
|
|
33061
|
+
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">, z.ZodLiteral<"game.startedAt:desc">]>>;
|
|
33007
33062
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
33008
33063
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
33009
33064
|
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">]>>;
|
|
@@ -33136,6 +33191,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
33136
33191
|
context: z.ZodOptional<z.ZodString>;
|
|
33137
33192
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
33138
33193
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
33194
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
33139
33195
|
}, "strip", z.ZodTypeAny, {
|
|
33140
33196
|
target: number;
|
|
33141
33197
|
current: number;
|
|
@@ -33143,6 +33199,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
33143
33199
|
context?: string | undefined;
|
|
33144
33200
|
achievedAt?: number | undefined;
|
|
33145
33201
|
seen?: boolean | undefined;
|
|
33202
|
+
isOngoing?: boolean | undefined;
|
|
33146
33203
|
}, {
|
|
33147
33204
|
target: number;
|
|
33148
33205
|
current: number;
|
|
@@ -33150,6 +33207,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
33150
33207
|
context?: string | undefined;
|
|
33151
33208
|
achievedAt?: number | undefined;
|
|
33152
33209
|
seen?: boolean | undefined;
|
|
33210
|
+
isOngoing?: boolean | undefined;
|
|
33153
33211
|
}>>>;
|
|
33154
33212
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
33155
33213
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -33185,6 +33243,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
33185
33243
|
context?: string | undefined;
|
|
33186
33244
|
achievedAt?: number | undefined;
|
|
33187
33245
|
seen?: boolean | undefined;
|
|
33246
|
+
isOngoing?: boolean | undefined;
|
|
33188
33247
|
}> | undefined;
|
|
33189
33248
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
33190
33249
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -33218,6 +33277,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
33218
33277
|
context?: string | undefined;
|
|
33219
33278
|
achievedAt?: number | undefined;
|
|
33220
33279
|
seen?: boolean | undefined;
|
|
33280
|
+
isOngoing?: boolean | undefined;
|
|
33221
33281
|
}> | undefined;
|
|
33222
33282
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
33223
33283
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -35657,7 +35717,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
35657
35717
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
35658
35718
|
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">]>>;
|
|
35659
35719
|
lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, 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<"2025">, z.ZodLiteral<"2024">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
35660
|
-
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">]>>;
|
|
35720
|
+
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">, z.ZodLiteral<"game.startedAt:desc">]>>;
|
|
35661
35721
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
35662
35722
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
35663
35723
|
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">]>>;
|
|
@@ -35790,6 +35850,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
35790
35850
|
context: z.ZodOptional<z.ZodString>;
|
|
35791
35851
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
35792
35852
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
35853
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
35793
35854
|
}, "strip", z.ZodTypeAny, {
|
|
35794
35855
|
target: number;
|
|
35795
35856
|
current: number;
|
|
@@ -35797,6 +35858,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
35797
35858
|
context?: string | undefined;
|
|
35798
35859
|
achievedAt?: number | undefined;
|
|
35799
35860
|
seen?: boolean | undefined;
|
|
35861
|
+
isOngoing?: boolean | undefined;
|
|
35800
35862
|
}, {
|
|
35801
35863
|
target: number;
|
|
35802
35864
|
current: number;
|
|
@@ -35804,6 +35866,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
35804
35866
|
context?: string | undefined;
|
|
35805
35867
|
achievedAt?: number | undefined;
|
|
35806
35868
|
seen?: boolean | undefined;
|
|
35869
|
+
isOngoing?: boolean | undefined;
|
|
35807
35870
|
}>>>;
|
|
35808
35871
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
35809
35872
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -35839,6 +35902,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
35839
35902
|
context?: string | undefined;
|
|
35840
35903
|
achievedAt?: number | undefined;
|
|
35841
35904
|
seen?: boolean | undefined;
|
|
35905
|
+
isOngoing?: boolean | undefined;
|
|
35842
35906
|
}> | undefined;
|
|
35843
35907
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
35844
35908
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -35872,6 +35936,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
35872
35936
|
context?: string | undefined;
|
|
35873
35937
|
achievedAt?: number | undefined;
|
|
35874
35938
|
seen?: boolean | undefined;
|
|
35939
|
+
isOngoing?: boolean | undefined;
|
|
35875
35940
|
}> | undefined;
|
|
35876
35941
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
35877
35942
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -38275,7 +38340,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38275
38340
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
38276
38341
|
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">]>>;
|
|
38277
38342
|
lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, 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<"2025">, z.ZodLiteral<"2024">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
38278
|
-
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">]>>;
|
|
38343
|
+
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">, z.ZodLiteral<"game.startedAt:desc">]>>;
|
|
38279
38344
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
38280
38345
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
38281
38346
|
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">]>>;
|
|
@@ -38408,6 +38473,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38408
38473
|
context: z.ZodOptional<z.ZodString>;
|
|
38409
38474
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
38410
38475
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
38476
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
38411
38477
|
}, "strip", z.ZodTypeAny, {
|
|
38412
38478
|
target: number;
|
|
38413
38479
|
current: number;
|
|
@@ -38415,6 +38481,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38415
38481
|
context?: string | undefined;
|
|
38416
38482
|
achievedAt?: number | undefined;
|
|
38417
38483
|
seen?: boolean | undefined;
|
|
38484
|
+
isOngoing?: boolean | undefined;
|
|
38418
38485
|
}, {
|
|
38419
38486
|
target: number;
|
|
38420
38487
|
current: number;
|
|
@@ -38422,6 +38489,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38422
38489
|
context?: string | undefined;
|
|
38423
38490
|
achievedAt?: number | undefined;
|
|
38424
38491
|
seen?: boolean | undefined;
|
|
38492
|
+
isOngoing?: boolean | undefined;
|
|
38425
38493
|
}>>>;
|
|
38426
38494
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
38427
38495
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -38457,6 +38525,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38457
38525
|
context?: string | undefined;
|
|
38458
38526
|
achievedAt?: number | undefined;
|
|
38459
38527
|
seen?: boolean | undefined;
|
|
38528
|
+
isOngoing?: boolean | undefined;
|
|
38460
38529
|
}> | undefined;
|
|
38461
38530
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
38462
38531
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -38490,6 +38559,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38490
38559
|
context?: string | undefined;
|
|
38491
38560
|
achievedAt?: number | undefined;
|
|
38492
38561
|
seen?: boolean | undefined;
|
|
38562
|
+
isOngoing?: boolean | undefined;
|
|
38493
38563
|
}> | undefined;
|
|
38494
38564
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
38495
38565
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -40870,7 +40940,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40870
40940
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
40871
40941
|
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">]>>;
|
|
40872
40942
|
lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, 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<"2025">, z.ZodLiteral<"2024">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
40873
|
-
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">]>>;
|
|
40943
|
+
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">, z.ZodLiteral<"game.startedAt:desc">]>>;
|
|
40874
40944
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
40875
40945
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
40876
40946
|
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">]>>;
|
|
@@ -41003,6 +41073,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
41003
41073
|
context: z.ZodOptional<z.ZodString>;
|
|
41004
41074
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
41005
41075
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
41076
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
41006
41077
|
}, "strip", z.ZodTypeAny, {
|
|
41007
41078
|
target: number;
|
|
41008
41079
|
current: number;
|
|
@@ -41010,6 +41081,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
41010
41081
|
context?: string | undefined;
|
|
41011
41082
|
achievedAt?: number | undefined;
|
|
41012
41083
|
seen?: boolean | undefined;
|
|
41084
|
+
isOngoing?: boolean | undefined;
|
|
41013
41085
|
}, {
|
|
41014
41086
|
target: number;
|
|
41015
41087
|
current: number;
|
|
@@ -41017,6 +41089,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
41017
41089
|
context?: string | undefined;
|
|
41018
41090
|
achievedAt?: number | undefined;
|
|
41019
41091
|
seen?: boolean | undefined;
|
|
41092
|
+
isOngoing?: boolean | undefined;
|
|
41020
41093
|
}>>>;
|
|
41021
41094
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
41022
41095
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -41052,6 +41125,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
41052
41125
|
context?: string | undefined;
|
|
41053
41126
|
achievedAt?: number | undefined;
|
|
41054
41127
|
seen?: boolean | undefined;
|
|
41128
|
+
isOngoing?: boolean | undefined;
|
|
41055
41129
|
}> | undefined;
|
|
41056
41130
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
41057
41131
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -41085,6 +41159,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
41085
41159
|
context?: string | undefined;
|
|
41086
41160
|
achievedAt?: number | undefined;
|
|
41087
41161
|
seen?: boolean | undefined;
|
|
41162
|
+
isOngoing?: boolean | undefined;
|
|
41088
41163
|
}> | undefined;
|
|
41089
41164
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
41090
41165
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -43486,7 +43561,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43486
43561
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
43487
43562
|
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">]>>;
|
|
43488
43563
|
lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, 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<"2025">, z.ZodLiteral<"2024">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
43489
|
-
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">]>>;
|
|
43564
|
+
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">, z.ZodLiteral<"game.startedAt:desc">]>>;
|
|
43490
43565
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
43491
43566
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
43492
43567
|
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">]>>;
|
|
@@ -43619,6 +43694,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43619
43694
|
context: z.ZodOptional<z.ZodString>;
|
|
43620
43695
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
43621
43696
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
43697
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
43622
43698
|
}, "strip", z.ZodTypeAny, {
|
|
43623
43699
|
target: number;
|
|
43624
43700
|
current: number;
|
|
@@ -43626,6 +43702,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43626
43702
|
context?: string | undefined;
|
|
43627
43703
|
achievedAt?: number | undefined;
|
|
43628
43704
|
seen?: boolean | undefined;
|
|
43705
|
+
isOngoing?: boolean | undefined;
|
|
43629
43706
|
}, {
|
|
43630
43707
|
target: number;
|
|
43631
43708
|
current: number;
|
|
@@ -43633,6 +43710,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43633
43710
|
context?: string | undefined;
|
|
43634
43711
|
achievedAt?: number | undefined;
|
|
43635
43712
|
seen?: boolean | undefined;
|
|
43713
|
+
isOngoing?: boolean | undefined;
|
|
43636
43714
|
}>>>;
|
|
43637
43715
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
43638
43716
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -43668,6 +43746,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43668
43746
|
context?: string | undefined;
|
|
43669
43747
|
achievedAt?: number | undefined;
|
|
43670
43748
|
seen?: boolean | undefined;
|
|
43749
|
+
isOngoing?: boolean | undefined;
|
|
43671
43750
|
}> | undefined;
|
|
43672
43751
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
43673
43752
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -43701,6 +43780,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43701
43780
|
context?: string | undefined;
|
|
43702
43781
|
achievedAt?: number | undefined;
|
|
43703
43782
|
seen?: boolean | undefined;
|
|
43783
|
+
isOngoing?: boolean | undefined;
|
|
43704
43784
|
}> | undefined;
|
|
43705
43785
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
43706
43786
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -46187,7 +46267,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46187
46267
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
46188
46268
|
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">]>>;
|
|
46189
46269
|
lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, 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<"2025">, z.ZodLiteral<"2024">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
46190
|
-
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">]>>;
|
|
46270
|
+
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">, z.ZodLiteral<"game.startedAt:desc">]>>;
|
|
46191
46271
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
46192
46272
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
46193
46273
|
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">]>>;
|
|
@@ -46320,6 +46400,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46320
46400
|
context: z.ZodOptional<z.ZodString>;
|
|
46321
46401
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
46322
46402
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
46403
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
46323
46404
|
}, "strip", z.ZodTypeAny, {
|
|
46324
46405
|
target: number;
|
|
46325
46406
|
current: number;
|
|
@@ -46327,6 +46408,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46327
46408
|
context?: string | undefined;
|
|
46328
46409
|
achievedAt?: number | undefined;
|
|
46329
46410
|
seen?: boolean | undefined;
|
|
46411
|
+
isOngoing?: boolean | undefined;
|
|
46330
46412
|
}, {
|
|
46331
46413
|
target: number;
|
|
46332
46414
|
current: number;
|
|
@@ -46334,6 +46416,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46334
46416
|
context?: string | undefined;
|
|
46335
46417
|
achievedAt?: number | undefined;
|
|
46336
46418
|
seen?: boolean | undefined;
|
|
46419
|
+
isOngoing?: boolean | undefined;
|
|
46337
46420
|
}>>>;
|
|
46338
46421
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
46339
46422
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -46369,6 +46452,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46369
46452
|
context?: string | undefined;
|
|
46370
46453
|
achievedAt?: number | undefined;
|
|
46371
46454
|
seen?: boolean | undefined;
|
|
46455
|
+
isOngoing?: boolean | undefined;
|
|
46372
46456
|
}> | undefined;
|
|
46373
46457
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
46374
46458
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -46402,6 +46486,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46402
46486
|
context?: string | undefined;
|
|
46403
46487
|
achievedAt?: number | undefined;
|
|
46404
46488
|
seen?: boolean | undefined;
|
|
46489
|
+
isOngoing?: boolean | undefined;
|
|
46405
46490
|
}> | undefined;
|
|
46406
46491
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
46407
46492
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -48859,7 +48944,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48859
48944
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
48860
48945
|
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">]>>;
|
|
48861
48946
|
lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, 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<"2025">, z.ZodLiteral<"2024">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
48862
|
-
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">]>>;
|
|
48947
|
+
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">, z.ZodLiteral<"game.startedAt:desc">]>>;
|
|
48863
48948
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
48864
48949
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
48865
48950
|
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">]>>;
|
|
@@ -48992,6 +49077,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48992
49077
|
context: z.ZodOptional<z.ZodString>;
|
|
48993
49078
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
48994
49079
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
49080
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
48995
49081
|
}, "strip", z.ZodTypeAny, {
|
|
48996
49082
|
target: number;
|
|
48997
49083
|
current: number;
|
|
@@ -48999,6 +49085,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48999
49085
|
context?: string | undefined;
|
|
49000
49086
|
achievedAt?: number | undefined;
|
|
49001
49087
|
seen?: boolean | undefined;
|
|
49088
|
+
isOngoing?: boolean | undefined;
|
|
49002
49089
|
}, {
|
|
49003
49090
|
target: number;
|
|
49004
49091
|
current: number;
|
|
@@ -49006,6 +49093,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
49006
49093
|
context?: string | undefined;
|
|
49007
49094
|
achievedAt?: number | undefined;
|
|
49008
49095
|
seen?: boolean | undefined;
|
|
49096
|
+
isOngoing?: boolean | undefined;
|
|
49009
49097
|
}>>>;
|
|
49010
49098
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
49011
49099
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -49041,6 +49129,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
49041
49129
|
context?: string | undefined;
|
|
49042
49130
|
achievedAt?: number | undefined;
|
|
49043
49131
|
seen?: boolean | undefined;
|
|
49132
|
+
isOngoing?: boolean | undefined;
|
|
49044
49133
|
}> | undefined;
|
|
49045
49134
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
49046
49135
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -49074,6 +49163,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
49074
49163
|
context?: string | undefined;
|
|
49075
49164
|
achievedAt?: number | undefined;
|
|
49076
49165
|
seen?: boolean | undefined;
|
|
49166
|
+
isOngoing?: boolean | undefined;
|
|
49077
49167
|
}> | undefined;
|
|
49078
49168
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
49079
49169
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -51513,7 +51603,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
51513
51603
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
51514
51604
|
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">]>>;
|
|
51515
51605
|
lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, 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<"2025">, z.ZodLiteral<"2024">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
51516
|
-
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">]>>;
|
|
51606
|
+
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">, z.ZodLiteral<"game.startedAt:desc">]>>;
|
|
51517
51607
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
51518
51608
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
51519
51609
|
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">]>>;
|
|
@@ -51646,6 +51736,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
51646
51736
|
context: z.ZodOptional<z.ZodString>;
|
|
51647
51737
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
51648
51738
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
51739
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
51649
51740
|
}, "strip", z.ZodTypeAny, {
|
|
51650
51741
|
target: number;
|
|
51651
51742
|
current: number;
|
|
@@ -51653,6 +51744,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
51653
51744
|
context?: string | undefined;
|
|
51654
51745
|
achievedAt?: number | undefined;
|
|
51655
51746
|
seen?: boolean | undefined;
|
|
51747
|
+
isOngoing?: boolean | undefined;
|
|
51656
51748
|
}, {
|
|
51657
51749
|
target: number;
|
|
51658
51750
|
current: number;
|
|
@@ -51660,6 +51752,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
51660
51752
|
context?: string | undefined;
|
|
51661
51753
|
achievedAt?: number | undefined;
|
|
51662
51754
|
seen?: boolean | undefined;
|
|
51755
|
+
isOngoing?: boolean | undefined;
|
|
51663
51756
|
}>>>;
|
|
51664
51757
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
51665
51758
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -51695,6 +51788,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
51695
51788
|
context?: string | undefined;
|
|
51696
51789
|
achievedAt?: number | undefined;
|
|
51697
51790
|
seen?: boolean | undefined;
|
|
51791
|
+
isOngoing?: boolean | undefined;
|
|
51698
51792
|
}> | undefined;
|
|
51699
51793
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
51700
51794
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -51728,6 +51822,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
51728
51822
|
context?: string | undefined;
|
|
51729
51823
|
achievedAt?: number | undefined;
|
|
51730
51824
|
seen?: boolean | undefined;
|
|
51825
|
+
isOngoing?: boolean | undefined;
|
|
51731
51826
|
}> | undefined;
|
|
51732
51827
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
51733
51828
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -53012,7 +53107,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
53012
53107
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
53013
53108
|
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">]>>;
|
|
53014
53109
|
lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, 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<"2025">, z.ZodLiteral<"2024">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
53015
|
-
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">]>>;
|
|
53110
|
+
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">, z.ZodLiteral<"game.startedAt:desc">]>>;
|
|
53016
53111
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
53017
53112
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
53018
53113
|
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">]>>;
|
|
@@ -53145,6 +53240,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
53145
53240
|
context: z.ZodOptional<z.ZodString>;
|
|
53146
53241
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
53147
53242
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
53243
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
53148
53244
|
}, "strip", z.ZodTypeAny, {
|
|
53149
53245
|
target: number;
|
|
53150
53246
|
current: number;
|
|
@@ -53152,6 +53248,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
53152
53248
|
context?: string | undefined;
|
|
53153
53249
|
achievedAt?: number | undefined;
|
|
53154
53250
|
seen?: boolean | undefined;
|
|
53251
|
+
isOngoing?: boolean | undefined;
|
|
53155
53252
|
}, {
|
|
53156
53253
|
target: number;
|
|
53157
53254
|
current: number;
|
|
@@ -53159,6 +53256,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
53159
53256
|
context?: string | undefined;
|
|
53160
53257
|
achievedAt?: number | undefined;
|
|
53161
53258
|
seen?: boolean | undefined;
|
|
53259
|
+
isOngoing?: boolean | undefined;
|
|
53162
53260
|
}>>>;
|
|
53163
53261
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
53164
53262
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -53194,6 +53292,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
53194
53292
|
context?: string | undefined;
|
|
53195
53293
|
achievedAt?: number | undefined;
|
|
53196
53294
|
seen?: boolean | undefined;
|
|
53295
|
+
isOngoing?: boolean | undefined;
|
|
53197
53296
|
}> | undefined;
|
|
53198
53297
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
53199
53298
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -53227,6 +53326,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
53227
53326
|
context?: string | undefined;
|
|
53228
53327
|
achievedAt?: number | undefined;
|
|
53229
53328
|
seen?: boolean | undefined;
|
|
53329
|
+
isOngoing?: boolean | undefined;
|
|
53230
53330
|
}> | undefined;
|
|
53231
53331
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
53232
53332
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|