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/voting.d.ts
CHANGED
|
@@ -776,7 +776,7 @@ export declare const playerVoteSchema: z.ZodObject<{
|
|
|
776
776
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
777
777
|
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">]>>;
|
|
778
778
|
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">]>>;
|
|
779
|
-
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">]>>;
|
|
779
|
+
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">]>>;
|
|
780
780
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
781
781
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
782
782
|
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">]>>;
|
|
@@ -909,6 +909,7 @@ export declare const playerVoteSchema: z.ZodObject<{
|
|
|
909
909
|
context: z.ZodOptional<z.ZodString>;
|
|
910
910
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
911
911
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
912
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
912
913
|
}, "strip", z.ZodTypeAny, {
|
|
913
914
|
target: number;
|
|
914
915
|
current: number;
|
|
@@ -916,6 +917,7 @@ export declare const playerVoteSchema: z.ZodObject<{
|
|
|
916
917
|
context?: string | undefined;
|
|
917
918
|
achievedAt?: number | undefined;
|
|
918
919
|
seen?: boolean | undefined;
|
|
920
|
+
isOngoing?: boolean | undefined;
|
|
919
921
|
}, {
|
|
920
922
|
target: number;
|
|
921
923
|
current: number;
|
|
@@ -923,6 +925,7 @@ export declare const playerVoteSchema: z.ZodObject<{
|
|
|
923
925
|
context?: string | undefined;
|
|
924
926
|
achievedAt?: number | undefined;
|
|
925
927
|
seen?: boolean | undefined;
|
|
928
|
+
isOngoing?: boolean | undefined;
|
|
926
929
|
}>>>;
|
|
927
930
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
928
931
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -958,6 +961,7 @@ export declare const playerVoteSchema: z.ZodObject<{
|
|
|
958
961
|
context?: string | undefined;
|
|
959
962
|
achievedAt?: number | undefined;
|
|
960
963
|
seen?: boolean | undefined;
|
|
964
|
+
isOngoing?: boolean | undefined;
|
|
961
965
|
}> | undefined;
|
|
962
966
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
963
967
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -991,6 +995,7 @@ export declare const playerVoteSchema: z.ZodObject<{
|
|
|
991
995
|
context?: string | undefined;
|
|
992
996
|
achievedAt?: number | undefined;
|
|
993
997
|
seen?: boolean | undefined;
|
|
998
|
+
isOngoing?: boolean | undefined;
|
|
994
999
|
}> | undefined;
|
|
995
1000
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
996
1001
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -1990,7 +1995,7 @@ export declare const voteSubmissionDtoSchema: z.ZodObject<{
|
|
|
1990
1995
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
1991
1996
|
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">]>>;
|
|
1992
1997
|
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">]>>;
|
|
1993
|
-
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">]>>;
|
|
1998
|
+
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">]>>;
|
|
1994
1999
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
1995
2000
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
1996
2001
|
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">]>>;
|
|
@@ -2123,6 +2128,7 @@ export declare const voteSubmissionDtoSchema: z.ZodObject<{
|
|
|
2123
2128
|
context: z.ZodOptional<z.ZodString>;
|
|
2124
2129
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
2125
2130
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
2131
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
2126
2132
|
}, "strip", z.ZodTypeAny, {
|
|
2127
2133
|
target: number;
|
|
2128
2134
|
current: number;
|
|
@@ -2130,6 +2136,7 @@ export declare const voteSubmissionDtoSchema: z.ZodObject<{
|
|
|
2130
2136
|
context?: string | undefined;
|
|
2131
2137
|
achievedAt?: number | undefined;
|
|
2132
2138
|
seen?: boolean | undefined;
|
|
2139
|
+
isOngoing?: boolean | undefined;
|
|
2133
2140
|
}, {
|
|
2134
2141
|
target: number;
|
|
2135
2142
|
current: number;
|
|
@@ -2137,6 +2144,7 @@ export declare const voteSubmissionDtoSchema: z.ZodObject<{
|
|
|
2137
2144
|
context?: string | undefined;
|
|
2138
2145
|
achievedAt?: number | undefined;
|
|
2139
2146
|
seen?: boolean | undefined;
|
|
2147
|
+
isOngoing?: boolean | undefined;
|
|
2140
2148
|
}>>>;
|
|
2141
2149
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
2142
2150
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -2172,6 +2180,7 @@ export declare const voteSubmissionDtoSchema: z.ZodObject<{
|
|
|
2172
2180
|
context?: string | undefined;
|
|
2173
2181
|
achievedAt?: number | undefined;
|
|
2174
2182
|
seen?: boolean | undefined;
|
|
2183
|
+
isOngoing?: boolean | undefined;
|
|
2175
2184
|
}> | undefined;
|
|
2176
2185
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
2177
2186
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -2205,6 +2214,7 @@ export declare const voteSubmissionDtoSchema: z.ZodObject<{
|
|
|
2205
2214
|
context?: string | undefined;
|
|
2206
2215
|
achievedAt?: number | undefined;
|
|
2207
2216
|
seen?: boolean | undefined;
|
|
2217
|
+
isOngoing?: boolean | undefined;
|
|
2208
2218
|
}> | undefined;
|
|
2209
2219
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
2210
2220
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -4525,7 +4535,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
4525
4535
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
4526
4536
|
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">]>>;
|
|
4527
4537
|
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">]>>;
|
|
4528
|
-
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">]>>;
|
|
4538
|
+
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">]>>;
|
|
4529
4539
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
4530
4540
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
4531
4541
|
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">]>>;
|
|
@@ -4658,6 +4668,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
4658
4668
|
context: z.ZodOptional<z.ZodString>;
|
|
4659
4669
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
4660
4670
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
4671
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
4661
4672
|
}, "strip", z.ZodTypeAny, {
|
|
4662
4673
|
target: number;
|
|
4663
4674
|
current: number;
|
|
@@ -4665,6 +4676,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
4665
4676
|
context?: string | undefined;
|
|
4666
4677
|
achievedAt?: number | undefined;
|
|
4667
4678
|
seen?: boolean | undefined;
|
|
4679
|
+
isOngoing?: boolean | undefined;
|
|
4668
4680
|
}, {
|
|
4669
4681
|
target: number;
|
|
4670
4682
|
current: number;
|
|
@@ -4672,6 +4684,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
4672
4684
|
context?: string | undefined;
|
|
4673
4685
|
achievedAt?: number | undefined;
|
|
4674
4686
|
seen?: boolean | undefined;
|
|
4687
|
+
isOngoing?: boolean | undefined;
|
|
4675
4688
|
}>>>;
|
|
4676
4689
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
4677
4690
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -4707,6 +4720,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
4707
4720
|
context?: string | undefined;
|
|
4708
4721
|
achievedAt?: number | undefined;
|
|
4709
4722
|
seen?: boolean | undefined;
|
|
4723
|
+
isOngoing?: boolean | undefined;
|
|
4710
4724
|
}> | undefined;
|
|
4711
4725
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
4712
4726
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -4740,6 +4754,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
4740
4754
|
context?: string | undefined;
|
|
4741
4755
|
achievedAt?: number | undefined;
|
|
4742
4756
|
seen?: boolean | undefined;
|
|
4757
|
+
isOngoing?: boolean | undefined;
|
|
4743
4758
|
}> | undefined;
|
|
4744
4759
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
4745
4760
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -7120,7 +7135,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
7120
7135
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
7121
7136
|
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">]>>;
|
|
7122
7137
|
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">]>>;
|
|
7123
|
-
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">]>>;
|
|
7138
|
+
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">]>>;
|
|
7124
7139
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
7125
7140
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
7126
7141
|
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">]>>;
|
|
@@ -7253,6 +7268,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
7253
7268
|
context: z.ZodOptional<z.ZodString>;
|
|
7254
7269
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
7255
7270
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
7271
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
7256
7272
|
}, "strip", z.ZodTypeAny, {
|
|
7257
7273
|
target: number;
|
|
7258
7274
|
current: number;
|
|
@@ -7260,6 +7276,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
7260
7276
|
context?: string | undefined;
|
|
7261
7277
|
achievedAt?: number | undefined;
|
|
7262
7278
|
seen?: boolean | undefined;
|
|
7279
|
+
isOngoing?: boolean | undefined;
|
|
7263
7280
|
}, {
|
|
7264
7281
|
target: number;
|
|
7265
7282
|
current: number;
|
|
@@ -7267,6 +7284,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
7267
7284
|
context?: string | undefined;
|
|
7268
7285
|
achievedAt?: number | undefined;
|
|
7269
7286
|
seen?: boolean | undefined;
|
|
7287
|
+
isOngoing?: boolean | undefined;
|
|
7270
7288
|
}>>>;
|
|
7271
7289
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
7272
7290
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -7302,6 +7320,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
7302
7320
|
context?: string | undefined;
|
|
7303
7321
|
achievedAt?: number | undefined;
|
|
7304
7322
|
seen?: boolean | undefined;
|
|
7323
|
+
isOngoing?: boolean | undefined;
|
|
7305
7324
|
}> | undefined;
|
|
7306
7325
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
7307
7326
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -7335,6 +7354,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
7335
7354
|
context?: string | undefined;
|
|
7336
7355
|
achievedAt?: number | undefined;
|
|
7337
7356
|
seen?: boolean | undefined;
|
|
7357
|
+
isOngoing?: boolean | undefined;
|
|
7338
7358
|
}> | undefined;
|
|
7339
7359
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
7340
7360
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -9736,7 +9756,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
9736
9756
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
9737
9757
|
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">]>>;
|
|
9738
9758
|
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">]>>;
|
|
9739
|
-
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">]>>;
|
|
9759
|
+
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">]>>;
|
|
9740
9760
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
9741
9761
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
9742
9762
|
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">]>>;
|
|
@@ -9869,6 +9889,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
9869
9889
|
context: z.ZodOptional<z.ZodString>;
|
|
9870
9890
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
9871
9891
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
9892
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
9872
9893
|
}, "strip", z.ZodTypeAny, {
|
|
9873
9894
|
target: number;
|
|
9874
9895
|
current: number;
|
|
@@ -9876,6 +9897,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
9876
9897
|
context?: string | undefined;
|
|
9877
9898
|
achievedAt?: number | undefined;
|
|
9878
9899
|
seen?: boolean | undefined;
|
|
9900
|
+
isOngoing?: boolean | undefined;
|
|
9879
9901
|
}, {
|
|
9880
9902
|
target: number;
|
|
9881
9903
|
current: number;
|
|
@@ -9883,6 +9905,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
9883
9905
|
context?: string | undefined;
|
|
9884
9906
|
achievedAt?: number | undefined;
|
|
9885
9907
|
seen?: boolean | undefined;
|
|
9908
|
+
isOngoing?: boolean | undefined;
|
|
9886
9909
|
}>>>;
|
|
9887
9910
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
9888
9911
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -9918,6 +9941,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
9918
9941
|
context?: string | undefined;
|
|
9919
9942
|
achievedAt?: number | undefined;
|
|
9920
9943
|
seen?: boolean | undefined;
|
|
9944
|
+
isOngoing?: boolean | undefined;
|
|
9921
9945
|
}> | undefined;
|
|
9922
9946
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
9923
9947
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -9951,6 +9975,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
9951
9975
|
context?: string | undefined;
|
|
9952
9976
|
achievedAt?: number | undefined;
|
|
9953
9977
|
seen?: boolean | undefined;
|
|
9978
|
+
isOngoing?: boolean | undefined;
|
|
9954
9979
|
}> | undefined;
|
|
9955
9980
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
9956
9981
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -12437,7 +12462,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
12437
12462
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
12438
12463
|
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">]>>;
|
|
12439
12464
|
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">]>>;
|
|
12440
|
-
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">]>>;
|
|
12465
|
+
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">]>>;
|
|
12441
12466
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
12442
12467
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
12443
12468
|
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">]>>;
|
|
@@ -12570,6 +12595,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
12570
12595
|
context: z.ZodOptional<z.ZodString>;
|
|
12571
12596
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
12572
12597
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
12598
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
12573
12599
|
}, "strip", z.ZodTypeAny, {
|
|
12574
12600
|
target: number;
|
|
12575
12601
|
current: number;
|
|
@@ -12577,6 +12603,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
12577
12603
|
context?: string | undefined;
|
|
12578
12604
|
achievedAt?: number | undefined;
|
|
12579
12605
|
seen?: boolean | undefined;
|
|
12606
|
+
isOngoing?: boolean | undefined;
|
|
12580
12607
|
}, {
|
|
12581
12608
|
target: number;
|
|
12582
12609
|
current: number;
|
|
@@ -12584,6 +12611,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
12584
12611
|
context?: string | undefined;
|
|
12585
12612
|
achievedAt?: number | undefined;
|
|
12586
12613
|
seen?: boolean | undefined;
|
|
12614
|
+
isOngoing?: boolean | undefined;
|
|
12587
12615
|
}>>>;
|
|
12588
12616
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
12589
12617
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -12619,6 +12647,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
12619
12647
|
context?: string | undefined;
|
|
12620
12648
|
achievedAt?: number | undefined;
|
|
12621
12649
|
seen?: boolean | undefined;
|
|
12650
|
+
isOngoing?: boolean | undefined;
|
|
12622
12651
|
}> | undefined;
|
|
12623
12652
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
12624
12653
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -12652,6 +12681,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
12652
12681
|
context?: string | undefined;
|
|
12653
12682
|
achievedAt?: number | undefined;
|
|
12654
12683
|
seen?: boolean | undefined;
|
|
12684
|
+
isOngoing?: boolean | undefined;
|
|
12655
12685
|
}> | undefined;
|
|
12656
12686
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
12657
12687
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -15109,7 +15139,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
15109
15139
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
15110
15140
|
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">]>>;
|
|
15111
15141
|
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">]>>;
|
|
15112
|
-
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">]>>;
|
|
15142
|
+
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">]>>;
|
|
15113
15143
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
15114
15144
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
15115
15145
|
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">]>>;
|
|
@@ -15242,6 +15272,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
15242
15272
|
context: z.ZodOptional<z.ZodString>;
|
|
15243
15273
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
15244
15274
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
15275
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
15245
15276
|
}, "strip", z.ZodTypeAny, {
|
|
15246
15277
|
target: number;
|
|
15247
15278
|
current: number;
|
|
@@ -15249,6 +15280,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
15249
15280
|
context?: string | undefined;
|
|
15250
15281
|
achievedAt?: number | undefined;
|
|
15251
15282
|
seen?: boolean | undefined;
|
|
15283
|
+
isOngoing?: boolean | undefined;
|
|
15252
15284
|
}, {
|
|
15253
15285
|
target: number;
|
|
15254
15286
|
current: number;
|
|
@@ -15256,6 +15288,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
15256
15288
|
context?: string | undefined;
|
|
15257
15289
|
achievedAt?: number | undefined;
|
|
15258
15290
|
seen?: boolean | undefined;
|
|
15291
|
+
isOngoing?: boolean | undefined;
|
|
15259
15292
|
}>>>;
|
|
15260
15293
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
15261
15294
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -15291,6 +15324,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
15291
15324
|
context?: string | undefined;
|
|
15292
15325
|
achievedAt?: number | undefined;
|
|
15293
15326
|
seen?: boolean | undefined;
|
|
15327
|
+
isOngoing?: boolean | undefined;
|
|
15294
15328
|
}> | undefined;
|
|
15295
15329
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
15296
15330
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -15324,6 +15358,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
15324
15358
|
context?: string | undefined;
|
|
15325
15359
|
achievedAt?: number | undefined;
|
|
15326
15360
|
seen?: boolean | undefined;
|
|
15361
|
+
isOngoing?: boolean | undefined;
|
|
15327
15362
|
}> | undefined;
|
|
15328
15363
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
15329
15364
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -17763,7 +17798,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
17763
17798
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
17764
17799
|
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">]>>;
|
|
17765
17800
|
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">]>>;
|
|
17766
|
-
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">]>>;
|
|
17801
|
+
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">]>>;
|
|
17767
17802
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
17768
17803
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
17769
17804
|
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">]>>;
|
|
@@ -17896,6 +17931,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
17896
17931
|
context: z.ZodOptional<z.ZodString>;
|
|
17897
17932
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
17898
17933
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
17934
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
17899
17935
|
}, "strip", z.ZodTypeAny, {
|
|
17900
17936
|
target: number;
|
|
17901
17937
|
current: number;
|
|
@@ -17903,6 +17939,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
17903
17939
|
context?: string | undefined;
|
|
17904
17940
|
achievedAt?: number | undefined;
|
|
17905
17941
|
seen?: boolean | undefined;
|
|
17942
|
+
isOngoing?: boolean | undefined;
|
|
17906
17943
|
}, {
|
|
17907
17944
|
target: number;
|
|
17908
17945
|
current: number;
|
|
@@ -17910,6 +17947,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
17910
17947
|
context?: string | undefined;
|
|
17911
17948
|
achievedAt?: number | undefined;
|
|
17912
17949
|
seen?: boolean | undefined;
|
|
17950
|
+
isOngoing?: boolean | undefined;
|
|
17913
17951
|
}>>>;
|
|
17914
17952
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
17915
17953
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -17945,6 +17983,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
17945
17983
|
context?: string | undefined;
|
|
17946
17984
|
achievedAt?: number | undefined;
|
|
17947
17985
|
seen?: boolean | undefined;
|
|
17986
|
+
isOngoing?: boolean | undefined;
|
|
17948
17987
|
}> | undefined;
|
|
17949
17988
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
17950
17989
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -17978,6 +18017,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
17978
18017
|
context?: string | undefined;
|
|
17979
18018
|
achievedAt?: number | undefined;
|
|
17980
18019
|
seen?: boolean | undefined;
|
|
18020
|
+
isOngoing?: boolean | undefined;
|
|
17981
18021
|
}> | undefined;
|
|
17982
18022
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
17983
18023
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -21944,7 +21984,7 @@ export declare const userVoteResponseDtoSchema: z.ZodObject<{
|
|
|
21944
21984
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
21945
21985
|
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">]>>;
|
|
21946
21986
|
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">]>>;
|
|
21947
|
-
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">]>>;
|
|
21987
|
+
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">]>>;
|
|
21948
21988
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
21949
21989
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
21950
21990
|
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">]>>;
|
|
@@ -22077,6 +22117,7 @@ export declare const userVoteResponseDtoSchema: z.ZodObject<{
|
|
|
22077
22117
|
context: z.ZodOptional<z.ZodString>;
|
|
22078
22118
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
22079
22119
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
22120
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
22080
22121
|
}, "strip", z.ZodTypeAny, {
|
|
22081
22122
|
target: number;
|
|
22082
22123
|
current: number;
|
|
@@ -22084,6 +22125,7 @@ export declare const userVoteResponseDtoSchema: z.ZodObject<{
|
|
|
22084
22125
|
context?: string | undefined;
|
|
22085
22126
|
achievedAt?: number | undefined;
|
|
22086
22127
|
seen?: boolean | undefined;
|
|
22128
|
+
isOngoing?: boolean | undefined;
|
|
22087
22129
|
}, {
|
|
22088
22130
|
target: number;
|
|
22089
22131
|
current: number;
|
|
@@ -22091,6 +22133,7 @@ export declare const userVoteResponseDtoSchema: z.ZodObject<{
|
|
|
22091
22133
|
context?: string | undefined;
|
|
22092
22134
|
achievedAt?: number | undefined;
|
|
22093
22135
|
seen?: boolean | undefined;
|
|
22136
|
+
isOngoing?: boolean | undefined;
|
|
22094
22137
|
}>>>;
|
|
22095
22138
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
22096
22139
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -22126,6 +22169,7 @@ export declare const userVoteResponseDtoSchema: z.ZodObject<{
|
|
|
22126
22169
|
context?: string | undefined;
|
|
22127
22170
|
achievedAt?: number | undefined;
|
|
22128
22171
|
seen?: boolean | undefined;
|
|
22172
|
+
isOngoing?: boolean | undefined;
|
|
22129
22173
|
}> | undefined;
|
|
22130
22174
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
22131
22175
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -22159,6 +22203,7 @@ export declare const userVoteResponseDtoSchema: z.ZodObject<{
|
|
|
22159
22203
|
context?: string | undefined;
|
|
22160
22204
|
achievedAt?: number | undefined;
|
|
22161
22205
|
seen?: boolean | undefined;
|
|
22206
|
+
isOngoing?: boolean | undefined;
|
|
22162
22207
|
}> | undefined;
|
|
22163
22208
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
22164
22209
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|