rategame-shared 1.1.315 → 1.1.317
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 +40 -0
- package/dist/schemas/game.d.ts +160 -0
- package/dist/schemas/list.d.ts +40 -0
- package/dist/schemas/moderation.d.ts +32 -0
- package/dist/schemas/rating.d.ts +24 -0
- package/dist/schemas/stadium.d.ts +32 -0
- package/dist/schemas/user.d.ts +40 -0
- package/dist/schemas/user.js +5 -0
- package/dist/schemas/userEvent.d.ts +24 -0
- package/dist/schemas/voting.d.ts +72 -0
- package/package.json +1 -1
package/dist/schemas/chat.d.ts
CHANGED
|
@@ -721,6 +721,7 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
721
721
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
722
722
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
723
723
|
}>>;
|
|
724
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
724
725
|
}, "strip", z.ZodTypeAny, {
|
|
725
726
|
allGames?: boolean | undefined;
|
|
726
727
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -748,6 +749,7 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
748
749
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
749
750
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
750
751
|
} | undefined;
|
|
752
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
751
753
|
}, {
|
|
752
754
|
allGames?: boolean | undefined;
|
|
753
755
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -775,6 +777,7 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
775
777
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
776
778
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
777
779
|
} | undefined;
|
|
780
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
778
781
|
}>>;
|
|
779
782
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
780
783
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -913,6 +916,7 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
913
916
|
context: z.ZodOptional<z.ZodString>;
|
|
914
917
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
915
918
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
919
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
916
920
|
}, "strip", z.ZodTypeAny, {
|
|
917
921
|
target: number;
|
|
918
922
|
current: number;
|
|
@@ -920,6 +924,7 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
920
924
|
context?: string | undefined;
|
|
921
925
|
achievedAt?: number | undefined;
|
|
922
926
|
seen?: boolean | undefined;
|
|
927
|
+
isOngoing?: boolean | undefined;
|
|
923
928
|
}, {
|
|
924
929
|
target: number;
|
|
925
930
|
current: number;
|
|
@@ -927,6 +932,7 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
927
932
|
context?: string | undefined;
|
|
928
933
|
achievedAt?: number | undefined;
|
|
929
934
|
seen?: boolean | undefined;
|
|
935
|
+
isOngoing?: boolean | undefined;
|
|
930
936
|
}>>>;
|
|
931
937
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
932
938
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -962,6 +968,7 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
962
968
|
context?: string | undefined;
|
|
963
969
|
achievedAt?: number | undefined;
|
|
964
970
|
seen?: boolean | undefined;
|
|
971
|
+
isOngoing?: boolean | undefined;
|
|
965
972
|
}> | undefined;
|
|
966
973
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
967
974
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -995,6 +1002,7 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
995
1002
|
context?: string | undefined;
|
|
996
1003
|
achievedAt?: number | undefined;
|
|
997
1004
|
seen?: boolean | undefined;
|
|
1005
|
+
isOngoing?: boolean | undefined;
|
|
998
1006
|
}> | undefined;
|
|
999
1007
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
1000
1008
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -1817,6 +1825,7 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1817
1825
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1818
1826
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1819
1827
|
}>>;
|
|
1828
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
1820
1829
|
}, "strip", z.ZodTypeAny, {
|
|
1821
1830
|
allGames?: boolean | undefined;
|
|
1822
1831
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -1844,6 +1853,7 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1844
1853
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1845
1854
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1846
1855
|
} | undefined;
|
|
1856
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
1847
1857
|
}, {
|
|
1848
1858
|
allGames?: boolean | undefined;
|
|
1849
1859
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -1871,6 +1881,7 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1871
1881
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1872
1882
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1873
1883
|
} | undefined;
|
|
1884
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
1874
1885
|
}>>;
|
|
1875
1886
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1876
1887
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -2009,6 +2020,7 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2009
2020
|
context: z.ZodOptional<z.ZodString>;
|
|
2010
2021
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
2011
2022
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
2023
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
2012
2024
|
}, "strip", z.ZodTypeAny, {
|
|
2013
2025
|
target: number;
|
|
2014
2026
|
current: number;
|
|
@@ -2016,6 +2028,7 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2016
2028
|
context?: string | undefined;
|
|
2017
2029
|
achievedAt?: number | undefined;
|
|
2018
2030
|
seen?: boolean | undefined;
|
|
2031
|
+
isOngoing?: boolean | undefined;
|
|
2019
2032
|
}, {
|
|
2020
2033
|
target: number;
|
|
2021
2034
|
current: number;
|
|
@@ -2023,6 +2036,7 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2023
2036
|
context?: string | undefined;
|
|
2024
2037
|
achievedAt?: number | undefined;
|
|
2025
2038
|
seen?: boolean | undefined;
|
|
2039
|
+
isOngoing?: boolean | undefined;
|
|
2026
2040
|
}>>>;
|
|
2027
2041
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
2028
2042
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -2058,6 +2072,7 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2058
2072
|
context?: string | undefined;
|
|
2059
2073
|
achievedAt?: number | undefined;
|
|
2060
2074
|
seen?: boolean | undefined;
|
|
2075
|
+
isOngoing?: boolean | undefined;
|
|
2061
2076
|
}> | undefined;
|
|
2062
2077
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
2063
2078
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -2091,6 +2106,7 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2091
2106
|
context?: string | undefined;
|
|
2092
2107
|
achievedAt?: number | undefined;
|
|
2093
2108
|
seen?: boolean | undefined;
|
|
2109
|
+
isOngoing?: boolean | undefined;
|
|
2094
2110
|
}> | undefined;
|
|
2095
2111
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
2096
2112
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -2969,6 +2985,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
2969
2985
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2970
2986
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2971
2987
|
}>>;
|
|
2988
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
2972
2989
|
}, "strip", z.ZodTypeAny, {
|
|
2973
2990
|
allGames?: boolean | undefined;
|
|
2974
2991
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -2996,6 +3013,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
2996
3013
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2997
3014
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2998
3015
|
} | undefined;
|
|
3016
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
2999
3017
|
}, {
|
|
3000
3018
|
allGames?: boolean | undefined;
|
|
3001
3019
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -3023,6 +3041,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
3023
3041
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3024
3042
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3025
3043
|
} | undefined;
|
|
3044
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
3026
3045
|
}>>;
|
|
3027
3046
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3028
3047
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -3161,6 +3180,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
3161
3180
|
context: z.ZodOptional<z.ZodString>;
|
|
3162
3181
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
3163
3182
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
3183
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
3164
3184
|
}, "strip", z.ZodTypeAny, {
|
|
3165
3185
|
target: number;
|
|
3166
3186
|
current: number;
|
|
@@ -3168,6 +3188,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
3168
3188
|
context?: string | undefined;
|
|
3169
3189
|
achievedAt?: number | undefined;
|
|
3170
3190
|
seen?: boolean | undefined;
|
|
3191
|
+
isOngoing?: boolean | undefined;
|
|
3171
3192
|
}, {
|
|
3172
3193
|
target: number;
|
|
3173
3194
|
current: number;
|
|
@@ -3175,6 +3196,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
3175
3196
|
context?: string | undefined;
|
|
3176
3197
|
achievedAt?: number | undefined;
|
|
3177
3198
|
seen?: boolean | undefined;
|
|
3199
|
+
isOngoing?: boolean | undefined;
|
|
3178
3200
|
}>>>;
|
|
3179
3201
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
3180
3202
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -3210,6 +3232,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
3210
3232
|
context?: string | undefined;
|
|
3211
3233
|
achievedAt?: number | undefined;
|
|
3212
3234
|
seen?: boolean | undefined;
|
|
3235
|
+
isOngoing?: boolean | undefined;
|
|
3213
3236
|
}> | undefined;
|
|
3214
3237
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
3215
3238
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -3243,6 +3266,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
3243
3266
|
context?: string | undefined;
|
|
3244
3267
|
achievedAt?: number | undefined;
|
|
3245
3268
|
seen?: boolean | undefined;
|
|
3269
|
+
isOngoing?: boolean | undefined;
|
|
3246
3270
|
}> | undefined;
|
|
3247
3271
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
3248
3272
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -4064,6 +4088,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
4064
4088
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4065
4089
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4066
4090
|
}>>;
|
|
4091
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
4067
4092
|
}, "strip", z.ZodTypeAny, {
|
|
4068
4093
|
allGames?: boolean | undefined;
|
|
4069
4094
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -4091,6 +4116,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
4091
4116
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4092
4117
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4093
4118
|
} | undefined;
|
|
4119
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
4094
4120
|
}, {
|
|
4095
4121
|
allGames?: boolean | undefined;
|
|
4096
4122
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -4118,6 +4144,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
4118
4144
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4119
4145
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4120
4146
|
} | undefined;
|
|
4147
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
4121
4148
|
}>>;
|
|
4122
4149
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
4123
4150
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -4256,6 +4283,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
4256
4283
|
context: z.ZodOptional<z.ZodString>;
|
|
4257
4284
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
4258
4285
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
4286
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
4259
4287
|
}, "strip", z.ZodTypeAny, {
|
|
4260
4288
|
target: number;
|
|
4261
4289
|
current: number;
|
|
@@ -4263,6 +4291,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
4263
4291
|
context?: string | undefined;
|
|
4264
4292
|
achievedAt?: number | undefined;
|
|
4265
4293
|
seen?: boolean | undefined;
|
|
4294
|
+
isOngoing?: boolean | undefined;
|
|
4266
4295
|
}, {
|
|
4267
4296
|
target: number;
|
|
4268
4297
|
current: number;
|
|
@@ -4270,6 +4299,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
4270
4299
|
context?: string | undefined;
|
|
4271
4300
|
achievedAt?: number | undefined;
|
|
4272
4301
|
seen?: boolean | undefined;
|
|
4302
|
+
isOngoing?: boolean | undefined;
|
|
4273
4303
|
}>>>;
|
|
4274
4304
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
4275
4305
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -4305,6 +4335,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
4305
4335
|
context?: string | undefined;
|
|
4306
4336
|
achievedAt?: number | undefined;
|
|
4307
4337
|
seen?: boolean | undefined;
|
|
4338
|
+
isOngoing?: boolean | undefined;
|
|
4308
4339
|
}> | undefined;
|
|
4309
4340
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
4310
4341
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -4338,6 +4369,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
4338
4369
|
context?: string | undefined;
|
|
4339
4370
|
achievedAt?: number | undefined;
|
|
4340
4371
|
seen?: boolean | undefined;
|
|
4372
|
+
isOngoing?: boolean | undefined;
|
|
4341
4373
|
}> | undefined;
|
|
4342
4374
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
4343
4375
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -5211,6 +5243,7 @@ export declare const messageReactionSchema: z.ZodObject<{
|
|
|
5211
5243
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
5212
5244
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
5213
5245
|
}>>;
|
|
5246
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
5214
5247
|
}, "strip", z.ZodTypeAny, {
|
|
5215
5248
|
allGames?: boolean | undefined;
|
|
5216
5249
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -5238,6 +5271,7 @@ export declare const messageReactionSchema: z.ZodObject<{
|
|
|
5238
5271
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
5239
5272
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
5240
5273
|
} | undefined;
|
|
5274
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
5241
5275
|
}, {
|
|
5242
5276
|
allGames?: boolean | undefined;
|
|
5243
5277
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -5265,6 +5299,7 @@ export declare const messageReactionSchema: z.ZodObject<{
|
|
|
5265
5299
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
5266
5300
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
5267
5301
|
} | undefined;
|
|
5302
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
5268
5303
|
}>>;
|
|
5269
5304
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
5270
5305
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -5403,6 +5438,7 @@ export declare const messageReactionSchema: z.ZodObject<{
|
|
|
5403
5438
|
context: z.ZodOptional<z.ZodString>;
|
|
5404
5439
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
5405
5440
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
5441
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
5406
5442
|
}, "strip", z.ZodTypeAny, {
|
|
5407
5443
|
target: number;
|
|
5408
5444
|
current: number;
|
|
@@ -5410,6 +5446,7 @@ export declare const messageReactionSchema: z.ZodObject<{
|
|
|
5410
5446
|
context?: string | undefined;
|
|
5411
5447
|
achievedAt?: number | undefined;
|
|
5412
5448
|
seen?: boolean | undefined;
|
|
5449
|
+
isOngoing?: boolean | undefined;
|
|
5413
5450
|
}, {
|
|
5414
5451
|
target: number;
|
|
5415
5452
|
current: number;
|
|
@@ -5417,6 +5454,7 @@ export declare const messageReactionSchema: z.ZodObject<{
|
|
|
5417
5454
|
context?: string | undefined;
|
|
5418
5455
|
achievedAt?: number | undefined;
|
|
5419
5456
|
seen?: boolean | undefined;
|
|
5457
|
+
isOngoing?: boolean | undefined;
|
|
5420
5458
|
}>>>;
|
|
5421
5459
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
5422
5460
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -5452,6 +5490,7 @@ export declare const messageReactionSchema: z.ZodObject<{
|
|
|
5452
5490
|
context?: string | undefined;
|
|
5453
5491
|
achievedAt?: number | undefined;
|
|
5454
5492
|
seen?: boolean | undefined;
|
|
5493
|
+
isOngoing?: boolean | undefined;
|
|
5455
5494
|
}> | undefined;
|
|
5456
5495
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
5457
5496
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -5485,6 +5524,7 @@ export declare const messageReactionSchema: z.ZodObject<{
|
|
|
5485
5524
|
context?: string | undefined;
|
|
5486
5525
|
achievedAt?: number | undefined;
|
|
5487
5526
|
seen?: boolean | undefined;
|
|
5527
|
+
isOngoing?: boolean | undefined;
|
|
5488
5528
|
}> | undefined;
|
|
5489
5529
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
5490
5530
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|