rategame-shared 1.1.482 → 1.1.484
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/article.d.ts +305 -0
- package/dist/schemas/chat.d.ts +305 -0
- package/dist/schemas/experience.d.ts +244 -0
- package/dist/schemas/game.d.ts +1220 -0
- package/dist/schemas/list.d.ts +305 -0
- package/dist/schemas/miniLeague.d.ts +603 -18
- package/dist/schemas/moderation.d.ts +244 -0
- package/dist/schemas/pick.d.ts +2318 -0
- package/dist/schemas/poll.d.ts +976 -0
- package/dist/schemas/rating.d.ts +183 -0
- package/dist/schemas/scorePrediction.d.ts +1647 -0
- package/dist/schemas/stadium.d.ts +244 -0
- package/dist/schemas/trivia.d.ts +305 -0
- package/dist/schemas/user.d.ts +235 -0
- package/dist/schemas/user.js +13 -0
- package/dist/schemas/userEvent.d.ts +183 -0
- package/dist/schemas/voting.d.ts +549 -0
- package/package.json +1 -1
|
@@ -1228,6 +1228,40 @@ export declare const articleSchema: z.ZodObject<{
|
|
|
1228
1228
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
1229
1229
|
leaderboardChanges: z.ZodOptional<z.ZodBoolean>;
|
|
1230
1230
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
1231
|
+
chatMessages: z.ZodOptional<z.ZodObject<{
|
|
1232
|
+
global: z.ZodOptional<z.ZodBoolean>;
|
|
1233
|
+
mlb: z.ZodOptional<z.ZodBoolean>;
|
|
1234
|
+
nba: z.ZodOptional<z.ZodBoolean>;
|
|
1235
|
+
wnba: z.ZodOptional<z.ZodBoolean>;
|
|
1236
|
+
nfl: z.ZodOptional<z.ZodBoolean>;
|
|
1237
|
+
cfb: z.ZodOptional<z.ZodBoolean>;
|
|
1238
|
+
mls: z.ZodOptional<z.ZodBoolean>;
|
|
1239
|
+
epl: z.ZodOptional<z.ZodBoolean>;
|
|
1240
|
+
clubhouse: z.ZodOptional<z.ZodBoolean>;
|
|
1241
|
+
spanish: z.ZodOptional<z.ZodBoolean>;
|
|
1242
|
+
}, "strip", z.ZodTypeAny, {
|
|
1243
|
+
global?: boolean | undefined;
|
|
1244
|
+
nba?: boolean | undefined;
|
|
1245
|
+
nfl?: boolean | undefined;
|
|
1246
|
+
mlb?: boolean | undefined;
|
|
1247
|
+
cfb?: boolean | undefined;
|
|
1248
|
+
epl?: boolean | undefined;
|
|
1249
|
+
mls?: boolean | undefined;
|
|
1250
|
+
wnba?: boolean | undefined;
|
|
1251
|
+
clubhouse?: boolean | undefined;
|
|
1252
|
+
spanish?: boolean | undefined;
|
|
1253
|
+
}, {
|
|
1254
|
+
global?: boolean | undefined;
|
|
1255
|
+
nba?: boolean | undefined;
|
|
1256
|
+
nfl?: boolean | undefined;
|
|
1257
|
+
mlb?: boolean | undefined;
|
|
1258
|
+
cfb?: boolean | undefined;
|
|
1259
|
+
epl?: boolean | undefined;
|
|
1260
|
+
mls?: boolean | undefined;
|
|
1261
|
+
wnba?: boolean | undefined;
|
|
1262
|
+
clubhouse?: boolean | undefined;
|
|
1263
|
+
spanish?: boolean | undefined;
|
|
1264
|
+
}>>;
|
|
1231
1265
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
1232
1266
|
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
1233
1267
|
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1242,6 +1276,7 @@ export declare const articleSchema: z.ZodObject<{
|
|
|
1242
1276
|
gameTopLists: z.ZodOptional<z.ZodBoolean>;
|
|
1243
1277
|
playerTopLists: z.ZodOptional<z.ZodBoolean>;
|
|
1244
1278
|
streakReminders: z.ZodOptional<z.ZodBoolean>;
|
|
1279
|
+
miniLeaguePickReminders: z.ZodOptional<z.ZodBoolean>;
|
|
1245
1280
|
newTrivia: z.ZodOptional<z.ZodBoolean>;
|
|
1246
1281
|
}, "strip", z.ZodTypeAny, {
|
|
1247
1282
|
allGames?: boolean | undefined;
|
|
@@ -1250,6 +1285,18 @@ export declare const articleSchema: z.ZodObject<{
|
|
|
1250
1285
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
1251
1286
|
leaderboardChanges?: boolean | undefined;
|
|
1252
1287
|
chatReplies?: boolean | undefined;
|
|
1288
|
+
chatMessages?: {
|
|
1289
|
+
global?: boolean | undefined;
|
|
1290
|
+
nba?: boolean | undefined;
|
|
1291
|
+
nfl?: boolean | undefined;
|
|
1292
|
+
mlb?: boolean | undefined;
|
|
1293
|
+
cfb?: boolean | undefined;
|
|
1294
|
+
epl?: boolean | undefined;
|
|
1295
|
+
mls?: boolean | undefined;
|
|
1296
|
+
wnba?: boolean | undefined;
|
|
1297
|
+
clubhouse?: boolean | undefined;
|
|
1298
|
+
spanish?: boolean | undefined;
|
|
1299
|
+
} | undefined;
|
|
1253
1300
|
repliesToRatings?: boolean | undefined;
|
|
1254
1301
|
repliesToLists?: boolean | undefined;
|
|
1255
1302
|
repliesToUserEvents?: boolean | undefined;
|
|
@@ -1264,6 +1311,7 @@ export declare const articleSchema: z.ZodObject<{
|
|
|
1264
1311
|
gameTopLists?: boolean | undefined;
|
|
1265
1312
|
playerTopLists?: boolean | undefined;
|
|
1266
1313
|
streakReminders?: boolean | undefined;
|
|
1314
|
+
miniLeaguePickReminders?: boolean | undefined;
|
|
1267
1315
|
newTrivia?: boolean | undefined;
|
|
1268
1316
|
}, {
|
|
1269
1317
|
allGames?: boolean | undefined;
|
|
@@ -1272,6 +1320,18 @@ export declare const articleSchema: z.ZodObject<{
|
|
|
1272
1320
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
1273
1321
|
leaderboardChanges?: boolean | undefined;
|
|
1274
1322
|
chatReplies?: boolean | undefined;
|
|
1323
|
+
chatMessages?: {
|
|
1324
|
+
global?: boolean | undefined;
|
|
1325
|
+
nba?: boolean | undefined;
|
|
1326
|
+
nfl?: boolean | undefined;
|
|
1327
|
+
mlb?: boolean | undefined;
|
|
1328
|
+
cfb?: boolean | undefined;
|
|
1329
|
+
epl?: boolean | undefined;
|
|
1330
|
+
mls?: boolean | undefined;
|
|
1331
|
+
wnba?: boolean | undefined;
|
|
1332
|
+
clubhouse?: boolean | undefined;
|
|
1333
|
+
spanish?: boolean | undefined;
|
|
1334
|
+
} | undefined;
|
|
1275
1335
|
repliesToRatings?: boolean | undefined;
|
|
1276
1336
|
repliesToLists?: boolean | undefined;
|
|
1277
1337
|
repliesToUserEvents?: boolean | undefined;
|
|
@@ -1286,6 +1346,7 @@ export declare const articleSchema: z.ZodObject<{
|
|
|
1286
1346
|
gameTopLists?: boolean | undefined;
|
|
1287
1347
|
playerTopLists?: boolean | undefined;
|
|
1288
1348
|
streakReminders?: boolean | undefined;
|
|
1349
|
+
miniLeaguePickReminders?: boolean | undefined;
|
|
1289
1350
|
newTrivia?: boolean | undefined;
|
|
1290
1351
|
}>>;
|
|
1291
1352
|
notificationBadgePreferences: z.ZodOptional<z.ZodObject<{
|
|
@@ -2923,6 +2984,40 @@ export declare const createArticleSchema: z.ZodObject<{
|
|
|
2923
2984
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
2924
2985
|
leaderboardChanges: z.ZodOptional<z.ZodBoolean>;
|
|
2925
2986
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
2987
|
+
chatMessages: z.ZodOptional<z.ZodObject<{
|
|
2988
|
+
global: z.ZodOptional<z.ZodBoolean>;
|
|
2989
|
+
mlb: z.ZodOptional<z.ZodBoolean>;
|
|
2990
|
+
nba: z.ZodOptional<z.ZodBoolean>;
|
|
2991
|
+
wnba: z.ZodOptional<z.ZodBoolean>;
|
|
2992
|
+
nfl: z.ZodOptional<z.ZodBoolean>;
|
|
2993
|
+
cfb: z.ZodOptional<z.ZodBoolean>;
|
|
2994
|
+
mls: z.ZodOptional<z.ZodBoolean>;
|
|
2995
|
+
epl: z.ZodOptional<z.ZodBoolean>;
|
|
2996
|
+
clubhouse: z.ZodOptional<z.ZodBoolean>;
|
|
2997
|
+
spanish: z.ZodOptional<z.ZodBoolean>;
|
|
2998
|
+
}, "strip", z.ZodTypeAny, {
|
|
2999
|
+
global?: boolean | undefined;
|
|
3000
|
+
nba?: boolean | undefined;
|
|
3001
|
+
nfl?: boolean | undefined;
|
|
3002
|
+
mlb?: boolean | undefined;
|
|
3003
|
+
cfb?: boolean | undefined;
|
|
3004
|
+
epl?: boolean | undefined;
|
|
3005
|
+
mls?: boolean | undefined;
|
|
3006
|
+
wnba?: boolean | undefined;
|
|
3007
|
+
clubhouse?: boolean | undefined;
|
|
3008
|
+
spanish?: boolean | undefined;
|
|
3009
|
+
}, {
|
|
3010
|
+
global?: boolean | undefined;
|
|
3011
|
+
nba?: boolean | undefined;
|
|
3012
|
+
nfl?: boolean | undefined;
|
|
3013
|
+
mlb?: boolean | undefined;
|
|
3014
|
+
cfb?: boolean | undefined;
|
|
3015
|
+
epl?: boolean | undefined;
|
|
3016
|
+
mls?: boolean | undefined;
|
|
3017
|
+
wnba?: boolean | undefined;
|
|
3018
|
+
clubhouse?: boolean | undefined;
|
|
3019
|
+
spanish?: boolean | undefined;
|
|
3020
|
+
}>>;
|
|
2926
3021
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
2927
3022
|
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
2928
3023
|
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2937,6 +3032,7 @@ export declare const createArticleSchema: z.ZodObject<{
|
|
|
2937
3032
|
gameTopLists: z.ZodOptional<z.ZodBoolean>;
|
|
2938
3033
|
playerTopLists: z.ZodOptional<z.ZodBoolean>;
|
|
2939
3034
|
streakReminders: z.ZodOptional<z.ZodBoolean>;
|
|
3035
|
+
miniLeaguePickReminders: z.ZodOptional<z.ZodBoolean>;
|
|
2940
3036
|
newTrivia: z.ZodOptional<z.ZodBoolean>;
|
|
2941
3037
|
}, "strip", z.ZodTypeAny, {
|
|
2942
3038
|
allGames?: boolean | undefined;
|
|
@@ -2945,6 +3041,18 @@ export declare const createArticleSchema: z.ZodObject<{
|
|
|
2945
3041
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
2946
3042
|
leaderboardChanges?: boolean | undefined;
|
|
2947
3043
|
chatReplies?: boolean | undefined;
|
|
3044
|
+
chatMessages?: {
|
|
3045
|
+
global?: boolean | undefined;
|
|
3046
|
+
nba?: boolean | undefined;
|
|
3047
|
+
nfl?: boolean | undefined;
|
|
3048
|
+
mlb?: boolean | undefined;
|
|
3049
|
+
cfb?: boolean | undefined;
|
|
3050
|
+
epl?: boolean | undefined;
|
|
3051
|
+
mls?: boolean | undefined;
|
|
3052
|
+
wnba?: boolean | undefined;
|
|
3053
|
+
clubhouse?: boolean | undefined;
|
|
3054
|
+
spanish?: boolean | undefined;
|
|
3055
|
+
} | undefined;
|
|
2948
3056
|
repliesToRatings?: boolean | undefined;
|
|
2949
3057
|
repliesToLists?: boolean | undefined;
|
|
2950
3058
|
repliesToUserEvents?: boolean | undefined;
|
|
@@ -2959,6 +3067,7 @@ export declare const createArticleSchema: z.ZodObject<{
|
|
|
2959
3067
|
gameTopLists?: boolean | undefined;
|
|
2960
3068
|
playerTopLists?: boolean | undefined;
|
|
2961
3069
|
streakReminders?: boolean | undefined;
|
|
3070
|
+
miniLeaguePickReminders?: boolean | undefined;
|
|
2962
3071
|
newTrivia?: boolean | undefined;
|
|
2963
3072
|
}, {
|
|
2964
3073
|
allGames?: boolean | undefined;
|
|
@@ -2967,6 +3076,18 @@ export declare const createArticleSchema: z.ZodObject<{
|
|
|
2967
3076
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
2968
3077
|
leaderboardChanges?: boolean | undefined;
|
|
2969
3078
|
chatReplies?: boolean | undefined;
|
|
3079
|
+
chatMessages?: {
|
|
3080
|
+
global?: boolean | undefined;
|
|
3081
|
+
nba?: boolean | undefined;
|
|
3082
|
+
nfl?: boolean | undefined;
|
|
3083
|
+
mlb?: boolean | undefined;
|
|
3084
|
+
cfb?: boolean | undefined;
|
|
3085
|
+
epl?: boolean | undefined;
|
|
3086
|
+
mls?: boolean | undefined;
|
|
3087
|
+
wnba?: boolean | undefined;
|
|
3088
|
+
clubhouse?: boolean | undefined;
|
|
3089
|
+
spanish?: boolean | undefined;
|
|
3090
|
+
} | undefined;
|
|
2970
3091
|
repliesToRatings?: boolean | undefined;
|
|
2971
3092
|
repliesToLists?: boolean | undefined;
|
|
2972
3093
|
repliesToUserEvents?: boolean | undefined;
|
|
@@ -2981,6 +3102,7 @@ export declare const createArticleSchema: z.ZodObject<{
|
|
|
2981
3102
|
gameTopLists?: boolean | undefined;
|
|
2982
3103
|
playerTopLists?: boolean | undefined;
|
|
2983
3104
|
streakReminders?: boolean | undefined;
|
|
3105
|
+
miniLeaguePickReminders?: boolean | undefined;
|
|
2984
3106
|
newTrivia?: boolean | undefined;
|
|
2985
3107
|
}>>;
|
|
2986
3108
|
notificationBadgePreferences: z.ZodOptional<z.ZodObject<{
|
|
@@ -4681,6 +4803,40 @@ export declare const articleThreadCommentSchema: z.ZodObject<{
|
|
|
4681
4803
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
4682
4804
|
leaderboardChanges: z.ZodOptional<z.ZodBoolean>;
|
|
4683
4805
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
4806
|
+
chatMessages: z.ZodOptional<z.ZodObject<{
|
|
4807
|
+
global: z.ZodOptional<z.ZodBoolean>;
|
|
4808
|
+
mlb: z.ZodOptional<z.ZodBoolean>;
|
|
4809
|
+
nba: z.ZodOptional<z.ZodBoolean>;
|
|
4810
|
+
wnba: z.ZodOptional<z.ZodBoolean>;
|
|
4811
|
+
nfl: z.ZodOptional<z.ZodBoolean>;
|
|
4812
|
+
cfb: z.ZodOptional<z.ZodBoolean>;
|
|
4813
|
+
mls: z.ZodOptional<z.ZodBoolean>;
|
|
4814
|
+
epl: z.ZodOptional<z.ZodBoolean>;
|
|
4815
|
+
clubhouse: z.ZodOptional<z.ZodBoolean>;
|
|
4816
|
+
spanish: z.ZodOptional<z.ZodBoolean>;
|
|
4817
|
+
}, "strip", z.ZodTypeAny, {
|
|
4818
|
+
global?: boolean | undefined;
|
|
4819
|
+
nba?: boolean | undefined;
|
|
4820
|
+
nfl?: boolean | undefined;
|
|
4821
|
+
mlb?: boolean | undefined;
|
|
4822
|
+
cfb?: boolean | undefined;
|
|
4823
|
+
epl?: boolean | undefined;
|
|
4824
|
+
mls?: boolean | undefined;
|
|
4825
|
+
wnba?: boolean | undefined;
|
|
4826
|
+
clubhouse?: boolean | undefined;
|
|
4827
|
+
spanish?: boolean | undefined;
|
|
4828
|
+
}, {
|
|
4829
|
+
global?: boolean | undefined;
|
|
4830
|
+
nba?: boolean | undefined;
|
|
4831
|
+
nfl?: boolean | undefined;
|
|
4832
|
+
mlb?: boolean | undefined;
|
|
4833
|
+
cfb?: boolean | undefined;
|
|
4834
|
+
epl?: boolean | undefined;
|
|
4835
|
+
mls?: boolean | undefined;
|
|
4836
|
+
wnba?: boolean | undefined;
|
|
4837
|
+
clubhouse?: boolean | undefined;
|
|
4838
|
+
spanish?: boolean | undefined;
|
|
4839
|
+
}>>;
|
|
4684
4840
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
4685
4841
|
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
4686
4842
|
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4695,6 +4851,7 @@ export declare const articleThreadCommentSchema: z.ZodObject<{
|
|
|
4695
4851
|
gameTopLists: z.ZodOptional<z.ZodBoolean>;
|
|
4696
4852
|
playerTopLists: z.ZodOptional<z.ZodBoolean>;
|
|
4697
4853
|
streakReminders: z.ZodOptional<z.ZodBoolean>;
|
|
4854
|
+
miniLeaguePickReminders: z.ZodOptional<z.ZodBoolean>;
|
|
4698
4855
|
newTrivia: z.ZodOptional<z.ZodBoolean>;
|
|
4699
4856
|
}, "strip", z.ZodTypeAny, {
|
|
4700
4857
|
allGames?: boolean | undefined;
|
|
@@ -4703,6 +4860,18 @@ export declare const articleThreadCommentSchema: z.ZodObject<{
|
|
|
4703
4860
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
4704
4861
|
leaderboardChanges?: boolean | undefined;
|
|
4705
4862
|
chatReplies?: boolean | undefined;
|
|
4863
|
+
chatMessages?: {
|
|
4864
|
+
global?: boolean | undefined;
|
|
4865
|
+
nba?: boolean | undefined;
|
|
4866
|
+
nfl?: boolean | undefined;
|
|
4867
|
+
mlb?: boolean | undefined;
|
|
4868
|
+
cfb?: boolean | undefined;
|
|
4869
|
+
epl?: boolean | undefined;
|
|
4870
|
+
mls?: boolean | undefined;
|
|
4871
|
+
wnba?: boolean | undefined;
|
|
4872
|
+
clubhouse?: boolean | undefined;
|
|
4873
|
+
spanish?: boolean | undefined;
|
|
4874
|
+
} | undefined;
|
|
4706
4875
|
repliesToRatings?: boolean | undefined;
|
|
4707
4876
|
repliesToLists?: boolean | undefined;
|
|
4708
4877
|
repliesToUserEvents?: boolean | undefined;
|
|
@@ -4717,6 +4886,7 @@ export declare const articleThreadCommentSchema: z.ZodObject<{
|
|
|
4717
4886
|
gameTopLists?: boolean | undefined;
|
|
4718
4887
|
playerTopLists?: boolean | undefined;
|
|
4719
4888
|
streakReminders?: boolean | undefined;
|
|
4889
|
+
miniLeaguePickReminders?: boolean | undefined;
|
|
4720
4890
|
newTrivia?: boolean | undefined;
|
|
4721
4891
|
}, {
|
|
4722
4892
|
allGames?: boolean | undefined;
|
|
@@ -4725,6 +4895,18 @@ export declare const articleThreadCommentSchema: z.ZodObject<{
|
|
|
4725
4895
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
4726
4896
|
leaderboardChanges?: boolean | undefined;
|
|
4727
4897
|
chatReplies?: boolean | undefined;
|
|
4898
|
+
chatMessages?: {
|
|
4899
|
+
global?: boolean | undefined;
|
|
4900
|
+
nba?: boolean | undefined;
|
|
4901
|
+
nfl?: boolean | undefined;
|
|
4902
|
+
mlb?: boolean | undefined;
|
|
4903
|
+
cfb?: boolean | undefined;
|
|
4904
|
+
epl?: boolean | undefined;
|
|
4905
|
+
mls?: boolean | undefined;
|
|
4906
|
+
wnba?: boolean | undefined;
|
|
4907
|
+
clubhouse?: boolean | undefined;
|
|
4908
|
+
spanish?: boolean | undefined;
|
|
4909
|
+
} | undefined;
|
|
4728
4910
|
repliesToRatings?: boolean | undefined;
|
|
4729
4911
|
repliesToLists?: boolean | undefined;
|
|
4730
4912
|
repliesToUserEvents?: boolean | undefined;
|
|
@@ -4739,6 +4921,7 @@ export declare const articleThreadCommentSchema: z.ZodObject<{
|
|
|
4739
4921
|
gameTopLists?: boolean | undefined;
|
|
4740
4922
|
playerTopLists?: boolean | undefined;
|
|
4741
4923
|
streakReminders?: boolean | undefined;
|
|
4924
|
+
miniLeaguePickReminders?: boolean | undefined;
|
|
4742
4925
|
newTrivia?: boolean | undefined;
|
|
4743
4926
|
}>>;
|
|
4744
4927
|
notificationBadgePreferences: z.ZodOptional<z.ZodObject<{
|
|
@@ -6244,6 +6427,40 @@ export declare const articleThreadCommentSchema: z.ZodObject<{
|
|
|
6244
6427
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
6245
6428
|
leaderboardChanges: z.ZodOptional<z.ZodBoolean>;
|
|
6246
6429
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
6430
|
+
chatMessages: z.ZodOptional<z.ZodObject<{
|
|
6431
|
+
global: z.ZodOptional<z.ZodBoolean>;
|
|
6432
|
+
mlb: z.ZodOptional<z.ZodBoolean>;
|
|
6433
|
+
nba: z.ZodOptional<z.ZodBoolean>;
|
|
6434
|
+
wnba: z.ZodOptional<z.ZodBoolean>;
|
|
6435
|
+
nfl: z.ZodOptional<z.ZodBoolean>;
|
|
6436
|
+
cfb: z.ZodOptional<z.ZodBoolean>;
|
|
6437
|
+
mls: z.ZodOptional<z.ZodBoolean>;
|
|
6438
|
+
epl: z.ZodOptional<z.ZodBoolean>;
|
|
6439
|
+
clubhouse: z.ZodOptional<z.ZodBoolean>;
|
|
6440
|
+
spanish: z.ZodOptional<z.ZodBoolean>;
|
|
6441
|
+
}, "strip", z.ZodTypeAny, {
|
|
6442
|
+
global?: boolean | undefined;
|
|
6443
|
+
nba?: boolean | undefined;
|
|
6444
|
+
nfl?: boolean | undefined;
|
|
6445
|
+
mlb?: boolean | undefined;
|
|
6446
|
+
cfb?: boolean | undefined;
|
|
6447
|
+
epl?: boolean | undefined;
|
|
6448
|
+
mls?: boolean | undefined;
|
|
6449
|
+
wnba?: boolean | undefined;
|
|
6450
|
+
clubhouse?: boolean | undefined;
|
|
6451
|
+
spanish?: boolean | undefined;
|
|
6452
|
+
}, {
|
|
6453
|
+
global?: boolean | undefined;
|
|
6454
|
+
nba?: boolean | undefined;
|
|
6455
|
+
nfl?: boolean | undefined;
|
|
6456
|
+
mlb?: boolean | undefined;
|
|
6457
|
+
cfb?: boolean | undefined;
|
|
6458
|
+
epl?: boolean | undefined;
|
|
6459
|
+
mls?: boolean | undefined;
|
|
6460
|
+
wnba?: boolean | undefined;
|
|
6461
|
+
clubhouse?: boolean | undefined;
|
|
6462
|
+
spanish?: boolean | undefined;
|
|
6463
|
+
}>>;
|
|
6247
6464
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
6248
6465
|
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
6249
6466
|
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6258,6 +6475,7 @@ export declare const articleThreadCommentSchema: z.ZodObject<{
|
|
|
6258
6475
|
gameTopLists: z.ZodOptional<z.ZodBoolean>;
|
|
6259
6476
|
playerTopLists: z.ZodOptional<z.ZodBoolean>;
|
|
6260
6477
|
streakReminders: z.ZodOptional<z.ZodBoolean>;
|
|
6478
|
+
miniLeaguePickReminders: z.ZodOptional<z.ZodBoolean>;
|
|
6261
6479
|
newTrivia: z.ZodOptional<z.ZodBoolean>;
|
|
6262
6480
|
}, "strip", z.ZodTypeAny, {
|
|
6263
6481
|
allGames?: boolean | undefined;
|
|
@@ -6266,6 +6484,18 @@ export declare const articleThreadCommentSchema: z.ZodObject<{
|
|
|
6266
6484
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
6267
6485
|
leaderboardChanges?: boolean | undefined;
|
|
6268
6486
|
chatReplies?: boolean | undefined;
|
|
6487
|
+
chatMessages?: {
|
|
6488
|
+
global?: boolean | undefined;
|
|
6489
|
+
nba?: boolean | undefined;
|
|
6490
|
+
nfl?: boolean | undefined;
|
|
6491
|
+
mlb?: boolean | undefined;
|
|
6492
|
+
cfb?: boolean | undefined;
|
|
6493
|
+
epl?: boolean | undefined;
|
|
6494
|
+
mls?: boolean | undefined;
|
|
6495
|
+
wnba?: boolean | undefined;
|
|
6496
|
+
clubhouse?: boolean | undefined;
|
|
6497
|
+
spanish?: boolean | undefined;
|
|
6498
|
+
} | undefined;
|
|
6269
6499
|
repliesToRatings?: boolean | undefined;
|
|
6270
6500
|
repliesToLists?: boolean | undefined;
|
|
6271
6501
|
repliesToUserEvents?: boolean | undefined;
|
|
@@ -6280,6 +6510,7 @@ export declare const articleThreadCommentSchema: z.ZodObject<{
|
|
|
6280
6510
|
gameTopLists?: boolean | undefined;
|
|
6281
6511
|
playerTopLists?: boolean | undefined;
|
|
6282
6512
|
streakReminders?: boolean | undefined;
|
|
6513
|
+
miniLeaguePickReminders?: boolean | undefined;
|
|
6283
6514
|
newTrivia?: boolean | undefined;
|
|
6284
6515
|
}, {
|
|
6285
6516
|
allGames?: boolean | undefined;
|
|
@@ -6288,6 +6519,18 @@ export declare const articleThreadCommentSchema: z.ZodObject<{
|
|
|
6288
6519
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
6289
6520
|
leaderboardChanges?: boolean | undefined;
|
|
6290
6521
|
chatReplies?: boolean | undefined;
|
|
6522
|
+
chatMessages?: {
|
|
6523
|
+
global?: boolean | undefined;
|
|
6524
|
+
nba?: boolean | undefined;
|
|
6525
|
+
nfl?: boolean | undefined;
|
|
6526
|
+
mlb?: boolean | undefined;
|
|
6527
|
+
cfb?: boolean | undefined;
|
|
6528
|
+
epl?: boolean | undefined;
|
|
6529
|
+
mls?: boolean | undefined;
|
|
6530
|
+
wnba?: boolean | undefined;
|
|
6531
|
+
clubhouse?: boolean | undefined;
|
|
6532
|
+
spanish?: boolean | undefined;
|
|
6533
|
+
} | undefined;
|
|
6291
6534
|
repliesToRatings?: boolean | undefined;
|
|
6292
6535
|
repliesToLists?: boolean | undefined;
|
|
6293
6536
|
repliesToUserEvents?: boolean | undefined;
|
|
@@ -6302,6 +6545,7 @@ export declare const articleThreadCommentSchema: z.ZodObject<{
|
|
|
6302
6545
|
gameTopLists?: boolean | undefined;
|
|
6303
6546
|
playerTopLists?: boolean | undefined;
|
|
6304
6547
|
streakReminders?: boolean | undefined;
|
|
6548
|
+
miniLeaguePickReminders?: boolean | undefined;
|
|
6305
6549
|
newTrivia?: boolean | undefined;
|
|
6306
6550
|
}>>;
|
|
6307
6551
|
notificationBadgePreferences: z.ZodOptional<z.ZodObject<{
|
|
@@ -7859,6 +8103,40 @@ export declare const articleThreadCommentLikeSchema: z.ZodObject<{
|
|
|
7859
8103
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
7860
8104
|
leaderboardChanges: z.ZodOptional<z.ZodBoolean>;
|
|
7861
8105
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
8106
|
+
chatMessages: z.ZodOptional<z.ZodObject<{
|
|
8107
|
+
global: z.ZodOptional<z.ZodBoolean>;
|
|
8108
|
+
mlb: z.ZodOptional<z.ZodBoolean>;
|
|
8109
|
+
nba: z.ZodOptional<z.ZodBoolean>;
|
|
8110
|
+
wnba: z.ZodOptional<z.ZodBoolean>;
|
|
8111
|
+
nfl: z.ZodOptional<z.ZodBoolean>;
|
|
8112
|
+
cfb: z.ZodOptional<z.ZodBoolean>;
|
|
8113
|
+
mls: z.ZodOptional<z.ZodBoolean>;
|
|
8114
|
+
epl: z.ZodOptional<z.ZodBoolean>;
|
|
8115
|
+
clubhouse: z.ZodOptional<z.ZodBoolean>;
|
|
8116
|
+
spanish: z.ZodOptional<z.ZodBoolean>;
|
|
8117
|
+
}, "strip", z.ZodTypeAny, {
|
|
8118
|
+
global?: boolean | undefined;
|
|
8119
|
+
nba?: boolean | undefined;
|
|
8120
|
+
nfl?: boolean | undefined;
|
|
8121
|
+
mlb?: boolean | undefined;
|
|
8122
|
+
cfb?: boolean | undefined;
|
|
8123
|
+
epl?: boolean | undefined;
|
|
8124
|
+
mls?: boolean | undefined;
|
|
8125
|
+
wnba?: boolean | undefined;
|
|
8126
|
+
clubhouse?: boolean | undefined;
|
|
8127
|
+
spanish?: boolean | undefined;
|
|
8128
|
+
}, {
|
|
8129
|
+
global?: boolean | undefined;
|
|
8130
|
+
nba?: boolean | undefined;
|
|
8131
|
+
nfl?: boolean | undefined;
|
|
8132
|
+
mlb?: boolean | undefined;
|
|
8133
|
+
cfb?: boolean | undefined;
|
|
8134
|
+
epl?: boolean | undefined;
|
|
8135
|
+
mls?: boolean | undefined;
|
|
8136
|
+
wnba?: boolean | undefined;
|
|
8137
|
+
clubhouse?: boolean | undefined;
|
|
8138
|
+
spanish?: boolean | undefined;
|
|
8139
|
+
}>>;
|
|
7862
8140
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
7863
8141
|
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
7864
8142
|
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -7873,6 +8151,7 @@ export declare const articleThreadCommentLikeSchema: z.ZodObject<{
|
|
|
7873
8151
|
gameTopLists: z.ZodOptional<z.ZodBoolean>;
|
|
7874
8152
|
playerTopLists: z.ZodOptional<z.ZodBoolean>;
|
|
7875
8153
|
streakReminders: z.ZodOptional<z.ZodBoolean>;
|
|
8154
|
+
miniLeaguePickReminders: z.ZodOptional<z.ZodBoolean>;
|
|
7876
8155
|
newTrivia: z.ZodOptional<z.ZodBoolean>;
|
|
7877
8156
|
}, "strip", z.ZodTypeAny, {
|
|
7878
8157
|
allGames?: boolean | undefined;
|
|
@@ -7881,6 +8160,18 @@ export declare const articleThreadCommentLikeSchema: z.ZodObject<{
|
|
|
7881
8160
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
7882
8161
|
leaderboardChanges?: boolean | undefined;
|
|
7883
8162
|
chatReplies?: boolean | undefined;
|
|
8163
|
+
chatMessages?: {
|
|
8164
|
+
global?: boolean | undefined;
|
|
8165
|
+
nba?: boolean | undefined;
|
|
8166
|
+
nfl?: boolean | undefined;
|
|
8167
|
+
mlb?: boolean | undefined;
|
|
8168
|
+
cfb?: boolean | undefined;
|
|
8169
|
+
epl?: boolean | undefined;
|
|
8170
|
+
mls?: boolean | undefined;
|
|
8171
|
+
wnba?: boolean | undefined;
|
|
8172
|
+
clubhouse?: boolean | undefined;
|
|
8173
|
+
spanish?: boolean | undefined;
|
|
8174
|
+
} | undefined;
|
|
7884
8175
|
repliesToRatings?: boolean | undefined;
|
|
7885
8176
|
repliesToLists?: boolean | undefined;
|
|
7886
8177
|
repliesToUserEvents?: boolean | undefined;
|
|
@@ -7895,6 +8186,7 @@ export declare const articleThreadCommentLikeSchema: z.ZodObject<{
|
|
|
7895
8186
|
gameTopLists?: boolean | undefined;
|
|
7896
8187
|
playerTopLists?: boolean | undefined;
|
|
7897
8188
|
streakReminders?: boolean | undefined;
|
|
8189
|
+
miniLeaguePickReminders?: boolean | undefined;
|
|
7898
8190
|
newTrivia?: boolean | undefined;
|
|
7899
8191
|
}, {
|
|
7900
8192
|
allGames?: boolean | undefined;
|
|
@@ -7903,6 +8195,18 @@ export declare const articleThreadCommentLikeSchema: z.ZodObject<{
|
|
|
7903
8195
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
7904
8196
|
leaderboardChanges?: boolean | undefined;
|
|
7905
8197
|
chatReplies?: boolean | undefined;
|
|
8198
|
+
chatMessages?: {
|
|
8199
|
+
global?: boolean | undefined;
|
|
8200
|
+
nba?: boolean | undefined;
|
|
8201
|
+
nfl?: boolean | undefined;
|
|
8202
|
+
mlb?: boolean | undefined;
|
|
8203
|
+
cfb?: boolean | undefined;
|
|
8204
|
+
epl?: boolean | undefined;
|
|
8205
|
+
mls?: boolean | undefined;
|
|
8206
|
+
wnba?: boolean | undefined;
|
|
8207
|
+
clubhouse?: boolean | undefined;
|
|
8208
|
+
spanish?: boolean | undefined;
|
|
8209
|
+
} | undefined;
|
|
7906
8210
|
repliesToRatings?: boolean | undefined;
|
|
7907
8211
|
repliesToLists?: boolean | undefined;
|
|
7908
8212
|
repliesToUserEvents?: boolean | undefined;
|
|
@@ -7917,6 +8221,7 @@ export declare const articleThreadCommentLikeSchema: z.ZodObject<{
|
|
|
7917
8221
|
gameTopLists?: boolean | undefined;
|
|
7918
8222
|
playerTopLists?: boolean | undefined;
|
|
7919
8223
|
streakReminders?: boolean | undefined;
|
|
8224
|
+
miniLeaguePickReminders?: boolean | undefined;
|
|
7920
8225
|
newTrivia?: boolean | undefined;
|
|
7921
8226
|
}>>;
|
|
7922
8227
|
notificationBadgePreferences: z.ZodOptional<z.ZodObject<{
|