rategame-shared 1.1.481 → 1.1.483
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 +290 -0
- package/dist/schemas/chat.d.ts +290 -0
- package/dist/schemas/experience.d.ts +232 -0
- package/dist/schemas/game.d.ts +1160 -0
- package/dist/schemas/list.d.ts +290 -0
- package/dist/schemas/miniLeague.d.ts +576 -18
- package/dist/schemas/moderation.d.ts +232 -0
- package/dist/schemas/pick.d.ts +2204 -0
- package/dist/schemas/poll.d.ts +928 -0
- package/dist/schemas/rating.d.ts +174 -0
- package/dist/schemas/scorePrediction.d.ts +1566 -0
- package/dist/schemas/stadium.d.ts +232 -0
- package/dist/schemas/team.d.ts +21 -0
- package/dist/schemas/team.js +1 -0
- package/dist/schemas/trivia.d.ts +290 -0
- package/dist/schemas/user.d.ts +222 -0
- package/dist/schemas/user.js +12 -0
- package/dist/schemas/userEvent.d.ts +174 -0
- package/dist/schemas/voting.d.ts +522 -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>;
|
|
@@ -1250,6 +1284,18 @@ export declare const articleSchema: z.ZodObject<{
|
|
|
1250
1284
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
1251
1285
|
leaderboardChanges?: boolean | undefined;
|
|
1252
1286
|
chatReplies?: boolean | undefined;
|
|
1287
|
+
chatMessages?: {
|
|
1288
|
+
global?: boolean | undefined;
|
|
1289
|
+
nba?: boolean | undefined;
|
|
1290
|
+
nfl?: boolean | undefined;
|
|
1291
|
+
mlb?: boolean | undefined;
|
|
1292
|
+
cfb?: boolean | undefined;
|
|
1293
|
+
epl?: boolean | undefined;
|
|
1294
|
+
mls?: boolean | undefined;
|
|
1295
|
+
wnba?: boolean | undefined;
|
|
1296
|
+
clubhouse?: boolean | undefined;
|
|
1297
|
+
spanish?: boolean | undefined;
|
|
1298
|
+
} | undefined;
|
|
1253
1299
|
repliesToRatings?: boolean | undefined;
|
|
1254
1300
|
repliesToLists?: boolean | undefined;
|
|
1255
1301
|
repliesToUserEvents?: boolean | undefined;
|
|
@@ -1272,6 +1318,18 @@ export declare const articleSchema: z.ZodObject<{
|
|
|
1272
1318
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
1273
1319
|
leaderboardChanges?: boolean | undefined;
|
|
1274
1320
|
chatReplies?: boolean | undefined;
|
|
1321
|
+
chatMessages?: {
|
|
1322
|
+
global?: boolean | undefined;
|
|
1323
|
+
nba?: boolean | undefined;
|
|
1324
|
+
nfl?: boolean | undefined;
|
|
1325
|
+
mlb?: boolean | undefined;
|
|
1326
|
+
cfb?: boolean | undefined;
|
|
1327
|
+
epl?: boolean | undefined;
|
|
1328
|
+
mls?: boolean | undefined;
|
|
1329
|
+
wnba?: boolean | undefined;
|
|
1330
|
+
clubhouse?: boolean | undefined;
|
|
1331
|
+
spanish?: boolean | undefined;
|
|
1332
|
+
} | undefined;
|
|
1275
1333
|
repliesToRatings?: boolean | undefined;
|
|
1276
1334
|
repliesToLists?: boolean | undefined;
|
|
1277
1335
|
repliesToUserEvents?: boolean | undefined;
|
|
@@ -2923,6 +2981,40 @@ export declare const createArticleSchema: z.ZodObject<{
|
|
|
2923
2981
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
2924
2982
|
leaderboardChanges: z.ZodOptional<z.ZodBoolean>;
|
|
2925
2983
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
2984
|
+
chatMessages: z.ZodOptional<z.ZodObject<{
|
|
2985
|
+
global: z.ZodOptional<z.ZodBoolean>;
|
|
2986
|
+
mlb: z.ZodOptional<z.ZodBoolean>;
|
|
2987
|
+
nba: z.ZodOptional<z.ZodBoolean>;
|
|
2988
|
+
wnba: z.ZodOptional<z.ZodBoolean>;
|
|
2989
|
+
nfl: z.ZodOptional<z.ZodBoolean>;
|
|
2990
|
+
cfb: z.ZodOptional<z.ZodBoolean>;
|
|
2991
|
+
mls: z.ZodOptional<z.ZodBoolean>;
|
|
2992
|
+
epl: z.ZodOptional<z.ZodBoolean>;
|
|
2993
|
+
clubhouse: z.ZodOptional<z.ZodBoolean>;
|
|
2994
|
+
spanish: z.ZodOptional<z.ZodBoolean>;
|
|
2995
|
+
}, "strip", z.ZodTypeAny, {
|
|
2996
|
+
global?: boolean | undefined;
|
|
2997
|
+
nba?: boolean | undefined;
|
|
2998
|
+
nfl?: boolean | undefined;
|
|
2999
|
+
mlb?: boolean | undefined;
|
|
3000
|
+
cfb?: boolean | undefined;
|
|
3001
|
+
epl?: boolean | undefined;
|
|
3002
|
+
mls?: boolean | undefined;
|
|
3003
|
+
wnba?: boolean | undefined;
|
|
3004
|
+
clubhouse?: boolean | undefined;
|
|
3005
|
+
spanish?: boolean | undefined;
|
|
3006
|
+
}, {
|
|
3007
|
+
global?: boolean | undefined;
|
|
3008
|
+
nba?: boolean | undefined;
|
|
3009
|
+
nfl?: boolean | undefined;
|
|
3010
|
+
mlb?: boolean | undefined;
|
|
3011
|
+
cfb?: boolean | undefined;
|
|
3012
|
+
epl?: boolean | undefined;
|
|
3013
|
+
mls?: boolean | undefined;
|
|
3014
|
+
wnba?: boolean | undefined;
|
|
3015
|
+
clubhouse?: boolean | undefined;
|
|
3016
|
+
spanish?: boolean | undefined;
|
|
3017
|
+
}>>;
|
|
2926
3018
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
2927
3019
|
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
2928
3020
|
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2945,6 +3037,18 @@ export declare const createArticleSchema: z.ZodObject<{
|
|
|
2945
3037
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
2946
3038
|
leaderboardChanges?: boolean | undefined;
|
|
2947
3039
|
chatReplies?: boolean | undefined;
|
|
3040
|
+
chatMessages?: {
|
|
3041
|
+
global?: boolean | undefined;
|
|
3042
|
+
nba?: boolean | undefined;
|
|
3043
|
+
nfl?: boolean | undefined;
|
|
3044
|
+
mlb?: boolean | undefined;
|
|
3045
|
+
cfb?: boolean | undefined;
|
|
3046
|
+
epl?: boolean | undefined;
|
|
3047
|
+
mls?: boolean | undefined;
|
|
3048
|
+
wnba?: boolean | undefined;
|
|
3049
|
+
clubhouse?: boolean | undefined;
|
|
3050
|
+
spanish?: boolean | undefined;
|
|
3051
|
+
} | undefined;
|
|
2948
3052
|
repliesToRatings?: boolean | undefined;
|
|
2949
3053
|
repliesToLists?: boolean | undefined;
|
|
2950
3054
|
repliesToUserEvents?: boolean | undefined;
|
|
@@ -2967,6 +3071,18 @@ export declare const createArticleSchema: z.ZodObject<{
|
|
|
2967
3071
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
2968
3072
|
leaderboardChanges?: boolean | undefined;
|
|
2969
3073
|
chatReplies?: boolean | undefined;
|
|
3074
|
+
chatMessages?: {
|
|
3075
|
+
global?: boolean | undefined;
|
|
3076
|
+
nba?: boolean | undefined;
|
|
3077
|
+
nfl?: boolean | undefined;
|
|
3078
|
+
mlb?: boolean | undefined;
|
|
3079
|
+
cfb?: boolean | undefined;
|
|
3080
|
+
epl?: boolean | undefined;
|
|
3081
|
+
mls?: boolean | undefined;
|
|
3082
|
+
wnba?: boolean | undefined;
|
|
3083
|
+
clubhouse?: boolean | undefined;
|
|
3084
|
+
spanish?: boolean | undefined;
|
|
3085
|
+
} | undefined;
|
|
2970
3086
|
repliesToRatings?: boolean | undefined;
|
|
2971
3087
|
repliesToLists?: boolean | undefined;
|
|
2972
3088
|
repliesToUserEvents?: boolean | undefined;
|
|
@@ -4681,6 +4797,40 @@ export declare const articleThreadCommentSchema: z.ZodObject<{
|
|
|
4681
4797
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
4682
4798
|
leaderboardChanges: z.ZodOptional<z.ZodBoolean>;
|
|
4683
4799
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
4800
|
+
chatMessages: z.ZodOptional<z.ZodObject<{
|
|
4801
|
+
global: z.ZodOptional<z.ZodBoolean>;
|
|
4802
|
+
mlb: z.ZodOptional<z.ZodBoolean>;
|
|
4803
|
+
nba: z.ZodOptional<z.ZodBoolean>;
|
|
4804
|
+
wnba: z.ZodOptional<z.ZodBoolean>;
|
|
4805
|
+
nfl: z.ZodOptional<z.ZodBoolean>;
|
|
4806
|
+
cfb: z.ZodOptional<z.ZodBoolean>;
|
|
4807
|
+
mls: z.ZodOptional<z.ZodBoolean>;
|
|
4808
|
+
epl: z.ZodOptional<z.ZodBoolean>;
|
|
4809
|
+
clubhouse: z.ZodOptional<z.ZodBoolean>;
|
|
4810
|
+
spanish: z.ZodOptional<z.ZodBoolean>;
|
|
4811
|
+
}, "strip", z.ZodTypeAny, {
|
|
4812
|
+
global?: boolean | undefined;
|
|
4813
|
+
nba?: boolean | undefined;
|
|
4814
|
+
nfl?: boolean | undefined;
|
|
4815
|
+
mlb?: boolean | undefined;
|
|
4816
|
+
cfb?: boolean | undefined;
|
|
4817
|
+
epl?: boolean | undefined;
|
|
4818
|
+
mls?: boolean | undefined;
|
|
4819
|
+
wnba?: boolean | undefined;
|
|
4820
|
+
clubhouse?: boolean | undefined;
|
|
4821
|
+
spanish?: boolean | undefined;
|
|
4822
|
+
}, {
|
|
4823
|
+
global?: boolean | undefined;
|
|
4824
|
+
nba?: boolean | undefined;
|
|
4825
|
+
nfl?: boolean | undefined;
|
|
4826
|
+
mlb?: boolean | undefined;
|
|
4827
|
+
cfb?: boolean | undefined;
|
|
4828
|
+
epl?: boolean | undefined;
|
|
4829
|
+
mls?: boolean | undefined;
|
|
4830
|
+
wnba?: boolean | undefined;
|
|
4831
|
+
clubhouse?: boolean | undefined;
|
|
4832
|
+
spanish?: boolean | undefined;
|
|
4833
|
+
}>>;
|
|
4684
4834
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
4685
4835
|
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
4686
4836
|
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4703,6 +4853,18 @@ export declare const articleThreadCommentSchema: z.ZodObject<{
|
|
|
4703
4853
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
4704
4854
|
leaderboardChanges?: boolean | undefined;
|
|
4705
4855
|
chatReplies?: boolean | undefined;
|
|
4856
|
+
chatMessages?: {
|
|
4857
|
+
global?: boolean | undefined;
|
|
4858
|
+
nba?: boolean | undefined;
|
|
4859
|
+
nfl?: boolean | undefined;
|
|
4860
|
+
mlb?: boolean | undefined;
|
|
4861
|
+
cfb?: boolean | undefined;
|
|
4862
|
+
epl?: boolean | undefined;
|
|
4863
|
+
mls?: boolean | undefined;
|
|
4864
|
+
wnba?: boolean | undefined;
|
|
4865
|
+
clubhouse?: boolean | undefined;
|
|
4866
|
+
spanish?: boolean | undefined;
|
|
4867
|
+
} | undefined;
|
|
4706
4868
|
repliesToRatings?: boolean | undefined;
|
|
4707
4869
|
repliesToLists?: boolean | undefined;
|
|
4708
4870
|
repliesToUserEvents?: boolean | undefined;
|
|
@@ -4725,6 +4887,18 @@ export declare const articleThreadCommentSchema: z.ZodObject<{
|
|
|
4725
4887
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
4726
4888
|
leaderboardChanges?: boolean | undefined;
|
|
4727
4889
|
chatReplies?: boolean | undefined;
|
|
4890
|
+
chatMessages?: {
|
|
4891
|
+
global?: boolean | undefined;
|
|
4892
|
+
nba?: boolean | undefined;
|
|
4893
|
+
nfl?: boolean | undefined;
|
|
4894
|
+
mlb?: boolean | undefined;
|
|
4895
|
+
cfb?: boolean | undefined;
|
|
4896
|
+
epl?: boolean | undefined;
|
|
4897
|
+
mls?: boolean | undefined;
|
|
4898
|
+
wnba?: boolean | undefined;
|
|
4899
|
+
clubhouse?: boolean | undefined;
|
|
4900
|
+
spanish?: boolean | undefined;
|
|
4901
|
+
} | undefined;
|
|
4728
4902
|
repliesToRatings?: boolean | undefined;
|
|
4729
4903
|
repliesToLists?: boolean | undefined;
|
|
4730
4904
|
repliesToUserEvents?: boolean | undefined;
|
|
@@ -6244,6 +6418,40 @@ export declare const articleThreadCommentSchema: z.ZodObject<{
|
|
|
6244
6418
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
6245
6419
|
leaderboardChanges: z.ZodOptional<z.ZodBoolean>;
|
|
6246
6420
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
6421
|
+
chatMessages: z.ZodOptional<z.ZodObject<{
|
|
6422
|
+
global: z.ZodOptional<z.ZodBoolean>;
|
|
6423
|
+
mlb: z.ZodOptional<z.ZodBoolean>;
|
|
6424
|
+
nba: z.ZodOptional<z.ZodBoolean>;
|
|
6425
|
+
wnba: z.ZodOptional<z.ZodBoolean>;
|
|
6426
|
+
nfl: z.ZodOptional<z.ZodBoolean>;
|
|
6427
|
+
cfb: z.ZodOptional<z.ZodBoolean>;
|
|
6428
|
+
mls: z.ZodOptional<z.ZodBoolean>;
|
|
6429
|
+
epl: z.ZodOptional<z.ZodBoolean>;
|
|
6430
|
+
clubhouse: z.ZodOptional<z.ZodBoolean>;
|
|
6431
|
+
spanish: z.ZodOptional<z.ZodBoolean>;
|
|
6432
|
+
}, "strip", z.ZodTypeAny, {
|
|
6433
|
+
global?: boolean | undefined;
|
|
6434
|
+
nba?: boolean | undefined;
|
|
6435
|
+
nfl?: boolean | undefined;
|
|
6436
|
+
mlb?: boolean | undefined;
|
|
6437
|
+
cfb?: boolean | undefined;
|
|
6438
|
+
epl?: boolean | undefined;
|
|
6439
|
+
mls?: boolean | undefined;
|
|
6440
|
+
wnba?: boolean | undefined;
|
|
6441
|
+
clubhouse?: boolean | undefined;
|
|
6442
|
+
spanish?: boolean | undefined;
|
|
6443
|
+
}, {
|
|
6444
|
+
global?: boolean | undefined;
|
|
6445
|
+
nba?: boolean | undefined;
|
|
6446
|
+
nfl?: boolean | undefined;
|
|
6447
|
+
mlb?: boolean | undefined;
|
|
6448
|
+
cfb?: boolean | undefined;
|
|
6449
|
+
epl?: boolean | undefined;
|
|
6450
|
+
mls?: boolean | undefined;
|
|
6451
|
+
wnba?: boolean | undefined;
|
|
6452
|
+
clubhouse?: boolean | undefined;
|
|
6453
|
+
spanish?: boolean | undefined;
|
|
6454
|
+
}>>;
|
|
6247
6455
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
6248
6456
|
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
6249
6457
|
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6266,6 +6474,18 @@ export declare const articleThreadCommentSchema: z.ZodObject<{
|
|
|
6266
6474
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
6267
6475
|
leaderboardChanges?: boolean | undefined;
|
|
6268
6476
|
chatReplies?: boolean | undefined;
|
|
6477
|
+
chatMessages?: {
|
|
6478
|
+
global?: boolean | undefined;
|
|
6479
|
+
nba?: boolean | undefined;
|
|
6480
|
+
nfl?: boolean | undefined;
|
|
6481
|
+
mlb?: boolean | undefined;
|
|
6482
|
+
cfb?: boolean | undefined;
|
|
6483
|
+
epl?: boolean | undefined;
|
|
6484
|
+
mls?: boolean | undefined;
|
|
6485
|
+
wnba?: boolean | undefined;
|
|
6486
|
+
clubhouse?: boolean | undefined;
|
|
6487
|
+
spanish?: boolean | undefined;
|
|
6488
|
+
} | undefined;
|
|
6269
6489
|
repliesToRatings?: boolean | undefined;
|
|
6270
6490
|
repliesToLists?: boolean | undefined;
|
|
6271
6491
|
repliesToUserEvents?: boolean | undefined;
|
|
@@ -6288,6 +6508,18 @@ export declare const articleThreadCommentSchema: z.ZodObject<{
|
|
|
6288
6508
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
6289
6509
|
leaderboardChanges?: boolean | undefined;
|
|
6290
6510
|
chatReplies?: boolean | undefined;
|
|
6511
|
+
chatMessages?: {
|
|
6512
|
+
global?: boolean | undefined;
|
|
6513
|
+
nba?: boolean | undefined;
|
|
6514
|
+
nfl?: boolean | undefined;
|
|
6515
|
+
mlb?: boolean | undefined;
|
|
6516
|
+
cfb?: boolean | undefined;
|
|
6517
|
+
epl?: boolean | undefined;
|
|
6518
|
+
mls?: boolean | undefined;
|
|
6519
|
+
wnba?: boolean | undefined;
|
|
6520
|
+
clubhouse?: boolean | undefined;
|
|
6521
|
+
spanish?: boolean | undefined;
|
|
6522
|
+
} | undefined;
|
|
6291
6523
|
repliesToRatings?: boolean | undefined;
|
|
6292
6524
|
repliesToLists?: boolean | undefined;
|
|
6293
6525
|
repliesToUserEvents?: boolean | undefined;
|
|
@@ -7859,6 +8091,40 @@ export declare const articleThreadCommentLikeSchema: z.ZodObject<{
|
|
|
7859
8091
|
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
7860
8092
|
leaderboardChanges: z.ZodOptional<z.ZodBoolean>;
|
|
7861
8093
|
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
8094
|
+
chatMessages: z.ZodOptional<z.ZodObject<{
|
|
8095
|
+
global: z.ZodOptional<z.ZodBoolean>;
|
|
8096
|
+
mlb: z.ZodOptional<z.ZodBoolean>;
|
|
8097
|
+
nba: z.ZodOptional<z.ZodBoolean>;
|
|
8098
|
+
wnba: z.ZodOptional<z.ZodBoolean>;
|
|
8099
|
+
nfl: z.ZodOptional<z.ZodBoolean>;
|
|
8100
|
+
cfb: z.ZodOptional<z.ZodBoolean>;
|
|
8101
|
+
mls: z.ZodOptional<z.ZodBoolean>;
|
|
8102
|
+
epl: z.ZodOptional<z.ZodBoolean>;
|
|
8103
|
+
clubhouse: z.ZodOptional<z.ZodBoolean>;
|
|
8104
|
+
spanish: z.ZodOptional<z.ZodBoolean>;
|
|
8105
|
+
}, "strip", z.ZodTypeAny, {
|
|
8106
|
+
global?: boolean | undefined;
|
|
8107
|
+
nba?: boolean | undefined;
|
|
8108
|
+
nfl?: boolean | undefined;
|
|
8109
|
+
mlb?: boolean | undefined;
|
|
8110
|
+
cfb?: boolean | undefined;
|
|
8111
|
+
epl?: boolean | undefined;
|
|
8112
|
+
mls?: boolean | undefined;
|
|
8113
|
+
wnba?: boolean | undefined;
|
|
8114
|
+
clubhouse?: boolean | undefined;
|
|
8115
|
+
spanish?: boolean | undefined;
|
|
8116
|
+
}, {
|
|
8117
|
+
global?: boolean | undefined;
|
|
8118
|
+
nba?: boolean | undefined;
|
|
8119
|
+
nfl?: boolean | undefined;
|
|
8120
|
+
mlb?: boolean | undefined;
|
|
8121
|
+
cfb?: boolean | undefined;
|
|
8122
|
+
epl?: boolean | undefined;
|
|
8123
|
+
mls?: boolean | undefined;
|
|
8124
|
+
wnba?: boolean | undefined;
|
|
8125
|
+
clubhouse?: boolean | undefined;
|
|
8126
|
+
spanish?: boolean | undefined;
|
|
8127
|
+
}>>;
|
|
7862
8128
|
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
7863
8129
|
repliesToLists: z.ZodOptional<z.ZodBoolean>;
|
|
7864
8130
|
repliesToUserEvents: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -7881,6 +8147,18 @@ export declare const articleThreadCommentLikeSchema: z.ZodObject<{
|
|
|
7881
8147
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
7882
8148
|
leaderboardChanges?: boolean | undefined;
|
|
7883
8149
|
chatReplies?: boolean | undefined;
|
|
8150
|
+
chatMessages?: {
|
|
8151
|
+
global?: boolean | undefined;
|
|
8152
|
+
nba?: boolean | undefined;
|
|
8153
|
+
nfl?: boolean | undefined;
|
|
8154
|
+
mlb?: boolean | undefined;
|
|
8155
|
+
cfb?: boolean | undefined;
|
|
8156
|
+
epl?: boolean | undefined;
|
|
8157
|
+
mls?: boolean | undefined;
|
|
8158
|
+
wnba?: boolean | undefined;
|
|
8159
|
+
clubhouse?: boolean | undefined;
|
|
8160
|
+
spanish?: boolean | undefined;
|
|
8161
|
+
} | undefined;
|
|
7884
8162
|
repliesToRatings?: boolean | undefined;
|
|
7885
8163
|
repliesToLists?: boolean | undefined;
|
|
7886
8164
|
repliesToUserEvents?: boolean | undefined;
|
|
@@ -7903,6 +8181,18 @@ export declare const articleThreadCommentLikeSchema: z.ZodObject<{
|
|
|
7903
8181
|
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
7904
8182
|
leaderboardChanges?: boolean | undefined;
|
|
7905
8183
|
chatReplies?: boolean | undefined;
|
|
8184
|
+
chatMessages?: {
|
|
8185
|
+
global?: boolean | undefined;
|
|
8186
|
+
nba?: boolean | undefined;
|
|
8187
|
+
nfl?: boolean | undefined;
|
|
8188
|
+
mlb?: boolean | undefined;
|
|
8189
|
+
cfb?: boolean | undefined;
|
|
8190
|
+
epl?: boolean | undefined;
|
|
8191
|
+
mls?: boolean | undefined;
|
|
8192
|
+
wnba?: boolean | undefined;
|
|
8193
|
+
clubhouse?: boolean | undefined;
|
|
8194
|
+
spanish?: boolean | undefined;
|
|
8195
|
+
} | undefined;
|
|
7906
8196
|
repliesToRatings?: boolean | undefined;
|
|
7907
8197
|
repliesToLists?: boolean | undefined;
|
|
7908
8198
|
repliesToUserEvents?: boolean | undefined;
|