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
package/dist/schemas/chat.d.ts
CHANGED
|
@@ -678,14 +678,90 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
678
678
|
allGames: z.ZodOptional<z.ZodBoolean>;
|
|
679
679
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
680
680
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
681
|
+
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
682
|
+
leaderboardChanges: z.ZodOptional<z.ZodBoolean>;
|
|
683
|
+
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
684
|
+
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
685
|
+
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
686
|
+
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
687
|
+
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
688
|
+
eventLikes: z.ZodOptional<z.ZodBoolean>;
|
|
689
|
+
commentLikes: z.ZodOptional<z.ZodBoolean>;
|
|
690
|
+
trendingGames: z.ZodOptional<z.ZodBoolean>;
|
|
691
|
+
gameChanges: z.ZodOptional<z.ZodObject<{
|
|
692
|
+
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">]>>;
|
|
693
|
+
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">]>>;
|
|
694
|
+
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">]>>;
|
|
695
|
+
}, "strip", z.ZodTypeAny, {
|
|
696
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
697
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
698
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
699
|
+
}, {
|
|
700
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
701
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
702
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
703
|
+
}>>;
|
|
704
|
+
gameTopLists: z.ZodOptional<z.ZodObject<{
|
|
705
|
+
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">]>>;
|
|
706
|
+
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">]>>;
|
|
707
|
+
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">]>>;
|
|
708
|
+
}, "strip", z.ZodTypeAny, {
|
|
709
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
710
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
711
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
712
|
+
}, {
|
|
713
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
714
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
715
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
716
|
+
}>>;
|
|
681
717
|
}, "strip", z.ZodTypeAny, {
|
|
682
718
|
allGames?: boolean | undefined;
|
|
683
719
|
favoriteLeagues?: boolean | undefined;
|
|
684
720
|
favoriteTeams?: boolean | undefined;
|
|
721
|
+
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
722
|
+
leaderboardChanges?: boolean | undefined;
|
|
723
|
+
chatReplies?: boolean | undefined;
|
|
724
|
+
repliesToRatings?: boolean | undefined;
|
|
725
|
+
repliesToComments?: boolean | undefined;
|
|
726
|
+
ratingLikes?: boolean | undefined;
|
|
727
|
+
listLikes?: boolean | undefined;
|
|
728
|
+
eventLikes?: boolean | undefined;
|
|
729
|
+
commentLikes?: boolean | undefined;
|
|
730
|
+
trendingGames?: boolean | undefined;
|
|
731
|
+
gameChanges?: {
|
|
732
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
733
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
734
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
735
|
+
} | undefined;
|
|
736
|
+
gameTopLists?: {
|
|
737
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
738
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
739
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
740
|
+
} | undefined;
|
|
685
741
|
}, {
|
|
686
742
|
allGames?: boolean | undefined;
|
|
687
743
|
favoriteLeagues?: boolean | undefined;
|
|
688
744
|
favoriteTeams?: boolean | undefined;
|
|
745
|
+
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
746
|
+
leaderboardChanges?: boolean | undefined;
|
|
747
|
+
chatReplies?: boolean | undefined;
|
|
748
|
+
repliesToRatings?: boolean | undefined;
|
|
749
|
+
repliesToComments?: boolean | undefined;
|
|
750
|
+
ratingLikes?: boolean | undefined;
|
|
751
|
+
listLikes?: boolean | undefined;
|
|
752
|
+
eventLikes?: boolean | undefined;
|
|
753
|
+
commentLikes?: boolean | undefined;
|
|
754
|
+
trendingGames?: boolean | undefined;
|
|
755
|
+
gameChanges?: {
|
|
756
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
757
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
758
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
759
|
+
} | undefined;
|
|
760
|
+
gameTopLists?: {
|
|
761
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
762
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
763
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
764
|
+
} | undefined;
|
|
689
765
|
}>>;
|
|
690
766
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
691
767
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -1618,14 +1694,90 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1618
1694
|
allGames: z.ZodOptional<z.ZodBoolean>;
|
|
1619
1695
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
1620
1696
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
1697
|
+
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
1698
|
+
leaderboardChanges: z.ZodOptional<z.ZodBoolean>;
|
|
1699
|
+
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
1700
|
+
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
1701
|
+
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
1702
|
+
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
1703
|
+
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
1704
|
+
eventLikes: z.ZodOptional<z.ZodBoolean>;
|
|
1705
|
+
commentLikes: z.ZodOptional<z.ZodBoolean>;
|
|
1706
|
+
trendingGames: z.ZodOptional<z.ZodBoolean>;
|
|
1707
|
+
gameChanges: z.ZodOptional<z.ZodObject<{
|
|
1708
|
+
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">]>>;
|
|
1709
|
+
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">]>>;
|
|
1710
|
+
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">]>>;
|
|
1711
|
+
}, "strip", z.ZodTypeAny, {
|
|
1712
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1713
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1714
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1715
|
+
}, {
|
|
1716
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1717
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1718
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1719
|
+
}>>;
|
|
1720
|
+
gameTopLists: z.ZodOptional<z.ZodObject<{
|
|
1721
|
+
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">]>>;
|
|
1722
|
+
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">]>>;
|
|
1723
|
+
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">]>>;
|
|
1724
|
+
}, "strip", z.ZodTypeAny, {
|
|
1725
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1726
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1727
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1728
|
+
}, {
|
|
1729
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1730
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1731
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1732
|
+
}>>;
|
|
1621
1733
|
}, "strip", z.ZodTypeAny, {
|
|
1622
1734
|
allGames?: boolean | undefined;
|
|
1623
1735
|
favoriteLeagues?: boolean | undefined;
|
|
1624
1736
|
favoriteTeams?: boolean | undefined;
|
|
1737
|
+
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
1738
|
+
leaderboardChanges?: boolean | undefined;
|
|
1739
|
+
chatReplies?: boolean | undefined;
|
|
1740
|
+
repliesToRatings?: boolean | undefined;
|
|
1741
|
+
repliesToComments?: boolean | undefined;
|
|
1742
|
+
ratingLikes?: boolean | undefined;
|
|
1743
|
+
listLikes?: boolean | undefined;
|
|
1744
|
+
eventLikes?: boolean | undefined;
|
|
1745
|
+
commentLikes?: boolean | undefined;
|
|
1746
|
+
trendingGames?: boolean | undefined;
|
|
1747
|
+
gameChanges?: {
|
|
1748
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1749
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1750
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1751
|
+
} | undefined;
|
|
1752
|
+
gameTopLists?: {
|
|
1753
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1754
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1755
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1756
|
+
} | undefined;
|
|
1625
1757
|
}, {
|
|
1626
1758
|
allGames?: boolean | undefined;
|
|
1627
1759
|
favoriteLeagues?: boolean | undefined;
|
|
1628
1760
|
favoriteTeams?: boolean | undefined;
|
|
1761
|
+
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
1762
|
+
leaderboardChanges?: boolean | undefined;
|
|
1763
|
+
chatReplies?: boolean | undefined;
|
|
1764
|
+
repliesToRatings?: boolean | undefined;
|
|
1765
|
+
repliesToComments?: boolean | undefined;
|
|
1766
|
+
ratingLikes?: boolean | undefined;
|
|
1767
|
+
listLikes?: boolean | undefined;
|
|
1768
|
+
eventLikes?: boolean | undefined;
|
|
1769
|
+
commentLikes?: boolean | undefined;
|
|
1770
|
+
trendingGames?: boolean | undefined;
|
|
1771
|
+
gameChanges?: {
|
|
1772
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1773
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1774
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1775
|
+
} | undefined;
|
|
1776
|
+
gameTopLists?: {
|
|
1777
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1778
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1779
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1780
|
+
} | undefined;
|
|
1629
1781
|
}>>;
|
|
1630
1782
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1631
1783
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -2614,14 +2766,90 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
2614
2766
|
allGames: z.ZodOptional<z.ZodBoolean>;
|
|
2615
2767
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
2616
2768
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
2769
|
+
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
2770
|
+
leaderboardChanges: z.ZodOptional<z.ZodBoolean>;
|
|
2771
|
+
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
2772
|
+
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
2773
|
+
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
2774
|
+
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
2775
|
+
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
2776
|
+
eventLikes: z.ZodOptional<z.ZodBoolean>;
|
|
2777
|
+
commentLikes: z.ZodOptional<z.ZodBoolean>;
|
|
2778
|
+
trendingGames: z.ZodOptional<z.ZodBoolean>;
|
|
2779
|
+
gameChanges: z.ZodOptional<z.ZodObject<{
|
|
2780
|
+
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">]>>;
|
|
2781
|
+
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">]>>;
|
|
2782
|
+
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">]>>;
|
|
2783
|
+
}, "strip", z.ZodTypeAny, {
|
|
2784
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2785
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2786
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2787
|
+
}, {
|
|
2788
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2789
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2790
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2791
|
+
}>>;
|
|
2792
|
+
gameTopLists: z.ZodOptional<z.ZodObject<{
|
|
2793
|
+
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">]>>;
|
|
2794
|
+
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">]>>;
|
|
2795
|
+
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">]>>;
|
|
2796
|
+
}, "strip", z.ZodTypeAny, {
|
|
2797
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2798
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2799
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2800
|
+
}, {
|
|
2801
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2802
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2803
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2804
|
+
}>>;
|
|
2617
2805
|
}, "strip", z.ZodTypeAny, {
|
|
2618
2806
|
allGames?: boolean | undefined;
|
|
2619
2807
|
favoriteLeagues?: boolean | undefined;
|
|
2620
2808
|
favoriteTeams?: boolean | undefined;
|
|
2809
|
+
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
2810
|
+
leaderboardChanges?: boolean | undefined;
|
|
2811
|
+
chatReplies?: boolean | undefined;
|
|
2812
|
+
repliesToRatings?: boolean | undefined;
|
|
2813
|
+
repliesToComments?: boolean | undefined;
|
|
2814
|
+
ratingLikes?: boolean | undefined;
|
|
2815
|
+
listLikes?: boolean | undefined;
|
|
2816
|
+
eventLikes?: boolean | undefined;
|
|
2817
|
+
commentLikes?: boolean | undefined;
|
|
2818
|
+
trendingGames?: boolean | undefined;
|
|
2819
|
+
gameChanges?: {
|
|
2820
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2821
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2822
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2823
|
+
} | undefined;
|
|
2824
|
+
gameTopLists?: {
|
|
2825
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2826
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2827
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2828
|
+
} | undefined;
|
|
2621
2829
|
}, {
|
|
2622
2830
|
allGames?: boolean | undefined;
|
|
2623
2831
|
favoriteLeagues?: boolean | undefined;
|
|
2624
2832
|
favoriteTeams?: boolean | undefined;
|
|
2833
|
+
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
2834
|
+
leaderboardChanges?: boolean | undefined;
|
|
2835
|
+
chatReplies?: boolean | undefined;
|
|
2836
|
+
repliesToRatings?: boolean | undefined;
|
|
2837
|
+
repliesToComments?: boolean | undefined;
|
|
2838
|
+
ratingLikes?: boolean | undefined;
|
|
2839
|
+
listLikes?: boolean | undefined;
|
|
2840
|
+
eventLikes?: boolean | undefined;
|
|
2841
|
+
commentLikes?: boolean | undefined;
|
|
2842
|
+
trendingGames?: boolean | undefined;
|
|
2843
|
+
gameChanges?: {
|
|
2844
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2845
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2846
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2847
|
+
} | undefined;
|
|
2848
|
+
gameTopLists?: {
|
|
2849
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2850
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2851
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2852
|
+
} | undefined;
|
|
2625
2853
|
}>>;
|
|
2626
2854
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2627
2855
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -3553,14 +3781,90 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
3553
3781
|
allGames: z.ZodOptional<z.ZodBoolean>;
|
|
3554
3782
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
3555
3783
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
3784
|
+
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
3785
|
+
leaderboardChanges: z.ZodOptional<z.ZodBoolean>;
|
|
3786
|
+
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
3787
|
+
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
3788
|
+
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
3789
|
+
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
3790
|
+
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
3791
|
+
eventLikes: z.ZodOptional<z.ZodBoolean>;
|
|
3792
|
+
commentLikes: z.ZodOptional<z.ZodBoolean>;
|
|
3793
|
+
trendingGames: z.ZodOptional<z.ZodBoolean>;
|
|
3794
|
+
gameChanges: z.ZodOptional<z.ZodObject<{
|
|
3795
|
+
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">]>>;
|
|
3796
|
+
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">]>>;
|
|
3797
|
+
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">]>>;
|
|
3798
|
+
}, "strip", z.ZodTypeAny, {
|
|
3799
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3800
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3801
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3802
|
+
}, {
|
|
3803
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3804
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3805
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3806
|
+
}>>;
|
|
3807
|
+
gameTopLists: z.ZodOptional<z.ZodObject<{
|
|
3808
|
+
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">]>>;
|
|
3809
|
+
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">]>>;
|
|
3810
|
+
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">]>>;
|
|
3811
|
+
}, "strip", z.ZodTypeAny, {
|
|
3812
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3813
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3814
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3815
|
+
}, {
|
|
3816
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3817
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3818
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3819
|
+
}>>;
|
|
3556
3820
|
}, "strip", z.ZodTypeAny, {
|
|
3557
3821
|
allGames?: boolean | undefined;
|
|
3558
3822
|
favoriteLeagues?: boolean | undefined;
|
|
3559
3823
|
favoriteTeams?: boolean | undefined;
|
|
3824
|
+
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
3825
|
+
leaderboardChanges?: boolean | undefined;
|
|
3826
|
+
chatReplies?: boolean | undefined;
|
|
3827
|
+
repliesToRatings?: boolean | undefined;
|
|
3828
|
+
repliesToComments?: boolean | undefined;
|
|
3829
|
+
ratingLikes?: boolean | undefined;
|
|
3830
|
+
listLikes?: boolean | undefined;
|
|
3831
|
+
eventLikes?: boolean | undefined;
|
|
3832
|
+
commentLikes?: boolean | undefined;
|
|
3833
|
+
trendingGames?: boolean | undefined;
|
|
3834
|
+
gameChanges?: {
|
|
3835
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3836
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3837
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3838
|
+
} | undefined;
|
|
3839
|
+
gameTopLists?: {
|
|
3840
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3841
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3842
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3843
|
+
} | undefined;
|
|
3560
3844
|
}, {
|
|
3561
3845
|
allGames?: boolean | undefined;
|
|
3562
3846
|
favoriteLeagues?: boolean | undefined;
|
|
3563
3847
|
favoriteTeams?: boolean | undefined;
|
|
3848
|
+
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
3849
|
+
leaderboardChanges?: boolean | undefined;
|
|
3850
|
+
chatReplies?: boolean | undefined;
|
|
3851
|
+
repliesToRatings?: boolean | undefined;
|
|
3852
|
+
repliesToComments?: boolean | undefined;
|
|
3853
|
+
ratingLikes?: boolean | undefined;
|
|
3854
|
+
listLikes?: boolean | undefined;
|
|
3855
|
+
eventLikes?: boolean | undefined;
|
|
3856
|
+
commentLikes?: boolean | undefined;
|
|
3857
|
+
trendingGames?: boolean | undefined;
|
|
3858
|
+
gameChanges?: {
|
|
3859
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3860
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3861
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3862
|
+
} | undefined;
|
|
3863
|
+
gameTopLists?: {
|
|
3864
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3865
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3866
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3867
|
+
} | undefined;
|
|
3564
3868
|
}>>;
|
|
3565
3869
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3566
3870
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -4544,14 +4848,90 @@ export declare const messageReactionSchema: z.ZodObject<{
|
|
|
4544
4848
|
allGames: z.ZodOptional<z.ZodBoolean>;
|
|
4545
4849
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
4546
4850
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
4851
|
+
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
4852
|
+
leaderboardChanges: z.ZodOptional<z.ZodBoolean>;
|
|
4853
|
+
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
4854
|
+
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
4855
|
+
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
4856
|
+
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
4857
|
+
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
4858
|
+
eventLikes: z.ZodOptional<z.ZodBoolean>;
|
|
4859
|
+
commentLikes: z.ZodOptional<z.ZodBoolean>;
|
|
4860
|
+
trendingGames: z.ZodOptional<z.ZodBoolean>;
|
|
4861
|
+
gameChanges: z.ZodOptional<z.ZodObject<{
|
|
4862
|
+
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">]>>;
|
|
4863
|
+
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">]>>;
|
|
4864
|
+
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">]>>;
|
|
4865
|
+
}, "strip", z.ZodTypeAny, {
|
|
4866
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4867
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4868
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4869
|
+
}, {
|
|
4870
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4871
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4872
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4873
|
+
}>>;
|
|
4874
|
+
gameTopLists: z.ZodOptional<z.ZodObject<{
|
|
4875
|
+
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">]>>;
|
|
4876
|
+
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">]>>;
|
|
4877
|
+
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">]>>;
|
|
4878
|
+
}, "strip", z.ZodTypeAny, {
|
|
4879
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4880
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4881
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4882
|
+
}, {
|
|
4883
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4884
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4885
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4886
|
+
}>>;
|
|
4547
4887
|
}, "strip", z.ZodTypeAny, {
|
|
4548
4888
|
allGames?: boolean | undefined;
|
|
4549
4889
|
favoriteLeagues?: boolean | undefined;
|
|
4550
4890
|
favoriteTeams?: boolean | undefined;
|
|
4891
|
+
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
4892
|
+
leaderboardChanges?: boolean | undefined;
|
|
4893
|
+
chatReplies?: boolean | undefined;
|
|
4894
|
+
repliesToRatings?: boolean | undefined;
|
|
4895
|
+
repliesToComments?: boolean | undefined;
|
|
4896
|
+
ratingLikes?: boolean | undefined;
|
|
4897
|
+
listLikes?: boolean | undefined;
|
|
4898
|
+
eventLikes?: boolean | undefined;
|
|
4899
|
+
commentLikes?: boolean | undefined;
|
|
4900
|
+
trendingGames?: boolean | undefined;
|
|
4901
|
+
gameChanges?: {
|
|
4902
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4903
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4904
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4905
|
+
} | undefined;
|
|
4906
|
+
gameTopLists?: {
|
|
4907
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4908
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4909
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4910
|
+
} | undefined;
|
|
4551
4911
|
}, {
|
|
4552
4912
|
allGames?: boolean | undefined;
|
|
4553
4913
|
favoriteLeagues?: boolean | undefined;
|
|
4554
4914
|
favoriteTeams?: boolean | undefined;
|
|
4915
|
+
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
4916
|
+
leaderboardChanges?: boolean | undefined;
|
|
4917
|
+
chatReplies?: boolean | undefined;
|
|
4918
|
+
repliesToRatings?: boolean | undefined;
|
|
4919
|
+
repliesToComments?: boolean | undefined;
|
|
4920
|
+
ratingLikes?: boolean | undefined;
|
|
4921
|
+
listLikes?: boolean | undefined;
|
|
4922
|
+
eventLikes?: boolean | undefined;
|
|
4923
|
+
commentLikes?: boolean | undefined;
|
|
4924
|
+
trendingGames?: boolean | undefined;
|
|
4925
|
+
gameChanges?: {
|
|
4926
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4927
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4928
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4929
|
+
} | undefined;
|
|
4930
|
+
gameTopLists?: {
|
|
4931
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4932
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4933
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4934
|
+
} | undefined;
|
|
4555
4935
|
}>>;
|
|
4556
4936
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
4557
4937
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|