rategame-shared 1.1.275 → 1.1.276
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 +45 -15
- package/dist/schemas/game.d.ts +180 -60
- package/dist/schemas/list.d.ts +45 -15
- package/dist/schemas/moderation.d.ts +36 -12
- package/dist/schemas/rating.d.ts +27 -9
- package/dist/schemas/stadium.d.ts +36 -12
- package/dist/schemas/user.d.ts +39 -13
- package/dist/schemas/user.js +5 -1
- package/dist/schemas/userEvent.d.ts +27 -9
- package/dist/schemas/voting.d.ts +27 -9
- package/package.json +1 -1
package/dist/schemas/chat.d.ts
CHANGED
|
@@ -679,9 +679,11 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
679
679
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
680
680
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
681
681
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
682
|
-
leaderboardChanges: z.
|
|
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 chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
719
721
|
favoriteLeagues?: boolean | undefined;
|
|
720
722
|
favoriteTeams?: boolean | undefined;
|
|
721
723
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
722
|
-
leaderboardChanges?: "
|
|
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 chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
743
747
|
favoriteLeagues?: boolean | undefined;
|
|
744
748
|
favoriteTeams?: boolean | undefined;
|
|
745
749
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
746
|
-
leaderboardChanges?: "
|
|
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;
|
|
@@ -1695,9 +1701,11 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1695
1701
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
1696
1702
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
1697
1703
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
1698
|
-
leaderboardChanges: z.
|
|
1704
|
+
leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
|
|
1699
1705
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
1700
1706
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
1707
|
+
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
1708
|
+
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
1701
1709
|
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
1702
1710
|
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
1703
1711
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1735,9 +1743,11 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1735
1743
|
favoriteLeagues?: boolean | undefined;
|
|
1736
1744
|
favoriteTeams?: boolean | undefined;
|
|
1737
1745
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
1738
|
-
leaderboardChanges?: "
|
|
1746
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
1739
1747
|
chatReplies?: boolean | undefined;
|
|
1740
1748
|
repliesToRatings?: boolean | undefined;
|
|
1749
|
+
repliesToLists?: boolean | undefined;
|
|
1750
|
+
repliesToUserEvents?: boolean | undefined;
|
|
1741
1751
|
repliesToComments?: boolean | undefined;
|
|
1742
1752
|
ratingLikes?: boolean | undefined;
|
|
1743
1753
|
listLikes?: boolean | undefined;
|
|
@@ -1759,9 +1769,11 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1759
1769
|
favoriteLeagues?: boolean | undefined;
|
|
1760
1770
|
favoriteTeams?: boolean | undefined;
|
|
1761
1771
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
1762
|
-
leaderboardChanges?: "
|
|
1772
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
1763
1773
|
chatReplies?: boolean | undefined;
|
|
1764
1774
|
repliesToRatings?: boolean | undefined;
|
|
1775
|
+
repliesToLists?: boolean | undefined;
|
|
1776
|
+
repliesToUserEvents?: boolean | undefined;
|
|
1765
1777
|
repliesToComments?: boolean | undefined;
|
|
1766
1778
|
ratingLikes?: boolean | undefined;
|
|
1767
1779
|
listLikes?: boolean | undefined;
|
|
@@ -2767,9 +2779,11 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
2767
2779
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
2768
2780
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
2769
2781
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
2770
|
-
leaderboardChanges: z.
|
|
2782
|
+
leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
|
|
2771
2783
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
2772
2784
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
2785
|
+
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
2786
|
+
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
2773
2787
|
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
2774
2788
|
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
2775
2789
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2807,9 +2821,11 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
2807
2821
|
favoriteLeagues?: boolean | undefined;
|
|
2808
2822
|
favoriteTeams?: boolean | undefined;
|
|
2809
2823
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
2810
|
-
leaderboardChanges?: "
|
|
2824
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
2811
2825
|
chatReplies?: boolean | undefined;
|
|
2812
2826
|
repliesToRatings?: boolean | undefined;
|
|
2827
|
+
repliesToLists?: boolean | undefined;
|
|
2828
|
+
repliesToUserEvents?: boolean | undefined;
|
|
2813
2829
|
repliesToComments?: boolean | undefined;
|
|
2814
2830
|
ratingLikes?: boolean | undefined;
|
|
2815
2831
|
listLikes?: boolean | undefined;
|
|
@@ -2831,9 +2847,11 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
2831
2847
|
favoriteLeagues?: boolean | undefined;
|
|
2832
2848
|
favoriteTeams?: boolean | undefined;
|
|
2833
2849
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
2834
|
-
leaderboardChanges?: "
|
|
2850
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
2835
2851
|
chatReplies?: boolean | undefined;
|
|
2836
2852
|
repliesToRatings?: boolean | undefined;
|
|
2853
|
+
repliesToLists?: boolean | undefined;
|
|
2854
|
+
repliesToUserEvents?: boolean | undefined;
|
|
2837
2855
|
repliesToComments?: boolean | undefined;
|
|
2838
2856
|
ratingLikes?: boolean | undefined;
|
|
2839
2857
|
listLikes?: boolean | undefined;
|
|
@@ -3782,9 +3800,11 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
3782
3800
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
3783
3801
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
3784
3802
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
3785
|
-
leaderboardChanges: z.
|
|
3803
|
+
leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
|
|
3786
3804
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
3787
3805
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
3806
|
+
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
3807
|
+
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
3788
3808
|
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
3789
3809
|
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
3790
3810
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3822,9 +3842,11 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
3822
3842
|
favoriteLeagues?: boolean | undefined;
|
|
3823
3843
|
favoriteTeams?: boolean | undefined;
|
|
3824
3844
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
3825
|
-
leaderboardChanges?: "
|
|
3845
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
3826
3846
|
chatReplies?: boolean | undefined;
|
|
3827
3847
|
repliesToRatings?: boolean | undefined;
|
|
3848
|
+
repliesToLists?: boolean | undefined;
|
|
3849
|
+
repliesToUserEvents?: boolean | undefined;
|
|
3828
3850
|
repliesToComments?: boolean | undefined;
|
|
3829
3851
|
ratingLikes?: boolean | undefined;
|
|
3830
3852
|
listLikes?: boolean | undefined;
|
|
@@ -3846,9 +3868,11 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
3846
3868
|
favoriteLeagues?: boolean | undefined;
|
|
3847
3869
|
favoriteTeams?: boolean | undefined;
|
|
3848
3870
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
3849
|
-
leaderboardChanges?: "
|
|
3871
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
3850
3872
|
chatReplies?: boolean | undefined;
|
|
3851
3873
|
repliesToRatings?: boolean | undefined;
|
|
3874
|
+
repliesToLists?: boolean | undefined;
|
|
3875
|
+
repliesToUserEvents?: boolean | undefined;
|
|
3852
3876
|
repliesToComments?: boolean | undefined;
|
|
3853
3877
|
ratingLikes?: boolean | undefined;
|
|
3854
3878
|
listLikes?: boolean | undefined;
|
|
@@ -4849,9 +4873,11 @@ export declare const messageReactionSchema: z.ZodObject<{
|
|
|
4849
4873
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
4850
4874
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
4851
4875
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
4852
|
-
leaderboardChanges: z.
|
|
4876
|
+
leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
|
|
4853
4877
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
4854
4878
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
4879
|
+
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
4880
|
+
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
4855
4881
|
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
4856
4882
|
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
4857
4883
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4889,9 +4915,11 @@ export declare const messageReactionSchema: z.ZodObject<{
|
|
|
4889
4915
|
favoriteLeagues?: boolean | undefined;
|
|
4890
4916
|
favoriteTeams?: boolean | undefined;
|
|
4891
4917
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
4892
|
-
leaderboardChanges?: "
|
|
4918
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
4893
4919
|
chatReplies?: boolean | undefined;
|
|
4894
4920
|
repliesToRatings?: boolean | undefined;
|
|
4921
|
+
repliesToLists?: boolean | undefined;
|
|
4922
|
+
repliesToUserEvents?: boolean | undefined;
|
|
4895
4923
|
repliesToComments?: boolean | undefined;
|
|
4896
4924
|
ratingLikes?: boolean | undefined;
|
|
4897
4925
|
listLikes?: boolean | undefined;
|
|
@@ -4913,9 +4941,11 @@ export declare const messageReactionSchema: z.ZodObject<{
|
|
|
4913
4941
|
favoriteLeagues?: boolean | undefined;
|
|
4914
4942
|
favoriteTeams?: boolean | undefined;
|
|
4915
4943
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
4916
|
-
leaderboardChanges?: "
|
|
4944
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
4917
4945
|
chatReplies?: boolean | undefined;
|
|
4918
4946
|
repliesToRatings?: boolean | undefined;
|
|
4947
|
+
repliesToLists?: boolean | undefined;
|
|
4948
|
+
repliesToUserEvents?: boolean | undefined;
|
|
4919
4949
|
repliesToComments?: boolean | undefined;
|
|
4920
4950
|
ratingLikes?: boolean | undefined;
|
|
4921
4951
|
listLikes?: boolean | undefined;
|