rategame-shared 1.1.272 → 1.1.274
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 +380 -0
- package/dist/schemas/game.d.ts +4159 -2639
- package/dist/schemas/game.js +11 -11
- package/dist/schemas/list.d.ts +380 -0
- package/dist/schemas/moderation.d.ts +304 -0
- package/dist/schemas/notification.d.ts +198 -198
- package/dist/schemas/rating.d.ts +558 -330
- package/dist/schemas/stadium.d.ts +612 -308
- package/dist/schemas/user.d.ts +1034 -725
- package/dist/schemas/user.js +24 -0
- package/dist/schemas/userEvent.d.ts +228 -0
- package/dist/schemas/voting.d.ts +228 -0
- package/package.json +1 -1
|
@@ -691,14 +691,90 @@ export declare const banInfoSchema: z.ZodObject<{
|
|
|
691
691
|
allGames: z.ZodOptional<z.ZodBoolean>;
|
|
692
692
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
693
693
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
694
|
+
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
695
|
+
leaderboardChanges: z.ZodOptional<z.ZodBoolean>;
|
|
696
|
+
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
697
|
+
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
698
|
+
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
699
|
+
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
700
|
+
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
701
|
+
eventLikes: z.ZodOptional<z.ZodBoolean>;
|
|
702
|
+
commentLikes: z.ZodOptional<z.ZodBoolean>;
|
|
703
|
+
trendingGames: z.ZodOptional<z.ZodBoolean>;
|
|
704
|
+
gameChanges: z.ZodOptional<z.ZodObject<{
|
|
705
|
+
topRatedGameChanges: z.ZodOptional<z.ZodUnion<[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<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
706
|
+
mostRatedGameChanges: z.ZodOptional<z.ZodUnion<[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<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
707
|
+
worstRatedGameChanges: z.ZodOptional<z.ZodUnion<[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<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
708
|
+
}, "strip", z.ZodTypeAny, {
|
|
709
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
710
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
711
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
712
|
+
}, {
|
|
713
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
714
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
715
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
716
|
+
}>>;
|
|
717
|
+
gameTopLists: z.ZodOptional<z.ZodObject<{
|
|
718
|
+
topRated: z.ZodOptional<z.ZodUnion<[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<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
719
|
+
mostRated: z.ZodOptional<z.ZodUnion<[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<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
720
|
+
worstRated: z.ZodOptional<z.ZodUnion<[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<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
721
|
+
}, "strip", z.ZodTypeAny, {
|
|
722
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
723
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
724
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
725
|
+
}, {
|
|
726
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
727
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
728
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
729
|
+
}>>;
|
|
694
730
|
}, "strip", z.ZodTypeAny, {
|
|
695
731
|
allGames?: boolean | undefined;
|
|
696
732
|
favoriteLeagues?: boolean | undefined;
|
|
697
733
|
favoriteTeams?: boolean | undefined;
|
|
734
|
+
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
735
|
+
leaderboardChanges?: boolean | undefined;
|
|
736
|
+
chatReplies?: boolean | undefined;
|
|
737
|
+
repliesToRatings?: boolean | undefined;
|
|
738
|
+
repliesToComments?: boolean | undefined;
|
|
739
|
+
ratingLikes?: boolean | undefined;
|
|
740
|
+
listLikes?: boolean | undefined;
|
|
741
|
+
eventLikes?: boolean | undefined;
|
|
742
|
+
commentLikes?: boolean | undefined;
|
|
743
|
+
trendingGames?: boolean | undefined;
|
|
744
|
+
gameChanges?: {
|
|
745
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
746
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
747
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
748
|
+
} | undefined;
|
|
749
|
+
gameTopLists?: {
|
|
750
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
751
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
752
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
753
|
+
} | undefined;
|
|
698
754
|
}, {
|
|
699
755
|
allGames?: boolean | undefined;
|
|
700
756
|
favoriteLeagues?: boolean | undefined;
|
|
701
757
|
favoriteTeams?: boolean | undefined;
|
|
758
|
+
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
759
|
+
leaderboardChanges?: boolean | undefined;
|
|
760
|
+
chatReplies?: boolean | undefined;
|
|
761
|
+
repliesToRatings?: boolean | undefined;
|
|
762
|
+
repliesToComments?: boolean | undefined;
|
|
763
|
+
ratingLikes?: boolean | undefined;
|
|
764
|
+
listLikes?: boolean | undefined;
|
|
765
|
+
eventLikes?: boolean | undefined;
|
|
766
|
+
commentLikes?: boolean | undefined;
|
|
767
|
+
trendingGames?: boolean | undefined;
|
|
768
|
+
gameChanges?: {
|
|
769
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
770
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
771
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
772
|
+
} | undefined;
|
|
773
|
+
gameTopLists?: {
|
|
774
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
775
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
776
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
777
|
+
} | undefined;
|
|
702
778
|
}>>;
|
|
703
779
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
704
780
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -1655,14 +1731,90 @@ export declare const bannedUserSchema: z.ZodObject<{
|
|
|
1655
1731
|
allGames: z.ZodOptional<z.ZodBoolean>;
|
|
1656
1732
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
1657
1733
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
1734
|
+
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
1735
|
+
leaderboardChanges: z.ZodOptional<z.ZodBoolean>;
|
|
1736
|
+
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
1737
|
+
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
1738
|
+
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
1739
|
+
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
1740
|
+
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
1741
|
+
eventLikes: z.ZodOptional<z.ZodBoolean>;
|
|
1742
|
+
commentLikes: z.ZodOptional<z.ZodBoolean>;
|
|
1743
|
+
trendingGames: z.ZodOptional<z.ZodBoolean>;
|
|
1744
|
+
gameChanges: z.ZodOptional<z.ZodObject<{
|
|
1745
|
+
topRatedGameChanges: z.ZodOptional<z.ZodUnion<[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<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
1746
|
+
mostRatedGameChanges: z.ZodOptional<z.ZodUnion<[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<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
1747
|
+
worstRatedGameChanges: z.ZodOptional<z.ZodUnion<[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<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
1748
|
+
}, "strip", z.ZodTypeAny, {
|
|
1749
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1750
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1751
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1752
|
+
}, {
|
|
1753
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1754
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1755
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1756
|
+
}>>;
|
|
1757
|
+
gameTopLists: z.ZodOptional<z.ZodObject<{
|
|
1758
|
+
topRated: z.ZodOptional<z.ZodUnion<[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<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
1759
|
+
mostRated: z.ZodOptional<z.ZodUnion<[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<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
1760
|
+
worstRated: z.ZodOptional<z.ZodUnion<[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<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
1761
|
+
}, "strip", z.ZodTypeAny, {
|
|
1762
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1763
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1764
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1765
|
+
}, {
|
|
1766
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1767
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1768
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1769
|
+
}>>;
|
|
1658
1770
|
}, "strip", z.ZodTypeAny, {
|
|
1659
1771
|
allGames?: boolean | undefined;
|
|
1660
1772
|
favoriteLeagues?: boolean | undefined;
|
|
1661
1773
|
favoriteTeams?: boolean | undefined;
|
|
1774
|
+
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
1775
|
+
leaderboardChanges?: boolean | undefined;
|
|
1776
|
+
chatReplies?: boolean | undefined;
|
|
1777
|
+
repliesToRatings?: boolean | undefined;
|
|
1778
|
+
repliesToComments?: boolean | undefined;
|
|
1779
|
+
ratingLikes?: boolean | undefined;
|
|
1780
|
+
listLikes?: boolean | undefined;
|
|
1781
|
+
eventLikes?: boolean | undefined;
|
|
1782
|
+
commentLikes?: boolean | undefined;
|
|
1783
|
+
trendingGames?: boolean | undefined;
|
|
1784
|
+
gameChanges?: {
|
|
1785
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1786
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1787
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1788
|
+
} | undefined;
|
|
1789
|
+
gameTopLists?: {
|
|
1790
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1791
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1792
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1793
|
+
} | undefined;
|
|
1662
1794
|
}, {
|
|
1663
1795
|
allGames?: boolean | undefined;
|
|
1664
1796
|
favoriteLeagues?: boolean | undefined;
|
|
1665
1797
|
favoriteTeams?: boolean | undefined;
|
|
1798
|
+
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
1799
|
+
leaderboardChanges?: boolean | undefined;
|
|
1800
|
+
chatReplies?: boolean | undefined;
|
|
1801
|
+
repliesToRatings?: boolean | undefined;
|
|
1802
|
+
repliesToComments?: boolean | undefined;
|
|
1803
|
+
ratingLikes?: boolean | undefined;
|
|
1804
|
+
listLikes?: boolean | undefined;
|
|
1805
|
+
eventLikes?: boolean | undefined;
|
|
1806
|
+
commentLikes?: boolean | undefined;
|
|
1807
|
+
trendingGames?: boolean | undefined;
|
|
1808
|
+
gameChanges?: {
|
|
1809
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1810
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1811
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1812
|
+
} | undefined;
|
|
1813
|
+
gameTopLists?: {
|
|
1814
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1815
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1816
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1817
|
+
} | undefined;
|
|
1666
1818
|
}>>;
|
|
1667
1819
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1668
1820
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -2655,14 +2807,90 @@ export declare const bannedUsersResponseSchema: z.ZodObject<{
|
|
|
2655
2807
|
allGames: z.ZodOptional<z.ZodBoolean>;
|
|
2656
2808
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
2657
2809
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
2810
|
+
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
2811
|
+
leaderboardChanges: z.ZodOptional<z.ZodBoolean>;
|
|
2812
|
+
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
2813
|
+
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
2814
|
+
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
2815
|
+
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
2816
|
+
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
2817
|
+
eventLikes: z.ZodOptional<z.ZodBoolean>;
|
|
2818
|
+
commentLikes: z.ZodOptional<z.ZodBoolean>;
|
|
2819
|
+
trendingGames: z.ZodOptional<z.ZodBoolean>;
|
|
2820
|
+
gameChanges: z.ZodOptional<z.ZodObject<{
|
|
2821
|
+
topRatedGameChanges: z.ZodOptional<z.ZodUnion<[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<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
2822
|
+
mostRatedGameChanges: z.ZodOptional<z.ZodUnion<[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<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
2823
|
+
worstRatedGameChanges: z.ZodOptional<z.ZodUnion<[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<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
2824
|
+
}, "strip", z.ZodTypeAny, {
|
|
2825
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2826
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2827
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2828
|
+
}, {
|
|
2829
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2830
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2831
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2832
|
+
}>>;
|
|
2833
|
+
gameTopLists: z.ZodOptional<z.ZodObject<{
|
|
2834
|
+
topRated: z.ZodOptional<z.ZodUnion<[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<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
2835
|
+
mostRated: z.ZodOptional<z.ZodUnion<[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<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
2836
|
+
worstRated: z.ZodOptional<z.ZodUnion<[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<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
2837
|
+
}, "strip", z.ZodTypeAny, {
|
|
2838
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2839
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2840
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2841
|
+
}, {
|
|
2842
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2843
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2844
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2845
|
+
}>>;
|
|
2658
2846
|
}, "strip", z.ZodTypeAny, {
|
|
2659
2847
|
allGames?: boolean | undefined;
|
|
2660
2848
|
favoriteLeagues?: boolean | undefined;
|
|
2661
2849
|
favoriteTeams?: boolean | undefined;
|
|
2850
|
+
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
2851
|
+
leaderboardChanges?: boolean | undefined;
|
|
2852
|
+
chatReplies?: boolean | undefined;
|
|
2853
|
+
repliesToRatings?: boolean | undefined;
|
|
2854
|
+
repliesToComments?: boolean | undefined;
|
|
2855
|
+
ratingLikes?: boolean | undefined;
|
|
2856
|
+
listLikes?: boolean | undefined;
|
|
2857
|
+
eventLikes?: boolean | undefined;
|
|
2858
|
+
commentLikes?: boolean | undefined;
|
|
2859
|
+
trendingGames?: boolean | undefined;
|
|
2860
|
+
gameChanges?: {
|
|
2861
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2862
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2863
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2864
|
+
} | undefined;
|
|
2865
|
+
gameTopLists?: {
|
|
2866
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2867
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2868
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2869
|
+
} | undefined;
|
|
2662
2870
|
}, {
|
|
2663
2871
|
allGames?: boolean | undefined;
|
|
2664
2872
|
favoriteLeagues?: boolean | undefined;
|
|
2665
2873
|
favoriteTeams?: boolean | undefined;
|
|
2874
|
+
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
2875
|
+
leaderboardChanges?: boolean | undefined;
|
|
2876
|
+
chatReplies?: boolean | undefined;
|
|
2877
|
+
repliesToRatings?: boolean | undefined;
|
|
2878
|
+
repliesToComments?: boolean | undefined;
|
|
2879
|
+
ratingLikes?: boolean | undefined;
|
|
2880
|
+
listLikes?: boolean | undefined;
|
|
2881
|
+
eventLikes?: boolean | undefined;
|
|
2882
|
+
commentLikes?: boolean | undefined;
|
|
2883
|
+
trendingGames?: boolean | undefined;
|
|
2884
|
+
gameChanges?: {
|
|
2885
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2886
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2887
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2888
|
+
} | undefined;
|
|
2889
|
+
gameTopLists?: {
|
|
2890
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2891
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2892
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2893
|
+
} | undefined;
|
|
2666
2894
|
}>>;
|
|
2667
2895
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2668
2896
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -3699,14 +3927,90 @@ export declare const banStatusResponseSchema: z.ZodObject<{
|
|
|
3699
3927
|
allGames: z.ZodOptional<z.ZodBoolean>;
|
|
3700
3928
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
3701
3929
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
3930
|
+
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
3931
|
+
leaderboardChanges: z.ZodOptional<z.ZodBoolean>;
|
|
3932
|
+
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
3933
|
+
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
3934
|
+
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
3935
|
+
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
3936
|
+
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
3937
|
+
eventLikes: z.ZodOptional<z.ZodBoolean>;
|
|
3938
|
+
commentLikes: z.ZodOptional<z.ZodBoolean>;
|
|
3939
|
+
trendingGames: z.ZodOptional<z.ZodBoolean>;
|
|
3940
|
+
gameChanges: z.ZodOptional<z.ZodObject<{
|
|
3941
|
+
topRatedGameChanges: z.ZodOptional<z.ZodUnion<[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<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
3942
|
+
mostRatedGameChanges: z.ZodOptional<z.ZodUnion<[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<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
3943
|
+
worstRatedGameChanges: z.ZodOptional<z.ZodUnion<[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<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
3944
|
+
}, "strip", z.ZodTypeAny, {
|
|
3945
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3946
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3947
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3948
|
+
}, {
|
|
3949
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3950
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3951
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3952
|
+
}>>;
|
|
3953
|
+
gameTopLists: z.ZodOptional<z.ZodObject<{
|
|
3954
|
+
topRated: z.ZodOptional<z.ZodUnion<[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<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
3955
|
+
mostRated: z.ZodOptional<z.ZodUnion<[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<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
3956
|
+
worstRated: z.ZodOptional<z.ZodUnion<[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<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
3957
|
+
}, "strip", z.ZodTypeAny, {
|
|
3958
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3959
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3960
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3961
|
+
}, {
|
|
3962
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3963
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3964
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3965
|
+
}>>;
|
|
3702
3966
|
}, "strip", z.ZodTypeAny, {
|
|
3703
3967
|
allGames?: boolean | undefined;
|
|
3704
3968
|
favoriteLeagues?: boolean | undefined;
|
|
3705
3969
|
favoriteTeams?: boolean | undefined;
|
|
3970
|
+
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
3971
|
+
leaderboardChanges?: boolean | undefined;
|
|
3972
|
+
chatReplies?: boolean | undefined;
|
|
3973
|
+
repliesToRatings?: boolean | undefined;
|
|
3974
|
+
repliesToComments?: boolean | undefined;
|
|
3975
|
+
ratingLikes?: boolean | undefined;
|
|
3976
|
+
listLikes?: boolean | undefined;
|
|
3977
|
+
eventLikes?: boolean | undefined;
|
|
3978
|
+
commentLikes?: boolean | undefined;
|
|
3979
|
+
trendingGames?: boolean | undefined;
|
|
3980
|
+
gameChanges?: {
|
|
3981
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3982
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3983
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3984
|
+
} | undefined;
|
|
3985
|
+
gameTopLists?: {
|
|
3986
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3987
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3988
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3989
|
+
} | undefined;
|
|
3706
3990
|
}, {
|
|
3707
3991
|
allGames?: boolean | undefined;
|
|
3708
3992
|
favoriteLeagues?: boolean | undefined;
|
|
3709
3993
|
favoriteTeams?: boolean | undefined;
|
|
3994
|
+
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
3995
|
+
leaderboardChanges?: boolean | undefined;
|
|
3996
|
+
chatReplies?: boolean | undefined;
|
|
3997
|
+
repliesToRatings?: boolean | undefined;
|
|
3998
|
+
repliesToComments?: boolean | undefined;
|
|
3999
|
+
ratingLikes?: boolean | undefined;
|
|
4000
|
+
listLikes?: boolean | undefined;
|
|
4001
|
+
eventLikes?: boolean | undefined;
|
|
4002
|
+
commentLikes?: boolean | undefined;
|
|
4003
|
+
trendingGames?: boolean | undefined;
|
|
4004
|
+
gameChanges?: {
|
|
4005
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4006
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4007
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4008
|
+
} | undefined;
|
|
4009
|
+
gameTopLists?: {
|
|
4010
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4011
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4012
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4013
|
+
} | undefined;
|
|
3710
4014
|
}>>;
|
|
3711
4015
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3712
4016
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|