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/list.d.ts
CHANGED
|
@@ -780,7 +780,7 @@ export declare const listSchema: z.ZodObject<{
|
|
|
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 listSchema: z.ZodObject<{
|
|
|
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 listSchema: z.ZodObject<{
|
|
|
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 listSchema: z.ZodObject<{
|
|
|
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 listSchema: z.ZodObject<{
|
|
|
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 listSchema: z.ZodObject<{
|
|
|
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;
|
|
@@ -1921,7 +1926,7 @@ export declare const listCreateSchema: z.ZodObject<Omit<{
|
|
|
1921
1926
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
1922
1927
|
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">]>>;
|
|
1923
1928
|
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">]>>;
|
|
1924
|
-
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">]>>;
|
|
1929
|
+
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">]>>;
|
|
1925
1930
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
1926
1931
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
1927
1932
|
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">]>>;
|
|
@@ -2054,6 +2059,7 @@ export declare const listCreateSchema: z.ZodObject<Omit<{
|
|
|
2054
2059
|
context: z.ZodOptional<z.ZodString>;
|
|
2055
2060
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
2056
2061
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
2062
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
2057
2063
|
}, "strip", z.ZodTypeAny, {
|
|
2058
2064
|
target: number;
|
|
2059
2065
|
current: number;
|
|
@@ -2061,6 +2067,7 @@ export declare const listCreateSchema: z.ZodObject<Omit<{
|
|
|
2061
2067
|
context?: string | undefined;
|
|
2062
2068
|
achievedAt?: number | undefined;
|
|
2063
2069
|
seen?: boolean | undefined;
|
|
2070
|
+
isOngoing?: boolean | undefined;
|
|
2064
2071
|
}, {
|
|
2065
2072
|
target: number;
|
|
2066
2073
|
current: number;
|
|
@@ -2068,6 +2075,7 @@ export declare const listCreateSchema: z.ZodObject<Omit<{
|
|
|
2068
2075
|
context?: string | undefined;
|
|
2069
2076
|
achievedAt?: number | undefined;
|
|
2070
2077
|
seen?: boolean | undefined;
|
|
2078
|
+
isOngoing?: boolean | undefined;
|
|
2071
2079
|
}>>>;
|
|
2072
2080
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
2073
2081
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -2103,6 +2111,7 @@ export declare const listCreateSchema: z.ZodObject<Omit<{
|
|
|
2103
2111
|
context?: string | undefined;
|
|
2104
2112
|
achievedAt?: number | undefined;
|
|
2105
2113
|
seen?: boolean | undefined;
|
|
2114
|
+
isOngoing?: boolean | undefined;
|
|
2106
2115
|
}> | undefined;
|
|
2107
2116
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
2108
2117
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -2136,6 +2145,7 @@ export declare const listCreateSchema: z.ZodObject<Omit<{
|
|
|
2136
2145
|
context?: string | undefined;
|
|
2137
2146
|
achievedAt?: number | undefined;
|
|
2138
2147
|
seen?: boolean | undefined;
|
|
2148
|
+
isOngoing?: boolean | undefined;
|
|
2139
2149
|
}> | undefined;
|
|
2140
2150
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
2141
2151
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -3054,7 +3064,7 @@ export declare const listCommentSchema: z.ZodObject<{
|
|
|
3054
3064
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
3055
3065
|
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">]>>;
|
|
3056
3066
|
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">]>>;
|
|
3057
|
-
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">]>>;
|
|
3067
|
+
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">]>>;
|
|
3058
3068
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
3059
3069
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
3060
3070
|
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">]>>;
|
|
@@ -3187,6 +3197,7 @@ export declare const listCommentSchema: z.ZodObject<{
|
|
|
3187
3197
|
context: z.ZodOptional<z.ZodString>;
|
|
3188
3198
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
3189
3199
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
3200
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
3190
3201
|
}, "strip", z.ZodTypeAny, {
|
|
3191
3202
|
target: number;
|
|
3192
3203
|
current: number;
|
|
@@ -3194,6 +3205,7 @@ export declare const listCommentSchema: z.ZodObject<{
|
|
|
3194
3205
|
context?: string | undefined;
|
|
3195
3206
|
achievedAt?: number | undefined;
|
|
3196
3207
|
seen?: boolean | undefined;
|
|
3208
|
+
isOngoing?: boolean | undefined;
|
|
3197
3209
|
}, {
|
|
3198
3210
|
target: number;
|
|
3199
3211
|
current: number;
|
|
@@ -3201,6 +3213,7 @@ export declare const listCommentSchema: z.ZodObject<{
|
|
|
3201
3213
|
context?: string | undefined;
|
|
3202
3214
|
achievedAt?: number | undefined;
|
|
3203
3215
|
seen?: boolean | undefined;
|
|
3216
|
+
isOngoing?: boolean | undefined;
|
|
3204
3217
|
}>>>;
|
|
3205
3218
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
3206
3219
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -3236,6 +3249,7 @@ export declare const listCommentSchema: z.ZodObject<{
|
|
|
3236
3249
|
context?: string | undefined;
|
|
3237
3250
|
achievedAt?: number | undefined;
|
|
3238
3251
|
seen?: boolean | undefined;
|
|
3252
|
+
isOngoing?: boolean | undefined;
|
|
3239
3253
|
}> | undefined;
|
|
3240
3254
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
3241
3255
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -3269,6 +3283,7 @@ export declare const listCommentSchema: z.ZodObject<{
|
|
|
3269
3283
|
context?: string | undefined;
|
|
3270
3284
|
achievedAt?: number | undefined;
|
|
3271
3285
|
seen?: boolean | undefined;
|
|
3286
|
+
isOngoing?: boolean | undefined;
|
|
3272
3287
|
}> | undefined;
|
|
3273
3288
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
3274
3289
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -4147,7 +4162,7 @@ export declare const listCommentSchema: z.ZodObject<{
|
|
|
4147
4162
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
4148
4163
|
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">]>>;
|
|
4149
4164
|
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">]>>;
|
|
4150
|
-
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">]>>;
|
|
4165
|
+
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">]>>;
|
|
4151
4166
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
4152
4167
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
4153
4168
|
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">]>>;
|
|
@@ -4280,6 +4295,7 @@ export declare const listCommentSchema: z.ZodObject<{
|
|
|
4280
4295
|
context: z.ZodOptional<z.ZodString>;
|
|
4281
4296
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
4282
4297
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
4298
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
4283
4299
|
}, "strip", z.ZodTypeAny, {
|
|
4284
4300
|
target: number;
|
|
4285
4301
|
current: number;
|
|
@@ -4287,6 +4303,7 @@ export declare const listCommentSchema: z.ZodObject<{
|
|
|
4287
4303
|
context?: string | undefined;
|
|
4288
4304
|
achievedAt?: number | undefined;
|
|
4289
4305
|
seen?: boolean | undefined;
|
|
4306
|
+
isOngoing?: boolean | undefined;
|
|
4290
4307
|
}, {
|
|
4291
4308
|
target: number;
|
|
4292
4309
|
current: number;
|
|
@@ -4294,6 +4311,7 @@ export declare const listCommentSchema: z.ZodObject<{
|
|
|
4294
4311
|
context?: string | undefined;
|
|
4295
4312
|
achievedAt?: number | undefined;
|
|
4296
4313
|
seen?: boolean | undefined;
|
|
4314
|
+
isOngoing?: boolean | undefined;
|
|
4297
4315
|
}>>>;
|
|
4298
4316
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
4299
4317
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -4329,6 +4347,7 @@ export declare const listCommentSchema: z.ZodObject<{
|
|
|
4329
4347
|
context?: string | undefined;
|
|
4330
4348
|
achievedAt?: number | undefined;
|
|
4331
4349
|
seen?: boolean | undefined;
|
|
4350
|
+
isOngoing?: boolean | undefined;
|
|
4332
4351
|
}> | undefined;
|
|
4333
4352
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
4334
4353
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -4362,6 +4381,7 @@ export declare const listCommentSchema: z.ZodObject<{
|
|
|
4362
4381
|
context?: string | undefined;
|
|
4363
4382
|
achievedAt?: number | undefined;
|
|
4364
4383
|
seen?: boolean | undefined;
|
|
4384
|
+
isOngoing?: boolean | undefined;
|
|
4365
4385
|
}> | undefined;
|
|
4366
4386
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
4367
4387
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -5285,7 +5305,7 @@ export declare const listCommentLikeSchema: z.ZodObject<{
|
|
|
5285
5305
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
5286
5306
|
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">]>>;
|
|
5287
5307
|
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">]>>;
|
|
5288
|
-
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">]>>;
|
|
5308
|
+
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">]>>;
|
|
5289
5309
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
5290
5310
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
5291
5311
|
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">]>>;
|
|
@@ -5418,6 +5438,7 @@ export declare const listCommentLikeSchema: z.ZodObject<{
|
|
|
5418
5438
|
context: z.ZodOptional<z.ZodString>;
|
|
5419
5439
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
5420
5440
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
5441
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
5421
5442
|
}, "strip", z.ZodTypeAny, {
|
|
5422
5443
|
target: number;
|
|
5423
5444
|
current: number;
|
|
@@ -5425,6 +5446,7 @@ export declare const listCommentLikeSchema: z.ZodObject<{
|
|
|
5425
5446
|
context?: string | undefined;
|
|
5426
5447
|
achievedAt?: number | undefined;
|
|
5427
5448
|
seen?: boolean | undefined;
|
|
5449
|
+
isOngoing?: boolean | undefined;
|
|
5428
5450
|
}, {
|
|
5429
5451
|
target: number;
|
|
5430
5452
|
current: number;
|
|
@@ -5432,6 +5454,7 @@ export declare const listCommentLikeSchema: z.ZodObject<{
|
|
|
5432
5454
|
context?: string | undefined;
|
|
5433
5455
|
achievedAt?: number | undefined;
|
|
5434
5456
|
seen?: boolean | undefined;
|
|
5457
|
+
isOngoing?: boolean | undefined;
|
|
5435
5458
|
}>>>;
|
|
5436
5459
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
5437
5460
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -5467,6 +5490,7 @@ export declare const listCommentLikeSchema: z.ZodObject<{
|
|
|
5467
5490
|
context?: string | undefined;
|
|
5468
5491
|
achievedAt?: number | undefined;
|
|
5469
5492
|
seen?: boolean | undefined;
|
|
5493
|
+
isOngoing?: boolean | undefined;
|
|
5470
5494
|
}> | undefined;
|
|
5471
5495
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
5472
5496
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -5500,6 +5524,7 @@ export declare const listCommentLikeSchema: z.ZodObject<{
|
|
|
5500
5524
|
context?: string | undefined;
|
|
5501
5525
|
achievedAt?: number | undefined;
|
|
5502
5526
|
seen?: boolean | undefined;
|
|
5527
|
+
isOngoing?: boolean | undefined;
|
|
5503
5528
|
}> | undefined;
|
|
5504
5529
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
5505
5530
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -793,7 +793,7 @@ export declare const banInfoSchema: z.ZodObject<{
|
|
|
793
793
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
794
794
|
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">]>>;
|
|
795
795
|
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">]>>;
|
|
796
|
-
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">]>>;
|
|
796
|
+
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">]>>;
|
|
797
797
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
798
798
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
799
799
|
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">]>>;
|
|
@@ -926,6 +926,7 @@ export declare const banInfoSchema: z.ZodObject<{
|
|
|
926
926
|
context: z.ZodOptional<z.ZodString>;
|
|
927
927
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
928
928
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
929
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
929
930
|
}, "strip", z.ZodTypeAny, {
|
|
930
931
|
target: number;
|
|
931
932
|
current: number;
|
|
@@ -933,6 +934,7 @@ export declare const banInfoSchema: z.ZodObject<{
|
|
|
933
934
|
context?: string | undefined;
|
|
934
935
|
achievedAt?: number | undefined;
|
|
935
936
|
seen?: boolean | undefined;
|
|
937
|
+
isOngoing?: boolean | undefined;
|
|
936
938
|
}, {
|
|
937
939
|
target: number;
|
|
938
940
|
current: number;
|
|
@@ -940,6 +942,7 @@ export declare const banInfoSchema: z.ZodObject<{
|
|
|
940
942
|
context?: string | undefined;
|
|
941
943
|
achievedAt?: number | undefined;
|
|
942
944
|
seen?: boolean | undefined;
|
|
945
|
+
isOngoing?: boolean | undefined;
|
|
943
946
|
}>>>;
|
|
944
947
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
945
948
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -975,6 +978,7 @@ export declare const banInfoSchema: z.ZodObject<{
|
|
|
975
978
|
context?: string | undefined;
|
|
976
979
|
achievedAt?: number | undefined;
|
|
977
980
|
seen?: boolean | undefined;
|
|
981
|
+
isOngoing?: boolean | undefined;
|
|
978
982
|
}> | undefined;
|
|
979
983
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
980
984
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -1008,6 +1012,7 @@ export declare const banInfoSchema: z.ZodObject<{
|
|
|
1008
1012
|
context?: string | undefined;
|
|
1009
1013
|
achievedAt?: number | undefined;
|
|
1010
1014
|
seen?: boolean | undefined;
|
|
1015
|
+
isOngoing?: boolean | undefined;
|
|
1011
1016
|
}> | undefined;
|
|
1012
1017
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
1013
1018
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -1913,7 +1918,7 @@ export declare const bannedUserSchema: z.ZodObject<{
|
|
|
1913
1918
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
1914
1919
|
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">]>>;
|
|
1915
1920
|
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">]>>;
|
|
1916
|
-
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">]>>;
|
|
1921
|
+
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">]>>;
|
|
1917
1922
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
1918
1923
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
1919
1924
|
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">]>>;
|
|
@@ -2046,6 +2051,7 @@ export declare const bannedUserSchema: z.ZodObject<{
|
|
|
2046
2051
|
context: z.ZodOptional<z.ZodString>;
|
|
2047
2052
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
2048
2053
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
2054
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
2049
2055
|
}, "strip", z.ZodTypeAny, {
|
|
2050
2056
|
target: number;
|
|
2051
2057
|
current: number;
|
|
@@ -2053,6 +2059,7 @@ export declare const bannedUserSchema: z.ZodObject<{
|
|
|
2053
2059
|
context?: string | undefined;
|
|
2054
2060
|
achievedAt?: number | undefined;
|
|
2055
2061
|
seen?: boolean | undefined;
|
|
2062
|
+
isOngoing?: boolean | undefined;
|
|
2056
2063
|
}, {
|
|
2057
2064
|
target: number;
|
|
2058
2065
|
current: number;
|
|
@@ -2060,6 +2067,7 @@ export declare const bannedUserSchema: z.ZodObject<{
|
|
|
2060
2067
|
context?: string | undefined;
|
|
2061
2068
|
achievedAt?: number | undefined;
|
|
2062
2069
|
seen?: boolean | undefined;
|
|
2070
|
+
isOngoing?: boolean | undefined;
|
|
2063
2071
|
}>>>;
|
|
2064
2072
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
2065
2073
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -2095,6 +2103,7 @@ export declare const bannedUserSchema: z.ZodObject<{
|
|
|
2095
2103
|
context?: string | undefined;
|
|
2096
2104
|
achievedAt?: number | undefined;
|
|
2097
2105
|
seen?: boolean | undefined;
|
|
2106
|
+
isOngoing?: boolean | undefined;
|
|
2098
2107
|
}> | undefined;
|
|
2099
2108
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
2100
2109
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -2128,6 +2137,7 @@ export declare const bannedUserSchema: z.ZodObject<{
|
|
|
2128
2137
|
context?: string | undefined;
|
|
2129
2138
|
achievedAt?: number | undefined;
|
|
2130
2139
|
seen?: boolean | undefined;
|
|
2140
|
+
isOngoing?: boolean | undefined;
|
|
2131
2141
|
}> | undefined;
|
|
2132
2142
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
2133
2143
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -3069,7 +3079,7 @@ export declare const bannedUsersResponseSchema: z.ZodObject<{
|
|
|
3069
3079
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
3070
3080
|
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">]>>;
|
|
3071
3081
|
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">]>>;
|
|
3072
|
-
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">]>>;
|
|
3082
|
+
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">]>>;
|
|
3073
3083
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
3074
3084
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
3075
3085
|
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">]>>;
|
|
@@ -3202,6 +3212,7 @@ export declare const bannedUsersResponseSchema: z.ZodObject<{
|
|
|
3202
3212
|
context: z.ZodOptional<z.ZodString>;
|
|
3203
3213
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
3204
3214
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
3215
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
3205
3216
|
}, "strip", z.ZodTypeAny, {
|
|
3206
3217
|
target: number;
|
|
3207
3218
|
current: number;
|
|
@@ -3209,6 +3220,7 @@ export declare const bannedUsersResponseSchema: z.ZodObject<{
|
|
|
3209
3220
|
context?: string | undefined;
|
|
3210
3221
|
achievedAt?: number | undefined;
|
|
3211
3222
|
seen?: boolean | undefined;
|
|
3223
|
+
isOngoing?: boolean | undefined;
|
|
3212
3224
|
}, {
|
|
3213
3225
|
target: number;
|
|
3214
3226
|
current: number;
|
|
@@ -3216,6 +3228,7 @@ export declare const bannedUsersResponseSchema: z.ZodObject<{
|
|
|
3216
3228
|
context?: string | undefined;
|
|
3217
3229
|
achievedAt?: number | undefined;
|
|
3218
3230
|
seen?: boolean | undefined;
|
|
3231
|
+
isOngoing?: boolean | undefined;
|
|
3219
3232
|
}>>>;
|
|
3220
3233
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
3221
3234
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -3251,6 +3264,7 @@ export declare const bannedUsersResponseSchema: z.ZodObject<{
|
|
|
3251
3264
|
context?: string | undefined;
|
|
3252
3265
|
achievedAt?: number | undefined;
|
|
3253
3266
|
seen?: boolean | undefined;
|
|
3267
|
+
isOngoing?: boolean | undefined;
|
|
3254
3268
|
}> | undefined;
|
|
3255
3269
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
3256
3270
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -3284,6 +3298,7 @@ export declare const bannedUsersResponseSchema: z.ZodObject<{
|
|
|
3284
3298
|
context?: string | undefined;
|
|
3285
3299
|
achievedAt?: number | undefined;
|
|
3286
3300
|
seen?: boolean | undefined;
|
|
3301
|
+
isOngoing?: boolean | undefined;
|
|
3287
3302
|
}> | undefined;
|
|
3288
3303
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
3289
3304
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -4269,7 +4284,7 @@ export declare const banStatusResponseSchema: z.ZodObject<{
|
|
|
4269
4284
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
4270
4285
|
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">]>>;
|
|
4271
4286
|
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">]>>;
|
|
4272
|
-
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">]>>;
|
|
4287
|
+
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">]>>;
|
|
4273
4288
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
4274
4289
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
4275
4290
|
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">]>>;
|
|
@@ -4402,6 +4417,7 @@ export declare const banStatusResponseSchema: z.ZodObject<{
|
|
|
4402
4417
|
context: z.ZodOptional<z.ZodString>;
|
|
4403
4418
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
4404
4419
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
4420
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
4405
4421
|
}, "strip", z.ZodTypeAny, {
|
|
4406
4422
|
target: number;
|
|
4407
4423
|
current: number;
|
|
@@ -4409,6 +4425,7 @@ export declare const banStatusResponseSchema: z.ZodObject<{
|
|
|
4409
4425
|
context?: string | undefined;
|
|
4410
4426
|
achievedAt?: number | undefined;
|
|
4411
4427
|
seen?: boolean | undefined;
|
|
4428
|
+
isOngoing?: boolean | undefined;
|
|
4412
4429
|
}, {
|
|
4413
4430
|
target: number;
|
|
4414
4431
|
current: number;
|
|
@@ -4416,6 +4433,7 @@ export declare const banStatusResponseSchema: z.ZodObject<{
|
|
|
4416
4433
|
context?: string | undefined;
|
|
4417
4434
|
achievedAt?: number | undefined;
|
|
4418
4435
|
seen?: boolean | undefined;
|
|
4436
|
+
isOngoing?: boolean | undefined;
|
|
4419
4437
|
}>>>;
|
|
4420
4438
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
4421
4439
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -4451,6 +4469,7 @@ export declare const banStatusResponseSchema: z.ZodObject<{
|
|
|
4451
4469
|
context?: string | undefined;
|
|
4452
4470
|
achievedAt?: number | undefined;
|
|
4453
4471
|
seen?: boolean | undefined;
|
|
4472
|
+
isOngoing?: boolean | undefined;
|
|
4454
4473
|
}> | undefined;
|
|
4455
4474
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
4456
4475
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -4484,6 +4503,7 @@ export declare const banStatusResponseSchema: z.ZodObject<{
|
|
|
4484
4503
|
context?: string | undefined;
|
|
4485
4504
|
achievedAt?: number | undefined;
|
|
4486
4505
|
seen?: boolean | undefined;
|
|
4506
|
+
isOngoing?: boolean | undefined;
|
|
4487
4507
|
}> | undefined;
|
|
4488
4508
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
4489
4509
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|