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.
@@ -171,6 +171,30 @@ exports.userSchema = (0, zod_1.object)({
171
171
  allGames: (0, zod_1.boolean)().optional(),
172
172
  favoriteLeagues: (0, zod_1.boolean)().optional(),
173
173
  favoriteTeams: (0, zod_1.boolean)().optional(),
174
+ lastWeekScoreLeaderboard: (0, zod_1.boolean)().optional(),
175
+ leaderboardChanges: (0, zod_1.boolean)().optional(),
176
+ chatReplies: (0, zod_1.boolean)().optional(),
177
+ repliesToRatings: (0, zod_1.boolean)().optional(),
178
+ repliesToComments: (0, zod_1.boolean)().optional(),
179
+ ratingLikes: (0, zod_1.boolean)().optional(),
180
+ listLikes: (0, zod_1.boolean)().optional(),
181
+ eventLikes: (0, zod_1.boolean)().optional(),
182
+ commentLikes: (0, zod_1.boolean)().optional(),
183
+ trendingGames: (0, zod_1.boolean)().optional(),
184
+ gameChanges: zod_1.z
185
+ .object({
186
+ topRatedGameChanges: sharedTypes_1.timeFilterSchema.optional(),
187
+ mostRatedGameChanges: sharedTypes_1.timeFilterSchema.optional(),
188
+ worstRatedGameChanges: sharedTypes_1.timeFilterSchema.optional(),
189
+ })
190
+ .optional(),
191
+ gameTopLists: zod_1.z
192
+ .object({
193
+ topRated: sharedTypes_1.timeFilterSchema.optional(),
194
+ mostRated: sharedTypes_1.timeFilterSchema.optional(),
195
+ worstRated: sharedTypes_1.timeFilterSchema.optional(),
196
+ })
197
+ .optional(),
174
198
  }).optional(),
175
199
  spoilersEnabled: (0, zod_1.boolean)().optional(),
176
200
  viewedChangelogs: (0, zod_1.record)((0, zod_1.boolean)()).optional(),
@@ -777,14 +777,90 @@ export declare const userEventCommentSchema: z.ZodObject<{
777
777
  allGames: z.ZodOptional<z.ZodBoolean>;
778
778
  favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
779
779
  favoriteTeams: z.ZodOptional<z.ZodBoolean>;
780
+ lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
781
+ leaderboardChanges: z.ZodOptional<z.ZodBoolean>;
782
+ chatReplies: z.ZodOptional<z.ZodBoolean>;
783
+ repliesToRatings: z.ZodOptional<z.ZodBoolean>;
784
+ repliesToComments: z.ZodOptional<z.ZodBoolean>;
785
+ ratingLikes: z.ZodOptional<z.ZodBoolean>;
786
+ listLikes: z.ZodOptional<z.ZodBoolean>;
787
+ eventLikes: z.ZodOptional<z.ZodBoolean>;
788
+ commentLikes: z.ZodOptional<z.ZodBoolean>;
789
+ trendingGames: z.ZodOptional<z.ZodBoolean>;
790
+ gameChanges: z.ZodOptional<z.ZodObject<{
791
+ 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">]>>;
792
+ 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">]>>;
793
+ 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">]>>;
794
+ }, "strip", z.ZodTypeAny, {
795
+ topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
796
+ mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
797
+ worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
798
+ }, {
799
+ topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
800
+ mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
801
+ worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
802
+ }>>;
803
+ gameTopLists: z.ZodOptional<z.ZodObject<{
804
+ 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">]>>;
805
+ 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">]>>;
806
+ 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">]>>;
807
+ }, "strip", z.ZodTypeAny, {
808
+ topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
809
+ mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
810
+ worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
811
+ }, {
812
+ topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
813
+ mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
814
+ worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
815
+ }>>;
780
816
  }, "strip", z.ZodTypeAny, {
781
817
  allGames?: boolean | undefined;
782
818
  favoriteLeagues?: boolean | undefined;
783
819
  favoriteTeams?: boolean | undefined;
820
+ lastWeekScoreLeaderboard?: boolean | undefined;
821
+ leaderboardChanges?: boolean | undefined;
822
+ chatReplies?: boolean | undefined;
823
+ repliesToRatings?: boolean | undefined;
824
+ repliesToComments?: boolean | undefined;
825
+ ratingLikes?: boolean | undefined;
826
+ listLikes?: boolean | undefined;
827
+ eventLikes?: boolean | undefined;
828
+ commentLikes?: boolean | undefined;
829
+ trendingGames?: boolean | undefined;
830
+ gameChanges?: {
831
+ topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
832
+ mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
833
+ worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
834
+ } | undefined;
835
+ gameTopLists?: {
836
+ topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
837
+ mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
838
+ worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
839
+ } | undefined;
784
840
  }, {
785
841
  allGames?: boolean | undefined;
786
842
  favoriteLeagues?: boolean | undefined;
787
843
  favoriteTeams?: boolean | undefined;
844
+ lastWeekScoreLeaderboard?: boolean | undefined;
845
+ leaderboardChanges?: boolean | undefined;
846
+ chatReplies?: boolean | undefined;
847
+ repliesToRatings?: boolean | undefined;
848
+ repliesToComments?: boolean | undefined;
849
+ ratingLikes?: boolean | undefined;
850
+ listLikes?: boolean | undefined;
851
+ eventLikes?: boolean | undefined;
852
+ commentLikes?: boolean | undefined;
853
+ trendingGames?: boolean | undefined;
854
+ gameChanges?: {
855
+ topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
856
+ mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
857
+ worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
858
+ } | undefined;
859
+ gameTopLists?: {
860
+ topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
861
+ mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
862
+ worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
863
+ } | undefined;
788
864
  }>>;
789
865
  spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
790
866
  viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
@@ -1714,14 +1790,90 @@ export declare const userEventCommentSchema: z.ZodObject<{
1714
1790
  allGames: z.ZodOptional<z.ZodBoolean>;
1715
1791
  favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
1716
1792
  favoriteTeams: z.ZodOptional<z.ZodBoolean>;
1793
+ lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
1794
+ leaderboardChanges: z.ZodOptional<z.ZodBoolean>;
1795
+ chatReplies: z.ZodOptional<z.ZodBoolean>;
1796
+ repliesToRatings: z.ZodOptional<z.ZodBoolean>;
1797
+ repliesToComments: z.ZodOptional<z.ZodBoolean>;
1798
+ ratingLikes: z.ZodOptional<z.ZodBoolean>;
1799
+ listLikes: z.ZodOptional<z.ZodBoolean>;
1800
+ eventLikes: z.ZodOptional<z.ZodBoolean>;
1801
+ commentLikes: z.ZodOptional<z.ZodBoolean>;
1802
+ trendingGames: z.ZodOptional<z.ZodBoolean>;
1803
+ gameChanges: z.ZodOptional<z.ZodObject<{
1804
+ 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">]>>;
1805
+ 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">]>>;
1806
+ 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">]>>;
1807
+ }, "strip", z.ZodTypeAny, {
1808
+ topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
1809
+ mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
1810
+ worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
1811
+ }, {
1812
+ topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
1813
+ mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
1814
+ worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
1815
+ }>>;
1816
+ gameTopLists: z.ZodOptional<z.ZodObject<{
1817
+ 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">]>>;
1818
+ 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">]>>;
1819
+ 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">]>>;
1820
+ }, "strip", z.ZodTypeAny, {
1821
+ topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
1822
+ mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
1823
+ worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
1824
+ }, {
1825
+ topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
1826
+ mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
1827
+ worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
1828
+ }>>;
1717
1829
  }, "strip", z.ZodTypeAny, {
1718
1830
  allGames?: boolean | undefined;
1719
1831
  favoriteLeagues?: boolean | undefined;
1720
1832
  favoriteTeams?: boolean | undefined;
1833
+ lastWeekScoreLeaderboard?: boolean | undefined;
1834
+ leaderboardChanges?: boolean | undefined;
1835
+ chatReplies?: boolean | undefined;
1836
+ repliesToRatings?: boolean | undefined;
1837
+ repliesToComments?: boolean | undefined;
1838
+ ratingLikes?: boolean | undefined;
1839
+ listLikes?: boolean | undefined;
1840
+ eventLikes?: boolean | undefined;
1841
+ commentLikes?: boolean | undefined;
1842
+ trendingGames?: boolean | undefined;
1843
+ gameChanges?: {
1844
+ topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
1845
+ mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
1846
+ worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
1847
+ } | undefined;
1848
+ gameTopLists?: {
1849
+ topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
1850
+ mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
1851
+ worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
1852
+ } | undefined;
1721
1853
  }, {
1722
1854
  allGames?: boolean | undefined;
1723
1855
  favoriteLeagues?: boolean | undefined;
1724
1856
  favoriteTeams?: boolean | undefined;
1857
+ lastWeekScoreLeaderboard?: boolean | undefined;
1858
+ leaderboardChanges?: boolean | undefined;
1859
+ chatReplies?: boolean | undefined;
1860
+ repliesToRatings?: boolean | undefined;
1861
+ repliesToComments?: boolean | undefined;
1862
+ ratingLikes?: boolean | undefined;
1863
+ listLikes?: boolean | undefined;
1864
+ eventLikes?: boolean | undefined;
1865
+ commentLikes?: boolean | undefined;
1866
+ trendingGames?: boolean | undefined;
1867
+ gameChanges?: {
1868
+ topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
1869
+ mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
1870
+ worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
1871
+ } | undefined;
1872
+ gameTopLists?: {
1873
+ topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
1874
+ mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
1875
+ worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
1876
+ } | undefined;
1725
1877
  }>>;
1726
1878
  spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
1727
1879
  viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
@@ -2704,14 +2856,90 @@ export declare const userEventCommentLikeSchema: z.ZodObject<{
2704
2856
  allGames: z.ZodOptional<z.ZodBoolean>;
2705
2857
  favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
2706
2858
  favoriteTeams: z.ZodOptional<z.ZodBoolean>;
2859
+ lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
2860
+ leaderboardChanges: z.ZodOptional<z.ZodBoolean>;
2861
+ chatReplies: z.ZodOptional<z.ZodBoolean>;
2862
+ repliesToRatings: z.ZodOptional<z.ZodBoolean>;
2863
+ repliesToComments: z.ZodOptional<z.ZodBoolean>;
2864
+ ratingLikes: z.ZodOptional<z.ZodBoolean>;
2865
+ listLikes: z.ZodOptional<z.ZodBoolean>;
2866
+ eventLikes: z.ZodOptional<z.ZodBoolean>;
2867
+ commentLikes: z.ZodOptional<z.ZodBoolean>;
2868
+ trendingGames: z.ZodOptional<z.ZodBoolean>;
2869
+ gameChanges: z.ZodOptional<z.ZodObject<{
2870
+ 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">]>>;
2871
+ 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">]>>;
2872
+ 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">]>>;
2873
+ }, "strip", z.ZodTypeAny, {
2874
+ topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2875
+ mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2876
+ worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2877
+ }, {
2878
+ topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2879
+ mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2880
+ worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2881
+ }>>;
2882
+ gameTopLists: z.ZodOptional<z.ZodObject<{
2883
+ 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">]>>;
2884
+ 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">]>>;
2885
+ 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">]>>;
2886
+ }, "strip", z.ZodTypeAny, {
2887
+ topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2888
+ mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2889
+ worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2890
+ }, {
2891
+ topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2892
+ mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2893
+ worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2894
+ }>>;
2707
2895
  }, "strip", z.ZodTypeAny, {
2708
2896
  allGames?: boolean | undefined;
2709
2897
  favoriteLeagues?: boolean | undefined;
2710
2898
  favoriteTeams?: boolean | undefined;
2899
+ lastWeekScoreLeaderboard?: boolean | undefined;
2900
+ leaderboardChanges?: boolean | undefined;
2901
+ chatReplies?: boolean | undefined;
2902
+ repliesToRatings?: boolean | undefined;
2903
+ repliesToComments?: boolean | undefined;
2904
+ ratingLikes?: boolean | undefined;
2905
+ listLikes?: boolean | undefined;
2906
+ eventLikes?: boolean | undefined;
2907
+ commentLikes?: boolean | undefined;
2908
+ trendingGames?: boolean | undefined;
2909
+ gameChanges?: {
2910
+ topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2911
+ mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2912
+ worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2913
+ } | undefined;
2914
+ gameTopLists?: {
2915
+ topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2916
+ mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2917
+ worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2918
+ } | undefined;
2711
2919
  }, {
2712
2920
  allGames?: boolean | undefined;
2713
2921
  favoriteLeagues?: boolean | undefined;
2714
2922
  favoriteTeams?: boolean | undefined;
2923
+ lastWeekScoreLeaderboard?: boolean | undefined;
2924
+ leaderboardChanges?: boolean | undefined;
2925
+ chatReplies?: boolean | undefined;
2926
+ repliesToRatings?: boolean | undefined;
2927
+ repliesToComments?: boolean | undefined;
2928
+ ratingLikes?: boolean | undefined;
2929
+ listLikes?: boolean | undefined;
2930
+ eventLikes?: boolean | undefined;
2931
+ commentLikes?: boolean | undefined;
2932
+ trendingGames?: boolean | undefined;
2933
+ gameChanges?: {
2934
+ topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2935
+ mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2936
+ worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2937
+ } | undefined;
2938
+ gameTopLists?: {
2939
+ topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2940
+ mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2941
+ worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
2942
+ } | undefined;
2715
2943
  }>>;
2716
2944
  spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
2717
2945
  viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;