rategame-shared 1.1.315 → 1.1.317

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.
@@ -717,6 +717,7 @@ export declare const playerVoteSchema: z.ZodObject<{
717
717
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
718
718
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
719
719
  }>>;
720
+ playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
720
721
  }, "strip", z.ZodTypeAny, {
721
722
  allGames?: boolean | undefined;
722
723
  favoriteLeagues?: boolean | undefined;
@@ -744,6 +745,7 @@ export declare const playerVoteSchema: z.ZodObject<{
744
745
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
745
746
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
746
747
  } | undefined;
748
+ playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
747
749
  }, {
748
750
  allGames?: boolean | undefined;
749
751
  favoriteLeagues?: boolean | undefined;
@@ -771,6 +773,7 @@ export declare const playerVoteSchema: z.ZodObject<{
771
773
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
772
774
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
773
775
  } | undefined;
776
+ playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
774
777
  }>>;
775
778
  spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
776
779
  viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
@@ -909,6 +912,7 @@ export declare const playerVoteSchema: z.ZodObject<{
909
912
  context: z.ZodOptional<z.ZodString>;
910
913
  achievedAt: z.ZodOptional<z.ZodNumber>;
911
914
  seen: z.ZodOptional<z.ZodBoolean>;
915
+ isOngoing: z.ZodOptional<z.ZodBoolean>;
912
916
  }, "strip", z.ZodTypeAny, {
913
917
  target: number;
914
918
  current: number;
@@ -916,6 +920,7 @@ export declare const playerVoteSchema: z.ZodObject<{
916
920
  context?: string | undefined;
917
921
  achievedAt?: number | undefined;
918
922
  seen?: boolean | undefined;
923
+ isOngoing?: boolean | undefined;
919
924
  }, {
920
925
  target: number;
921
926
  current: number;
@@ -923,6 +928,7 @@ export declare const playerVoteSchema: z.ZodObject<{
923
928
  context?: string | undefined;
924
929
  achievedAt?: number | undefined;
925
930
  seen?: boolean | undefined;
931
+ isOngoing?: boolean | undefined;
926
932
  }>>>;
927
933
  seen: z.ZodOptional<z.ZodBoolean>;
928
934
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
@@ -958,6 +964,7 @@ export declare const playerVoteSchema: z.ZodObject<{
958
964
  context?: string | undefined;
959
965
  achievedAt?: number | undefined;
960
966
  seen?: boolean | undefined;
967
+ isOngoing?: boolean | undefined;
961
968
  }> | undefined;
962
969
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
963
970
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -991,6 +998,7 @@ export declare const playerVoteSchema: z.ZodObject<{
991
998
  context?: string | undefined;
992
999
  achievedAt?: number | undefined;
993
1000
  seen?: boolean | undefined;
1001
+ isOngoing?: boolean | undefined;
994
1002
  }> | undefined;
995
1003
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
996
1004
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -1931,6 +1939,7 @@ export declare const voteSubmissionDtoSchema: z.ZodObject<{
1931
1939
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
1932
1940
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
1933
1941
  }>>;
1942
+ playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
1934
1943
  }, "strip", z.ZodTypeAny, {
1935
1944
  allGames?: boolean | undefined;
1936
1945
  favoriteLeagues?: boolean | undefined;
@@ -1958,6 +1967,7 @@ export declare const voteSubmissionDtoSchema: z.ZodObject<{
1958
1967
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
1959
1968
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
1960
1969
  } | undefined;
1970
+ playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
1961
1971
  }, {
1962
1972
  allGames?: boolean | undefined;
1963
1973
  favoriteLeagues?: boolean | undefined;
@@ -1985,6 +1995,7 @@ export declare const voteSubmissionDtoSchema: z.ZodObject<{
1985
1995
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
1986
1996
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
1987
1997
  } | undefined;
1998
+ playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
1988
1999
  }>>;
1989
2000
  spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
1990
2001
  viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
@@ -2123,6 +2134,7 @@ export declare const voteSubmissionDtoSchema: z.ZodObject<{
2123
2134
  context: z.ZodOptional<z.ZodString>;
2124
2135
  achievedAt: z.ZodOptional<z.ZodNumber>;
2125
2136
  seen: z.ZodOptional<z.ZodBoolean>;
2137
+ isOngoing: z.ZodOptional<z.ZodBoolean>;
2126
2138
  }, "strip", z.ZodTypeAny, {
2127
2139
  target: number;
2128
2140
  current: number;
@@ -2130,6 +2142,7 @@ export declare const voteSubmissionDtoSchema: z.ZodObject<{
2130
2142
  context?: string | undefined;
2131
2143
  achievedAt?: number | undefined;
2132
2144
  seen?: boolean | undefined;
2145
+ isOngoing?: boolean | undefined;
2133
2146
  }, {
2134
2147
  target: number;
2135
2148
  current: number;
@@ -2137,6 +2150,7 @@ export declare const voteSubmissionDtoSchema: z.ZodObject<{
2137
2150
  context?: string | undefined;
2138
2151
  achievedAt?: number | undefined;
2139
2152
  seen?: boolean | undefined;
2153
+ isOngoing?: boolean | undefined;
2140
2154
  }>>>;
2141
2155
  seen: z.ZodOptional<z.ZodBoolean>;
2142
2156
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
@@ -2172,6 +2186,7 @@ export declare const voteSubmissionDtoSchema: z.ZodObject<{
2172
2186
  context?: string | undefined;
2173
2187
  achievedAt?: number | undefined;
2174
2188
  seen?: boolean | undefined;
2189
+ isOngoing?: boolean | undefined;
2175
2190
  }> | undefined;
2176
2191
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
2177
2192
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -2205,6 +2220,7 @@ export declare const voteSubmissionDtoSchema: z.ZodObject<{
2205
2220
  context?: string | undefined;
2206
2221
  achievedAt?: number | undefined;
2207
2222
  seen?: boolean | undefined;
2223
+ isOngoing?: boolean | undefined;
2208
2224
  }> | undefined;
2209
2225
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
2210
2226
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -4466,6 +4482,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
4466
4482
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
4467
4483
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
4468
4484
  }>>;
4485
+ playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
4469
4486
  }, "strip", z.ZodTypeAny, {
4470
4487
  allGames?: boolean | undefined;
4471
4488
  favoriteLeagues?: boolean | undefined;
@@ -4493,6 +4510,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
4493
4510
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
4494
4511
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
4495
4512
  } | undefined;
4513
+ playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
4496
4514
  }, {
4497
4515
  allGames?: boolean | undefined;
4498
4516
  favoriteLeagues?: boolean | undefined;
@@ -4520,6 +4538,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
4520
4538
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
4521
4539
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
4522
4540
  } | undefined;
4541
+ playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
4523
4542
  }>>;
4524
4543
  spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
4525
4544
  viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
@@ -4658,6 +4677,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
4658
4677
  context: z.ZodOptional<z.ZodString>;
4659
4678
  achievedAt: z.ZodOptional<z.ZodNumber>;
4660
4679
  seen: z.ZodOptional<z.ZodBoolean>;
4680
+ isOngoing: z.ZodOptional<z.ZodBoolean>;
4661
4681
  }, "strip", z.ZodTypeAny, {
4662
4682
  target: number;
4663
4683
  current: number;
@@ -4665,6 +4685,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
4665
4685
  context?: string | undefined;
4666
4686
  achievedAt?: number | undefined;
4667
4687
  seen?: boolean | undefined;
4688
+ isOngoing?: boolean | undefined;
4668
4689
  }, {
4669
4690
  target: number;
4670
4691
  current: number;
@@ -4672,6 +4693,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
4672
4693
  context?: string | undefined;
4673
4694
  achievedAt?: number | undefined;
4674
4695
  seen?: boolean | undefined;
4696
+ isOngoing?: boolean | undefined;
4675
4697
  }>>>;
4676
4698
  seen: z.ZodOptional<z.ZodBoolean>;
4677
4699
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
@@ -4707,6 +4729,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
4707
4729
  context?: string | undefined;
4708
4730
  achievedAt?: number | undefined;
4709
4731
  seen?: boolean | undefined;
4732
+ isOngoing?: boolean | undefined;
4710
4733
  }> | undefined;
4711
4734
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
4712
4735
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -4740,6 +4763,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
4740
4763
  context?: string | undefined;
4741
4764
  achievedAt?: number | undefined;
4742
4765
  seen?: boolean | undefined;
4766
+ isOngoing?: boolean | undefined;
4743
4767
  }> | undefined;
4744
4768
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
4745
4769
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -7061,6 +7085,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
7061
7085
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
7062
7086
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
7063
7087
  }>>;
7088
+ playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
7064
7089
  }, "strip", z.ZodTypeAny, {
7065
7090
  allGames?: boolean | undefined;
7066
7091
  favoriteLeagues?: boolean | undefined;
@@ -7088,6 +7113,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
7088
7113
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
7089
7114
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
7090
7115
  } | undefined;
7116
+ playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
7091
7117
  }, {
7092
7118
  allGames?: boolean | undefined;
7093
7119
  favoriteLeagues?: boolean | undefined;
@@ -7115,6 +7141,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
7115
7141
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
7116
7142
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
7117
7143
  } | undefined;
7144
+ playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
7118
7145
  }>>;
7119
7146
  spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
7120
7147
  viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
@@ -7253,6 +7280,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
7253
7280
  context: z.ZodOptional<z.ZodString>;
7254
7281
  achievedAt: z.ZodOptional<z.ZodNumber>;
7255
7282
  seen: z.ZodOptional<z.ZodBoolean>;
7283
+ isOngoing: z.ZodOptional<z.ZodBoolean>;
7256
7284
  }, "strip", z.ZodTypeAny, {
7257
7285
  target: number;
7258
7286
  current: number;
@@ -7260,6 +7288,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
7260
7288
  context?: string | undefined;
7261
7289
  achievedAt?: number | undefined;
7262
7290
  seen?: boolean | undefined;
7291
+ isOngoing?: boolean | undefined;
7263
7292
  }, {
7264
7293
  target: number;
7265
7294
  current: number;
@@ -7267,6 +7296,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
7267
7296
  context?: string | undefined;
7268
7297
  achievedAt?: number | undefined;
7269
7298
  seen?: boolean | undefined;
7299
+ isOngoing?: boolean | undefined;
7270
7300
  }>>>;
7271
7301
  seen: z.ZodOptional<z.ZodBoolean>;
7272
7302
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
@@ -7302,6 +7332,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
7302
7332
  context?: string | undefined;
7303
7333
  achievedAt?: number | undefined;
7304
7334
  seen?: boolean | undefined;
7335
+ isOngoing?: boolean | undefined;
7305
7336
  }> | undefined;
7306
7337
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
7307
7338
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -7335,6 +7366,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
7335
7366
  context?: string | undefined;
7336
7367
  achievedAt?: number | undefined;
7337
7368
  seen?: boolean | undefined;
7369
+ isOngoing?: boolean | undefined;
7338
7370
  }> | undefined;
7339
7371
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
7340
7372
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -9677,6 +9709,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
9677
9709
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
9678
9710
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
9679
9711
  }>>;
9712
+ playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
9680
9713
  }, "strip", z.ZodTypeAny, {
9681
9714
  allGames?: boolean | undefined;
9682
9715
  favoriteLeagues?: boolean | undefined;
@@ -9704,6 +9737,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
9704
9737
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
9705
9738
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
9706
9739
  } | undefined;
9740
+ playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
9707
9741
  }, {
9708
9742
  allGames?: boolean | undefined;
9709
9743
  favoriteLeagues?: boolean | undefined;
@@ -9731,6 +9765,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
9731
9765
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
9732
9766
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
9733
9767
  } | undefined;
9768
+ playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
9734
9769
  }>>;
9735
9770
  spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
9736
9771
  viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
@@ -9869,6 +9904,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
9869
9904
  context: z.ZodOptional<z.ZodString>;
9870
9905
  achievedAt: z.ZodOptional<z.ZodNumber>;
9871
9906
  seen: z.ZodOptional<z.ZodBoolean>;
9907
+ isOngoing: z.ZodOptional<z.ZodBoolean>;
9872
9908
  }, "strip", z.ZodTypeAny, {
9873
9909
  target: number;
9874
9910
  current: number;
@@ -9876,6 +9912,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
9876
9912
  context?: string | undefined;
9877
9913
  achievedAt?: number | undefined;
9878
9914
  seen?: boolean | undefined;
9915
+ isOngoing?: boolean | undefined;
9879
9916
  }, {
9880
9917
  target: number;
9881
9918
  current: number;
@@ -9883,6 +9920,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
9883
9920
  context?: string | undefined;
9884
9921
  achievedAt?: number | undefined;
9885
9922
  seen?: boolean | undefined;
9923
+ isOngoing?: boolean | undefined;
9886
9924
  }>>>;
9887
9925
  seen: z.ZodOptional<z.ZodBoolean>;
9888
9926
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
@@ -9918,6 +9956,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
9918
9956
  context?: string | undefined;
9919
9957
  achievedAt?: number | undefined;
9920
9958
  seen?: boolean | undefined;
9959
+ isOngoing?: boolean | undefined;
9921
9960
  }> | undefined;
9922
9961
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
9923
9962
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -9951,6 +9990,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
9951
9990
  context?: string | undefined;
9952
9991
  achievedAt?: number | undefined;
9953
9992
  seen?: boolean | undefined;
9993
+ isOngoing?: boolean | undefined;
9954
9994
  }> | undefined;
9955
9995
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
9956
9996
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -12378,6 +12418,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
12378
12418
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
12379
12419
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
12380
12420
  }>>;
12421
+ playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
12381
12422
  }, "strip", z.ZodTypeAny, {
12382
12423
  allGames?: boolean | undefined;
12383
12424
  favoriteLeagues?: boolean | undefined;
@@ -12405,6 +12446,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
12405
12446
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
12406
12447
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
12407
12448
  } | undefined;
12449
+ playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
12408
12450
  }, {
12409
12451
  allGames?: boolean | undefined;
12410
12452
  favoriteLeagues?: boolean | undefined;
@@ -12432,6 +12474,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
12432
12474
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
12433
12475
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
12434
12476
  } | undefined;
12477
+ playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
12435
12478
  }>>;
12436
12479
  spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
12437
12480
  viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
@@ -12570,6 +12613,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
12570
12613
  context: z.ZodOptional<z.ZodString>;
12571
12614
  achievedAt: z.ZodOptional<z.ZodNumber>;
12572
12615
  seen: z.ZodOptional<z.ZodBoolean>;
12616
+ isOngoing: z.ZodOptional<z.ZodBoolean>;
12573
12617
  }, "strip", z.ZodTypeAny, {
12574
12618
  target: number;
12575
12619
  current: number;
@@ -12577,6 +12621,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
12577
12621
  context?: string | undefined;
12578
12622
  achievedAt?: number | undefined;
12579
12623
  seen?: boolean | undefined;
12624
+ isOngoing?: boolean | undefined;
12580
12625
  }, {
12581
12626
  target: number;
12582
12627
  current: number;
@@ -12584,6 +12629,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
12584
12629
  context?: string | undefined;
12585
12630
  achievedAt?: number | undefined;
12586
12631
  seen?: boolean | undefined;
12632
+ isOngoing?: boolean | undefined;
12587
12633
  }>>>;
12588
12634
  seen: z.ZodOptional<z.ZodBoolean>;
12589
12635
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
@@ -12619,6 +12665,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
12619
12665
  context?: string | undefined;
12620
12666
  achievedAt?: number | undefined;
12621
12667
  seen?: boolean | undefined;
12668
+ isOngoing?: boolean | undefined;
12622
12669
  }> | undefined;
12623
12670
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
12624
12671
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -12652,6 +12699,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
12652
12699
  context?: string | undefined;
12653
12700
  achievedAt?: number | undefined;
12654
12701
  seen?: boolean | undefined;
12702
+ isOngoing?: boolean | undefined;
12655
12703
  }> | undefined;
12656
12704
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
12657
12705
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -15050,6 +15098,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
15050
15098
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
15051
15099
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
15052
15100
  }>>;
15101
+ playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
15053
15102
  }, "strip", z.ZodTypeAny, {
15054
15103
  allGames?: boolean | undefined;
15055
15104
  favoriteLeagues?: boolean | undefined;
@@ -15077,6 +15126,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
15077
15126
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
15078
15127
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
15079
15128
  } | undefined;
15129
+ playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
15080
15130
  }, {
15081
15131
  allGames?: boolean | undefined;
15082
15132
  favoriteLeagues?: boolean | undefined;
@@ -15104,6 +15154,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
15104
15154
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
15105
15155
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
15106
15156
  } | undefined;
15157
+ playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
15107
15158
  }>>;
15108
15159
  spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
15109
15160
  viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
@@ -15242,6 +15293,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
15242
15293
  context: z.ZodOptional<z.ZodString>;
15243
15294
  achievedAt: z.ZodOptional<z.ZodNumber>;
15244
15295
  seen: z.ZodOptional<z.ZodBoolean>;
15296
+ isOngoing: z.ZodOptional<z.ZodBoolean>;
15245
15297
  }, "strip", z.ZodTypeAny, {
15246
15298
  target: number;
15247
15299
  current: number;
@@ -15249,6 +15301,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
15249
15301
  context?: string | undefined;
15250
15302
  achievedAt?: number | undefined;
15251
15303
  seen?: boolean | undefined;
15304
+ isOngoing?: boolean | undefined;
15252
15305
  }, {
15253
15306
  target: number;
15254
15307
  current: number;
@@ -15256,6 +15309,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
15256
15309
  context?: string | undefined;
15257
15310
  achievedAt?: number | undefined;
15258
15311
  seen?: boolean | undefined;
15312
+ isOngoing?: boolean | undefined;
15259
15313
  }>>>;
15260
15314
  seen: z.ZodOptional<z.ZodBoolean>;
15261
15315
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
@@ -15291,6 +15345,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
15291
15345
  context?: string | undefined;
15292
15346
  achievedAt?: number | undefined;
15293
15347
  seen?: boolean | undefined;
15348
+ isOngoing?: boolean | undefined;
15294
15349
  }> | undefined;
15295
15350
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
15296
15351
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -15324,6 +15379,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
15324
15379
  context?: string | undefined;
15325
15380
  achievedAt?: number | undefined;
15326
15381
  seen?: boolean | undefined;
15382
+ isOngoing?: boolean | undefined;
15327
15383
  }> | undefined;
15328
15384
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
15329
15385
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -17704,6 +17760,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
17704
17760
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
17705
17761
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
17706
17762
  }>>;
17763
+ playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
17707
17764
  }, "strip", z.ZodTypeAny, {
17708
17765
  allGames?: boolean | undefined;
17709
17766
  favoriteLeagues?: boolean | undefined;
@@ -17731,6 +17788,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
17731
17788
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
17732
17789
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
17733
17790
  } | undefined;
17791
+ playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
17734
17792
  }, {
17735
17793
  allGames?: boolean | undefined;
17736
17794
  favoriteLeagues?: boolean | undefined;
@@ -17758,6 +17816,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
17758
17816
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
17759
17817
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
17760
17818
  } | undefined;
17819
+ playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
17761
17820
  }>>;
17762
17821
  spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
17763
17822
  viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
@@ -17896,6 +17955,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
17896
17955
  context: z.ZodOptional<z.ZodString>;
17897
17956
  achievedAt: z.ZodOptional<z.ZodNumber>;
17898
17957
  seen: z.ZodOptional<z.ZodBoolean>;
17958
+ isOngoing: z.ZodOptional<z.ZodBoolean>;
17899
17959
  }, "strip", z.ZodTypeAny, {
17900
17960
  target: number;
17901
17961
  current: number;
@@ -17903,6 +17963,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
17903
17963
  context?: string | undefined;
17904
17964
  achievedAt?: number | undefined;
17905
17965
  seen?: boolean | undefined;
17966
+ isOngoing?: boolean | undefined;
17906
17967
  }, {
17907
17968
  target: number;
17908
17969
  current: number;
@@ -17910,6 +17971,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
17910
17971
  context?: string | undefined;
17911
17972
  achievedAt?: number | undefined;
17912
17973
  seen?: boolean | undefined;
17974
+ isOngoing?: boolean | undefined;
17913
17975
  }>>>;
17914
17976
  seen: z.ZodOptional<z.ZodBoolean>;
17915
17977
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
@@ -17945,6 +18007,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
17945
18007
  context?: string | undefined;
17946
18008
  achievedAt?: number | undefined;
17947
18009
  seen?: boolean | undefined;
18010
+ isOngoing?: boolean | undefined;
17948
18011
  }> | undefined;
17949
18012
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
17950
18013
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -17978,6 +18041,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
17978
18041
  context?: string | undefined;
17979
18042
  achievedAt?: number | undefined;
17980
18043
  seen?: boolean | undefined;
18044
+ isOngoing?: boolean | undefined;
17981
18045
  }> | undefined;
17982
18046
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
17983
18047
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -21885,6 +21949,7 @@ export declare const userVoteResponseDtoSchema: z.ZodObject<{
21885
21949
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
21886
21950
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
21887
21951
  }>>;
21952
+ playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
21888
21953
  }, "strip", z.ZodTypeAny, {
21889
21954
  allGames?: boolean | undefined;
21890
21955
  favoriteLeagues?: boolean | undefined;
@@ -21912,6 +21977,7 @@ export declare const userVoteResponseDtoSchema: z.ZodObject<{
21912
21977
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
21913
21978
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
21914
21979
  } | undefined;
21980
+ playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
21915
21981
  }, {
21916
21982
  allGames?: boolean | undefined;
21917
21983
  favoriteLeagues?: boolean | undefined;
@@ -21939,6 +22005,7 @@ export declare const userVoteResponseDtoSchema: z.ZodObject<{
21939
22005
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
21940
22006
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
21941
22007
  } | undefined;
22008
+ playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
21942
22009
  }>>;
21943
22010
  spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
21944
22011
  viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
@@ -22077,6 +22144,7 @@ export declare const userVoteResponseDtoSchema: z.ZodObject<{
22077
22144
  context: z.ZodOptional<z.ZodString>;
22078
22145
  achievedAt: z.ZodOptional<z.ZodNumber>;
22079
22146
  seen: z.ZodOptional<z.ZodBoolean>;
22147
+ isOngoing: z.ZodOptional<z.ZodBoolean>;
22080
22148
  }, "strip", z.ZodTypeAny, {
22081
22149
  target: number;
22082
22150
  current: number;
@@ -22084,6 +22152,7 @@ export declare const userVoteResponseDtoSchema: z.ZodObject<{
22084
22152
  context?: string | undefined;
22085
22153
  achievedAt?: number | undefined;
22086
22154
  seen?: boolean | undefined;
22155
+ isOngoing?: boolean | undefined;
22087
22156
  }, {
22088
22157
  target: number;
22089
22158
  current: number;
@@ -22091,6 +22160,7 @@ export declare const userVoteResponseDtoSchema: z.ZodObject<{
22091
22160
  context?: string | undefined;
22092
22161
  achievedAt?: number | undefined;
22093
22162
  seen?: boolean | undefined;
22163
+ isOngoing?: boolean | undefined;
22094
22164
  }>>>;
22095
22165
  seen: z.ZodOptional<z.ZodBoolean>;
22096
22166
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
@@ -22126,6 +22196,7 @@ export declare const userVoteResponseDtoSchema: z.ZodObject<{
22126
22196
  context?: string | undefined;
22127
22197
  achievedAt?: number | undefined;
22128
22198
  seen?: boolean | undefined;
22199
+ isOngoing?: boolean | undefined;
22129
22200
  }> | undefined;
22130
22201
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
22131
22202
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -22159,6 +22230,7 @@ export declare const userVoteResponseDtoSchema: z.ZodObject<{
22159
22230
  context?: string | undefined;
22160
22231
  achievedAt?: number | undefined;
22161
22232
  seen?: boolean | undefined;
22233
+ isOngoing?: boolean | undefined;
22162
22234
  }> | undefined;
22163
22235
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
22164
22236
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rategame-shared",
3
- "version": "1.1.315",
3
+ "version": "1.1.317",
4
4
  "description": "This package contains shared resources for the Rate Game project.",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "./dist/index.js",