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.
- 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 +79 -26
- package/dist/schemas/stadium.js +1 -0
- 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/user.d.ts
CHANGED
|
@@ -871,9 +871,11 @@ export declare const userSchema: z.ZodObject<{
|
|
|
871
871
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
872
872
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
873
873
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
874
|
-
leaderboardChanges: z.
|
|
874
|
+
leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
|
|
875
875
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
876
876
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
877
|
+
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
878
|
+
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
877
879
|
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
878
880
|
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
879
881
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -911,9 +913,11 @@ export declare const userSchema: z.ZodObject<{
|
|
|
911
913
|
favoriteLeagues?: boolean | undefined;
|
|
912
914
|
favoriteTeams?: boolean | undefined;
|
|
913
915
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
914
|
-
leaderboardChanges?: "
|
|
916
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
915
917
|
chatReplies?: boolean | undefined;
|
|
916
918
|
repliesToRatings?: boolean | undefined;
|
|
919
|
+
repliesToLists?: boolean | undefined;
|
|
920
|
+
repliesToUserEvents?: boolean | undefined;
|
|
917
921
|
repliesToComments?: boolean | undefined;
|
|
918
922
|
ratingLikes?: boolean | undefined;
|
|
919
923
|
listLikes?: boolean | undefined;
|
|
@@ -935,9 +939,11 @@ export declare const userSchema: z.ZodObject<{
|
|
|
935
939
|
favoriteLeagues?: boolean | undefined;
|
|
936
940
|
favoriteTeams?: boolean | undefined;
|
|
937
941
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
938
|
-
leaderboardChanges?: "
|
|
942
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
939
943
|
chatReplies?: boolean | undefined;
|
|
940
944
|
repliesToRatings?: boolean | undefined;
|
|
945
|
+
repliesToLists?: boolean | undefined;
|
|
946
|
+
repliesToUserEvents?: boolean | undefined;
|
|
941
947
|
repliesToComments?: boolean | undefined;
|
|
942
948
|
ratingLikes?: boolean | undefined;
|
|
943
949
|
listLikes?: boolean | undefined;
|
|
@@ -1345,9 +1351,11 @@ export declare const userSchema: z.ZodObject<{
|
|
|
1345
1351
|
favoriteLeagues?: boolean | undefined;
|
|
1346
1352
|
favoriteTeams?: boolean | undefined;
|
|
1347
1353
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
1348
|
-
leaderboardChanges?: "
|
|
1354
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
1349
1355
|
chatReplies?: boolean | undefined;
|
|
1350
1356
|
repliesToRatings?: boolean | undefined;
|
|
1357
|
+
repliesToLists?: boolean | undefined;
|
|
1358
|
+
repliesToUserEvents?: boolean | undefined;
|
|
1351
1359
|
repliesToComments?: boolean | undefined;
|
|
1352
1360
|
ratingLikes?: boolean | undefined;
|
|
1353
1361
|
listLikes?: boolean | undefined;
|
|
@@ -1588,9 +1596,11 @@ export declare const userSchema: z.ZodObject<{
|
|
|
1588
1596
|
favoriteLeagues?: boolean | undefined;
|
|
1589
1597
|
favoriteTeams?: boolean | undefined;
|
|
1590
1598
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
1591
|
-
leaderboardChanges?: "
|
|
1599
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
1592
1600
|
chatReplies?: boolean | undefined;
|
|
1593
1601
|
repliesToRatings?: boolean | undefined;
|
|
1602
|
+
repliesToLists?: boolean | undefined;
|
|
1603
|
+
repliesToUserEvents?: boolean | undefined;
|
|
1594
1604
|
repliesToComments?: boolean | undefined;
|
|
1595
1605
|
ratingLikes?: boolean | undefined;
|
|
1596
1606
|
listLikes?: boolean | undefined;
|
|
@@ -2355,9 +2365,11 @@ export declare const createUserSchema: z.ZodObject<Omit<{
|
|
|
2355
2365
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
2356
2366
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
2357
2367
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
2358
|
-
leaderboardChanges: z.
|
|
2368
|
+
leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
|
|
2359
2369
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
2360
2370
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
2371
|
+
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
2372
|
+
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
2361
2373
|
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
2362
2374
|
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
2363
2375
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2395,9 +2407,11 @@ export declare const createUserSchema: z.ZodObject<Omit<{
|
|
|
2395
2407
|
favoriteLeagues?: boolean | undefined;
|
|
2396
2408
|
favoriteTeams?: boolean | undefined;
|
|
2397
2409
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
2398
|
-
leaderboardChanges?: "
|
|
2410
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
2399
2411
|
chatReplies?: boolean | undefined;
|
|
2400
2412
|
repliesToRatings?: boolean | undefined;
|
|
2413
|
+
repliesToLists?: boolean | undefined;
|
|
2414
|
+
repliesToUserEvents?: boolean | undefined;
|
|
2401
2415
|
repliesToComments?: boolean | undefined;
|
|
2402
2416
|
ratingLikes?: boolean | undefined;
|
|
2403
2417
|
listLikes?: boolean | undefined;
|
|
@@ -2419,9 +2433,11 @@ export declare const createUserSchema: z.ZodObject<Omit<{
|
|
|
2419
2433
|
favoriteLeagues?: boolean | undefined;
|
|
2420
2434
|
favoriteTeams?: boolean | undefined;
|
|
2421
2435
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
2422
|
-
leaderboardChanges?: "
|
|
2436
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
2423
2437
|
chatReplies?: boolean | undefined;
|
|
2424
2438
|
repliesToRatings?: boolean | undefined;
|
|
2439
|
+
repliesToLists?: boolean | undefined;
|
|
2440
|
+
repliesToUserEvents?: boolean | undefined;
|
|
2425
2441
|
repliesToComments?: boolean | undefined;
|
|
2426
2442
|
ratingLikes?: boolean | undefined;
|
|
2427
2443
|
listLikes?: boolean | undefined;
|
|
@@ -2818,9 +2834,11 @@ export declare const createUserSchema: z.ZodObject<Omit<{
|
|
|
2818
2834
|
favoriteLeagues?: boolean | undefined;
|
|
2819
2835
|
favoriteTeams?: boolean | undefined;
|
|
2820
2836
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
2821
|
-
leaderboardChanges?: "
|
|
2837
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
2822
2838
|
chatReplies?: boolean | undefined;
|
|
2823
2839
|
repliesToRatings?: boolean | undefined;
|
|
2840
|
+
repliesToLists?: boolean | undefined;
|
|
2841
|
+
repliesToUserEvents?: boolean | undefined;
|
|
2824
2842
|
repliesToComments?: boolean | undefined;
|
|
2825
2843
|
ratingLikes?: boolean | undefined;
|
|
2826
2844
|
listLikes?: boolean | undefined;
|
|
@@ -3050,9 +3068,11 @@ export declare const createUserSchema: z.ZodObject<Omit<{
|
|
|
3050
3068
|
favoriteLeagues?: boolean | undefined;
|
|
3051
3069
|
favoriteTeams?: boolean | undefined;
|
|
3052
3070
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
3053
|
-
leaderboardChanges?: "
|
|
3071
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
3054
3072
|
chatReplies?: boolean | undefined;
|
|
3055
3073
|
repliesToRatings?: boolean | undefined;
|
|
3074
|
+
repliesToLists?: boolean | undefined;
|
|
3075
|
+
repliesToUserEvents?: boolean | undefined;
|
|
3056
3076
|
repliesToComments?: boolean | undefined;
|
|
3057
3077
|
ratingLikes?: boolean | undefined;
|
|
3058
3078
|
listLikes?: boolean | undefined;
|
|
@@ -3817,9 +3837,11 @@ export declare const reducedUserSchema: z.ZodObject<Pick<{
|
|
|
3817
3837
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
3818
3838
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
3819
3839
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
3820
|
-
leaderboardChanges: z.
|
|
3840
|
+
leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
|
|
3821
3841
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
3822
3842
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
3843
|
+
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
3844
|
+
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
3823
3845
|
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
3824
3846
|
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
3825
3847
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3857,9 +3879,11 @@ export declare const reducedUserSchema: z.ZodObject<Pick<{
|
|
|
3857
3879
|
favoriteLeagues?: boolean | undefined;
|
|
3858
3880
|
favoriteTeams?: boolean | undefined;
|
|
3859
3881
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
3860
|
-
leaderboardChanges?: "
|
|
3882
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
3861
3883
|
chatReplies?: boolean | undefined;
|
|
3862
3884
|
repliesToRatings?: boolean | undefined;
|
|
3885
|
+
repliesToLists?: boolean | undefined;
|
|
3886
|
+
repliesToUserEvents?: boolean | undefined;
|
|
3863
3887
|
repliesToComments?: boolean | undefined;
|
|
3864
3888
|
ratingLikes?: boolean | undefined;
|
|
3865
3889
|
listLikes?: boolean | undefined;
|
|
@@ -3881,9 +3905,11 @@ export declare const reducedUserSchema: z.ZodObject<Pick<{
|
|
|
3881
3905
|
favoriteLeagues?: boolean | undefined;
|
|
3882
3906
|
favoriteTeams?: boolean | undefined;
|
|
3883
3907
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
3884
|
-
leaderboardChanges?: "
|
|
3908
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
3885
3909
|
chatReplies?: boolean | undefined;
|
|
3886
3910
|
repliesToRatings?: boolean | undefined;
|
|
3911
|
+
repliesToLists?: boolean | undefined;
|
|
3912
|
+
repliesToUserEvents?: boolean | undefined;
|
|
3887
3913
|
repliesToComments?: boolean | undefined;
|
|
3888
3914
|
ratingLikes?: boolean | undefined;
|
|
3889
3915
|
listLikes?: boolean | undefined;
|
package/dist/schemas/user.js
CHANGED
|
@@ -172,9 +172,13 @@ exports.userSchema = (0, zod_1.object)({
|
|
|
172
172
|
favoriteLeagues: (0, zod_1.boolean)().optional(),
|
|
173
173
|
favoriteTeams: (0, zod_1.boolean)().optional(),
|
|
174
174
|
lastWeekScoreLeaderboard: (0, zod_1.boolean)().optional(),
|
|
175
|
-
leaderboardChanges:
|
|
175
|
+
leaderboardChanges: zod_1.z
|
|
176
|
+
.union([(0, zod_1.literal)("daily"), (0, zod_1.literal)("weekly"), (0, zod_1.literal)("monthly")])
|
|
177
|
+
.optional(),
|
|
176
178
|
chatReplies: (0, zod_1.boolean)().optional(),
|
|
177
179
|
repliesToRatings: (0, zod_1.boolean)().optional(),
|
|
180
|
+
repliesToLists: (0, zod_1.boolean)().optional(),
|
|
181
|
+
repliesToUserEvents: (0, zod_1.boolean)().optional(),
|
|
178
182
|
repliesToComments: (0, zod_1.boolean)().optional(),
|
|
179
183
|
ratingLikes: (0, zod_1.boolean)().optional(),
|
|
180
184
|
listLikes: (0, zod_1.boolean)().optional(),
|
|
@@ -778,9 +778,11 @@ export declare const userEventCommentSchema: z.ZodObject<{
|
|
|
778
778
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
779
779
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
780
780
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
781
|
-
leaderboardChanges: z.
|
|
781
|
+
leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
|
|
782
782
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
783
783
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
784
|
+
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
785
|
+
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
784
786
|
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
785
787
|
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
786
788
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -818,9 +820,11 @@ export declare const userEventCommentSchema: z.ZodObject<{
|
|
|
818
820
|
favoriteLeagues?: boolean | undefined;
|
|
819
821
|
favoriteTeams?: boolean | undefined;
|
|
820
822
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
821
|
-
leaderboardChanges?: "
|
|
823
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
822
824
|
chatReplies?: boolean | undefined;
|
|
823
825
|
repliesToRatings?: boolean | undefined;
|
|
826
|
+
repliesToLists?: boolean | undefined;
|
|
827
|
+
repliesToUserEvents?: boolean | undefined;
|
|
824
828
|
repliesToComments?: boolean | undefined;
|
|
825
829
|
ratingLikes?: boolean | undefined;
|
|
826
830
|
listLikes?: boolean | undefined;
|
|
@@ -842,9 +846,11 @@ export declare const userEventCommentSchema: z.ZodObject<{
|
|
|
842
846
|
favoriteLeagues?: boolean | undefined;
|
|
843
847
|
favoriteTeams?: boolean | undefined;
|
|
844
848
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
845
|
-
leaderboardChanges?: "
|
|
849
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
846
850
|
chatReplies?: boolean | undefined;
|
|
847
851
|
repliesToRatings?: boolean | undefined;
|
|
852
|
+
repliesToLists?: boolean | undefined;
|
|
853
|
+
repliesToUserEvents?: boolean | undefined;
|
|
848
854
|
repliesToComments?: boolean | undefined;
|
|
849
855
|
ratingLikes?: boolean | undefined;
|
|
850
856
|
listLikes?: boolean | undefined;
|
|
@@ -1791,9 +1797,11 @@ export declare const userEventCommentSchema: z.ZodObject<{
|
|
|
1791
1797
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
1792
1798
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
1793
1799
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
1794
|
-
leaderboardChanges: z.
|
|
1800
|
+
leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
|
|
1795
1801
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
1796
1802
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
1803
|
+
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
1804
|
+
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
1797
1805
|
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
1798
1806
|
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
1799
1807
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1831,9 +1839,11 @@ export declare const userEventCommentSchema: z.ZodObject<{
|
|
|
1831
1839
|
favoriteLeagues?: boolean | undefined;
|
|
1832
1840
|
favoriteTeams?: boolean | undefined;
|
|
1833
1841
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
1834
|
-
leaderboardChanges?: "
|
|
1842
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
1835
1843
|
chatReplies?: boolean | undefined;
|
|
1836
1844
|
repliesToRatings?: boolean | undefined;
|
|
1845
|
+
repliesToLists?: boolean | undefined;
|
|
1846
|
+
repliesToUserEvents?: boolean | undefined;
|
|
1837
1847
|
repliesToComments?: boolean | undefined;
|
|
1838
1848
|
ratingLikes?: boolean | undefined;
|
|
1839
1849
|
listLikes?: boolean | undefined;
|
|
@@ -1855,9 +1865,11 @@ export declare const userEventCommentSchema: z.ZodObject<{
|
|
|
1855
1865
|
favoriteLeagues?: boolean | undefined;
|
|
1856
1866
|
favoriteTeams?: boolean | undefined;
|
|
1857
1867
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
1858
|
-
leaderboardChanges?: "
|
|
1868
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
1859
1869
|
chatReplies?: boolean | undefined;
|
|
1860
1870
|
repliesToRatings?: boolean | undefined;
|
|
1871
|
+
repliesToLists?: boolean | undefined;
|
|
1872
|
+
repliesToUserEvents?: boolean | undefined;
|
|
1861
1873
|
repliesToComments?: boolean | undefined;
|
|
1862
1874
|
ratingLikes?: boolean | undefined;
|
|
1863
1875
|
listLikes?: boolean | undefined;
|
|
@@ -2857,9 +2869,11 @@ export declare const userEventCommentLikeSchema: z.ZodObject<{
|
|
|
2857
2869
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
2858
2870
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
2859
2871
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
2860
|
-
leaderboardChanges: z.
|
|
2872
|
+
leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
|
|
2861
2873
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
2862
2874
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
2875
|
+
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
2876
|
+
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
2863
2877
|
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
2864
2878
|
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
2865
2879
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2897,9 +2911,11 @@ export declare const userEventCommentLikeSchema: z.ZodObject<{
|
|
|
2897
2911
|
favoriteLeagues?: boolean | undefined;
|
|
2898
2912
|
favoriteTeams?: boolean | undefined;
|
|
2899
2913
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
2900
|
-
leaderboardChanges?: "
|
|
2914
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
2901
2915
|
chatReplies?: boolean | undefined;
|
|
2902
2916
|
repliesToRatings?: boolean | undefined;
|
|
2917
|
+
repliesToLists?: boolean | undefined;
|
|
2918
|
+
repliesToUserEvents?: boolean | undefined;
|
|
2903
2919
|
repliesToComments?: boolean | undefined;
|
|
2904
2920
|
ratingLikes?: boolean | undefined;
|
|
2905
2921
|
listLikes?: boolean | undefined;
|
|
@@ -2921,9 +2937,11 @@ export declare const userEventCommentLikeSchema: z.ZodObject<{
|
|
|
2921
2937
|
favoriteLeagues?: boolean | undefined;
|
|
2922
2938
|
favoriteTeams?: boolean | undefined;
|
|
2923
2939
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
2924
|
-
leaderboardChanges?: "
|
|
2940
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
2925
2941
|
chatReplies?: boolean | undefined;
|
|
2926
2942
|
repliesToRatings?: boolean | undefined;
|
|
2943
|
+
repliesToLists?: boolean | undefined;
|
|
2944
|
+
repliesToUserEvents?: boolean | undefined;
|
|
2927
2945
|
repliesToComments?: boolean | undefined;
|
|
2928
2946
|
ratingLikes?: boolean | undefined;
|
|
2929
2947
|
listLikes?: boolean | undefined;
|
package/dist/schemas/voting.d.ts
CHANGED
|
@@ -675,9 +675,11 @@ export declare const playerVoteSchema: z.ZodObject<{
|
|
|
675
675
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
676
676
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
677
677
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
678
|
-
leaderboardChanges: z.
|
|
678
|
+
leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
|
|
679
679
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
680
680
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
681
|
+
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
682
|
+
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
681
683
|
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
682
684
|
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
683
685
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -715,9 +717,11 @@ export declare const playerVoteSchema: z.ZodObject<{
|
|
|
715
717
|
favoriteLeagues?: boolean | undefined;
|
|
716
718
|
favoriteTeams?: boolean | undefined;
|
|
717
719
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
718
|
-
leaderboardChanges?: "
|
|
720
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
719
721
|
chatReplies?: boolean | undefined;
|
|
720
722
|
repliesToRatings?: boolean | undefined;
|
|
723
|
+
repliesToLists?: boolean | undefined;
|
|
724
|
+
repliesToUserEvents?: boolean | undefined;
|
|
721
725
|
repliesToComments?: boolean | undefined;
|
|
722
726
|
ratingLikes?: boolean | undefined;
|
|
723
727
|
listLikes?: boolean | undefined;
|
|
@@ -739,9 +743,11 @@ export declare const playerVoteSchema: z.ZodObject<{
|
|
|
739
743
|
favoriteLeagues?: boolean | undefined;
|
|
740
744
|
favoriteTeams?: boolean | undefined;
|
|
741
745
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
742
|
-
leaderboardChanges?: "
|
|
746
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
743
747
|
chatReplies?: boolean | undefined;
|
|
744
748
|
repliesToRatings?: boolean | undefined;
|
|
749
|
+
repliesToLists?: boolean | undefined;
|
|
750
|
+
repliesToUserEvents?: boolean | undefined;
|
|
745
751
|
repliesToComments?: boolean | undefined;
|
|
746
752
|
ratingLikes?: boolean | undefined;
|
|
747
753
|
listLikes?: boolean | undefined;
|
|
@@ -1806,9 +1812,11 @@ export declare const voteSubmissionDtoSchema: z.ZodObject<{
|
|
|
1806
1812
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
1807
1813
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
1808
1814
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
1809
|
-
leaderboardChanges: z.
|
|
1815
|
+
leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
|
|
1810
1816
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
1811
1817
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
1818
|
+
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
1819
|
+
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
1812
1820
|
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
1813
1821
|
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
1814
1822
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1846,9 +1854,11 @@ export declare const voteSubmissionDtoSchema: z.ZodObject<{
|
|
|
1846
1854
|
favoriteLeagues?: boolean | undefined;
|
|
1847
1855
|
favoriteTeams?: boolean | undefined;
|
|
1848
1856
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
1849
|
-
leaderboardChanges?: "
|
|
1857
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
1850
1858
|
chatReplies?: boolean | undefined;
|
|
1851
1859
|
repliesToRatings?: boolean | undefined;
|
|
1860
|
+
repliesToLists?: boolean | undefined;
|
|
1861
|
+
repliesToUserEvents?: boolean | undefined;
|
|
1852
1862
|
repliesToComments?: boolean | undefined;
|
|
1853
1863
|
ratingLikes?: boolean | undefined;
|
|
1854
1864
|
listLikes?: boolean | undefined;
|
|
@@ -1870,9 +1880,11 @@ export declare const voteSubmissionDtoSchema: z.ZodObject<{
|
|
|
1870
1880
|
favoriteLeagues?: boolean | undefined;
|
|
1871
1881
|
favoriteTeams?: boolean | undefined;
|
|
1872
1882
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
1873
|
-
leaderboardChanges?: "
|
|
1883
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
1874
1884
|
chatReplies?: boolean | undefined;
|
|
1875
1885
|
repliesToRatings?: boolean | undefined;
|
|
1886
|
+
repliesToLists?: boolean | undefined;
|
|
1887
|
+
repliesToUserEvents?: boolean | undefined;
|
|
1876
1888
|
repliesToComments?: boolean | undefined;
|
|
1877
1889
|
ratingLikes?: boolean | undefined;
|
|
1878
1890
|
listLikes?: boolean | undefined;
|
|
@@ -3421,9 +3433,11 @@ export declare const userVoteResponseDtoSchema: z.ZodObject<{
|
|
|
3421
3433
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
3422
3434
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
3423
3435
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
3424
|
-
leaderboardChanges: z.
|
|
3436
|
+
leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
|
|
3425
3437
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
3426
3438
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
3439
|
+
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
3440
|
+
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
3427
3441
|
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
3428
3442
|
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
3429
3443
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3461,9 +3475,11 @@ export declare const userVoteResponseDtoSchema: z.ZodObject<{
|
|
|
3461
3475
|
favoriteLeagues?: boolean | undefined;
|
|
3462
3476
|
favoriteTeams?: boolean | undefined;
|
|
3463
3477
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
3464
|
-
leaderboardChanges?: "
|
|
3478
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
3465
3479
|
chatReplies?: boolean | undefined;
|
|
3466
3480
|
repliesToRatings?: boolean | undefined;
|
|
3481
|
+
repliesToLists?: boolean | undefined;
|
|
3482
|
+
repliesToUserEvents?: boolean | undefined;
|
|
3467
3483
|
repliesToComments?: boolean | undefined;
|
|
3468
3484
|
ratingLikes?: boolean | undefined;
|
|
3469
3485
|
listLikes?: boolean | undefined;
|
|
@@ -3485,9 +3501,11 @@ export declare const userVoteResponseDtoSchema: z.ZodObject<{
|
|
|
3485
3501
|
favoriteLeagues?: boolean | undefined;
|
|
3486
3502
|
favoriteTeams?: boolean | undefined;
|
|
3487
3503
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
3488
|
-
leaderboardChanges?: "
|
|
3504
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
3489
3505
|
chatReplies?: boolean | undefined;
|
|
3490
3506
|
repliesToRatings?: boolean | undefined;
|
|
3507
|
+
repliesToLists?: boolean | undefined;
|
|
3508
|
+
repliesToUserEvents?: boolean | undefined;
|
|
3491
3509
|
repliesToComments?: boolean | undefined;
|
|
3492
3510
|
ratingLikes?: boolean | undefined;
|
|
3493
3511
|
listLikes?: boolean | undefined;
|