rategame-shared 1.1.300 → 1.1.302

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.
@@ -650,6 +650,7 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
650
650
  acceptedPushNotifications: z.ZodBoolean;
651
651
  badge: z.ZodOptional<z.ZodString>;
652
652
  registrationStep: z.ZodOptional<z.ZodNumber>;
653
+ hasRatedGames: z.ZodOptional<z.ZodBoolean>;
653
654
  selectedLeagues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
654
655
  selectedTeams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
655
656
  lockedGameMessageSeen: z.ZodOptional<z.ZodBoolean>;
@@ -689,6 +690,7 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
689
690
  listLikes: z.ZodOptional<z.ZodBoolean>;
690
691
  eventLikes: z.ZodOptional<z.ZodBoolean>;
691
692
  commentLikes: z.ZodOptional<z.ZodBoolean>;
693
+ threadActivityNotifications: z.ZodOptional<z.ZodBoolean>;
692
694
  trendingGames: z.ZodOptional<z.ZodBoolean>;
693
695
  gameChanges: z.ZodOptional<z.ZodObject<{
694
696
  topRatedGameChanges: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, 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">]>>>;
@@ -731,6 +733,7 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
731
733
  listLikes?: boolean | undefined;
732
734
  eventLikes?: boolean | undefined;
733
735
  commentLikes?: boolean | undefined;
736
+ threadActivityNotifications?: boolean | undefined;
734
737
  trendingGames?: boolean | undefined;
735
738
  gameChanges?: {
736
739
  topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
@@ -757,6 +760,7 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
757
760
  listLikes?: boolean | undefined;
758
761
  eventLikes?: boolean | undefined;
759
762
  commentLikes?: boolean | undefined;
763
+ threadActivityNotifications?: boolean | undefined;
760
764
  trendingGames?: boolean | undefined;
761
765
  gameChanges?: {
762
766
  topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
@@ -1676,6 +1680,7 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
1676
1680
  acceptedPushNotifications: z.ZodBoolean;
1677
1681
  badge: z.ZodOptional<z.ZodString>;
1678
1682
  registrationStep: z.ZodOptional<z.ZodNumber>;
1683
+ hasRatedGames: z.ZodOptional<z.ZodBoolean>;
1679
1684
  selectedLeagues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1680
1685
  selectedTeams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1681
1686
  lockedGameMessageSeen: z.ZodOptional<z.ZodBoolean>;
@@ -1715,6 +1720,7 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
1715
1720
  listLikes: z.ZodOptional<z.ZodBoolean>;
1716
1721
  eventLikes: z.ZodOptional<z.ZodBoolean>;
1717
1722
  commentLikes: z.ZodOptional<z.ZodBoolean>;
1723
+ threadActivityNotifications: z.ZodOptional<z.ZodBoolean>;
1718
1724
  trendingGames: z.ZodOptional<z.ZodBoolean>;
1719
1725
  gameChanges: z.ZodOptional<z.ZodObject<{
1720
1726
  topRatedGameChanges: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, 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">]>>>;
@@ -1757,6 +1763,7 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
1757
1763
  listLikes?: boolean | undefined;
1758
1764
  eventLikes?: boolean | undefined;
1759
1765
  commentLikes?: boolean | undefined;
1766
+ threadActivityNotifications?: boolean | undefined;
1760
1767
  trendingGames?: boolean | undefined;
1761
1768
  gameChanges?: {
1762
1769
  topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
@@ -1783,6 +1790,7 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
1783
1790
  listLikes?: boolean | undefined;
1784
1791
  eventLikes?: boolean | undefined;
1785
1792
  commentLikes?: boolean | undefined;
1793
+ threadActivityNotifications?: boolean | undefined;
1786
1794
  trendingGames?: boolean | undefined;
1787
1795
  gameChanges?: {
1788
1796
  topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
@@ -2758,6 +2766,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
2758
2766
  acceptedPushNotifications: z.ZodBoolean;
2759
2767
  badge: z.ZodOptional<z.ZodString>;
2760
2768
  registrationStep: z.ZodOptional<z.ZodNumber>;
2769
+ hasRatedGames: z.ZodOptional<z.ZodBoolean>;
2761
2770
  selectedLeagues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2762
2771
  selectedTeams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2763
2772
  lockedGameMessageSeen: z.ZodOptional<z.ZodBoolean>;
@@ -2797,6 +2806,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
2797
2806
  listLikes: z.ZodOptional<z.ZodBoolean>;
2798
2807
  eventLikes: z.ZodOptional<z.ZodBoolean>;
2799
2808
  commentLikes: z.ZodOptional<z.ZodBoolean>;
2809
+ threadActivityNotifications: z.ZodOptional<z.ZodBoolean>;
2800
2810
  trendingGames: z.ZodOptional<z.ZodBoolean>;
2801
2811
  gameChanges: z.ZodOptional<z.ZodObject<{
2802
2812
  topRatedGameChanges: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, 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">]>>>;
@@ -2839,6 +2849,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
2839
2849
  listLikes?: boolean | undefined;
2840
2850
  eventLikes?: boolean | undefined;
2841
2851
  commentLikes?: boolean | undefined;
2852
+ threadActivityNotifications?: boolean | undefined;
2842
2853
  trendingGames?: boolean | undefined;
2843
2854
  gameChanges?: {
2844
2855
  topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
@@ -2865,6 +2876,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
2865
2876
  listLikes?: boolean | undefined;
2866
2877
  eventLikes?: boolean | undefined;
2867
2878
  commentLikes?: boolean | undefined;
2879
+ threadActivityNotifications?: boolean | undefined;
2868
2880
  trendingGames?: boolean | undefined;
2869
2881
  gameChanges?: {
2870
2882
  topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
@@ -3783,6 +3795,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
3783
3795
  acceptedPushNotifications: z.ZodBoolean;
3784
3796
  badge: z.ZodOptional<z.ZodString>;
3785
3797
  registrationStep: z.ZodOptional<z.ZodNumber>;
3798
+ hasRatedGames: z.ZodOptional<z.ZodBoolean>;
3786
3799
  selectedLeagues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3787
3800
  selectedTeams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3788
3801
  lockedGameMessageSeen: z.ZodOptional<z.ZodBoolean>;
@@ -3822,6 +3835,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
3822
3835
  listLikes: z.ZodOptional<z.ZodBoolean>;
3823
3836
  eventLikes: z.ZodOptional<z.ZodBoolean>;
3824
3837
  commentLikes: z.ZodOptional<z.ZodBoolean>;
3838
+ threadActivityNotifications: z.ZodOptional<z.ZodBoolean>;
3825
3839
  trendingGames: z.ZodOptional<z.ZodBoolean>;
3826
3840
  gameChanges: z.ZodOptional<z.ZodObject<{
3827
3841
  topRatedGameChanges: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, 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">]>>>;
@@ -3864,6 +3878,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
3864
3878
  listLikes?: boolean | undefined;
3865
3879
  eventLikes?: boolean | undefined;
3866
3880
  commentLikes?: boolean | undefined;
3881
+ threadActivityNotifications?: boolean | undefined;
3867
3882
  trendingGames?: boolean | undefined;
3868
3883
  gameChanges?: {
3869
3884
  topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
@@ -3890,6 +3905,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
3890
3905
  listLikes?: boolean | undefined;
3891
3906
  eventLikes?: boolean | undefined;
3892
3907
  commentLikes?: boolean | undefined;
3908
+ threadActivityNotifications?: boolean | undefined;
3893
3909
  trendingGames?: boolean | undefined;
3894
3910
  gameChanges?: {
3895
3911
  topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
@@ -4860,6 +4876,7 @@ export declare const messageReactionSchema: z.ZodObject<{
4860
4876
  acceptedPushNotifications: z.ZodBoolean;
4861
4877
  badge: z.ZodOptional<z.ZodString>;
4862
4878
  registrationStep: z.ZodOptional<z.ZodNumber>;
4879
+ hasRatedGames: z.ZodOptional<z.ZodBoolean>;
4863
4880
  selectedLeagues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4864
4881
  selectedTeams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4865
4882
  lockedGameMessageSeen: z.ZodOptional<z.ZodBoolean>;
@@ -4899,6 +4916,7 @@ export declare const messageReactionSchema: z.ZodObject<{
4899
4916
  listLikes: z.ZodOptional<z.ZodBoolean>;
4900
4917
  eventLikes: z.ZodOptional<z.ZodBoolean>;
4901
4918
  commentLikes: z.ZodOptional<z.ZodBoolean>;
4919
+ threadActivityNotifications: z.ZodOptional<z.ZodBoolean>;
4902
4920
  trendingGames: z.ZodOptional<z.ZodBoolean>;
4903
4921
  gameChanges: z.ZodOptional<z.ZodObject<{
4904
4922
  topRatedGameChanges: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, 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">]>>>;
@@ -4941,6 +4959,7 @@ export declare const messageReactionSchema: z.ZodObject<{
4941
4959
  listLikes?: boolean | undefined;
4942
4960
  eventLikes?: boolean | undefined;
4943
4961
  commentLikes?: boolean | undefined;
4962
+ threadActivityNotifications?: boolean | undefined;
4944
4963
  trendingGames?: boolean | undefined;
4945
4964
  gameChanges?: {
4946
4965
  topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
@@ -4967,6 +4986,7 @@ export declare const messageReactionSchema: z.ZodObject<{
4967
4986
  listLikes?: boolean | undefined;
4968
4987
  eventLikes?: boolean | undefined;
4969
4988
  commentLikes?: boolean | undefined;
4989
+ threadActivityNotifications?: boolean | undefined;
4970
4990
  trendingGames?: boolean | undefined;
4971
4991
  gameChanges?: {
4972
4992
  topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;