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/chat.d.ts
CHANGED
|
@@ -780,7 +780,7 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
780
780
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
781
781
|
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">]>>;
|
|
782
782
|
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">]>>;
|
|
783
|
-
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">]>>;
|
|
783
|
+
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">]>>;
|
|
784
784
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
785
785
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
786
786
|
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">]>>;
|
|
@@ -913,6 +913,7 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
913
913
|
context: z.ZodOptional<z.ZodString>;
|
|
914
914
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
915
915
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
916
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
916
917
|
}, "strip", z.ZodTypeAny, {
|
|
917
918
|
target: number;
|
|
918
919
|
current: number;
|
|
@@ -920,6 +921,7 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
920
921
|
context?: string | undefined;
|
|
921
922
|
achievedAt?: number | undefined;
|
|
922
923
|
seen?: boolean | undefined;
|
|
924
|
+
isOngoing?: boolean | undefined;
|
|
923
925
|
}, {
|
|
924
926
|
target: number;
|
|
925
927
|
current: number;
|
|
@@ -927,6 +929,7 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
927
929
|
context?: string | undefined;
|
|
928
930
|
achievedAt?: number | undefined;
|
|
929
931
|
seen?: boolean | undefined;
|
|
932
|
+
isOngoing?: boolean | undefined;
|
|
930
933
|
}>>>;
|
|
931
934
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
932
935
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -962,6 +965,7 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
962
965
|
context?: string | undefined;
|
|
963
966
|
achievedAt?: number | undefined;
|
|
964
967
|
seen?: boolean | undefined;
|
|
968
|
+
isOngoing?: boolean | undefined;
|
|
965
969
|
}> | undefined;
|
|
966
970
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
967
971
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -995,6 +999,7 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
995
999
|
context?: string | undefined;
|
|
996
1000
|
achievedAt?: number | undefined;
|
|
997
1001
|
seen?: boolean | undefined;
|
|
1002
|
+
isOngoing?: boolean | undefined;
|
|
998
1003
|
}> | undefined;
|
|
999
1004
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
1000
1005
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -1876,7 +1881,7 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1876
1881
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
1877
1882
|
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">]>>;
|
|
1878
1883
|
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">]>>;
|
|
1879
|
-
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">]>>;
|
|
1884
|
+
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">]>>;
|
|
1880
1885
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
1881
1886
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
1882
1887
|
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">]>>;
|
|
@@ -2009,6 +2014,7 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2009
2014
|
context: z.ZodOptional<z.ZodString>;
|
|
2010
2015
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
2011
2016
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
2017
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
2012
2018
|
}, "strip", z.ZodTypeAny, {
|
|
2013
2019
|
target: number;
|
|
2014
2020
|
current: number;
|
|
@@ -2016,6 +2022,7 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2016
2022
|
context?: string | undefined;
|
|
2017
2023
|
achievedAt?: number | undefined;
|
|
2018
2024
|
seen?: boolean | undefined;
|
|
2025
|
+
isOngoing?: boolean | undefined;
|
|
2019
2026
|
}, {
|
|
2020
2027
|
target: number;
|
|
2021
2028
|
current: number;
|
|
@@ -2023,6 +2030,7 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2023
2030
|
context?: string | undefined;
|
|
2024
2031
|
achievedAt?: number | undefined;
|
|
2025
2032
|
seen?: boolean | undefined;
|
|
2033
|
+
isOngoing?: boolean | undefined;
|
|
2026
2034
|
}>>>;
|
|
2027
2035
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
2028
2036
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -2058,6 +2066,7 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2058
2066
|
context?: string | undefined;
|
|
2059
2067
|
achievedAt?: number | undefined;
|
|
2060
2068
|
seen?: boolean | undefined;
|
|
2069
|
+
isOngoing?: boolean | undefined;
|
|
2061
2070
|
}> | undefined;
|
|
2062
2071
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
2063
2072
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -2091,6 +2100,7 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2091
2100
|
context?: string | undefined;
|
|
2092
2101
|
achievedAt?: number | undefined;
|
|
2093
2102
|
seen?: boolean | undefined;
|
|
2103
|
+
isOngoing?: boolean | undefined;
|
|
2094
2104
|
}> | undefined;
|
|
2095
2105
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
2096
2106
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -3028,7 +3038,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
3028
3038
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
3029
3039
|
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">]>>;
|
|
3030
3040
|
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">]>>;
|
|
3031
|
-
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">]>>;
|
|
3041
|
+
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">]>>;
|
|
3032
3042
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
3033
3043
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
3034
3044
|
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">]>>;
|
|
@@ -3161,6 +3171,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
3161
3171
|
context: z.ZodOptional<z.ZodString>;
|
|
3162
3172
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
3163
3173
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
3174
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
3164
3175
|
}, "strip", z.ZodTypeAny, {
|
|
3165
3176
|
target: number;
|
|
3166
3177
|
current: number;
|
|
@@ -3168,6 +3179,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
3168
3179
|
context?: string | undefined;
|
|
3169
3180
|
achievedAt?: number | undefined;
|
|
3170
3181
|
seen?: boolean | undefined;
|
|
3182
|
+
isOngoing?: boolean | undefined;
|
|
3171
3183
|
}, {
|
|
3172
3184
|
target: number;
|
|
3173
3185
|
current: number;
|
|
@@ -3175,6 +3187,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
3175
3187
|
context?: string | undefined;
|
|
3176
3188
|
achievedAt?: number | undefined;
|
|
3177
3189
|
seen?: boolean | undefined;
|
|
3190
|
+
isOngoing?: boolean | undefined;
|
|
3178
3191
|
}>>>;
|
|
3179
3192
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
3180
3193
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -3210,6 +3223,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
3210
3223
|
context?: string | undefined;
|
|
3211
3224
|
achievedAt?: number | undefined;
|
|
3212
3225
|
seen?: boolean | undefined;
|
|
3226
|
+
isOngoing?: boolean | undefined;
|
|
3213
3227
|
}> | undefined;
|
|
3214
3228
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
3215
3229
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -3243,6 +3257,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
3243
3257
|
context?: string | undefined;
|
|
3244
3258
|
achievedAt?: number | undefined;
|
|
3245
3259
|
seen?: boolean | undefined;
|
|
3260
|
+
isOngoing?: boolean | undefined;
|
|
3246
3261
|
}> | undefined;
|
|
3247
3262
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
3248
3263
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -4123,7 +4138,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
4123
4138
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
4124
4139
|
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">]>>;
|
|
4125
4140
|
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">]>>;
|
|
4126
|
-
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">]>>;
|
|
4141
|
+
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">]>>;
|
|
4127
4142
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
4128
4143
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
4129
4144
|
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">]>>;
|
|
@@ -4256,6 +4271,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
4256
4271
|
context: z.ZodOptional<z.ZodString>;
|
|
4257
4272
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
4258
4273
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
4274
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
4259
4275
|
}, "strip", z.ZodTypeAny, {
|
|
4260
4276
|
target: number;
|
|
4261
4277
|
current: number;
|
|
@@ -4263,6 +4279,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
4263
4279
|
context?: string | undefined;
|
|
4264
4280
|
achievedAt?: number | undefined;
|
|
4265
4281
|
seen?: boolean | undefined;
|
|
4282
|
+
isOngoing?: boolean | undefined;
|
|
4266
4283
|
}, {
|
|
4267
4284
|
target: number;
|
|
4268
4285
|
current: number;
|
|
@@ -4270,6 +4287,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
4270
4287
|
context?: string | undefined;
|
|
4271
4288
|
achievedAt?: number | undefined;
|
|
4272
4289
|
seen?: boolean | undefined;
|
|
4290
|
+
isOngoing?: boolean | undefined;
|
|
4273
4291
|
}>>>;
|
|
4274
4292
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
4275
4293
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -4305,6 +4323,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
4305
4323
|
context?: string | undefined;
|
|
4306
4324
|
achievedAt?: number | undefined;
|
|
4307
4325
|
seen?: boolean | undefined;
|
|
4326
|
+
isOngoing?: boolean | undefined;
|
|
4308
4327
|
}> | undefined;
|
|
4309
4328
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
4310
4329
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -4338,6 +4357,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
4338
4357
|
context?: string | undefined;
|
|
4339
4358
|
achievedAt?: number | undefined;
|
|
4340
4359
|
seen?: boolean | undefined;
|
|
4360
|
+
isOngoing?: boolean | undefined;
|
|
4341
4361
|
}> | undefined;
|
|
4342
4362
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
4343
4363
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -5270,7 +5290,7 @@ export declare const messageReactionSchema: z.ZodObject<{
|
|
|
5270
5290
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
5271
5291
|
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">]>>;
|
|
5272
5292
|
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">]>>;
|
|
5273
|
-
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">]>>;
|
|
5293
|
+
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">]>>;
|
|
5274
5294
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
5275
5295
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
5276
5296
|
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">]>>;
|
|
@@ -5403,6 +5423,7 @@ export declare const messageReactionSchema: z.ZodObject<{
|
|
|
5403
5423
|
context: z.ZodOptional<z.ZodString>;
|
|
5404
5424
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
5405
5425
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
5426
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
5406
5427
|
}, "strip", z.ZodTypeAny, {
|
|
5407
5428
|
target: number;
|
|
5408
5429
|
current: number;
|
|
@@ -5410,6 +5431,7 @@ export declare const messageReactionSchema: z.ZodObject<{
|
|
|
5410
5431
|
context?: string | undefined;
|
|
5411
5432
|
achievedAt?: number | undefined;
|
|
5412
5433
|
seen?: boolean | undefined;
|
|
5434
|
+
isOngoing?: boolean | undefined;
|
|
5413
5435
|
}, {
|
|
5414
5436
|
target: number;
|
|
5415
5437
|
current: number;
|
|
@@ -5417,6 +5439,7 @@ export declare const messageReactionSchema: z.ZodObject<{
|
|
|
5417
5439
|
context?: string | undefined;
|
|
5418
5440
|
achievedAt?: number | undefined;
|
|
5419
5441
|
seen?: boolean | undefined;
|
|
5442
|
+
isOngoing?: boolean | undefined;
|
|
5420
5443
|
}>>>;
|
|
5421
5444
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
5422
5445
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -5452,6 +5475,7 @@ export declare const messageReactionSchema: z.ZodObject<{
|
|
|
5452
5475
|
context?: string | undefined;
|
|
5453
5476
|
achievedAt?: number | undefined;
|
|
5454
5477
|
seen?: boolean | undefined;
|
|
5478
|
+
isOngoing?: boolean | undefined;
|
|
5455
5479
|
}> | undefined;
|
|
5456
5480
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
5457
5481
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -5485,6 +5509,7 @@ export declare const messageReactionSchema: z.ZodObject<{
|
|
|
5485
5509
|
context?: string | undefined;
|
|
5486
5510
|
achievedAt?: number | undefined;
|
|
5487
5511
|
seen?: boolean | undefined;
|
|
5512
|
+
isOngoing?: boolean | undefined;
|
|
5488
5513
|
}> | undefined;
|
|
5489
5514
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
5490
5515
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|