rategame-shared 1.1.275 → 1.1.277

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.
@@ -679,9 +679,11 @@ export declare const listSchema: z.ZodObject<{
679
679
  favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
680
680
  favoriteTeams: z.ZodOptional<z.ZodBoolean>;
681
681
  lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
682
- leaderboardChanges: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"This Week">, z.ZodLiteral<"Last Week">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All Time">]>>>;
682
+ leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
683
683
  chatReplies: z.ZodOptional<z.ZodBoolean>;
684
684
  repliesToRatings: z.ZodOptional<z.ZodBoolean>;
685
+ repliesToLists: z.ZodOptional<z.ZodBoolean>;
686
+ repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
685
687
  repliesToComments: z.ZodOptional<z.ZodBoolean>;
686
688
  ratingLikes: z.ZodOptional<z.ZodBoolean>;
687
689
  listLikes: z.ZodOptional<z.ZodBoolean>;
@@ -719,9 +721,11 @@ export declare const listSchema: z.ZodObject<{
719
721
  favoriteLeagues?: boolean | undefined;
720
722
  favoriteTeams?: boolean | undefined;
721
723
  lastWeekScoreLeaderboard?: boolean | undefined;
722
- leaderboardChanges?: "This Week" | "This Month" | "This Year" | "All Time" | "Last Week" | null | undefined;
724
+ leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
723
725
  chatReplies?: boolean | undefined;
724
726
  repliesToRatings?: boolean | undefined;
727
+ repliesToLists?: boolean | undefined;
728
+ repliesToUserEvents?: boolean | undefined;
725
729
  repliesToComments?: boolean | undefined;
726
730
  ratingLikes?: boolean | undefined;
727
731
  listLikes?: boolean | undefined;
@@ -743,9 +747,11 @@ export declare const listSchema: z.ZodObject<{
743
747
  favoriteLeagues?: boolean | undefined;
744
748
  favoriteTeams?: boolean | undefined;
745
749
  lastWeekScoreLeaderboard?: boolean | undefined;
746
- leaderboardChanges?: "This Week" | "This Month" | "This Year" | "All Time" | "Last Week" | null | undefined;
750
+ leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
747
751
  chatReplies?: boolean | undefined;
748
752
  repliesToRatings?: boolean | undefined;
753
+ repliesToLists?: boolean | undefined;
754
+ repliesToUserEvents?: boolean | undefined;
749
755
  repliesToComments?: boolean | undefined;
750
756
  ratingLikes?: boolean | undefined;
751
757
  listLikes?: boolean | undefined;
@@ -1740,9 +1746,11 @@ export declare const listCreateSchema: z.ZodObject<Omit<{
1740
1746
  favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
1741
1747
  favoriteTeams: z.ZodOptional<z.ZodBoolean>;
1742
1748
  lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
1743
- leaderboardChanges: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"This Week">, z.ZodLiteral<"Last Week">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All Time">]>>>;
1749
+ leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
1744
1750
  chatReplies: z.ZodOptional<z.ZodBoolean>;
1745
1751
  repliesToRatings: z.ZodOptional<z.ZodBoolean>;
1752
+ repliesToLists: z.ZodOptional<z.ZodBoolean>;
1753
+ repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
1746
1754
  repliesToComments: z.ZodOptional<z.ZodBoolean>;
1747
1755
  ratingLikes: z.ZodOptional<z.ZodBoolean>;
1748
1756
  listLikes: z.ZodOptional<z.ZodBoolean>;
@@ -1780,9 +1788,11 @@ export declare const listCreateSchema: z.ZodObject<Omit<{
1780
1788
  favoriteLeagues?: boolean | undefined;
1781
1789
  favoriteTeams?: boolean | undefined;
1782
1790
  lastWeekScoreLeaderboard?: boolean | undefined;
1783
- leaderboardChanges?: "This Week" | "This Month" | "This Year" | "All Time" | "Last Week" | null | undefined;
1791
+ leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
1784
1792
  chatReplies?: boolean | undefined;
1785
1793
  repliesToRatings?: boolean | undefined;
1794
+ repliesToLists?: boolean | undefined;
1795
+ repliesToUserEvents?: boolean | undefined;
1786
1796
  repliesToComments?: boolean | undefined;
1787
1797
  ratingLikes?: boolean | undefined;
1788
1798
  listLikes?: boolean | undefined;
@@ -1804,9 +1814,11 @@ export declare const listCreateSchema: z.ZodObject<Omit<{
1804
1814
  favoriteLeagues?: boolean | undefined;
1805
1815
  favoriteTeams?: boolean | undefined;
1806
1816
  lastWeekScoreLeaderboard?: boolean | undefined;
1807
- leaderboardChanges?: "This Week" | "This Month" | "This Year" | "All Time" | "Last Week" | null | undefined;
1817
+ leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
1808
1818
  chatReplies?: boolean | undefined;
1809
1819
  repliesToRatings?: boolean | undefined;
1820
+ repliesToLists?: boolean | undefined;
1821
+ repliesToUserEvents?: boolean | undefined;
1810
1822
  repliesToComments?: boolean | undefined;
1811
1823
  ratingLikes?: boolean | undefined;
1812
1824
  listLikes?: boolean | undefined;
@@ -2793,9 +2805,11 @@ export declare const listCommentSchema: z.ZodObject<{
2793
2805
  favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
2794
2806
  favoriteTeams: z.ZodOptional<z.ZodBoolean>;
2795
2807
  lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
2796
- leaderboardChanges: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"This Week">, z.ZodLiteral<"Last Week">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All Time">]>>>;
2808
+ leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
2797
2809
  chatReplies: z.ZodOptional<z.ZodBoolean>;
2798
2810
  repliesToRatings: z.ZodOptional<z.ZodBoolean>;
2811
+ repliesToLists: z.ZodOptional<z.ZodBoolean>;
2812
+ repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
2799
2813
  repliesToComments: z.ZodOptional<z.ZodBoolean>;
2800
2814
  ratingLikes: z.ZodOptional<z.ZodBoolean>;
2801
2815
  listLikes: z.ZodOptional<z.ZodBoolean>;
@@ -2833,9 +2847,11 @@ export declare const listCommentSchema: z.ZodObject<{
2833
2847
  favoriteLeagues?: boolean | undefined;
2834
2848
  favoriteTeams?: boolean | undefined;
2835
2849
  lastWeekScoreLeaderboard?: boolean | undefined;
2836
- leaderboardChanges?: "This Week" | "This Month" | "This Year" | "All Time" | "Last Week" | null | undefined;
2850
+ leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
2837
2851
  chatReplies?: boolean | undefined;
2838
2852
  repliesToRatings?: boolean | undefined;
2853
+ repliesToLists?: boolean | undefined;
2854
+ repliesToUserEvents?: boolean | undefined;
2839
2855
  repliesToComments?: boolean | undefined;
2840
2856
  ratingLikes?: boolean | undefined;
2841
2857
  listLikes?: boolean | undefined;
@@ -2857,9 +2873,11 @@ export declare const listCommentSchema: z.ZodObject<{
2857
2873
  favoriteLeagues?: boolean | undefined;
2858
2874
  favoriteTeams?: boolean | undefined;
2859
2875
  lastWeekScoreLeaderboard?: boolean | undefined;
2860
- leaderboardChanges?: "This Week" | "This Month" | "This Year" | "All Time" | "Last Week" | null | undefined;
2876
+ leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
2861
2877
  chatReplies?: boolean | undefined;
2862
2878
  repliesToRatings?: boolean | undefined;
2879
+ repliesToLists?: boolean | undefined;
2880
+ repliesToUserEvents?: boolean | undefined;
2863
2881
  repliesToComments?: boolean | undefined;
2864
2882
  ratingLikes?: boolean | undefined;
2865
2883
  listLikes?: boolean | undefined;
@@ -3806,9 +3824,11 @@ export declare const listCommentSchema: z.ZodObject<{
3806
3824
  favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
3807
3825
  favoriteTeams: z.ZodOptional<z.ZodBoolean>;
3808
3826
  lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
3809
- leaderboardChanges: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"This Week">, z.ZodLiteral<"Last Week">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All Time">]>>>;
3827
+ leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
3810
3828
  chatReplies: z.ZodOptional<z.ZodBoolean>;
3811
3829
  repliesToRatings: z.ZodOptional<z.ZodBoolean>;
3830
+ repliesToLists: z.ZodOptional<z.ZodBoolean>;
3831
+ repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
3812
3832
  repliesToComments: z.ZodOptional<z.ZodBoolean>;
3813
3833
  ratingLikes: z.ZodOptional<z.ZodBoolean>;
3814
3834
  listLikes: z.ZodOptional<z.ZodBoolean>;
@@ -3846,9 +3866,11 @@ export declare const listCommentSchema: z.ZodObject<{
3846
3866
  favoriteLeagues?: boolean | undefined;
3847
3867
  favoriteTeams?: boolean | undefined;
3848
3868
  lastWeekScoreLeaderboard?: boolean | undefined;
3849
- leaderboardChanges?: "This Week" | "This Month" | "This Year" | "All Time" | "Last Week" | null | undefined;
3869
+ leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
3850
3870
  chatReplies?: boolean | undefined;
3851
3871
  repliesToRatings?: boolean | undefined;
3872
+ repliesToLists?: boolean | undefined;
3873
+ repliesToUserEvents?: boolean | undefined;
3852
3874
  repliesToComments?: boolean | undefined;
3853
3875
  ratingLikes?: boolean | undefined;
3854
3876
  listLikes?: boolean | undefined;
@@ -3870,9 +3892,11 @@ export declare const listCommentSchema: z.ZodObject<{
3870
3892
  favoriteLeagues?: boolean | undefined;
3871
3893
  favoriteTeams?: boolean | undefined;
3872
3894
  lastWeekScoreLeaderboard?: boolean | undefined;
3873
- leaderboardChanges?: "This Week" | "This Month" | "This Year" | "All Time" | "Last Week" | null | undefined;
3895
+ leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
3874
3896
  chatReplies?: boolean | undefined;
3875
3897
  repliesToRatings?: boolean | undefined;
3898
+ repliesToLists?: boolean | undefined;
3899
+ repliesToUserEvents?: boolean | undefined;
3876
3900
  repliesToComments?: boolean | undefined;
3877
3901
  ratingLikes?: boolean | undefined;
3878
3902
  listLikes?: boolean | undefined;
@@ -4864,9 +4888,11 @@ export declare const listCommentLikeSchema: z.ZodObject<{
4864
4888
  favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
4865
4889
  favoriteTeams: z.ZodOptional<z.ZodBoolean>;
4866
4890
  lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
4867
- leaderboardChanges: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"This Week">, z.ZodLiteral<"Last Week">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All Time">]>>>;
4891
+ leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
4868
4892
  chatReplies: z.ZodOptional<z.ZodBoolean>;
4869
4893
  repliesToRatings: z.ZodOptional<z.ZodBoolean>;
4894
+ repliesToLists: z.ZodOptional<z.ZodBoolean>;
4895
+ repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
4870
4896
  repliesToComments: z.ZodOptional<z.ZodBoolean>;
4871
4897
  ratingLikes: z.ZodOptional<z.ZodBoolean>;
4872
4898
  listLikes: z.ZodOptional<z.ZodBoolean>;
@@ -4904,9 +4930,11 @@ export declare const listCommentLikeSchema: z.ZodObject<{
4904
4930
  favoriteLeagues?: boolean | undefined;
4905
4931
  favoriteTeams?: boolean | undefined;
4906
4932
  lastWeekScoreLeaderboard?: boolean | undefined;
4907
- leaderboardChanges?: "This Week" | "This Month" | "This Year" | "All Time" | "Last Week" | null | undefined;
4933
+ leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
4908
4934
  chatReplies?: boolean | undefined;
4909
4935
  repliesToRatings?: boolean | undefined;
4936
+ repliesToLists?: boolean | undefined;
4937
+ repliesToUserEvents?: boolean | undefined;
4910
4938
  repliesToComments?: boolean | undefined;
4911
4939
  ratingLikes?: boolean | undefined;
4912
4940
  listLikes?: boolean | undefined;
@@ -4928,9 +4956,11 @@ export declare const listCommentLikeSchema: z.ZodObject<{
4928
4956
  favoriteLeagues?: boolean | undefined;
4929
4957
  favoriteTeams?: boolean | undefined;
4930
4958
  lastWeekScoreLeaderboard?: boolean | undefined;
4931
- leaderboardChanges?: "This Week" | "This Month" | "This Year" | "All Time" | "Last Week" | null | undefined;
4959
+ leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
4932
4960
  chatReplies?: boolean | undefined;
4933
4961
  repliesToRatings?: boolean | undefined;
4962
+ repliesToLists?: boolean | undefined;
4963
+ repliesToUserEvents?: boolean | undefined;
4934
4964
  repliesToComments?: boolean | undefined;
4935
4965
  ratingLikes?: boolean | undefined;
4936
4966
  listLikes?: boolean | undefined;
@@ -692,9 +692,11 @@ export declare const banInfoSchema: z.ZodObject<{
692
692
  favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
693
693
  favoriteTeams: z.ZodOptional<z.ZodBoolean>;
694
694
  lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
695
- leaderboardChanges: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"This Week">, z.ZodLiteral<"Last Week">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All Time">]>>>;
695
+ leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
696
696
  chatReplies: z.ZodOptional<z.ZodBoolean>;
697
697
  repliesToRatings: z.ZodOptional<z.ZodBoolean>;
698
+ repliesToLists: z.ZodOptional<z.ZodBoolean>;
699
+ repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
698
700
  repliesToComments: z.ZodOptional<z.ZodBoolean>;
699
701
  ratingLikes: z.ZodOptional<z.ZodBoolean>;
700
702
  listLikes: z.ZodOptional<z.ZodBoolean>;
@@ -732,9 +734,11 @@ export declare const banInfoSchema: z.ZodObject<{
732
734
  favoriteLeagues?: boolean | undefined;
733
735
  favoriteTeams?: boolean | undefined;
734
736
  lastWeekScoreLeaderboard?: boolean | undefined;
735
- leaderboardChanges?: "This Week" | "This Month" | "This Year" | "All Time" | "Last Week" | null | undefined;
737
+ leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
736
738
  chatReplies?: boolean | undefined;
737
739
  repliesToRatings?: boolean | undefined;
740
+ repliesToLists?: boolean | undefined;
741
+ repliesToUserEvents?: boolean | undefined;
738
742
  repliesToComments?: boolean | undefined;
739
743
  ratingLikes?: boolean | undefined;
740
744
  listLikes?: boolean | undefined;
@@ -756,9 +760,11 @@ export declare const banInfoSchema: z.ZodObject<{
756
760
  favoriteLeagues?: boolean | undefined;
757
761
  favoriteTeams?: boolean | undefined;
758
762
  lastWeekScoreLeaderboard?: boolean | undefined;
759
- leaderboardChanges?: "This Week" | "This Month" | "This Year" | "All Time" | "Last Week" | null | undefined;
763
+ leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
760
764
  chatReplies?: boolean | undefined;
761
765
  repliesToRatings?: boolean | undefined;
766
+ repliesToLists?: boolean | undefined;
767
+ repliesToUserEvents?: boolean | undefined;
762
768
  repliesToComments?: boolean | undefined;
763
769
  ratingLikes?: boolean | undefined;
764
770
  listLikes?: boolean | undefined;
@@ -1732,9 +1738,11 @@ export declare const bannedUserSchema: z.ZodObject<{
1732
1738
  favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
1733
1739
  favoriteTeams: z.ZodOptional<z.ZodBoolean>;
1734
1740
  lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
1735
- leaderboardChanges: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"This Week">, z.ZodLiteral<"Last Week">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All Time">]>>>;
1741
+ leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
1736
1742
  chatReplies: z.ZodOptional<z.ZodBoolean>;
1737
1743
  repliesToRatings: z.ZodOptional<z.ZodBoolean>;
1744
+ repliesToLists: z.ZodOptional<z.ZodBoolean>;
1745
+ repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
1738
1746
  repliesToComments: z.ZodOptional<z.ZodBoolean>;
1739
1747
  ratingLikes: z.ZodOptional<z.ZodBoolean>;
1740
1748
  listLikes: z.ZodOptional<z.ZodBoolean>;
@@ -1772,9 +1780,11 @@ export declare const bannedUserSchema: z.ZodObject<{
1772
1780
  favoriteLeagues?: boolean | undefined;
1773
1781
  favoriteTeams?: boolean | undefined;
1774
1782
  lastWeekScoreLeaderboard?: boolean | undefined;
1775
- leaderboardChanges?: "This Week" | "This Month" | "This Year" | "All Time" | "Last Week" | null | undefined;
1783
+ leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
1776
1784
  chatReplies?: boolean | undefined;
1777
1785
  repliesToRatings?: boolean | undefined;
1786
+ repliesToLists?: boolean | undefined;
1787
+ repliesToUserEvents?: boolean | undefined;
1778
1788
  repliesToComments?: boolean | undefined;
1779
1789
  ratingLikes?: boolean | undefined;
1780
1790
  listLikes?: boolean | undefined;
@@ -1796,9 +1806,11 @@ export declare const bannedUserSchema: z.ZodObject<{
1796
1806
  favoriteLeagues?: boolean | undefined;
1797
1807
  favoriteTeams?: boolean | undefined;
1798
1808
  lastWeekScoreLeaderboard?: boolean | undefined;
1799
- leaderboardChanges?: "This Week" | "This Month" | "This Year" | "All Time" | "Last Week" | null | undefined;
1809
+ leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
1800
1810
  chatReplies?: boolean | undefined;
1801
1811
  repliesToRatings?: boolean | undefined;
1812
+ repliesToLists?: boolean | undefined;
1813
+ repliesToUserEvents?: boolean | undefined;
1802
1814
  repliesToComments?: boolean | undefined;
1803
1815
  ratingLikes?: boolean | undefined;
1804
1816
  listLikes?: boolean | undefined;
@@ -2808,9 +2820,11 @@ export declare const bannedUsersResponseSchema: z.ZodObject<{
2808
2820
  favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
2809
2821
  favoriteTeams: z.ZodOptional<z.ZodBoolean>;
2810
2822
  lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
2811
- leaderboardChanges: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"This Week">, z.ZodLiteral<"Last Week">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All Time">]>>>;
2823
+ leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
2812
2824
  chatReplies: z.ZodOptional<z.ZodBoolean>;
2813
2825
  repliesToRatings: z.ZodOptional<z.ZodBoolean>;
2826
+ repliesToLists: z.ZodOptional<z.ZodBoolean>;
2827
+ repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
2814
2828
  repliesToComments: z.ZodOptional<z.ZodBoolean>;
2815
2829
  ratingLikes: z.ZodOptional<z.ZodBoolean>;
2816
2830
  listLikes: z.ZodOptional<z.ZodBoolean>;
@@ -2848,9 +2862,11 @@ export declare const bannedUsersResponseSchema: z.ZodObject<{
2848
2862
  favoriteLeagues?: boolean | undefined;
2849
2863
  favoriteTeams?: boolean | undefined;
2850
2864
  lastWeekScoreLeaderboard?: boolean | undefined;
2851
- leaderboardChanges?: "This Week" | "This Month" | "This Year" | "All Time" | "Last Week" | null | undefined;
2865
+ leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
2852
2866
  chatReplies?: boolean | undefined;
2853
2867
  repliesToRatings?: boolean | undefined;
2868
+ repliesToLists?: boolean | undefined;
2869
+ repliesToUserEvents?: boolean | undefined;
2854
2870
  repliesToComments?: boolean | undefined;
2855
2871
  ratingLikes?: boolean | undefined;
2856
2872
  listLikes?: boolean | undefined;
@@ -2872,9 +2888,11 @@ export declare const bannedUsersResponseSchema: z.ZodObject<{
2872
2888
  favoriteLeagues?: boolean | undefined;
2873
2889
  favoriteTeams?: boolean | undefined;
2874
2890
  lastWeekScoreLeaderboard?: boolean | undefined;
2875
- leaderboardChanges?: "This Week" | "This Month" | "This Year" | "All Time" | "Last Week" | null | undefined;
2891
+ leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
2876
2892
  chatReplies?: boolean | undefined;
2877
2893
  repliesToRatings?: boolean | undefined;
2894
+ repliesToLists?: boolean | undefined;
2895
+ repliesToUserEvents?: boolean | undefined;
2878
2896
  repliesToComments?: boolean | undefined;
2879
2897
  ratingLikes?: boolean | undefined;
2880
2898
  listLikes?: boolean | undefined;
@@ -3928,9 +3946,11 @@ export declare const banStatusResponseSchema: z.ZodObject<{
3928
3946
  favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
3929
3947
  favoriteTeams: z.ZodOptional<z.ZodBoolean>;
3930
3948
  lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
3931
- leaderboardChanges: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"This Week">, z.ZodLiteral<"Last Week">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All Time">]>>>;
3949
+ leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
3932
3950
  chatReplies: z.ZodOptional<z.ZodBoolean>;
3933
3951
  repliesToRatings: z.ZodOptional<z.ZodBoolean>;
3952
+ repliesToLists: z.ZodOptional<z.ZodBoolean>;
3953
+ repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
3934
3954
  repliesToComments: z.ZodOptional<z.ZodBoolean>;
3935
3955
  ratingLikes: z.ZodOptional<z.ZodBoolean>;
3936
3956
  listLikes: z.ZodOptional<z.ZodBoolean>;
@@ -3968,9 +3988,11 @@ export declare const banStatusResponseSchema: z.ZodObject<{
3968
3988
  favoriteLeagues?: boolean | undefined;
3969
3989
  favoriteTeams?: boolean | undefined;
3970
3990
  lastWeekScoreLeaderboard?: boolean | undefined;
3971
- leaderboardChanges?: "This Week" | "This Month" | "This Year" | "All Time" | "Last Week" | null | undefined;
3991
+ leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
3972
3992
  chatReplies?: boolean | undefined;
3973
3993
  repliesToRatings?: boolean | undefined;
3994
+ repliesToLists?: boolean | undefined;
3995
+ repliesToUserEvents?: boolean | undefined;
3974
3996
  repliesToComments?: boolean | undefined;
3975
3997
  ratingLikes?: boolean | undefined;
3976
3998
  listLikes?: boolean | undefined;
@@ -3992,9 +4014,11 @@ export declare const banStatusResponseSchema: z.ZodObject<{
3992
4014
  favoriteLeagues?: boolean | undefined;
3993
4015
  favoriteTeams?: boolean | undefined;
3994
4016
  lastWeekScoreLeaderboard?: boolean | undefined;
3995
- leaderboardChanges?: "This Week" | "This Month" | "This Year" | "All Time" | "Last Week" | null | undefined;
4017
+ leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
3996
4018
  chatReplies?: boolean | undefined;
3997
4019
  repliesToRatings?: boolean | undefined;
4020
+ repliesToLists?: boolean | undefined;
4021
+ repliesToUserEvents?: boolean | undefined;
3998
4022
  repliesToComments?: boolean | undefined;
3999
4023
  ratingLikes?: boolean | undefined;
4000
4024
  listLikes?: boolean | undefined;
@@ -1595,9 +1595,11 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
1595
1595
  favoriteLeagues: import("zod").ZodOptional<import("zod").ZodBoolean>;
1596
1596
  favoriteTeams: import("zod").ZodOptional<import("zod").ZodBoolean>;
1597
1597
  lastWeekScoreLeaderboard: import("zod").ZodOptional<import("zod").ZodBoolean>;
1598
- leaderboardChanges: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"Last Week">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All Time">]>>>;
1598
+ leaderboardChanges: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">, import("zod").ZodLiteral<"monthly">]>>;
1599
1599
  chatReplies: import("zod").ZodOptional<import("zod").ZodBoolean>;
1600
1600
  repliesToRatings: import("zod").ZodOptional<import("zod").ZodBoolean>;
1601
+ repliesToLists: import("zod").ZodOptional<import("zod").ZodBoolean>;
1602
+ repliesToUserEvents: import("zod").ZodOptional<import("zod").ZodBoolean>;
1601
1603
  repliesToComments: import("zod").ZodOptional<import("zod").ZodBoolean>;
1602
1604
  ratingLikes: import("zod").ZodOptional<import("zod").ZodBoolean>;
1603
1605
  listLikes: import("zod").ZodOptional<import("zod").ZodBoolean>;
@@ -1635,9 +1637,11 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
1635
1637
  favoriteLeagues?: boolean | undefined;
1636
1638
  favoriteTeams?: boolean | undefined;
1637
1639
  lastWeekScoreLeaderboard?: boolean | undefined;
1638
- leaderboardChanges?: "This Week" | "This Month" | "This Year" | "All Time" | "Last Week" | null | undefined;
1640
+ leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
1639
1641
  chatReplies?: boolean | undefined;
1640
1642
  repliesToRatings?: boolean | undefined;
1643
+ repliesToLists?: boolean | undefined;
1644
+ repliesToUserEvents?: boolean | undefined;
1641
1645
  repliesToComments?: boolean | undefined;
1642
1646
  ratingLikes?: boolean | undefined;
1643
1647
  listLikes?: boolean | undefined;
@@ -1659,9 +1663,11 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
1659
1663
  favoriteLeagues?: boolean | undefined;
1660
1664
  favoriteTeams?: boolean | undefined;
1661
1665
  lastWeekScoreLeaderboard?: boolean | undefined;
1662
- leaderboardChanges?: "This Week" | "This Month" | "This Year" | "All Time" | "Last Week" | null | undefined;
1666
+ leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
1663
1667
  chatReplies?: boolean | undefined;
1664
1668
  repliesToRatings?: boolean | undefined;
1669
+ repliesToLists?: boolean | undefined;
1670
+ repliesToUserEvents?: boolean | undefined;
1665
1671
  repliesToComments?: boolean | undefined;
1666
1672
  ratingLikes?: boolean | undefined;
1667
1673
  listLikes?: boolean | undefined;
@@ -2608,9 +2614,11 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
2608
2614
  favoriteLeagues: import("zod").ZodOptional<import("zod").ZodBoolean>;
2609
2615
  favoriteTeams: import("zod").ZodOptional<import("zod").ZodBoolean>;
2610
2616
  lastWeekScoreLeaderboard: import("zod").ZodOptional<import("zod").ZodBoolean>;
2611
- leaderboardChanges: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"Last Week">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All Time">]>>>;
2617
+ leaderboardChanges: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">, import("zod").ZodLiteral<"monthly">]>>;
2612
2618
  chatReplies: import("zod").ZodOptional<import("zod").ZodBoolean>;
2613
2619
  repliesToRatings: import("zod").ZodOptional<import("zod").ZodBoolean>;
2620
+ repliesToLists: import("zod").ZodOptional<import("zod").ZodBoolean>;
2621
+ repliesToUserEvents: import("zod").ZodOptional<import("zod").ZodBoolean>;
2614
2622
  repliesToComments: import("zod").ZodOptional<import("zod").ZodBoolean>;
2615
2623
  ratingLikes: import("zod").ZodOptional<import("zod").ZodBoolean>;
2616
2624
  listLikes: import("zod").ZodOptional<import("zod").ZodBoolean>;
@@ -2648,9 +2656,11 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
2648
2656
  favoriteLeagues?: boolean | undefined;
2649
2657
  favoriteTeams?: boolean | undefined;
2650
2658
  lastWeekScoreLeaderboard?: boolean | undefined;
2651
- leaderboardChanges?: "This Week" | "This Month" | "This Year" | "All Time" | "Last Week" | null | undefined;
2659
+ leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
2652
2660
  chatReplies?: boolean | undefined;
2653
2661
  repliesToRatings?: boolean | undefined;
2662
+ repliesToLists?: boolean | undefined;
2663
+ repliesToUserEvents?: boolean | undefined;
2654
2664
  repliesToComments?: boolean | undefined;
2655
2665
  ratingLikes?: boolean | undefined;
2656
2666
  listLikes?: boolean | undefined;
@@ -2672,9 +2682,11 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
2672
2682
  favoriteLeagues?: boolean | undefined;
2673
2683
  favoriteTeams?: boolean | undefined;
2674
2684
  lastWeekScoreLeaderboard?: boolean | undefined;
2675
- leaderboardChanges?: "This Week" | "This Month" | "This Year" | "All Time" | "Last Week" | null | undefined;
2685
+ leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
2676
2686
  chatReplies?: boolean | undefined;
2677
2687
  repliesToRatings?: boolean | undefined;
2688
+ repliesToLists?: boolean | undefined;
2689
+ repliesToUserEvents?: boolean | undefined;
2678
2690
  repliesToComments?: boolean | undefined;
2679
2691
  ratingLikes?: boolean | undefined;
2680
2692
  listLikes?: boolean | undefined;
@@ -3692,9 +3704,11 @@ export declare const threadCommentLikeSchema: import("zod").ZodObject<{
3692
3704
  favoriteLeagues: import("zod").ZodOptional<import("zod").ZodBoolean>;
3693
3705
  favoriteTeams: import("zod").ZodOptional<import("zod").ZodBoolean>;
3694
3706
  lastWeekScoreLeaderboard: import("zod").ZodOptional<import("zod").ZodBoolean>;
3695
- leaderboardChanges: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"Last Week">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All Time">]>>>;
3707
+ leaderboardChanges: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">, import("zod").ZodLiteral<"monthly">]>>;
3696
3708
  chatReplies: import("zod").ZodOptional<import("zod").ZodBoolean>;
3697
3709
  repliesToRatings: import("zod").ZodOptional<import("zod").ZodBoolean>;
3710
+ repliesToLists: import("zod").ZodOptional<import("zod").ZodBoolean>;
3711
+ repliesToUserEvents: import("zod").ZodOptional<import("zod").ZodBoolean>;
3698
3712
  repliesToComments: import("zod").ZodOptional<import("zod").ZodBoolean>;
3699
3713
  ratingLikes: import("zod").ZodOptional<import("zod").ZodBoolean>;
3700
3714
  listLikes: import("zod").ZodOptional<import("zod").ZodBoolean>;
@@ -3732,9 +3746,11 @@ export declare const threadCommentLikeSchema: import("zod").ZodObject<{
3732
3746
  favoriteLeagues?: boolean | undefined;
3733
3747
  favoriteTeams?: boolean | undefined;
3734
3748
  lastWeekScoreLeaderboard?: boolean | undefined;
3735
- leaderboardChanges?: "This Week" | "This Month" | "This Year" | "All Time" | "Last Week" | null | undefined;
3749
+ leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
3736
3750
  chatReplies?: boolean | undefined;
3737
3751
  repliesToRatings?: boolean | undefined;
3752
+ repliesToLists?: boolean | undefined;
3753
+ repliesToUserEvents?: boolean | undefined;
3738
3754
  repliesToComments?: boolean | undefined;
3739
3755
  ratingLikes?: boolean | undefined;
3740
3756
  listLikes?: boolean | undefined;
@@ -3756,9 +3772,11 @@ export declare const threadCommentLikeSchema: import("zod").ZodObject<{
3756
3772
  favoriteLeagues?: boolean | undefined;
3757
3773
  favoriteTeams?: boolean | undefined;
3758
3774
  lastWeekScoreLeaderboard?: boolean | undefined;
3759
- leaderboardChanges?: "This Week" | "This Month" | "This Year" | "All Time" | "Last Week" | null | undefined;
3775
+ leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
3760
3776
  chatReplies?: boolean | undefined;
3761
3777
  repliesToRatings?: boolean | undefined;
3778
+ repliesToLists?: boolean | undefined;
3779
+ repliesToUserEvents?: boolean | undefined;
3762
3780
  repliesToComments?: boolean | undefined;
3763
3781
  ratingLikes?: boolean | undefined;
3764
3782
  listLikes?: boolean | undefined;