rategame-shared 1.1.273 → 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 +1520 -0
- package/dist/schemas/list.d.ts +380 -0
- package/dist/schemas/moderation.d.ts +304 -0
- package/dist/schemas/rating.d.ts +228 -0
- package/dist/schemas/stadium.d.ts +304 -0
- 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/voting.d.ts
CHANGED
|
@@ -674,14 +674,90 @@ export declare const playerVoteSchema: z.ZodObject<{
|
|
|
674
674
|
allGames: z.ZodOptional<z.ZodBoolean>;
|
|
675
675
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
676
676
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
677
|
+
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
678
|
+
leaderboardChanges: z.ZodOptional<z.ZodBoolean>;
|
|
679
|
+
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
680
|
+
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
681
|
+
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
682
|
+
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
683
|
+
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
684
|
+
eventLikes: z.ZodOptional<z.ZodBoolean>;
|
|
685
|
+
commentLikes: z.ZodOptional<z.ZodBoolean>;
|
|
686
|
+
trendingGames: z.ZodOptional<z.ZodBoolean>;
|
|
687
|
+
gameChanges: z.ZodOptional<z.ZodObject<{
|
|
688
|
+
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">]>>;
|
|
689
|
+
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">]>>;
|
|
690
|
+
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">]>>;
|
|
691
|
+
}, "strip", z.ZodTypeAny, {
|
|
692
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
693
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
694
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
695
|
+
}, {
|
|
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
|
+
gameTopLists: z.ZodOptional<z.ZodObject<{
|
|
701
|
+
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">]>>;
|
|
702
|
+
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">]>>;
|
|
703
|
+
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">]>>;
|
|
704
|
+
}, "strip", z.ZodTypeAny, {
|
|
705
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
706
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
707
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
708
|
+
}, {
|
|
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
|
+
}>>;
|
|
677
713
|
}, "strip", z.ZodTypeAny, {
|
|
678
714
|
allGames?: boolean | undefined;
|
|
679
715
|
favoriteLeagues?: boolean | undefined;
|
|
680
716
|
favoriteTeams?: boolean | undefined;
|
|
717
|
+
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
718
|
+
leaderboardChanges?: boolean | undefined;
|
|
719
|
+
chatReplies?: boolean | undefined;
|
|
720
|
+
repliesToRatings?: boolean | undefined;
|
|
721
|
+
repliesToComments?: boolean | undefined;
|
|
722
|
+
ratingLikes?: boolean | undefined;
|
|
723
|
+
listLikes?: boolean | undefined;
|
|
724
|
+
eventLikes?: boolean | undefined;
|
|
725
|
+
commentLikes?: boolean | undefined;
|
|
726
|
+
trendingGames?: boolean | undefined;
|
|
727
|
+
gameChanges?: {
|
|
728
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
729
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
730
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
731
|
+
} | undefined;
|
|
732
|
+
gameTopLists?: {
|
|
733
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
734
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
735
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
736
|
+
} | undefined;
|
|
681
737
|
}, {
|
|
682
738
|
allGames?: boolean | undefined;
|
|
683
739
|
favoriteLeagues?: boolean | undefined;
|
|
684
740
|
favoriteTeams?: boolean | undefined;
|
|
741
|
+
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
742
|
+
leaderboardChanges?: boolean | undefined;
|
|
743
|
+
chatReplies?: boolean | undefined;
|
|
744
|
+
repliesToRatings?: boolean | undefined;
|
|
745
|
+
repliesToComments?: boolean | undefined;
|
|
746
|
+
ratingLikes?: boolean | undefined;
|
|
747
|
+
listLikes?: boolean | undefined;
|
|
748
|
+
eventLikes?: boolean | undefined;
|
|
749
|
+
commentLikes?: boolean | undefined;
|
|
750
|
+
trendingGames?: boolean | undefined;
|
|
751
|
+
gameChanges?: {
|
|
752
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
753
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
754
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
755
|
+
} | undefined;
|
|
756
|
+
gameTopLists?: {
|
|
757
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
758
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
759
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
760
|
+
} | undefined;
|
|
685
761
|
}>>;
|
|
686
762
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
687
763
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -1729,14 +1805,90 @@ export declare const voteSubmissionDtoSchema: z.ZodObject<{
|
|
|
1729
1805
|
allGames: z.ZodOptional<z.ZodBoolean>;
|
|
1730
1806
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
1731
1807
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
1808
|
+
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
1809
|
+
leaderboardChanges: z.ZodOptional<z.ZodBoolean>;
|
|
1810
|
+
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
1811
|
+
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
1812
|
+
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
1813
|
+
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
1814
|
+
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
1815
|
+
eventLikes: z.ZodOptional<z.ZodBoolean>;
|
|
1816
|
+
commentLikes: z.ZodOptional<z.ZodBoolean>;
|
|
1817
|
+
trendingGames: z.ZodOptional<z.ZodBoolean>;
|
|
1818
|
+
gameChanges: z.ZodOptional<z.ZodObject<{
|
|
1819
|
+
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">]>>;
|
|
1820
|
+
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">]>>;
|
|
1821
|
+
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">]>>;
|
|
1822
|
+
}, "strip", z.ZodTypeAny, {
|
|
1823
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1824
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1825
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1826
|
+
}, {
|
|
1827
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1828
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1829
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1830
|
+
}>>;
|
|
1831
|
+
gameTopLists: z.ZodOptional<z.ZodObject<{
|
|
1832
|
+
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">]>>;
|
|
1833
|
+
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">]>>;
|
|
1834
|
+
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">]>>;
|
|
1835
|
+
}, "strip", z.ZodTypeAny, {
|
|
1836
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1837
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1838
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1839
|
+
}, {
|
|
1840
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1841
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1842
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1843
|
+
}>>;
|
|
1732
1844
|
}, "strip", z.ZodTypeAny, {
|
|
1733
1845
|
allGames?: boolean | undefined;
|
|
1734
1846
|
favoriteLeagues?: boolean | undefined;
|
|
1735
1847
|
favoriteTeams?: boolean | undefined;
|
|
1848
|
+
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
1849
|
+
leaderboardChanges?: boolean | undefined;
|
|
1850
|
+
chatReplies?: boolean | undefined;
|
|
1851
|
+
repliesToRatings?: boolean | undefined;
|
|
1852
|
+
repliesToComments?: boolean | undefined;
|
|
1853
|
+
ratingLikes?: boolean | undefined;
|
|
1854
|
+
listLikes?: boolean | undefined;
|
|
1855
|
+
eventLikes?: boolean | undefined;
|
|
1856
|
+
commentLikes?: boolean | undefined;
|
|
1857
|
+
trendingGames?: boolean | undefined;
|
|
1858
|
+
gameChanges?: {
|
|
1859
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1860
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1861
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1862
|
+
} | undefined;
|
|
1863
|
+
gameTopLists?: {
|
|
1864
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1865
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1866
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1867
|
+
} | undefined;
|
|
1736
1868
|
}, {
|
|
1737
1869
|
allGames?: boolean | undefined;
|
|
1738
1870
|
favoriteLeagues?: boolean | undefined;
|
|
1739
1871
|
favoriteTeams?: boolean | undefined;
|
|
1872
|
+
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
1873
|
+
leaderboardChanges?: boolean | undefined;
|
|
1874
|
+
chatReplies?: boolean | undefined;
|
|
1875
|
+
repliesToRatings?: boolean | undefined;
|
|
1876
|
+
repliesToComments?: boolean | undefined;
|
|
1877
|
+
ratingLikes?: boolean | undefined;
|
|
1878
|
+
listLikes?: boolean | undefined;
|
|
1879
|
+
eventLikes?: boolean | undefined;
|
|
1880
|
+
commentLikes?: boolean | undefined;
|
|
1881
|
+
trendingGames?: boolean | undefined;
|
|
1882
|
+
gameChanges?: {
|
|
1883
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1884
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1885
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1886
|
+
} | undefined;
|
|
1887
|
+
gameTopLists?: {
|
|
1888
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1889
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1890
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1891
|
+
} | undefined;
|
|
1740
1892
|
}>>;
|
|
1741
1893
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1742
1894
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -3268,14 +3420,90 @@ export declare const userVoteResponseDtoSchema: z.ZodObject<{
|
|
|
3268
3420
|
allGames: z.ZodOptional<z.ZodBoolean>;
|
|
3269
3421
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
3270
3422
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
3423
|
+
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
3424
|
+
leaderboardChanges: z.ZodOptional<z.ZodBoolean>;
|
|
3425
|
+
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
3426
|
+
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
3427
|
+
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
3428
|
+
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
3429
|
+
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
3430
|
+
eventLikes: z.ZodOptional<z.ZodBoolean>;
|
|
3431
|
+
commentLikes: z.ZodOptional<z.ZodBoolean>;
|
|
3432
|
+
trendingGames: z.ZodOptional<z.ZodBoolean>;
|
|
3433
|
+
gameChanges: z.ZodOptional<z.ZodObject<{
|
|
3434
|
+
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">]>>;
|
|
3435
|
+
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">]>>;
|
|
3436
|
+
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">]>>;
|
|
3437
|
+
}, "strip", z.ZodTypeAny, {
|
|
3438
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3439
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3440
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3441
|
+
}, {
|
|
3442
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3443
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3444
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3445
|
+
}>>;
|
|
3446
|
+
gameTopLists: z.ZodOptional<z.ZodObject<{
|
|
3447
|
+
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">]>>;
|
|
3448
|
+
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">]>>;
|
|
3449
|
+
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">]>>;
|
|
3450
|
+
}, "strip", z.ZodTypeAny, {
|
|
3451
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3452
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3453
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3454
|
+
}, {
|
|
3455
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3456
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3457
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3458
|
+
}>>;
|
|
3271
3459
|
}, "strip", z.ZodTypeAny, {
|
|
3272
3460
|
allGames?: boolean | undefined;
|
|
3273
3461
|
favoriteLeagues?: boolean | undefined;
|
|
3274
3462
|
favoriteTeams?: boolean | undefined;
|
|
3463
|
+
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
3464
|
+
leaderboardChanges?: boolean | undefined;
|
|
3465
|
+
chatReplies?: boolean | undefined;
|
|
3466
|
+
repliesToRatings?: boolean | undefined;
|
|
3467
|
+
repliesToComments?: boolean | undefined;
|
|
3468
|
+
ratingLikes?: boolean | undefined;
|
|
3469
|
+
listLikes?: boolean | undefined;
|
|
3470
|
+
eventLikes?: boolean | undefined;
|
|
3471
|
+
commentLikes?: boolean | undefined;
|
|
3472
|
+
trendingGames?: boolean | undefined;
|
|
3473
|
+
gameChanges?: {
|
|
3474
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3475
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3476
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3477
|
+
} | undefined;
|
|
3478
|
+
gameTopLists?: {
|
|
3479
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3480
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3481
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3482
|
+
} | undefined;
|
|
3275
3483
|
}, {
|
|
3276
3484
|
allGames?: boolean | undefined;
|
|
3277
3485
|
favoriteLeagues?: boolean | undefined;
|
|
3278
3486
|
favoriteTeams?: boolean | undefined;
|
|
3487
|
+
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
3488
|
+
leaderboardChanges?: boolean | undefined;
|
|
3489
|
+
chatReplies?: boolean | undefined;
|
|
3490
|
+
repliesToRatings?: boolean | undefined;
|
|
3491
|
+
repliesToComments?: boolean | undefined;
|
|
3492
|
+
ratingLikes?: boolean | undefined;
|
|
3493
|
+
listLikes?: boolean | undefined;
|
|
3494
|
+
eventLikes?: boolean | undefined;
|
|
3495
|
+
commentLikes?: boolean | undefined;
|
|
3496
|
+
trendingGames?: boolean | undefined;
|
|
3497
|
+
gameChanges?: {
|
|
3498
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3499
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3500
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3501
|
+
} | undefined;
|
|
3502
|
+
gameTopLists?: {
|
|
3503
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3504
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3505
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3506
|
+
} | undefined;
|
|
3279
3507
|
}>>;
|
|
3280
3508
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3281
3509
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|