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/rating.d.ts
CHANGED
|
@@ -378,7 +378,7 @@ export declare const searchRatingSchema: import("zod").ZodObject<{
|
|
|
378
378
|
round: import("zod").ZodOptional<import("zod").ZodString>;
|
|
379
379
|
league: import("zod").ZodUnion<[import("zod").ZodLiteral<"nba">, import("zod").ZodLiteral<"ncaa">, import("zod").ZodLiteral<"nfl">, import("zod").ZodLiteral<"nhl">, import("zod").ZodLiteral<"mlb">, import("zod").ZodLiteral<"cbb">, import("zod").ZodLiteral<"cfb">, import("zod").ZodLiteral<"epl">, import("zod").ZodLiteral<"mls">, import("zod").ZodLiteral<"wnba">, import("zod").ZodLiteral<"cwc">, import("zod").ZodLiteral<"global">]>;
|
|
380
380
|
createdAt: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"16hr">, import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"2025">, import("zod").ZodLiteral<"2024">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>;
|
|
381
|
-
sortBy: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"rating:asc">, import("zod").ZodLiteral<"rating:desc">, import("zod").ZodLiteral<"createdAt:asc">, import("zod").ZodLiteral<"createdAt:desc">, import("zod").ZodLiteral<"userLikes:asc">, import("zod").ZodLiteral<"userLikes:desc">]>>;
|
|
381
|
+
sortBy: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"rating:asc">, import("zod").ZodLiteral<"rating:desc">, import("zod").ZodLiteral<"createdAt:asc">, import("zod").ZodLiteral<"createdAt:desc">, import("zod").ZodLiteral<"userLikes:asc">, import("zod").ZodLiteral<"userLikes:desc">, import("zod").ZodLiteral<"game.startedAt:desc">]>>;
|
|
382
382
|
limit: import("zod").ZodOptional<import("zod").ZodString>;
|
|
383
383
|
offset: import("zod").ZodOptional<import("zod").ZodString>;
|
|
384
384
|
gameId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -403,7 +403,7 @@ export declare const searchRatingSchema: import("zod").ZodObject<{
|
|
|
403
403
|
limit?: string | undefined;
|
|
404
404
|
comment?: string | undefined;
|
|
405
405
|
teamId?: string | undefined;
|
|
406
|
-
sortBy?: "rating:asc" | "rating:desc" | "createdAt:asc" | "createdAt:desc" | "userLikes:asc" | "userLikes:desc" | undefined;
|
|
406
|
+
sortBy?: "rating:asc" | "rating:desc" | "createdAt:asc" | "createdAt:desc" | "userLikes:asc" | "userLikes:desc" | "game.startedAt:desc" | undefined;
|
|
407
407
|
userId?: string | undefined;
|
|
408
408
|
fanCategory?: "homeTeam" | "awayTeam" | "winningTeam" | "losingTeam" | "neutral" | undefined;
|
|
409
409
|
category?: "watched" | "attended" | "highlights" | "listened" | "partiallyWatched" | undefined;
|
|
@@ -423,7 +423,7 @@ export declare const searchRatingSchema: import("zod").ZodObject<{
|
|
|
423
423
|
limit?: string | undefined;
|
|
424
424
|
comment?: string | undefined;
|
|
425
425
|
teamId?: string | undefined;
|
|
426
|
-
sortBy?: "rating:asc" | "rating:desc" | "createdAt:asc" | "createdAt:desc" | "userLikes:asc" | "userLikes:desc" | undefined;
|
|
426
|
+
sortBy?: "rating:asc" | "rating:desc" | "createdAt:asc" | "createdAt:desc" | "userLikes:asc" | "userLikes:desc" | "game.startedAt:desc" | undefined;
|
|
427
427
|
userId?: string | undefined;
|
|
428
428
|
fanCategory?: "homeTeam" | "awayTeam" | "winningTeam" | "losingTeam" | "neutral" | undefined;
|
|
429
429
|
category?: "watched" | "attended" | "highlights" | "listened" | "partiallyWatched" | undefined;
|
|
@@ -1709,7 +1709,7 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
1709
1709
|
viewedChangelogs: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodBoolean>>;
|
|
1710
1710
|
lastSelectedLeague: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"nba">, import("zod").ZodLiteral<"ncaa">, import("zod").ZodLiteral<"nfl">, import("zod").ZodLiteral<"nhl">, import("zod").ZodLiteral<"mlb">, import("zod").ZodLiteral<"cbb">, import("zod").ZodLiteral<"cfb">, import("zod").ZodLiteral<"epl">, import("zod").ZodLiteral<"mls">, import("zod").ZodLiteral<"wnba">, import("zod").ZodLiteral<"cwc">, import("zod").ZodLiteral<"global">]>>;
|
|
1711
1711
|
lastSelectedFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"16hr">, import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"2025">, import("zod").ZodLiteral<"2024">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>;
|
|
1712
|
-
lastSelectedRatingFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"rating:asc">, import("zod").ZodLiteral<"rating:desc">, import("zod").ZodLiteral<"createdAt:asc">, import("zod").ZodLiteral<"createdAt:desc">, import("zod").ZodLiteral<"userLikes:asc">, import("zod").ZodLiteral<"userLikes:desc">]>>;
|
|
1712
|
+
lastSelectedRatingFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"rating:asc">, import("zod").ZodLiteral<"rating:desc">, import("zod").ZodLiteral<"createdAt:asc">, import("zod").ZodLiteral<"createdAt:desc">, import("zod").ZodLiteral<"userLikes:asc">, import("zod").ZodLiteral<"userLikes:desc">, import("zod").ZodLiteral<"game.startedAt:desc">]>>;
|
|
1713
1713
|
lastSelectedGamesFeedType: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"newest">, import("zod").ZodLiteral<"forYou">]>>;
|
|
1714
1714
|
lastSelectedCombinedFeedType: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"newest">, import("zod").ZodLiteral<"following">]>>;
|
|
1715
1715
|
creatorLeague: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"nba">, import("zod").ZodLiteral<"ncaa">, import("zod").ZodLiteral<"nfl">, import("zod").ZodLiteral<"nhl">, import("zod").ZodLiteral<"mlb">, import("zod").ZodLiteral<"cbb">, import("zod").ZodLiteral<"cfb">, import("zod").ZodLiteral<"epl">, import("zod").ZodLiteral<"mls">, import("zod").ZodLiteral<"wnba">, import("zod").ZodLiteral<"cwc">, import("zod").ZodLiteral<"global">]>>;
|
|
@@ -1842,6 +1842,7 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
1842
1842
|
context: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1843
1843
|
achievedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1844
1844
|
seen: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1845
|
+
isOngoing: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1845
1846
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1846
1847
|
target: number;
|
|
1847
1848
|
current: number;
|
|
@@ -1849,6 +1850,7 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
1849
1850
|
context?: string | undefined;
|
|
1850
1851
|
achievedAt?: number | undefined;
|
|
1851
1852
|
seen?: boolean | undefined;
|
|
1853
|
+
isOngoing?: boolean | undefined;
|
|
1852
1854
|
}, {
|
|
1853
1855
|
target: number;
|
|
1854
1856
|
current: number;
|
|
@@ -1856,6 +1858,7 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
1856
1858
|
context?: string | undefined;
|
|
1857
1859
|
achievedAt?: number | undefined;
|
|
1858
1860
|
seen?: boolean | undefined;
|
|
1861
|
+
isOngoing?: boolean | undefined;
|
|
1859
1862
|
}>>>;
|
|
1860
1863
|
seen: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1861
1864
|
type: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"global">, import("zod").ZodLiteral<"sport">, import("zod").ZodLiteral<"league">]>>;
|
|
@@ -1891,6 +1894,7 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
1891
1894
|
context?: string | undefined;
|
|
1892
1895
|
achievedAt?: number | undefined;
|
|
1893
1896
|
seen?: boolean | undefined;
|
|
1897
|
+
isOngoing?: boolean | undefined;
|
|
1894
1898
|
}> | undefined;
|
|
1895
1899
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
1896
1900
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -1924,6 +1928,7 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
1924
1928
|
context?: string | undefined;
|
|
1925
1929
|
achievedAt?: number | undefined;
|
|
1926
1930
|
seen?: boolean | undefined;
|
|
1931
|
+
isOngoing?: boolean | undefined;
|
|
1927
1932
|
}> | undefined;
|
|
1928
1933
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
1929
1934
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -2802,7 +2807,7 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
2802
2807
|
viewedChangelogs: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodBoolean>>;
|
|
2803
2808
|
lastSelectedLeague: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"nba">, import("zod").ZodLiteral<"ncaa">, import("zod").ZodLiteral<"nfl">, import("zod").ZodLiteral<"nhl">, import("zod").ZodLiteral<"mlb">, import("zod").ZodLiteral<"cbb">, import("zod").ZodLiteral<"cfb">, import("zod").ZodLiteral<"epl">, import("zod").ZodLiteral<"mls">, import("zod").ZodLiteral<"wnba">, import("zod").ZodLiteral<"cwc">, import("zod").ZodLiteral<"global">]>>;
|
|
2804
2809
|
lastSelectedFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"16hr">, import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"2025">, import("zod").ZodLiteral<"2024">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>;
|
|
2805
|
-
lastSelectedRatingFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"rating:asc">, import("zod").ZodLiteral<"rating:desc">, import("zod").ZodLiteral<"createdAt:asc">, import("zod").ZodLiteral<"createdAt:desc">, import("zod").ZodLiteral<"userLikes:asc">, import("zod").ZodLiteral<"userLikes:desc">]>>;
|
|
2810
|
+
lastSelectedRatingFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"rating:asc">, import("zod").ZodLiteral<"rating:desc">, import("zod").ZodLiteral<"createdAt:asc">, import("zod").ZodLiteral<"createdAt:desc">, import("zod").ZodLiteral<"userLikes:asc">, import("zod").ZodLiteral<"userLikes:desc">, import("zod").ZodLiteral<"game.startedAt:desc">]>>;
|
|
2806
2811
|
lastSelectedGamesFeedType: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"newest">, import("zod").ZodLiteral<"forYou">]>>;
|
|
2807
2812
|
lastSelectedCombinedFeedType: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"newest">, import("zod").ZodLiteral<"following">]>>;
|
|
2808
2813
|
creatorLeague: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"nba">, import("zod").ZodLiteral<"ncaa">, import("zod").ZodLiteral<"nfl">, import("zod").ZodLiteral<"nhl">, import("zod").ZodLiteral<"mlb">, import("zod").ZodLiteral<"cbb">, import("zod").ZodLiteral<"cfb">, import("zod").ZodLiteral<"epl">, import("zod").ZodLiteral<"mls">, import("zod").ZodLiteral<"wnba">, import("zod").ZodLiteral<"cwc">, import("zod").ZodLiteral<"global">]>>;
|
|
@@ -2935,6 +2940,7 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
2935
2940
|
context: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2936
2941
|
achievedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2937
2942
|
seen: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2943
|
+
isOngoing: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2938
2944
|
}, "strip", import("zod").ZodTypeAny, {
|
|
2939
2945
|
target: number;
|
|
2940
2946
|
current: number;
|
|
@@ -2942,6 +2948,7 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
2942
2948
|
context?: string | undefined;
|
|
2943
2949
|
achievedAt?: number | undefined;
|
|
2944
2950
|
seen?: boolean | undefined;
|
|
2951
|
+
isOngoing?: boolean | undefined;
|
|
2945
2952
|
}, {
|
|
2946
2953
|
target: number;
|
|
2947
2954
|
current: number;
|
|
@@ -2949,6 +2956,7 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
2949
2956
|
context?: string | undefined;
|
|
2950
2957
|
achievedAt?: number | undefined;
|
|
2951
2958
|
seen?: boolean | undefined;
|
|
2959
|
+
isOngoing?: boolean | undefined;
|
|
2952
2960
|
}>>>;
|
|
2953
2961
|
seen: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2954
2962
|
type: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"global">, import("zod").ZodLiteral<"sport">, import("zod").ZodLiteral<"league">]>>;
|
|
@@ -2984,6 +2992,7 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
2984
2992
|
context?: string | undefined;
|
|
2985
2993
|
achievedAt?: number | undefined;
|
|
2986
2994
|
seen?: boolean | undefined;
|
|
2995
|
+
isOngoing?: boolean | undefined;
|
|
2987
2996
|
}> | undefined;
|
|
2988
2997
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
2989
2998
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -3017,6 +3026,7 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
3017
3026
|
context?: string | undefined;
|
|
3018
3027
|
achievedAt?: number | undefined;
|
|
3019
3028
|
seen?: boolean | undefined;
|
|
3029
|
+
isOngoing?: boolean | undefined;
|
|
3020
3030
|
}> | undefined;
|
|
3021
3031
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
3022
3032
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -3966,7 +3976,7 @@ export declare const threadCommentLikeSchema: import("zod").ZodObject<{
|
|
|
3966
3976
|
viewedChangelogs: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodBoolean>>;
|
|
3967
3977
|
lastSelectedLeague: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"nba">, import("zod").ZodLiteral<"ncaa">, import("zod").ZodLiteral<"nfl">, import("zod").ZodLiteral<"nhl">, import("zod").ZodLiteral<"mlb">, import("zod").ZodLiteral<"cbb">, import("zod").ZodLiteral<"cfb">, import("zod").ZodLiteral<"epl">, import("zod").ZodLiteral<"mls">, import("zod").ZodLiteral<"wnba">, import("zod").ZodLiteral<"cwc">, import("zod").ZodLiteral<"global">]>>;
|
|
3968
3978
|
lastSelectedFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"16hr">, import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"2025">, import("zod").ZodLiteral<"2024">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>;
|
|
3969
|
-
lastSelectedRatingFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"rating:asc">, import("zod").ZodLiteral<"rating:desc">, import("zod").ZodLiteral<"createdAt:asc">, import("zod").ZodLiteral<"createdAt:desc">, import("zod").ZodLiteral<"userLikes:asc">, import("zod").ZodLiteral<"userLikes:desc">]>>;
|
|
3979
|
+
lastSelectedRatingFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"rating:asc">, import("zod").ZodLiteral<"rating:desc">, import("zod").ZodLiteral<"createdAt:asc">, import("zod").ZodLiteral<"createdAt:desc">, import("zod").ZodLiteral<"userLikes:asc">, import("zod").ZodLiteral<"userLikes:desc">, import("zod").ZodLiteral<"game.startedAt:desc">]>>;
|
|
3970
3980
|
lastSelectedGamesFeedType: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"newest">, import("zod").ZodLiteral<"forYou">]>>;
|
|
3971
3981
|
lastSelectedCombinedFeedType: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"newest">, import("zod").ZodLiteral<"following">]>>;
|
|
3972
3982
|
creatorLeague: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"nba">, import("zod").ZodLiteral<"ncaa">, import("zod").ZodLiteral<"nfl">, import("zod").ZodLiteral<"nhl">, import("zod").ZodLiteral<"mlb">, import("zod").ZodLiteral<"cbb">, import("zod").ZodLiteral<"cfb">, import("zod").ZodLiteral<"epl">, import("zod").ZodLiteral<"mls">, import("zod").ZodLiteral<"wnba">, import("zod").ZodLiteral<"cwc">, import("zod").ZodLiteral<"global">]>>;
|
|
@@ -4099,6 +4109,7 @@ export declare const threadCommentLikeSchema: import("zod").ZodObject<{
|
|
|
4099
4109
|
context: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4100
4110
|
achievedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4101
4111
|
seen: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4112
|
+
isOngoing: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4102
4113
|
}, "strip", import("zod").ZodTypeAny, {
|
|
4103
4114
|
target: number;
|
|
4104
4115
|
current: number;
|
|
@@ -4106,6 +4117,7 @@ export declare const threadCommentLikeSchema: import("zod").ZodObject<{
|
|
|
4106
4117
|
context?: string | undefined;
|
|
4107
4118
|
achievedAt?: number | undefined;
|
|
4108
4119
|
seen?: boolean | undefined;
|
|
4120
|
+
isOngoing?: boolean | undefined;
|
|
4109
4121
|
}, {
|
|
4110
4122
|
target: number;
|
|
4111
4123
|
current: number;
|
|
@@ -4113,6 +4125,7 @@ export declare const threadCommentLikeSchema: import("zod").ZodObject<{
|
|
|
4113
4125
|
context?: string | undefined;
|
|
4114
4126
|
achievedAt?: number | undefined;
|
|
4115
4127
|
seen?: boolean | undefined;
|
|
4128
|
+
isOngoing?: boolean | undefined;
|
|
4116
4129
|
}>>>;
|
|
4117
4130
|
seen: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4118
4131
|
type: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"global">, import("zod").ZodLiteral<"sport">, import("zod").ZodLiteral<"league">]>>;
|
|
@@ -4148,6 +4161,7 @@ export declare const threadCommentLikeSchema: import("zod").ZodObject<{
|
|
|
4148
4161
|
context?: string | undefined;
|
|
4149
4162
|
achievedAt?: number | undefined;
|
|
4150
4163
|
seen?: boolean | undefined;
|
|
4164
|
+
isOngoing?: boolean | undefined;
|
|
4151
4165
|
}> | undefined;
|
|
4152
4166
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
4153
4167
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -4181,6 +4195,7 @@ export declare const threadCommentLikeSchema: import("zod").ZodObject<{
|
|
|
4181
4195
|
context?: string | undefined;
|
|
4182
4196
|
achievedAt?: number | undefined;
|
|
4183
4197
|
seen?: boolean | undefined;
|
|
4198
|
+
isOngoing?: boolean | undefined;
|
|
4184
4199
|
}> | undefined;
|
|
4185
4200
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
4186
4201
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare const timeFilterSchema: import("zod").ZodUnion<[import("zod").ZodLiteral<"16hr">, import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"2025">, import("zod").ZodLiteral<"2024">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>;
|
|
2
2
|
export declare const calendarTimeFilterSchema: import("zod").ZodUnion<[import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"Last Week">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"2025">, import("zod").ZodLiteral<"2024">, import("zod").ZodLiteral<"All Time">]>;
|
|
3
|
-
export declare const ratingSortSchema: import("zod").ZodUnion<[import("zod").ZodLiteral<"rating:asc">, import("zod").ZodLiteral<"rating:desc">, import("zod").ZodLiteral<"createdAt:asc">, import("zod").ZodLiteral<"createdAt:desc">, import("zod").ZodLiteral<"userLikes:asc">, import("zod").ZodLiteral<"userLikes:desc">]>;
|
|
3
|
+
export declare const ratingSortSchema: import("zod").ZodUnion<[import("zod").ZodLiteral<"rating:asc">, import("zod").ZodLiteral<"rating:desc">, import("zod").ZodLiteral<"createdAt:asc">, import("zod").ZodLiteral<"createdAt:desc">, import("zod").ZodLiteral<"userLikes:asc">, import("zod").ZodLiteral<"userLikes:desc">, import("zod").ZodLiteral<"game.startedAt:desc">]>;
|
|
4
4
|
export declare const leagueSlug: import("zod").ZodUnion<[import("zod").ZodLiteral<"nba">, import("zod").ZodLiteral<"ncaa">, import("zod").ZodLiteral<"nfl">, import("zod").ZodLiteral<"nhl">, import("zod").ZodLiteral<"mlb">, import("zod").ZodLiteral<"cbb">, import("zod").ZodLiteral<"cfb">, import("zod").ZodLiteral<"epl">, import("zod").ZodLiteral<"mls">, import("zod").ZodLiteral<"wnba">, import("zod").ZodLiteral<"cwc">, import("zod").ZodLiteral<"global">]>;
|
|
5
5
|
export declare const seasonGroupingSchema: import("zod").ZodUnion<[import("zod").ZodLiteral<"combined">, import("zod").ZodLiteral<"regularSeason">, import("zod").ZodLiteral<"playoffs">]>;
|
|
@@ -34,6 +34,7 @@ exports.ratingSortSchema = (0, zod_1.union)([
|
|
|
34
34
|
(0, zod_1.literal)("createdAt:desc"),
|
|
35
35
|
(0, zod_1.literal)("userLikes:asc"),
|
|
36
36
|
(0, zod_1.literal)("userLikes:desc"),
|
|
37
|
+
(0, zod_1.literal)("game.startedAt:desc"),
|
|
37
38
|
]);
|
|
38
39
|
exports.leagueSlug = (0, zod_1.union)([
|
|
39
40
|
(0, zod_1.literal)("nba"),
|
|
@@ -1030,7 +1030,7 @@ export declare const stadiumRatingSchema: z.ZodObject<{
|
|
|
1030
1030
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
1031
1031
|
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">]>>;
|
|
1032
1032
|
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">]>>;
|
|
1033
|
-
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">]>>;
|
|
1033
|
+
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">]>>;
|
|
1034
1034
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
1035
1035
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
1036
1036
|
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">]>>;
|
|
@@ -1163,6 +1163,7 @@ export declare const stadiumRatingSchema: z.ZodObject<{
|
|
|
1163
1163
|
context: z.ZodOptional<z.ZodString>;
|
|
1164
1164
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
1165
1165
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
1166
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
1166
1167
|
}, "strip", z.ZodTypeAny, {
|
|
1167
1168
|
target: number;
|
|
1168
1169
|
current: number;
|
|
@@ -1170,6 +1171,7 @@ export declare const stadiumRatingSchema: z.ZodObject<{
|
|
|
1170
1171
|
context?: string | undefined;
|
|
1171
1172
|
achievedAt?: number | undefined;
|
|
1172
1173
|
seen?: boolean | undefined;
|
|
1174
|
+
isOngoing?: boolean | undefined;
|
|
1173
1175
|
}, {
|
|
1174
1176
|
target: number;
|
|
1175
1177
|
current: number;
|
|
@@ -1177,6 +1179,7 @@ export declare const stadiumRatingSchema: z.ZodObject<{
|
|
|
1177
1179
|
context?: string | undefined;
|
|
1178
1180
|
achievedAt?: number | undefined;
|
|
1179
1181
|
seen?: boolean | undefined;
|
|
1182
|
+
isOngoing?: boolean | undefined;
|
|
1180
1183
|
}>>>;
|
|
1181
1184
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
1182
1185
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -1212,6 +1215,7 @@ export declare const stadiumRatingSchema: z.ZodObject<{
|
|
|
1212
1215
|
context?: string | undefined;
|
|
1213
1216
|
achievedAt?: number | undefined;
|
|
1214
1217
|
seen?: boolean | undefined;
|
|
1218
|
+
isOngoing?: boolean | undefined;
|
|
1215
1219
|
}> | undefined;
|
|
1216
1220
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
1217
1221
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -1245,6 +1249,7 @@ export declare const stadiumRatingSchema: z.ZodObject<{
|
|
|
1245
1249
|
context?: string | undefined;
|
|
1246
1250
|
achievedAt?: number | undefined;
|
|
1247
1251
|
seen?: boolean | undefined;
|
|
1252
|
+
isOngoing?: boolean | undefined;
|
|
1248
1253
|
}> | undefined;
|
|
1249
1254
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
1250
1255
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -1854,7 +1859,7 @@ export declare const stadiumRatingSchema: z.ZodObject<{
|
|
|
1854
1859
|
gamesAttended?: number | undefined;
|
|
1855
1860
|
}>;
|
|
1856
1861
|
export declare const searchStadiumRatingSchema: z.ZodObject<{
|
|
1857
|
-
sortBy: 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">]>>;
|
|
1862
|
+
sortBy: 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">]>>;
|
|
1858
1863
|
limit: z.ZodOptional<z.ZodString>;
|
|
1859
1864
|
offset: z.ZodOptional<z.ZodString>;
|
|
1860
1865
|
showEmptyRatings: z.ZodOptional<z.ZodString>;
|
|
@@ -1869,7 +1874,7 @@ export declare const searchStadiumRatingSchema: z.ZodObject<{
|
|
|
1869
1874
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
1870
1875
|
username?: string | undefined;
|
|
1871
1876
|
limit?: string | undefined;
|
|
1872
|
-
sortBy?: "rating:asc" | "rating:desc" | "createdAt:asc" | "createdAt:desc" | "userLikes:asc" | "userLikes:desc" | undefined;
|
|
1877
|
+
sortBy?: "rating:asc" | "rating:desc" | "createdAt:asc" | "createdAt:desc" | "userLikes:asc" | "userLikes:desc" | "game.startedAt:desc" | undefined;
|
|
1873
1878
|
userId?: string | undefined;
|
|
1874
1879
|
showEmptyRatings?: string | undefined;
|
|
1875
1880
|
onlyUserRatings?: string | undefined;
|
|
@@ -1879,7 +1884,7 @@ export declare const searchStadiumRatingSchema: z.ZodObject<{
|
|
|
1879
1884
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
1880
1885
|
username?: string | undefined;
|
|
1881
1886
|
limit?: string | undefined;
|
|
1882
|
-
sortBy?: "rating:asc" | "rating:desc" | "createdAt:asc" | "createdAt:desc" | "userLikes:asc" | "userLikes:desc" | undefined;
|
|
1887
|
+
sortBy?: "rating:asc" | "rating:desc" | "createdAt:asc" | "createdAt:desc" | "userLikes:asc" | "userLikes:desc" | "game.startedAt:desc" | undefined;
|
|
1883
1888
|
userId?: string | undefined;
|
|
1884
1889
|
showEmptyRatings?: string | undefined;
|
|
1885
1890
|
onlyUserRatings?: string | undefined;
|
|
@@ -2664,7 +2669,7 @@ export declare const createStadiumRatingSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
2664
2669
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
2665
2670
|
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">]>>;
|
|
2666
2671
|
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">]>>;
|
|
2667
|
-
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">]>>;
|
|
2672
|
+
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">]>>;
|
|
2668
2673
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
2669
2674
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
2670
2675
|
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">]>>;
|
|
@@ -2797,6 +2802,7 @@ export declare const createStadiumRatingSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
2797
2802
|
context: z.ZodOptional<z.ZodString>;
|
|
2798
2803
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
2799
2804
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
2805
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
2800
2806
|
}, "strip", z.ZodTypeAny, {
|
|
2801
2807
|
target: number;
|
|
2802
2808
|
current: number;
|
|
@@ -2804,6 +2810,7 @@ export declare const createStadiumRatingSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
2804
2810
|
context?: string | undefined;
|
|
2805
2811
|
achievedAt?: number | undefined;
|
|
2806
2812
|
seen?: boolean | undefined;
|
|
2813
|
+
isOngoing?: boolean | undefined;
|
|
2807
2814
|
}, {
|
|
2808
2815
|
target: number;
|
|
2809
2816
|
current: number;
|
|
@@ -2811,6 +2818,7 @@ export declare const createStadiumRatingSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
2811
2818
|
context?: string | undefined;
|
|
2812
2819
|
achievedAt?: number | undefined;
|
|
2813
2820
|
seen?: boolean | undefined;
|
|
2821
|
+
isOngoing?: boolean | undefined;
|
|
2814
2822
|
}>>>;
|
|
2815
2823
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
2816
2824
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -2846,6 +2854,7 @@ export declare const createStadiumRatingSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
2846
2854
|
context?: string | undefined;
|
|
2847
2855
|
achievedAt?: number | undefined;
|
|
2848
2856
|
seen?: boolean | undefined;
|
|
2857
|
+
isOngoing?: boolean | undefined;
|
|
2849
2858
|
}> | undefined;
|
|
2850
2859
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
2851
2860
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -2879,6 +2888,7 @@ export declare const createStadiumRatingSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
2879
2888
|
context?: string | undefined;
|
|
2880
2889
|
achievedAt?: number | undefined;
|
|
2881
2890
|
seen?: boolean | undefined;
|
|
2891
|
+
isOngoing?: boolean | undefined;
|
|
2882
2892
|
}> | undefined;
|
|
2883
2893
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
2884
2894
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -4357,7 +4367,7 @@ export declare const stadiumThreadCommentSchema: z.ZodObject<{
|
|
|
4357
4367
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
4358
4368
|
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">]>>;
|
|
4359
4369
|
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">]>>;
|
|
4360
|
-
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">]>>;
|
|
4370
|
+
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">]>>;
|
|
4361
4371
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
4362
4372
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
4363
4373
|
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">]>>;
|
|
@@ -4490,6 +4500,7 @@ export declare const stadiumThreadCommentSchema: z.ZodObject<{
|
|
|
4490
4500
|
context: z.ZodOptional<z.ZodString>;
|
|
4491
4501
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
4492
4502
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
4503
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
4493
4504
|
}, "strip", z.ZodTypeAny, {
|
|
4494
4505
|
target: number;
|
|
4495
4506
|
current: number;
|
|
@@ -4497,6 +4508,7 @@ export declare const stadiumThreadCommentSchema: z.ZodObject<{
|
|
|
4497
4508
|
context?: string | undefined;
|
|
4498
4509
|
achievedAt?: number | undefined;
|
|
4499
4510
|
seen?: boolean | undefined;
|
|
4511
|
+
isOngoing?: boolean | undefined;
|
|
4500
4512
|
}, {
|
|
4501
4513
|
target: number;
|
|
4502
4514
|
current: number;
|
|
@@ -4504,6 +4516,7 @@ export declare const stadiumThreadCommentSchema: z.ZodObject<{
|
|
|
4504
4516
|
context?: string | undefined;
|
|
4505
4517
|
achievedAt?: number | undefined;
|
|
4506
4518
|
seen?: boolean | undefined;
|
|
4519
|
+
isOngoing?: boolean | undefined;
|
|
4507
4520
|
}>>>;
|
|
4508
4521
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
4509
4522
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -4539,6 +4552,7 @@ export declare const stadiumThreadCommentSchema: z.ZodObject<{
|
|
|
4539
4552
|
context?: string | undefined;
|
|
4540
4553
|
achievedAt?: number | undefined;
|
|
4541
4554
|
seen?: boolean | undefined;
|
|
4555
|
+
isOngoing?: boolean | undefined;
|
|
4542
4556
|
}> | undefined;
|
|
4543
4557
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
4544
4558
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -4572,6 +4586,7 @@ export declare const stadiumThreadCommentSchema: z.ZodObject<{
|
|
|
4572
4586
|
context?: string | undefined;
|
|
4573
4587
|
achievedAt?: number | undefined;
|
|
4574
4588
|
seen?: boolean | undefined;
|
|
4589
|
+
isOngoing?: boolean | undefined;
|
|
4575
4590
|
}> | undefined;
|
|
4576
4591
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
4577
4592
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -5450,7 +5465,7 @@ export declare const stadiumThreadCommentSchema: z.ZodObject<{
|
|
|
5450
5465
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
5451
5466
|
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">]>>;
|
|
5452
5467
|
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">]>>;
|
|
5453
|
-
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">]>>;
|
|
5468
|
+
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">]>>;
|
|
5454
5469
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
5455
5470
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
5456
5471
|
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">]>>;
|
|
@@ -5583,6 +5598,7 @@ export declare const stadiumThreadCommentSchema: z.ZodObject<{
|
|
|
5583
5598
|
context: z.ZodOptional<z.ZodString>;
|
|
5584
5599
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
5585
5600
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
5601
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
5586
5602
|
}, "strip", z.ZodTypeAny, {
|
|
5587
5603
|
target: number;
|
|
5588
5604
|
current: number;
|
|
@@ -5590,6 +5606,7 @@ export declare const stadiumThreadCommentSchema: z.ZodObject<{
|
|
|
5590
5606
|
context?: string | undefined;
|
|
5591
5607
|
achievedAt?: number | undefined;
|
|
5592
5608
|
seen?: boolean | undefined;
|
|
5609
|
+
isOngoing?: boolean | undefined;
|
|
5593
5610
|
}, {
|
|
5594
5611
|
target: number;
|
|
5595
5612
|
current: number;
|
|
@@ -5597,6 +5614,7 @@ export declare const stadiumThreadCommentSchema: z.ZodObject<{
|
|
|
5597
5614
|
context?: string | undefined;
|
|
5598
5615
|
achievedAt?: number | undefined;
|
|
5599
5616
|
seen?: boolean | undefined;
|
|
5617
|
+
isOngoing?: boolean | undefined;
|
|
5600
5618
|
}>>>;
|
|
5601
5619
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
5602
5620
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -5632,6 +5650,7 @@ export declare const stadiumThreadCommentSchema: z.ZodObject<{
|
|
|
5632
5650
|
context?: string | undefined;
|
|
5633
5651
|
achievedAt?: number | undefined;
|
|
5634
5652
|
seen?: boolean | undefined;
|
|
5653
|
+
isOngoing?: boolean | undefined;
|
|
5635
5654
|
}> | undefined;
|
|
5636
5655
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
5637
5656
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -5665,6 +5684,7 @@ export declare const stadiumThreadCommentSchema: z.ZodObject<{
|
|
|
5665
5684
|
context?: string | undefined;
|
|
5666
5685
|
achievedAt?: number | undefined;
|
|
5667
5686
|
seen?: boolean | undefined;
|
|
5687
|
+
isOngoing?: boolean | undefined;
|
|
5668
5688
|
}> | undefined;
|
|
5669
5689
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
5670
5690
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|