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/game.d.ts
CHANGED
|
@@ -3946,9 +3946,11 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
3946
3946
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
3947
3947
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
3948
3948
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
3949
|
-
leaderboardChanges: z.
|
|
3949
|
+
leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
|
|
3950
3950
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
3951
3951
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
3952
|
+
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
3953
|
+
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
3952
3954
|
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
3953
3955
|
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
3954
3956
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3986,9 +3988,11 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
3986
3988
|
favoriteLeagues?: boolean | undefined;
|
|
3987
3989
|
favoriteTeams?: boolean | undefined;
|
|
3988
3990
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
3989
|
-
leaderboardChanges?: "
|
|
3991
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
3990
3992
|
chatReplies?: boolean | undefined;
|
|
3991
3993
|
repliesToRatings?: boolean | undefined;
|
|
3994
|
+
repliesToLists?: boolean | undefined;
|
|
3995
|
+
repliesToUserEvents?: boolean | undefined;
|
|
3992
3996
|
repliesToComments?: boolean | undefined;
|
|
3993
3997
|
ratingLikes?: boolean | undefined;
|
|
3994
3998
|
listLikes?: boolean | undefined;
|
|
@@ -4010,9 +4014,11 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4010
4014
|
favoriteLeagues?: boolean | undefined;
|
|
4011
4015
|
favoriteTeams?: boolean | undefined;
|
|
4012
4016
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
4013
|
-
leaderboardChanges?: "
|
|
4017
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
4014
4018
|
chatReplies?: boolean | undefined;
|
|
4015
4019
|
repliesToRatings?: boolean | undefined;
|
|
4020
|
+
repliesToLists?: boolean | undefined;
|
|
4021
|
+
repliesToUserEvents?: boolean | undefined;
|
|
4016
4022
|
repliesToComments?: boolean | undefined;
|
|
4017
4023
|
ratingLikes?: boolean | undefined;
|
|
4018
4024
|
listLikes?: boolean | undefined;
|
|
@@ -6414,9 +6420,11 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6414
6420
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
6415
6421
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
6416
6422
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
6417
|
-
leaderboardChanges: z.
|
|
6423
|
+
leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
|
|
6418
6424
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
6419
6425
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
6426
|
+
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
6427
|
+
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
6420
6428
|
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
6421
6429
|
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
6422
6430
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6454,9 +6462,11 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6454
6462
|
favoriteLeagues?: boolean | undefined;
|
|
6455
6463
|
favoriteTeams?: boolean | undefined;
|
|
6456
6464
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
6457
|
-
leaderboardChanges?: "
|
|
6465
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
6458
6466
|
chatReplies?: boolean | undefined;
|
|
6459
6467
|
repliesToRatings?: boolean | undefined;
|
|
6468
|
+
repliesToLists?: boolean | undefined;
|
|
6469
|
+
repliesToUserEvents?: boolean | undefined;
|
|
6460
6470
|
repliesToComments?: boolean | undefined;
|
|
6461
6471
|
ratingLikes?: boolean | undefined;
|
|
6462
6472
|
listLikes?: boolean | undefined;
|
|
@@ -6478,9 +6488,11 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6478
6488
|
favoriteLeagues?: boolean | undefined;
|
|
6479
6489
|
favoriteTeams?: boolean | undefined;
|
|
6480
6490
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
6481
|
-
leaderboardChanges?: "
|
|
6491
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
6482
6492
|
chatReplies?: boolean | undefined;
|
|
6483
6493
|
repliesToRatings?: boolean | undefined;
|
|
6494
|
+
repliesToLists?: boolean | undefined;
|
|
6495
|
+
repliesToUserEvents?: boolean | undefined;
|
|
6484
6496
|
repliesToComments?: boolean | undefined;
|
|
6485
6497
|
ratingLikes?: boolean | undefined;
|
|
6486
6498
|
listLikes?: boolean | undefined;
|
|
@@ -8943,9 +8955,11 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8943
8955
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
8944
8956
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
8945
8957
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
8946
|
-
leaderboardChanges: z.
|
|
8958
|
+
leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
|
|
8947
8959
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
8948
8960
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
8961
|
+
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
8962
|
+
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
8949
8963
|
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
8950
8964
|
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
8951
8965
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -8983,9 +8997,11 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8983
8997
|
favoriteLeagues?: boolean | undefined;
|
|
8984
8998
|
favoriteTeams?: boolean | undefined;
|
|
8985
8999
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
8986
|
-
leaderboardChanges?: "
|
|
9000
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
8987
9001
|
chatReplies?: boolean | undefined;
|
|
8988
9002
|
repliesToRatings?: boolean | undefined;
|
|
9003
|
+
repliesToLists?: boolean | undefined;
|
|
9004
|
+
repliesToUserEvents?: boolean | undefined;
|
|
8989
9005
|
repliesToComments?: boolean | undefined;
|
|
8990
9006
|
ratingLikes?: boolean | undefined;
|
|
8991
9007
|
listLikes?: boolean | undefined;
|
|
@@ -9007,9 +9023,11 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9007
9023
|
favoriteLeagues?: boolean | undefined;
|
|
9008
9024
|
favoriteTeams?: boolean | undefined;
|
|
9009
9025
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
9010
|
-
leaderboardChanges?: "
|
|
9026
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
9011
9027
|
chatReplies?: boolean | undefined;
|
|
9012
9028
|
repliesToRatings?: boolean | undefined;
|
|
9029
|
+
repliesToLists?: boolean | undefined;
|
|
9030
|
+
repliesToUserEvents?: boolean | undefined;
|
|
9013
9031
|
repliesToComments?: boolean | undefined;
|
|
9014
9032
|
ratingLikes?: boolean | undefined;
|
|
9015
9033
|
listLikes?: boolean | undefined;
|
|
@@ -11480,9 +11498,11 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11480
11498
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
11481
11499
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
11482
11500
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
11483
|
-
leaderboardChanges: z.
|
|
11501
|
+
leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
|
|
11484
11502
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
11485
11503
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
11504
|
+
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
11505
|
+
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
11486
11506
|
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
11487
11507
|
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
11488
11508
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -11520,9 +11540,11 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11520
11540
|
favoriteLeagues?: boolean | undefined;
|
|
11521
11541
|
favoriteTeams?: boolean | undefined;
|
|
11522
11542
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
11523
|
-
leaderboardChanges?: "
|
|
11543
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
11524
11544
|
chatReplies?: boolean | undefined;
|
|
11525
11545
|
repliesToRatings?: boolean | undefined;
|
|
11546
|
+
repliesToLists?: boolean | undefined;
|
|
11547
|
+
repliesToUserEvents?: boolean | undefined;
|
|
11526
11548
|
repliesToComments?: boolean | undefined;
|
|
11527
11549
|
ratingLikes?: boolean | undefined;
|
|
11528
11550
|
listLikes?: boolean | undefined;
|
|
@@ -11544,9 +11566,11 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11544
11566
|
favoriteLeagues?: boolean | undefined;
|
|
11545
11567
|
favoriteTeams?: boolean | undefined;
|
|
11546
11568
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
11547
|
-
leaderboardChanges?: "
|
|
11569
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
11548
11570
|
chatReplies?: boolean | undefined;
|
|
11549
11571
|
repliesToRatings?: boolean | undefined;
|
|
11572
|
+
repliesToLists?: boolean | undefined;
|
|
11573
|
+
repliesToUserEvents?: boolean | undefined;
|
|
11550
11574
|
repliesToComments?: boolean | undefined;
|
|
11551
11575
|
ratingLikes?: boolean | undefined;
|
|
11552
11576
|
listLikes?: boolean | undefined;
|
|
@@ -14102,9 +14126,11 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
14102
14126
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
14103
14127
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
14104
14128
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
14105
|
-
leaderboardChanges: z.
|
|
14129
|
+
leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
|
|
14106
14130
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
14107
14131
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
14132
|
+
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
14133
|
+
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
14108
14134
|
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
14109
14135
|
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
14110
14136
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -14142,9 +14168,11 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
14142
14168
|
favoriteLeagues?: boolean | undefined;
|
|
14143
14169
|
favoriteTeams?: boolean | undefined;
|
|
14144
14170
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
14145
|
-
leaderboardChanges?: "
|
|
14171
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
14146
14172
|
chatReplies?: boolean | undefined;
|
|
14147
14173
|
repliesToRatings?: boolean | undefined;
|
|
14174
|
+
repliesToLists?: boolean | undefined;
|
|
14175
|
+
repliesToUserEvents?: boolean | undefined;
|
|
14148
14176
|
repliesToComments?: boolean | undefined;
|
|
14149
14177
|
ratingLikes?: boolean | undefined;
|
|
14150
14178
|
listLikes?: boolean | undefined;
|
|
@@ -14166,9 +14194,11 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
14166
14194
|
favoriteLeagues?: boolean | undefined;
|
|
14167
14195
|
favoriteTeams?: boolean | undefined;
|
|
14168
14196
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
14169
|
-
leaderboardChanges?: "
|
|
14197
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
14170
14198
|
chatReplies?: boolean | undefined;
|
|
14171
14199
|
repliesToRatings?: boolean | undefined;
|
|
14200
|
+
repliesToLists?: boolean | undefined;
|
|
14201
|
+
repliesToUserEvents?: boolean | undefined;
|
|
14172
14202
|
repliesToComments?: boolean | undefined;
|
|
14173
14203
|
ratingLikes?: boolean | undefined;
|
|
14174
14204
|
listLikes?: boolean | undefined;
|
|
@@ -16695,9 +16725,11 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
16695
16725
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
16696
16726
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
16697
16727
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
16698
|
-
leaderboardChanges: z.
|
|
16728
|
+
leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
|
|
16699
16729
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
16700
16730
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
16731
|
+
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
16732
|
+
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
16701
16733
|
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
16702
16734
|
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
16703
16735
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -16735,9 +16767,11 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
16735
16767
|
favoriteLeagues?: boolean | undefined;
|
|
16736
16768
|
favoriteTeams?: boolean | undefined;
|
|
16737
16769
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
16738
|
-
leaderboardChanges?: "
|
|
16770
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
16739
16771
|
chatReplies?: boolean | undefined;
|
|
16740
16772
|
repliesToRatings?: boolean | undefined;
|
|
16773
|
+
repliesToLists?: boolean | undefined;
|
|
16774
|
+
repliesToUserEvents?: boolean | undefined;
|
|
16741
16775
|
repliesToComments?: boolean | undefined;
|
|
16742
16776
|
ratingLikes?: boolean | undefined;
|
|
16743
16777
|
listLikes?: boolean | undefined;
|
|
@@ -16759,9 +16793,11 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
16759
16793
|
favoriteLeagues?: boolean | undefined;
|
|
16760
16794
|
favoriteTeams?: boolean | undefined;
|
|
16761
16795
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
16762
|
-
leaderboardChanges?: "
|
|
16796
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
16763
16797
|
chatReplies?: boolean | undefined;
|
|
16764
16798
|
repliesToRatings?: boolean | undefined;
|
|
16799
|
+
repliesToLists?: boolean | undefined;
|
|
16800
|
+
repliesToUserEvents?: boolean | undefined;
|
|
16765
16801
|
repliesToComments?: boolean | undefined;
|
|
16766
16802
|
ratingLikes?: boolean | undefined;
|
|
16767
16803
|
listLikes?: boolean | undefined;
|
|
@@ -19270,9 +19306,11 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
19270
19306
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
19271
19307
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
19272
19308
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
19273
|
-
leaderboardChanges: z.
|
|
19309
|
+
leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
|
|
19274
19310
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
19275
19311
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
19312
|
+
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
19313
|
+
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
19276
19314
|
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
19277
19315
|
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
19278
19316
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -19310,9 +19348,11 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
19310
19348
|
favoriteLeagues?: boolean | undefined;
|
|
19311
19349
|
favoriteTeams?: boolean | undefined;
|
|
19312
19350
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
19313
|
-
leaderboardChanges?: "
|
|
19351
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
19314
19352
|
chatReplies?: boolean | undefined;
|
|
19315
19353
|
repliesToRatings?: boolean | undefined;
|
|
19354
|
+
repliesToLists?: boolean | undefined;
|
|
19355
|
+
repliesToUserEvents?: boolean | undefined;
|
|
19316
19356
|
repliesToComments?: boolean | undefined;
|
|
19317
19357
|
ratingLikes?: boolean | undefined;
|
|
19318
19358
|
listLikes?: boolean | undefined;
|
|
@@ -19334,9 +19374,11 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
19334
19374
|
favoriteLeagues?: boolean | undefined;
|
|
19335
19375
|
favoriteTeams?: boolean | undefined;
|
|
19336
19376
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
19337
|
-
leaderboardChanges?: "
|
|
19377
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
19338
19378
|
chatReplies?: boolean | undefined;
|
|
19339
19379
|
repliesToRatings?: boolean | undefined;
|
|
19380
|
+
repliesToLists?: boolean | undefined;
|
|
19381
|
+
repliesToUserEvents?: boolean | undefined;
|
|
19340
19382
|
repliesToComments?: boolean | undefined;
|
|
19341
19383
|
ratingLikes?: boolean | undefined;
|
|
19342
19384
|
listLikes?: boolean | undefined;
|
|
@@ -21758,9 +21800,11 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
21758
21800
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
21759
21801
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
21760
21802
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
21761
|
-
leaderboardChanges: z.
|
|
21803
|
+
leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
|
|
21762
21804
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
21763
21805
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
21806
|
+
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
21807
|
+
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
21764
21808
|
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
21765
21809
|
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
21766
21810
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -21798,9 +21842,11 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
21798
21842
|
favoriteLeagues?: boolean | undefined;
|
|
21799
21843
|
favoriteTeams?: boolean | undefined;
|
|
21800
21844
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
21801
|
-
leaderboardChanges?: "
|
|
21845
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
21802
21846
|
chatReplies?: boolean | undefined;
|
|
21803
21847
|
repliesToRatings?: boolean | undefined;
|
|
21848
|
+
repliesToLists?: boolean | undefined;
|
|
21849
|
+
repliesToUserEvents?: boolean | undefined;
|
|
21804
21850
|
repliesToComments?: boolean | undefined;
|
|
21805
21851
|
ratingLikes?: boolean | undefined;
|
|
21806
21852
|
listLikes?: boolean | undefined;
|
|
@@ -21822,9 +21868,11 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
21822
21868
|
favoriteLeagues?: boolean | undefined;
|
|
21823
21869
|
favoriteTeams?: boolean | undefined;
|
|
21824
21870
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
21825
|
-
leaderboardChanges?: "
|
|
21871
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
21826
21872
|
chatReplies?: boolean | undefined;
|
|
21827
21873
|
repliesToRatings?: boolean | undefined;
|
|
21874
|
+
repliesToLists?: boolean | undefined;
|
|
21875
|
+
repliesToUserEvents?: boolean | undefined;
|
|
21828
21876
|
repliesToComments?: boolean | undefined;
|
|
21829
21877
|
ratingLikes?: boolean | undefined;
|
|
21830
21878
|
listLikes?: boolean | undefined;
|
|
@@ -24273,9 +24321,11 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24273
24321
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
24274
24322
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
24275
24323
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
24276
|
-
leaderboardChanges: z.
|
|
24324
|
+
leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
|
|
24277
24325
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
24278
24326
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
24327
|
+
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
24328
|
+
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
24279
24329
|
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
24280
24330
|
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
24281
24331
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -24313,9 +24363,11 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24313
24363
|
favoriteLeagues?: boolean | undefined;
|
|
24314
24364
|
favoriteTeams?: boolean | undefined;
|
|
24315
24365
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
24316
|
-
leaderboardChanges?: "
|
|
24366
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
24317
24367
|
chatReplies?: boolean | undefined;
|
|
24318
24368
|
repliesToRatings?: boolean | undefined;
|
|
24369
|
+
repliesToLists?: boolean | undefined;
|
|
24370
|
+
repliesToUserEvents?: boolean | undefined;
|
|
24319
24371
|
repliesToComments?: boolean | undefined;
|
|
24320
24372
|
ratingLikes?: boolean | undefined;
|
|
24321
24373
|
listLikes?: boolean | undefined;
|
|
@@ -24337,9 +24389,11 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24337
24389
|
favoriteLeagues?: boolean | undefined;
|
|
24338
24390
|
favoriteTeams?: boolean | undefined;
|
|
24339
24391
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
24340
|
-
leaderboardChanges?: "
|
|
24392
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
24341
24393
|
chatReplies?: boolean | undefined;
|
|
24342
24394
|
repliesToRatings?: boolean | undefined;
|
|
24395
|
+
repliesToLists?: boolean | undefined;
|
|
24396
|
+
repliesToUserEvents?: boolean | undefined;
|
|
24343
24397
|
repliesToComments?: boolean | undefined;
|
|
24344
24398
|
ratingLikes?: boolean | undefined;
|
|
24345
24399
|
listLikes?: boolean | undefined;
|
|
@@ -26809,9 +26863,11 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
26809
26863
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
26810
26864
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
26811
26865
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
26812
|
-
leaderboardChanges: z.
|
|
26866
|
+
leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
|
|
26813
26867
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
26814
26868
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
26869
|
+
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
26870
|
+
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
26815
26871
|
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
26816
26872
|
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
26817
26873
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -26849,9 +26905,11 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
26849
26905
|
favoriteLeagues?: boolean | undefined;
|
|
26850
26906
|
favoriteTeams?: boolean | undefined;
|
|
26851
26907
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
26852
|
-
leaderboardChanges?: "
|
|
26908
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
26853
26909
|
chatReplies?: boolean | undefined;
|
|
26854
26910
|
repliesToRatings?: boolean | undefined;
|
|
26911
|
+
repliesToLists?: boolean | undefined;
|
|
26912
|
+
repliesToUserEvents?: boolean | undefined;
|
|
26855
26913
|
repliesToComments?: boolean | undefined;
|
|
26856
26914
|
ratingLikes?: boolean | undefined;
|
|
26857
26915
|
listLikes?: boolean | undefined;
|
|
@@ -26873,9 +26931,11 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
26873
26931
|
favoriteLeagues?: boolean | undefined;
|
|
26874
26932
|
favoriteTeams?: boolean | undefined;
|
|
26875
26933
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
26876
|
-
leaderboardChanges?: "
|
|
26934
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
26877
26935
|
chatReplies?: boolean | undefined;
|
|
26878
26936
|
repliesToRatings?: boolean | undefined;
|
|
26937
|
+
repliesToLists?: boolean | undefined;
|
|
26938
|
+
repliesToUserEvents?: boolean | undefined;
|
|
26879
26939
|
repliesToComments?: boolean | undefined;
|
|
26880
26940
|
ratingLikes?: boolean | undefined;
|
|
26881
26941
|
listLikes?: boolean | undefined;
|
|
@@ -29430,9 +29490,11 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29430
29490
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
29431
29491
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
29432
29492
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
29433
|
-
leaderboardChanges: z.
|
|
29493
|
+
leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
|
|
29434
29494
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
29435
29495
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
29496
|
+
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
29497
|
+
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
29436
29498
|
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
29437
29499
|
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
29438
29500
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -29470,9 +29532,11 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29470
29532
|
favoriteLeagues?: boolean | undefined;
|
|
29471
29533
|
favoriteTeams?: boolean | undefined;
|
|
29472
29534
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
29473
|
-
leaderboardChanges?: "
|
|
29535
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
29474
29536
|
chatReplies?: boolean | undefined;
|
|
29475
29537
|
repliesToRatings?: boolean | undefined;
|
|
29538
|
+
repliesToLists?: boolean | undefined;
|
|
29539
|
+
repliesToUserEvents?: boolean | undefined;
|
|
29476
29540
|
repliesToComments?: boolean | undefined;
|
|
29477
29541
|
ratingLikes?: boolean | undefined;
|
|
29478
29542
|
listLikes?: boolean | undefined;
|
|
@@ -29494,9 +29558,11 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29494
29558
|
favoriteLeagues?: boolean | undefined;
|
|
29495
29559
|
favoriteTeams?: boolean | undefined;
|
|
29496
29560
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
29497
|
-
leaderboardChanges?: "
|
|
29561
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
29498
29562
|
chatReplies?: boolean | undefined;
|
|
29499
29563
|
repliesToRatings?: boolean | undefined;
|
|
29564
|
+
repliesToLists?: boolean | undefined;
|
|
29565
|
+
repliesToUserEvents?: boolean | undefined;
|
|
29500
29566
|
repliesToComments?: boolean | undefined;
|
|
29501
29567
|
ratingLikes?: boolean | undefined;
|
|
29502
29568
|
listLikes?: boolean | undefined;
|
|
@@ -32022,9 +32088,11 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
32022
32088
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
32023
32089
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
32024
32090
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
32025
|
-
leaderboardChanges: z.
|
|
32091
|
+
leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
|
|
32026
32092
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
32027
32093
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
32094
|
+
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
32095
|
+
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
32028
32096
|
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
32029
32097
|
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
32030
32098
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -32062,9 +32130,11 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
32062
32130
|
favoriteLeagues?: boolean | undefined;
|
|
32063
32131
|
favoriteTeams?: boolean | undefined;
|
|
32064
32132
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
32065
|
-
leaderboardChanges?: "
|
|
32133
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
32066
32134
|
chatReplies?: boolean | undefined;
|
|
32067
32135
|
repliesToRatings?: boolean | undefined;
|
|
32136
|
+
repliesToLists?: boolean | undefined;
|
|
32137
|
+
repliesToUserEvents?: boolean | undefined;
|
|
32068
32138
|
repliesToComments?: boolean | undefined;
|
|
32069
32139
|
ratingLikes?: boolean | undefined;
|
|
32070
32140
|
listLikes?: boolean | undefined;
|
|
@@ -32086,9 +32156,11 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
32086
32156
|
favoriteLeagues?: boolean | undefined;
|
|
32087
32157
|
favoriteTeams?: boolean | undefined;
|
|
32088
32158
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
32089
|
-
leaderboardChanges?: "
|
|
32159
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
32090
32160
|
chatReplies?: boolean | undefined;
|
|
32091
32161
|
repliesToRatings?: boolean | undefined;
|
|
32162
|
+
repliesToLists?: boolean | undefined;
|
|
32163
|
+
repliesToUserEvents?: boolean | undefined;
|
|
32092
32164
|
repliesToComments?: boolean | undefined;
|
|
32093
32165
|
ratingLikes?: boolean | undefined;
|
|
32094
32166
|
listLikes?: boolean | undefined;
|
|
@@ -34596,9 +34668,11 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
34596
34668
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
34597
34669
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
34598
34670
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
34599
|
-
leaderboardChanges: z.
|
|
34671
|
+
leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
|
|
34600
34672
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
34601
34673
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
34674
|
+
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
34675
|
+
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
34602
34676
|
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
34603
34677
|
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
34604
34678
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -34636,9 +34710,11 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
34636
34710
|
favoriteLeagues?: boolean | undefined;
|
|
34637
34711
|
favoriteTeams?: boolean | undefined;
|
|
34638
34712
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
34639
|
-
leaderboardChanges?: "
|
|
34713
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
34640
34714
|
chatReplies?: boolean | undefined;
|
|
34641
34715
|
repliesToRatings?: boolean | undefined;
|
|
34716
|
+
repliesToLists?: boolean | undefined;
|
|
34717
|
+
repliesToUserEvents?: boolean | undefined;
|
|
34642
34718
|
repliesToComments?: boolean | undefined;
|
|
34643
34719
|
ratingLikes?: boolean | undefined;
|
|
34644
34720
|
listLikes?: boolean | undefined;
|
|
@@ -34660,9 +34736,11 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
34660
34736
|
favoriteLeagues?: boolean | undefined;
|
|
34661
34737
|
favoriteTeams?: boolean | undefined;
|
|
34662
34738
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
34663
|
-
leaderboardChanges?: "
|
|
34739
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
34664
34740
|
chatReplies?: boolean | undefined;
|
|
34665
34741
|
repliesToRatings?: boolean | undefined;
|
|
34742
|
+
repliesToLists?: boolean | undefined;
|
|
34743
|
+
repliesToUserEvents?: boolean | undefined;
|
|
34666
34744
|
repliesToComments?: boolean | undefined;
|
|
34667
34745
|
ratingLikes?: boolean | undefined;
|
|
34668
34746
|
listLikes?: boolean | undefined;
|
|
@@ -37134,9 +37212,11 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
37134
37212
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
37135
37213
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
37136
37214
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
37137
|
-
leaderboardChanges: z.
|
|
37215
|
+
leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
|
|
37138
37216
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
37139
37217
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
37218
|
+
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
37219
|
+
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
37140
37220
|
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
37141
37221
|
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
37142
37222
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -37174,9 +37254,11 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
37174
37254
|
favoriteLeagues?: boolean | undefined;
|
|
37175
37255
|
favoriteTeams?: boolean | undefined;
|
|
37176
37256
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
37177
|
-
leaderboardChanges?: "
|
|
37257
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
37178
37258
|
chatReplies?: boolean | undefined;
|
|
37179
37259
|
repliesToRatings?: boolean | undefined;
|
|
37260
|
+
repliesToLists?: boolean | undefined;
|
|
37261
|
+
repliesToUserEvents?: boolean | undefined;
|
|
37180
37262
|
repliesToComments?: boolean | undefined;
|
|
37181
37263
|
ratingLikes?: boolean | undefined;
|
|
37182
37264
|
listLikes?: boolean | undefined;
|
|
@@ -37198,9 +37280,11 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
37198
37280
|
favoriteLeagues?: boolean | undefined;
|
|
37199
37281
|
favoriteTeams?: boolean | undefined;
|
|
37200
37282
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
37201
|
-
leaderboardChanges?: "
|
|
37283
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
37202
37284
|
chatReplies?: boolean | undefined;
|
|
37203
37285
|
repliesToRatings?: boolean | undefined;
|
|
37286
|
+
repliesToLists?: boolean | undefined;
|
|
37287
|
+
repliesToUserEvents?: boolean | undefined;
|
|
37204
37288
|
repliesToComments?: boolean | undefined;
|
|
37205
37289
|
ratingLikes?: boolean | undefined;
|
|
37206
37290
|
listLikes?: boolean | undefined;
|
|
@@ -39649,9 +39733,11 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
39649
39733
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
39650
39734
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
39651
39735
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
39652
|
-
leaderboardChanges: z.
|
|
39736
|
+
leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
|
|
39653
39737
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
39654
39738
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
39739
|
+
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
39740
|
+
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
39655
39741
|
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
39656
39742
|
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
39657
39743
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -39689,9 +39775,11 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
39689
39775
|
favoriteLeagues?: boolean | undefined;
|
|
39690
39776
|
favoriteTeams?: boolean | undefined;
|
|
39691
39777
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
39692
|
-
leaderboardChanges?: "
|
|
39778
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
39693
39779
|
chatReplies?: boolean | undefined;
|
|
39694
39780
|
repliesToRatings?: boolean | undefined;
|
|
39781
|
+
repliesToLists?: boolean | undefined;
|
|
39782
|
+
repliesToUserEvents?: boolean | undefined;
|
|
39695
39783
|
repliesToComments?: boolean | undefined;
|
|
39696
39784
|
ratingLikes?: boolean | undefined;
|
|
39697
39785
|
listLikes?: boolean | undefined;
|
|
@@ -39713,9 +39801,11 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
39713
39801
|
favoriteLeagues?: boolean | undefined;
|
|
39714
39802
|
favoriteTeams?: boolean | undefined;
|
|
39715
39803
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
39716
|
-
leaderboardChanges?: "
|
|
39804
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
39717
39805
|
chatReplies?: boolean | undefined;
|
|
39718
39806
|
repliesToRatings?: boolean | undefined;
|
|
39807
|
+
repliesToLists?: boolean | undefined;
|
|
39808
|
+
repliesToUserEvents?: boolean | undefined;
|
|
39719
39809
|
repliesToComments?: boolean | undefined;
|
|
39720
39810
|
ratingLikes?: boolean | undefined;
|
|
39721
39811
|
listLikes?: boolean | undefined;
|
|
@@ -42185,9 +42275,11 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
42185
42275
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
42186
42276
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
42187
42277
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
42188
|
-
leaderboardChanges: z.
|
|
42278
|
+
leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
|
|
42189
42279
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
42190
42280
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
42281
|
+
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
42282
|
+
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
42191
42283
|
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
42192
42284
|
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
42193
42285
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -42225,9 +42317,11 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
42225
42317
|
favoriteLeagues?: boolean | undefined;
|
|
42226
42318
|
favoriteTeams?: boolean | undefined;
|
|
42227
42319
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
42228
|
-
leaderboardChanges?: "
|
|
42320
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
42229
42321
|
chatReplies?: boolean | undefined;
|
|
42230
42322
|
repliesToRatings?: boolean | undefined;
|
|
42323
|
+
repliesToLists?: boolean | undefined;
|
|
42324
|
+
repliesToUserEvents?: boolean | undefined;
|
|
42231
42325
|
repliesToComments?: boolean | undefined;
|
|
42232
42326
|
ratingLikes?: boolean | undefined;
|
|
42233
42327
|
listLikes?: boolean | undefined;
|
|
@@ -42249,9 +42343,11 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
42249
42343
|
favoriteLeagues?: boolean | undefined;
|
|
42250
42344
|
favoriteTeams?: boolean | undefined;
|
|
42251
42345
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
42252
|
-
leaderboardChanges?: "
|
|
42346
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
42253
42347
|
chatReplies?: boolean | undefined;
|
|
42254
42348
|
repliesToRatings?: boolean | undefined;
|
|
42349
|
+
repliesToLists?: boolean | undefined;
|
|
42350
|
+
repliesToUserEvents?: boolean | undefined;
|
|
42255
42351
|
repliesToComments?: boolean | undefined;
|
|
42256
42352
|
ratingLikes?: boolean | undefined;
|
|
42257
42353
|
listLikes?: boolean | undefined;
|
|
@@ -44806,9 +44902,11 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
44806
44902
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
44807
44903
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
44808
44904
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
44809
|
-
leaderboardChanges: z.
|
|
44905
|
+
leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
|
|
44810
44906
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
44811
44907
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
44908
|
+
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
44909
|
+
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
44812
44910
|
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
44813
44911
|
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
44814
44912
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -44846,9 +44944,11 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
44846
44944
|
favoriteLeagues?: boolean | undefined;
|
|
44847
44945
|
favoriteTeams?: boolean | undefined;
|
|
44848
44946
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
44849
|
-
leaderboardChanges?: "
|
|
44947
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
44850
44948
|
chatReplies?: boolean | undefined;
|
|
44851
44949
|
repliesToRatings?: boolean | undefined;
|
|
44950
|
+
repliesToLists?: boolean | undefined;
|
|
44951
|
+
repliesToUserEvents?: boolean | undefined;
|
|
44852
44952
|
repliesToComments?: boolean | undefined;
|
|
44853
44953
|
ratingLikes?: boolean | undefined;
|
|
44854
44954
|
listLikes?: boolean | undefined;
|
|
@@ -44870,9 +44970,11 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
44870
44970
|
favoriteLeagues?: boolean | undefined;
|
|
44871
44971
|
favoriteTeams?: boolean | undefined;
|
|
44872
44972
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
44873
|
-
leaderboardChanges?: "
|
|
44973
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
44874
44974
|
chatReplies?: boolean | undefined;
|
|
44875
44975
|
repliesToRatings?: boolean | undefined;
|
|
44976
|
+
repliesToLists?: boolean | undefined;
|
|
44977
|
+
repliesToUserEvents?: boolean | undefined;
|
|
44876
44978
|
repliesToComments?: boolean | undefined;
|
|
44877
44979
|
ratingLikes?: boolean | undefined;
|
|
44878
44980
|
listLikes?: boolean | undefined;
|
|
@@ -47398,9 +47500,11 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47398
47500
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
47399
47501
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
47400
47502
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
47401
|
-
leaderboardChanges: z.
|
|
47503
|
+
leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
|
|
47402
47504
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
47403
47505
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
47506
|
+
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
47507
|
+
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
47404
47508
|
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
47405
47509
|
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
47406
47510
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -47438,9 +47542,11 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47438
47542
|
favoriteLeagues?: boolean | undefined;
|
|
47439
47543
|
favoriteTeams?: boolean | undefined;
|
|
47440
47544
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
47441
|
-
leaderboardChanges?: "
|
|
47545
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
47442
47546
|
chatReplies?: boolean | undefined;
|
|
47443
47547
|
repliesToRatings?: boolean | undefined;
|
|
47548
|
+
repliesToLists?: boolean | undefined;
|
|
47549
|
+
repliesToUserEvents?: boolean | undefined;
|
|
47444
47550
|
repliesToComments?: boolean | undefined;
|
|
47445
47551
|
ratingLikes?: boolean | undefined;
|
|
47446
47552
|
listLikes?: boolean | undefined;
|
|
@@ -47462,9 +47568,11 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47462
47568
|
favoriteLeagues?: boolean | undefined;
|
|
47463
47569
|
favoriteTeams?: boolean | undefined;
|
|
47464
47570
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
47465
|
-
leaderboardChanges?: "
|
|
47571
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
47466
47572
|
chatReplies?: boolean | undefined;
|
|
47467
47573
|
repliesToRatings?: boolean | undefined;
|
|
47574
|
+
repliesToLists?: boolean | undefined;
|
|
47575
|
+
repliesToUserEvents?: boolean | undefined;
|
|
47468
47576
|
repliesToComments?: boolean | undefined;
|
|
47469
47577
|
ratingLikes?: boolean | undefined;
|
|
47470
47578
|
listLikes?: boolean | undefined;
|
|
@@ -49972,9 +50080,11 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
49972
50080
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
49973
50081
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
49974
50082
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
49975
|
-
leaderboardChanges: z.
|
|
50083
|
+
leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
|
|
49976
50084
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
49977
50085
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
50086
|
+
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
50087
|
+
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
49978
50088
|
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
49979
50089
|
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
49980
50090
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -50012,9 +50122,11 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
50012
50122
|
favoriteLeagues?: boolean | undefined;
|
|
50013
50123
|
favoriteTeams?: boolean | undefined;
|
|
50014
50124
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
50015
|
-
leaderboardChanges?: "
|
|
50125
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
50016
50126
|
chatReplies?: boolean | undefined;
|
|
50017
50127
|
repliesToRatings?: boolean | undefined;
|
|
50128
|
+
repliesToLists?: boolean | undefined;
|
|
50129
|
+
repliesToUserEvents?: boolean | undefined;
|
|
50018
50130
|
repliesToComments?: boolean | undefined;
|
|
50019
50131
|
ratingLikes?: boolean | undefined;
|
|
50020
50132
|
listLikes?: boolean | undefined;
|
|
@@ -50036,9 +50148,11 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
50036
50148
|
favoriteLeagues?: boolean | undefined;
|
|
50037
50149
|
favoriteTeams?: boolean | undefined;
|
|
50038
50150
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
50039
|
-
leaderboardChanges?: "
|
|
50151
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
50040
50152
|
chatReplies?: boolean | undefined;
|
|
50041
50153
|
repliesToRatings?: boolean | undefined;
|
|
50154
|
+
repliesToLists?: boolean | undefined;
|
|
50155
|
+
repliesToUserEvents?: boolean | undefined;
|
|
50042
50156
|
repliesToComments?: boolean | undefined;
|
|
50043
50157
|
ratingLikes?: boolean | undefined;
|
|
50044
50158
|
listLikes?: boolean | undefined;
|
|
@@ -51391,9 +51505,11 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
51391
51505
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
51392
51506
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
51393
51507
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
51394
|
-
leaderboardChanges: z.
|
|
51508
|
+
leaderboardChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>;
|
|
51395
51509
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
51396
51510
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
51511
|
+
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
51512
|
+
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
51397
51513
|
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
51398
51514
|
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
51399
51515
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -51431,9 +51547,11 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
51431
51547
|
favoriteLeagues?: boolean | undefined;
|
|
51432
51548
|
favoriteTeams?: boolean | undefined;
|
|
51433
51549
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
51434
|
-
leaderboardChanges?: "
|
|
51550
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
51435
51551
|
chatReplies?: boolean | undefined;
|
|
51436
51552
|
repliesToRatings?: boolean | undefined;
|
|
51553
|
+
repliesToLists?: boolean | undefined;
|
|
51554
|
+
repliesToUserEvents?: boolean | undefined;
|
|
51437
51555
|
repliesToComments?: boolean | undefined;
|
|
51438
51556
|
ratingLikes?: boolean | undefined;
|
|
51439
51557
|
listLikes?: boolean | undefined;
|
|
@@ -51455,9 +51573,11 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
51455
51573
|
favoriteLeagues?: boolean | undefined;
|
|
51456
51574
|
favoriteTeams?: boolean | undefined;
|
|
51457
51575
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
51458
|
-
leaderboardChanges?: "
|
|
51576
|
+
leaderboardChanges?: "daily" | "weekly" | "monthly" | undefined;
|
|
51459
51577
|
chatReplies?: boolean | undefined;
|
|
51460
51578
|
repliesToRatings?: boolean | undefined;
|
|
51579
|
+
repliesToLists?: boolean | undefined;
|
|
51580
|
+
repliesToUserEvents?: boolean | undefined;
|
|
51461
51581
|
repliesToComments?: boolean | undefined;
|
|
51462
51582
|
ratingLikes?: boolean | undefined;
|
|
51463
51583
|
listLikes?: boolean | undefined;
|