rategame-shared 1.1.307 → 1.1.309

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.
@@ -115,8 +115,8 @@ exports.achievementsMap = {
115
115
  description: "Rate games on January 1st.",
116
116
  tiers: {
117
117
  bronze: { threshold: 1 },
118
- silver: { threshold: 5 },
119
- gold: { threshold: 10 },
118
+ silver: { threshold: 6 },
119
+ gold: { threshold: 9 },
120
120
  },
121
121
  type: "global",
122
122
  },
@@ -255,6 +255,7 @@ exports.achievementsMap = {
255
255
  description: "Rate an entire season of Football.",
256
256
  type: "sport",
257
257
  sport: "football",
258
+ seasonal: true,
258
259
  },
259
260
  goal_getter: {
260
261
  id: "goal_getter",
@@ -276,6 +277,7 @@ exports.achievementsMap = {
276
277
  description: "Rate an entire season of Soccer.",
277
278
  type: "sport",
278
279
  sport: "soccer",
280
+ seasonal: true,
279
281
  },
280
282
  diamond_hands: {
281
283
  id: "diamond_hands",
@@ -297,6 +299,7 @@ exports.achievementsMap = {
297
299
  description: "Rate an entire season of MLB.",
298
300
  type: "league",
299
301
  league: "mlb",
302
+ seasonal: true,
300
303
  },
301
304
  power_play: {
302
305
  id: "power_play",
@@ -318,6 +321,7 @@ exports.achievementsMap = {
318
321
  description: "Rate an entire season of NHL.",
319
322
  type: "league",
320
323
  league: "nhl",
324
+ seasonal: true,
321
325
  },
322
326
  the_admiral: {
323
327
  id: "the_admiral",
@@ -339,6 +343,7 @@ exports.achievementsMap = {
339
343
  description: "Rate every March Madness game in a season.",
340
344
  type: "league",
341
345
  league: "ncaa",
346
+ seasonal: true,
342
347
  },
343
348
  the_logo: {
344
349
  id: "the_logo",
@@ -360,6 +365,7 @@ exports.achievementsMap = {
360
365
  description: "Average 10 rated games, 10 takes and 10 agrees per week for an entire NBA season.",
361
366
  type: "league",
362
367
  league: "nba",
368
+ seasonal: true,
363
369
  },
364
370
  mid_table: {
365
371
  id: "mid_table",
@@ -402,6 +408,7 @@ exports.achievementsMap = {
402
408
  description: "Rate an entire season of CFB.",
403
409
  type: "league",
404
410
  league: "cfb",
411
+ seasonal: true,
405
412
  },
406
413
  coin_toss: {
407
414
  id: "coin_toss",
@@ -423,6 +430,7 @@ exports.achievementsMap = {
423
430
  description: "Rate an entire season of NFL.",
424
431
  type: "league",
425
432
  league: "nfl",
433
+ seasonal: true,
426
434
  },
427
435
  game_grower: {
428
436
  id: "game_grower",
@@ -444,6 +452,7 @@ exports.achievementsMap = {
444
452
  description: "Rate an entire season of MLS.",
445
453
  type: "league",
446
454
  league: "mls",
455
+ seasonal: true,
447
456
  },
448
457
  lobos_legacy: {
449
458
  id: "lobos_legacy",
@@ -465,6 +474,7 @@ exports.achievementsMap = {
465
474
  description: "Rate an entire season of WNBA.",
466
475
  type: "league",
467
476
  league: "wnba",
477
+ seasonal: true,
468
478
  },
469
479
  groupie: {
470
480
  id: "groupie",
@@ -486,5 +496,6 @@ exports.achievementsMap = {
486
496
  description: "Rate every game from the Club World Cup",
487
497
  type: "league",
488
498
  league: "cwc",
499
+ seasonal: true,
489
500
  },
490
501
  };
@@ -911,27 +911,35 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
911
911
  target: z.ZodNumber;
912
912
  label: z.ZodOptional<z.ZodString>;
913
913
  context: z.ZodOptional<z.ZodString>;
914
+ achievedAt: z.ZodOptional<z.ZodNumber>;
915
+ seen: z.ZodOptional<z.ZodBoolean>;
914
916
  }, "strip", z.ZodTypeAny, {
915
917
  target: number;
916
918
  current: number;
917
919
  label?: string | undefined;
918
920
  context?: string | undefined;
921
+ achievedAt?: number | undefined;
922
+ seen?: boolean | undefined;
919
923
  }, {
920
924
  target: number;
921
925
  current: number;
922
926
  label?: string | undefined;
923
927
  context?: string | undefined;
928
+ achievedAt?: number | undefined;
929
+ seen?: boolean | undefined;
924
930
  }>>>;
925
931
  seen: z.ZodOptional<z.ZodBoolean>;
926
932
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
927
933
  league: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"global">]>>;
928
934
  sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
935
+ seasonal: z.ZodOptional<z.ZodBoolean>;
929
936
  }, "strip", z.ZodTypeAny, {
930
937
  id: string;
931
938
  name: string;
932
939
  description: string;
933
940
  type?: "global" | "sport" | "league" | undefined;
934
941
  progress?: number | undefined;
942
+ seen?: boolean | undefined;
935
943
  tiers?: {
936
944
  bronze: {
937
945
  threshold: number;
@@ -952,16 +960,19 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
952
960
  current: number;
953
961
  label?: string | undefined;
954
962
  context?: string | undefined;
963
+ achievedAt?: number | undefined;
964
+ seen?: boolean | undefined;
955
965
  }> | undefined;
956
- seen?: boolean | undefined;
957
966
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
958
967
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
968
+ seasonal?: boolean | undefined;
959
969
  }, {
960
970
  id: string;
961
971
  name: string;
962
972
  description: string;
963
973
  type?: "global" | "sport" | "league" | undefined;
964
974
  progress?: number | undefined;
975
+ seen?: boolean | undefined;
965
976
  tiers?: {
966
977
  bronze: {
967
978
  threshold: number;
@@ -982,10 +993,12 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
982
993
  current: number;
983
994
  label?: string | undefined;
984
995
  context?: string | undefined;
996
+ achievedAt?: number | undefined;
997
+ seen?: boolean | undefined;
985
998
  }> | undefined;
986
- seen?: boolean | undefined;
987
999
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
988
1000
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
1001
+ seasonal?: boolean | undefined;
989
1002
  }>>>;
990
1003
  repliesLeft: z.ZodOptional<z.ZodNumber>;
991
1004
  listRepliesLeft: z.ZodOptional<z.ZodNumber>;
@@ -1971,27 +1984,35 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
1971
1984
  target: z.ZodNumber;
1972
1985
  label: z.ZodOptional<z.ZodString>;
1973
1986
  context: z.ZodOptional<z.ZodString>;
1987
+ achievedAt: z.ZodOptional<z.ZodNumber>;
1988
+ seen: z.ZodOptional<z.ZodBoolean>;
1974
1989
  }, "strip", z.ZodTypeAny, {
1975
1990
  target: number;
1976
1991
  current: number;
1977
1992
  label?: string | undefined;
1978
1993
  context?: string | undefined;
1994
+ achievedAt?: number | undefined;
1995
+ seen?: boolean | undefined;
1979
1996
  }, {
1980
1997
  target: number;
1981
1998
  current: number;
1982
1999
  label?: string | undefined;
1983
2000
  context?: string | undefined;
2001
+ achievedAt?: number | undefined;
2002
+ seen?: boolean | undefined;
1984
2003
  }>>>;
1985
2004
  seen: z.ZodOptional<z.ZodBoolean>;
1986
2005
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
1987
2006
  league: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"global">]>>;
1988
2007
  sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
2008
+ seasonal: z.ZodOptional<z.ZodBoolean>;
1989
2009
  }, "strip", z.ZodTypeAny, {
1990
2010
  id: string;
1991
2011
  name: string;
1992
2012
  description: string;
1993
2013
  type?: "global" | "sport" | "league" | undefined;
1994
2014
  progress?: number | undefined;
2015
+ seen?: boolean | undefined;
1995
2016
  tiers?: {
1996
2017
  bronze: {
1997
2018
  threshold: number;
@@ -2012,16 +2033,19 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
2012
2033
  current: number;
2013
2034
  label?: string | undefined;
2014
2035
  context?: string | undefined;
2036
+ achievedAt?: number | undefined;
2037
+ seen?: boolean | undefined;
2015
2038
  }> | undefined;
2016
- seen?: boolean | undefined;
2017
2039
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
2018
2040
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
2041
+ seasonal?: boolean | undefined;
2019
2042
  }, {
2020
2043
  id: string;
2021
2044
  name: string;
2022
2045
  description: string;
2023
2046
  type?: "global" | "sport" | "league" | undefined;
2024
2047
  progress?: number | undefined;
2048
+ seen?: boolean | undefined;
2025
2049
  tiers?: {
2026
2050
  bronze: {
2027
2051
  threshold: number;
@@ -2042,10 +2066,12 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
2042
2066
  current: number;
2043
2067
  label?: string | undefined;
2044
2068
  context?: string | undefined;
2069
+ achievedAt?: number | undefined;
2070
+ seen?: boolean | undefined;
2045
2071
  }> | undefined;
2046
- seen?: boolean | undefined;
2047
2072
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
2048
2073
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
2074
+ seasonal?: boolean | undefined;
2049
2075
  }>>>;
2050
2076
  repliesLeft: z.ZodOptional<z.ZodNumber>;
2051
2077
  listRepliesLeft: z.ZodOptional<z.ZodNumber>;
@@ -3087,27 +3113,35 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
3087
3113
  target: z.ZodNumber;
3088
3114
  label: z.ZodOptional<z.ZodString>;
3089
3115
  context: z.ZodOptional<z.ZodString>;
3116
+ achievedAt: z.ZodOptional<z.ZodNumber>;
3117
+ seen: z.ZodOptional<z.ZodBoolean>;
3090
3118
  }, "strip", z.ZodTypeAny, {
3091
3119
  target: number;
3092
3120
  current: number;
3093
3121
  label?: string | undefined;
3094
3122
  context?: string | undefined;
3123
+ achievedAt?: number | undefined;
3124
+ seen?: boolean | undefined;
3095
3125
  }, {
3096
3126
  target: number;
3097
3127
  current: number;
3098
3128
  label?: string | undefined;
3099
3129
  context?: string | undefined;
3130
+ achievedAt?: number | undefined;
3131
+ seen?: boolean | undefined;
3100
3132
  }>>>;
3101
3133
  seen: z.ZodOptional<z.ZodBoolean>;
3102
3134
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
3103
3135
  league: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"global">]>>;
3104
3136
  sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
3137
+ seasonal: z.ZodOptional<z.ZodBoolean>;
3105
3138
  }, "strip", z.ZodTypeAny, {
3106
3139
  id: string;
3107
3140
  name: string;
3108
3141
  description: string;
3109
3142
  type?: "global" | "sport" | "league" | undefined;
3110
3143
  progress?: number | undefined;
3144
+ seen?: boolean | undefined;
3111
3145
  tiers?: {
3112
3146
  bronze: {
3113
3147
  threshold: number;
@@ -3128,16 +3162,19 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
3128
3162
  current: number;
3129
3163
  label?: string | undefined;
3130
3164
  context?: string | undefined;
3165
+ achievedAt?: number | undefined;
3166
+ seen?: boolean | undefined;
3131
3167
  }> | undefined;
3132
- seen?: boolean | undefined;
3133
3168
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
3134
3169
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
3170
+ seasonal?: boolean | undefined;
3135
3171
  }, {
3136
3172
  id: string;
3137
3173
  name: string;
3138
3174
  description: string;
3139
3175
  type?: "global" | "sport" | "league" | undefined;
3140
3176
  progress?: number | undefined;
3177
+ seen?: boolean | undefined;
3141
3178
  tiers?: {
3142
3179
  bronze: {
3143
3180
  threshold: number;
@@ -3158,10 +3195,12 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
3158
3195
  current: number;
3159
3196
  label?: string | undefined;
3160
3197
  context?: string | undefined;
3198
+ achievedAt?: number | undefined;
3199
+ seen?: boolean | undefined;
3161
3200
  }> | undefined;
3162
- seen?: boolean | undefined;
3163
3201
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
3164
3202
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
3203
+ seasonal?: boolean | undefined;
3165
3204
  }>>>;
3166
3205
  repliesLeft: z.ZodOptional<z.ZodNumber>;
3167
3206
  listRepliesLeft: z.ZodOptional<z.ZodNumber>;
@@ -4146,27 +4185,35 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
4146
4185
  target: z.ZodNumber;
4147
4186
  label: z.ZodOptional<z.ZodString>;
4148
4187
  context: z.ZodOptional<z.ZodString>;
4188
+ achievedAt: z.ZodOptional<z.ZodNumber>;
4189
+ seen: z.ZodOptional<z.ZodBoolean>;
4149
4190
  }, "strip", z.ZodTypeAny, {
4150
4191
  target: number;
4151
4192
  current: number;
4152
4193
  label?: string | undefined;
4153
4194
  context?: string | undefined;
4195
+ achievedAt?: number | undefined;
4196
+ seen?: boolean | undefined;
4154
4197
  }, {
4155
4198
  target: number;
4156
4199
  current: number;
4157
4200
  label?: string | undefined;
4158
4201
  context?: string | undefined;
4202
+ achievedAt?: number | undefined;
4203
+ seen?: boolean | undefined;
4159
4204
  }>>>;
4160
4205
  seen: z.ZodOptional<z.ZodBoolean>;
4161
4206
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
4162
4207
  league: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"global">]>>;
4163
4208
  sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
4209
+ seasonal: z.ZodOptional<z.ZodBoolean>;
4164
4210
  }, "strip", z.ZodTypeAny, {
4165
4211
  id: string;
4166
4212
  name: string;
4167
4213
  description: string;
4168
4214
  type?: "global" | "sport" | "league" | undefined;
4169
4215
  progress?: number | undefined;
4216
+ seen?: boolean | undefined;
4170
4217
  tiers?: {
4171
4218
  bronze: {
4172
4219
  threshold: number;
@@ -4187,16 +4234,19 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
4187
4234
  current: number;
4188
4235
  label?: string | undefined;
4189
4236
  context?: string | undefined;
4237
+ achievedAt?: number | undefined;
4238
+ seen?: boolean | undefined;
4190
4239
  }> | undefined;
4191
- seen?: boolean | undefined;
4192
4240
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
4193
4241
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
4242
+ seasonal?: boolean | undefined;
4194
4243
  }, {
4195
4244
  id: string;
4196
4245
  name: string;
4197
4246
  description: string;
4198
4247
  type?: "global" | "sport" | "league" | undefined;
4199
4248
  progress?: number | undefined;
4249
+ seen?: boolean | undefined;
4200
4250
  tiers?: {
4201
4251
  bronze: {
4202
4252
  threshold: number;
@@ -4217,10 +4267,12 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
4217
4267
  current: number;
4218
4268
  label?: string | undefined;
4219
4269
  context?: string | undefined;
4270
+ achievedAt?: number | undefined;
4271
+ seen?: boolean | undefined;
4220
4272
  }> | undefined;
4221
- seen?: boolean | undefined;
4222
4273
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
4223
4274
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
4275
+ seasonal?: boolean | undefined;
4224
4276
  }>>>;
4225
4277
  repliesLeft: z.ZodOptional<z.ZodNumber>;
4226
4278
  listRepliesLeft: z.ZodOptional<z.ZodNumber>;
@@ -5257,27 +5309,35 @@ export declare const messageReactionSchema: z.ZodObject<{
5257
5309
  target: z.ZodNumber;
5258
5310
  label: z.ZodOptional<z.ZodString>;
5259
5311
  context: z.ZodOptional<z.ZodString>;
5312
+ achievedAt: z.ZodOptional<z.ZodNumber>;
5313
+ seen: z.ZodOptional<z.ZodBoolean>;
5260
5314
  }, "strip", z.ZodTypeAny, {
5261
5315
  target: number;
5262
5316
  current: number;
5263
5317
  label?: string | undefined;
5264
5318
  context?: string | undefined;
5319
+ achievedAt?: number | undefined;
5320
+ seen?: boolean | undefined;
5265
5321
  }, {
5266
5322
  target: number;
5267
5323
  current: number;
5268
5324
  label?: string | undefined;
5269
5325
  context?: string | undefined;
5326
+ achievedAt?: number | undefined;
5327
+ seen?: boolean | undefined;
5270
5328
  }>>>;
5271
5329
  seen: z.ZodOptional<z.ZodBoolean>;
5272
5330
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
5273
5331
  league: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"global">]>>;
5274
5332
  sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
5333
+ seasonal: z.ZodOptional<z.ZodBoolean>;
5275
5334
  }, "strip", z.ZodTypeAny, {
5276
5335
  id: string;
5277
5336
  name: string;
5278
5337
  description: string;
5279
5338
  type?: "global" | "sport" | "league" | undefined;
5280
5339
  progress?: number | undefined;
5340
+ seen?: boolean | undefined;
5281
5341
  tiers?: {
5282
5342
  bronze: {
5283
5343
  threshold: number;
@@ -5298,16 +5358,19 @@ export declare const messageReactionSchema: z.ZodObject<{
5298
5358
  current: number;
5299
5359
  label?: string | undefined;
5300
5360
  context?: string | undefined;
5361
+ achievedAt?: number | undefined;
5362
+ seen?: boolean | undefined;
5301
5363
  }> | undefined;
5302
- seen?: boolean | undefined;
5303
5364
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
5304
5365
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
5366
+ seasonal?: boolean | undefined;
5305
5367
  }, {
5306
5368
  id: string;
5307
5369
  name: string;
5308
5370
  description: string;
5309
5371
  type?: "global" | "sport" | "league" | undefined;
5310
5372
  progress?: number | undefined;
5373
+ seen?: boolean | undefined;
5311
5374
  tiers?: {
5312
5375
  bronze: {
5313
5376
  threshold: number;
@@ -5328,10 +5391,12 @@ export declare const messageReactionSchema: z.ZodObject<{
5328
5391
  current: number;
5329
5392
  label?: string | undefined;
5330
5393
  context?: string | undefined;
5394
+ achievedAt?: number | undefined;
5395
+ seen?: boolean | undefined;
5331
5396
  }> | undefined;
5332
- seen?: boolean | undefined;
5333
5397
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
5334
5398
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
5399
+ seasonal?: boolean | undefined;
5335
5400
  }>>>;
5336
5401
  repliesLeft: z.ZodOptional<z.ZodNumber>;
5337
5402
  listRepliesLeft: z.ZodOptional<z.ZodNumber>;