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.
@@ -721,6 +721,7 @@ export declare const listSchema: z.ZodObject<{
721
721
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
722
722
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
723
723
  }>>;
724
+ playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
724
725
  }, "strip", z.ZodTypeAny, {
725
726
  allGames?: boolean | undefined;
726
727
  favoriteLeagues?: boolean | undefined;
@@ -748,6 +749,7 @@ export declare const listSchema: z.ZodObject<{
748
749
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
749
750
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
750
751
  } | undefined;
752
+ playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
751
753
  }, {
752
754
  allGames?: boolean | undefined;
753
755
  favoriteLeagues?: boolean | undefined;
@@ -775,6 +777,7 @@ export declare const listSchema: z.ZodObject<{
775
777
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
776
778
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
777
779
  } | undefined;
780
+ playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
778
781
  }>>;
779
782
  spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
780
783
  viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
@@ -913,6 +916,7 @@ export declare const listSchema: z.ZodObject<{
913
916
  context: z.ZodOptional<z.ZodString>;
914
917
  achievedAt: z.ZodOptional<z.ZodNumber>;
915
918
  seen: z.ZodOptional<z.ZodBoolean>;
919
+ isOngoing: z.ZodOptional<z.ZodBoolean>;
916
920
  }, "strip", z.ZodTypeAny, {
917
921
  target: number;
918
922
  current: number;
@@ -920,6 +924,7 @@ export declare const listSchema: z.ZodObject<{
920
924
  context?: string | undefined;
921
925
  achievedAt?: number | undefined;
922
926
  seen?: boolean | undefined;
927
+ isOngoing?: boolean | undefined;
923
928
  }, {
924
929
  target: number;
925
930
  current: number;
@@ -927,6 +932,7 @@ export declare const listSchema: z.ZodObject<{
927
932
  context?: string | undefined;
928
933
  achievedAt?: number | undefined;
929
934
  seen?: boolean | undefined;
935
+ isOngoing?: boolean | undefined;
930
936
  }>>>;
931
937
  seen: z.ZodOptional<z.ZodBoolean>;
932
938
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
@@ -962,6 +968,7 @@ export declare const listSchema: z.ZodObject<{
962
968
  context?: string | undefined;
963
969
  achievedAt?: number | undefined;
964
970
  seen?: boolean | undefined;
971
+ isOngoing?: boolean | undefined;
965
972
  }> | undefined;
966
973
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
967
974
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -995,6 +1002,7 @@ export declare const listSchema: z.ZodObject<{
995
1002
  context?: string | undefined;
996
1003
  achievedAt?: number | undefined;
997
1004
  seen?: boolean | undefined;
1005
+ isOngoing?: boolean | undefined;
998
1006
  }> | undefined;
999
1007
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
1000
1008
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -1862,6 +1870,7 @@ export declare const listCreateSchema: z.ZodObject<Omit<{
1862
1870
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
1863
1871
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
1864
1872
  }>>;
1873
+ playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
1865
1874
  }, "strip", z.ZodTypeAny, {
1866
1875
  allGames?: boolean | undefined;
1867
1876
  favoriteLeagues?: boolean | undefined;
@@ -1889,6 +1898,7 @@ export declare const listCreateSchema: z.ZodObject<Omit<{
1889
1898
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
1890
1899
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
1891
1900
  } | undefined;
1901
+ playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
1892
1902
  }, {
1893
1903
  allGames?: boolean | undefined;
1894
1904
  favoriteLeagues?: boolean | undefined;
@@ -1916,6 +1926,7 @@ export declare const listCreateSchema: z.ZodObject<Omit<{
1916
1926
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
1917
1927
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
1918
1928
  } | undefined;
1929
+ playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
1919
1930
  }>>;
1920
1931
  spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
1921
1932
  viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
@@ -2054,6 +2065,7 @@ export declare const listCreateSchema: z.ZodObject<Omit<{
2054
2065
  context: z.ZodOptional<z.ZodString>;
2055
2066
  achievedAt: z.ZodOptional<z.ZodNumber>;
2056
2067
  seen: z.ZodOptional<z.ZodBoolean>;
2068
+ isOngoing: z.ZodOptional<z.ZodBoolean>;
2057
2069
  }, "strip", z.ZodTypeAny, {
2058
2070
  target: number;
2059
2071
  current: number;
@@ -2061,6 +2073,7 @@ export declare const listCreateSchema: z.ZodObject<Omit<{
2061
2073
  context?: string | undefined;
2062
2074
  achievedAt?: number | undefined;
2063
2075
  seen?: boolean | undefined;
2076
+ isOngoing?: boolean | undefined;
2064
2077
  }, {
2065
2078
  target: number;
2066
2079
  current: number;
@@ -2068,6 +2081,7 @@ export declare const listCreateSchema: z.ZodObject<Omit<{
2068
2081
  context?: string | undefined;
2069
2082
  achievedAt?: number | undefined;
2070
2083
  seen?: boolean | undefined;
2084
+ isOngoing?: boolean | undefined;
2071
2085
  }>>>;
2072
2086
  seen: z.ZodOptional<z.ZodBoolean>;
2073
2087
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
@@ -2103,6 +2117,7 @@ export declare const listCreateSchema: z.ZodObject<Omit<{
2103
2117
  context?: string | undefined;
2104
2118
  achievedAt?: number | undefined;
2105
2119
  seen?: boolean | undefined;
2120
+ isOngoing?: boolean | undefined;
2106
2121
  }> | undefined;
2107
2122
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
2108
2123
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -2136,6 +2151,7 @@ export declare const listCreateSchema: z.ZodObject<Omit<{
2136
2151
  context?: string | undefined;
2137
2152
  achievedAt?: number | undefined;
2138
2153
  seen?: boolean | undefined;
2154
+ isOngoing?: boolean | undefined;
2139
2155
  }> | undefined;
2140
2156
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
2141
2157
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -2995,6 +3011,7 @@ export declare const listCommentSchema: z.ZodObject<{
2995
3011
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
2996
3012
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
2997
3013
  }>>;
3014
+ playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
2998
3015
  }, "strip", z.ZodTypeAny, {
2999
3016
  allGames?: boolean | undefined;
3000
3017
  favoriteLeagues?: boolean | undefined;
@@ -3022,6 +3039,7 @@ export declare const listCommentSchema: z.ZodObject<{
3022
3039
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
3023
3040
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
3024
3041
  } | undefined;
3042
+ playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
3025
3043
  }, {
3026
3044
  allGames?: boolean | undefined;
3027
3045
  favoriteLeagues?: boolean | undefined;
@@ -3049,6 +3067,7 @@ export declare const listCommentSchema: z.ZodObject<{
3049
3067
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
3050
3068
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
3051
3069
  } | undefined;
3070
+ playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
3052
3071
  }>>;
3053
3072
  spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
3054
3073
  viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
@@ -3187,6 +3206,7 @@ export declare const listCommentSchema: z.ZodObject<{
3187
3206
  context: z.ZodOptional<z.ZodString>;
3188
3207
  achievedAt: z.ZodOptional<z.ZodNumber>;
3189
3208
  seen: z.ZodOptional<z.ZodBoolean>;
3209
+ isOngoing: z.ZodOptional<z.ZodBoolean>;
3190
3210
  }, "strip", z.ZodTypeAny, {
3191
3211
  target: number;
3192
3212
  current: number;
@@ -3194,6 +3214,7 @@ export declare const listCommentSchema: z.ZodObject<{
3194
3214
  context?: string | undefined;
3195
3215
  achievedAt?: number | undefined;
3196
3216
  seen?: boolean | undefined;
3217
+ isOngoing?: boolean | undefined;
3197
3218
  }, {
3198
3219
  target: number;
3199
3220
  current: number;
@@ -3201,6 +3222,7 @@ export declare const listCommentSchema: z.ZodObject<{
3201
3222
  context?: string | undefined;
3202
3223
  achievedAt?: number | undefined;
3203
3224
  seen?: boolean | undefined;
3225
+ isOngoing?: boolean | undefined;
3204
3226
  }>>>;
3205
3227
  seen: z.ZodOptional<z.ZodBoolean>;
3206
3228
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
@@ -3236,6 +3258,7 @@ export declare const listCommentSchema: z.ZodObject<{
3236
3258
  context?: string | undefined;
3237
3259
  achievedAt?: number | undefined;
3238
3260
  seen?: boolean | undefined;
3261
+ isOngoing?: boolean | undefined;
3239
3262
  }> | undefined;
3240
3263
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
3241
3264
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -3269,6 +3292,7 @@ export declare const listCommentSchema: z.ZodObject<{
3269
3292
  context?: string | undefined;
3270
3293
  achievedAt?: number | undefined;
3271
3294
  seen?: boolean | undefined;
3295
+ isOngoing?: boolean | undefined;
3272
3296
  }> | undefined;
3273
3297
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
3274
3298
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -4088,6 +4112,7 @@ export declare const listCommentSchema: z.ZodObject<{
4088
4112
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
4089
4113
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
4090
4114
  }>>;
4115
+ playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
4091
4116
  }, "strip", z.ZodTypeAny, {
4092
4117
  allGames?: boolean | undefined;
4093
4118
  favoriteLeagues?: boolean | undefined;
@@ -4115,6 +4140,7 @@ export declare const listCommentSchema: z.ZodObject<{
4115
4140
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
4116
4141
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
4117
4142
  } | undefined;
4143
+ playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
4118
4144
  }, {
4119
4145
  allGames?: boolean | undefined;
4120
4146
  favoriteLeagues?: boolean | undefined;
@@ -4142,6 +4168,7 @@ export declare const listCommentSchema: z.ZodObject<{
4142
4168
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
4143
4169
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
4144
4170
  } | undefined;
4171
+ playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
4145
4172
  }>>;
4146
4173
  spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
4147
4174
  viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
@@ -4280,6 +4307,7 @@ export declare const listCommentSchema: z.ZodObject<{
4280
4307
  context: z.ZodOptional<z.ZodString>;
4281
4308
  achievedAt: z.ZodOptional<z.ZodNumber>;
4282
4309
  seen: z.ZodOptional<z.ZodBoolean>;
4310
+ isOngoing: z.ZodOptional<z.ZodBoolean>;
4283
4311
  }, "strip", z.ZodTypeAny, {
4284
4312
  target: number;
4285
4313
  current: number;
@@ -4287,6 +4315,7 @@ export declare const listCommentSchema: z.ZodObject<{
4287
4315
  context?: string | undefined;
4288
4316
  achievedAt?: number | undefined;
4289
4317
  seen?: boolean | undefined;
4318
+ isOngoing?: boolean | undefined;
4290
4319
  }, {
4291
4320
  target: number;
4292
4321
  current: number;
@@ -4294,6 +4323,7 @@ export declare const listCommentSchema: z.ZodObject<{
4294
4323
  context?: string | undefined;
4295
4324
  achievedAt?: number | undefined;
4296
4325
  seen?: boolean | undefined;
4326
+ isOngoing?: boolean | undefined;
4297
4327
  }>>>;
4298
4328
  seen: z.ZodOptional<z.ZodBoolean>;
4299
4329
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
@@ -4329,6 +4359,7 @@ export declare const listCommentSchema: z.ZodObject<{
4329
4359
  context?: string | undefined;
4330
4360
  achievedAt?: number | undefined;
4331
4361
  seen?: boolean | undefined;
4362
+ isOngoing?: boolean | undefined;
4332
4363
  }> | undefined;
4333
4364
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
4334
4365
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -4362,6 +4393,7 @@ export declare const listCommentSchema: z.ZodObject<{
4362
4393
  context?: string | undefined;
4363
4394
  achievedAt?: number | undefined;
4364
4395
  seen?: boolean | undefined;
4396
+ isOngoing?: boolean | undefined;
4365
4397
  }> | undefined;
4366
4398
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
4367
4399
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -5226,6 +5258,7 @@ export declare const listCommentLikeSchema: z.ZodObject<{
5226
5258
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
5227
5259
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
5228
5260
  }>>;
5261
+ playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
5229
5262
  }, "strip", z.ZodTypeAny, {
5230
5263
  allGames?: boolean | undefined;
5231
5264
  favoriteLeagues?: boolean | undefined;
@@ -5253,6 +5286,7 @@ export declare const listCommentLikeSchema: z.ZodObject<{
5253
5286
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
5254
5287
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
5255
5288
  } | undefined;
5289
+ playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
5256
5290
  }, {
5257
5291
  allGames?: boolean | undefined;
5258
5292
  favoriteLeagues?: boolean | undefined;
@@ -5280,6 +5314,7 @@ export declare const listCommentLikeSchema: z.ZodObject<{
5280
5314
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
5281
5315
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
5282
5316
  } | undefined;
5317
+ playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
5283
5318
  }>>;
5284
5319
  spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
5285
5320
  viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
@@ -5418,6 +5453,7 @@ export declare const listCommentLikeSchema: z.ZodObject<{
5418
5453
  context: z.ZodOptional<z.ZodString>;
5419
5454
  achievedAt: z.ZodOptional<z.ZodNumber>;
5420
5455
  seen: z.ZodOptional<z.ZodBoolean>;
5456
+ isOngoing: z.ZodOptional<z.ZodBoolean>;
5421
5457
  }, "strip", z.ZodTypeAny, {
5422
5458
  target: number;
5423
5459
  current: number;
@@ -5425,6 +5461,7 @@ export declare const listCommentLikeSchema: z.ZodObject<{
5425
5461
  context?: string | undefined;
5426
5462
  achievedAt?: number | undefined;
5427
5463
  seen?: boolean | undefined;
5464
+ isOngoing?: boolean | undefined;
5428
5465
  }, {
5429
5466
  target: number;
5430
5467
  current: number;
@@ -5432,6 +5469,7 @@ export declare const listCommentLikeSchema: z.ZodObject<{
5432
5469
  context?: string | undefined;
5433
5470
  achievedAt?: number | undefined;
5434
5471
  seen?: boolean | undefined;
5472
+ isOngoing?: boolean | undefined;
5435
5473
  }>>>;
5436
5474
  seen: z.ZodOptional<z.ZodBoolean>;
5437
5475
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
@@ -5467,6 +5505,7 @@ export declare const listCommentLikeSchema: z.ZodObject<{
5467
5505
  context?: string | undefined;
5468
5506
  achievedAt?: number | undefined;
5469
5507
  seen?: boolean | undefined;
5508
+ isOngoing?: boolean | undefined;
5470
5509
  }> | undefined;
5471
5510
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
5472
5511
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -5500,6 +5539,7 @@ export declare const listCommentLikeSchema: z.ZodObject<{
5500
5539
  context?: string | undefined;
5501
5540
  achievedAt?: number | undefined;
5502
5541
  seen?: boolean | undefined;
5542
+ isOngoing?: boolean | undefined;
5503
5543
  }> | undefined;
5504
5544
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
5505
5545
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -734,6 +734,7 @@ export declare const banInfoSchema: z.ZodObject<{
734
734
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
735
735
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
736
736
  }>>;
737
+ playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
737
738
  }, "strip", z.ZodTypeAny, {
738
739
  allGames?: boolean | undefined;
739
740
  favoriteLeagues?: boolean | undefined;
@@ -761,6 +762,7 @@ export declare const banInfoSchema: z.ZodObject<{
761
762
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
762
763
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
763
764
  } | undefined;
765
+ playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
764
766
  }, {
765
767
  allGames?: boolean | undefined;
766
768
  favoriteLeagues?: boolean | undefined;
@@ -788,6 +790,7 @@ export declare const banInfoSchema: z.ZodObject<{
788
790
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
789
791
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
790
792
  } | undefined;
793
+ playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
791
794
  }>>;
792
795
  spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
793
796
  viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
@@ -926,6 +929,7 @@ export declare const banInfoSchema: z.ZodObject<{
926
929
  context: z.ZodOptional<z.ZodString>;
927
930
  achievedAt: z.ZodOptional<z.ZodNumber>;
928
931
  seen: z.ZodOptional<z.ZodBoolean>;
932
+ isOngoing: z.ZodOptional<z.ZodBoolean>;
929
933
  }, "strip", z.ZodTypeAny, {
930
934
  target: number;
931
935
  current: number;
@@ -933,6 +937,7 @@ export declare const banInfoSchema: z.ZodObject<{
933
937
  context?: string | undefined;
934
938
  achievedAt?: number | undefined;
935
939
  seen?: boolean | undefined;
940
+ isOngoing?: boolean | undefined;
936
941
  }, {
937
942
  target: number;
938
943
  current: number;
@@ -940,6 +945,7 @@ export declare const banInfoSchema: z.ZodObject<{
940
945
  context?: string | undefined;
941
946
  achievedAt?: number | undefined;
942
947
  seen?: boolean | undefined;
948
+ isOngoing?: boolean | undefined;
943
949
  }>>>;
944
950
  seen: z.ZodOptional<z.ZodBoolean>;
945
951
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
@@ -975,6 +981,7 @@ export declare const banInfoSchema: z.ZodObject<{
975
981
  context?: string | undefined;
976
982
  achievedAt?: number | undefined;
977
983
  seen?: boolean | undefined;
984
+ isOngoing?: boolean | undefined;
978
985
  }> | undefined;
979
986
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
980
987
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -1008,6 +1015,7 @@ export declare const banInfoSchema: z.ZodObject<{
1008
1015
  context?: string | undefined;
1009
1016
  achievedAt?: number | undefined;
1010
1017
  seen?: boolean | undefined;
1018
+ isOngoing?: boolean | undefined;
1011
1019
  }> | undefined;
1012
1020
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
1013
1021
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -1854,6 +1862,7 @@ export declare const bannedUserSchema: z.ZodObject<{
1854
1862
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
1855
1863
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
1856
1864
  }>>;
1865
+ playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
1857
1866
  }, "strip", z.ZodTypeAny, {
1858
1867
  allGames?: boolean | undefined;
1859
1868
  favoriteLeagues?: boolean | undefined;
@@ -1881,6 +1890,7 @@ export declare const bannedUserSchema: z.ZodObject<{
1881
1890
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
1882
1891
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
1883
1892
  } | undefined;
1893
+ playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
1884
1894
  }, {
1885
1895
  allGames?: boolean | undefined;
1886
1896
  favoriteLeagues?: boolean | undefined;
@@ -1908,6 +1918,7 @@ export declare const bannedUserSchema: z.ZodObject<{
1908
1918
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
1909
1919
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
1910
1920
  } | undefined;
1921
+ playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
1911
1922
  }>>;
1912
1923
  spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
1913
1924
  viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
@@ -2046,6 +2057,7 @@ export declare const bannedUserSchema: z.ZodObject<{
2046
2057
  context: z.ZodOptional<z.ZodString>;
2047
2058
  achievedAt: z.ZodOptional<z.ZodNumber>;
2048
2059
  seen: z.ZodOptional<z.ZodBoolean>;
2060
+ isOngoing: z.ZodOptional<z.ZodBoolean>;
2049
2061
  }, "strip", z.ZodTypeAny, {
2050
2062
  target: number;
2051
2063
  current: number;
@@ -2053,6 +2065,7 @@ export declare const bannedUserSchema: z.ZodObject<{
2053
2065
  context?: string | undefined;
2054
2066
  achievedAt?: number | undefined;
2055
2067
  seen?: boolean | undefined;
2068
+ isOngoing?: boolean | undefined;
2056
2069
  }, {
2057
2070
  target: number;
2058
2071
  current: number;
@@ -2060,6 +2073,7 @@ export declare const bannedUserSchema: z.ZodObject<{
2060
2073
  context?: string | undefined;
2061
2074
  achievedAt?: number | undefined;
2062
2075
  seen?: boolean | undefined;
2076
+ isOngoing?: boolean | undefined;
2063
2077
  }>>>;
2064
2078
  seen: z.ZodOptional<z.ZodBoolean>;
2065
2079
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
@@ -2095,6 +2109,7 @@ export declare const bannedUserSchema: z.ZodObject<{
2095
2109
  context?: string | undefined;
2096
2110
  achievedAt?: number | undefined;
2097
2111
  seen?: boolean | undefined;
2112
+ isOngoing?: boolean | undefined;
2098
2113
  }> | undefined;
2099
2114
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
2100
2115
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -2128,6 +2143,7 @@ export declare const bannedUserSchema: z.ZodObject<{
2128
2143
  context?: string | undefined;
2129
2144
  achievedAt?: number | undefined;
2130
2145
  seen?: boolean | undefined;
2146
+ isOngoing?: boolean | undefined;
2131
2147
  }> | undefined;
2132
2148
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
2133
2149
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -3010,6 +3026,7 @@ export declare const bannedUsersResponseSchema: z.ZodObject<{
3010
3026
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
3011
3027
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
3012
3028
  }>>;
3029
+ playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
3013
3030
  }, "strip", z.ZodTypeAny, {
3014
3031
  allGames?: boolean | undefined;
3015
3032
  favoriteLeagues?: boolean | undefined;
@@ -3037,6 +3054,7 @@ export declare const bannedUsersResponseSchema: z.ZodObject<{
3037
3054
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
3038
3055
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
3039
3056
  } | undefined;
3057
+ playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
3040
3058
  }, {
3041
3059
  allGames?: boolean | undefined;
3042
3060
  favoriteLeagues?: boolean | undefined;
@@ -3064,6 +3082,7 @@ export declare const bannedUsersResponseSchema: z.ZodObject<{
3064
3082
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
3065
3083
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
3066
3084
  } | undefined;
3085
+ playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
3067
3086
  }>>;
3068
3087
  spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
3069
3088
  viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
@@ -3202,6 +3221,7 @@ export declare const bannedUsersResponseSchema: z.ZodObject<{
3202
3221
  context: z.ZodOptional<z.ZodString>;
3203
3222
  achievedAt: z.ZodOptional<z.ZodNumber>;
3204
3223
  seen: z.ZodOptional<z.ZodBoolean>;
3224
+ isOngoing: z.ZodOptional<z.ZodBoolean>;
3205
3225
  }, "strip", z.ZodTypeAny, {
3206
3226
  target: number;
3207
3227
  current: number;
@@ -3209,6 +3229,7 @@ export declare const bannedUsersResponseSchema: z.ZodObject<{
3209
3229
  context?: string | undefined;
3210
3230
  achievedAt?: number | undefined;
3211
3231
  seen?: boolean | undefined;
3232
+ isOngoing?: boolean | undefined;
3212
3233
  }, {
3213
3234
  target: number;
3214
3235
  current: number;
@@ -3216,6 +3237,7 @@ export declare const bannedUsersResponseSchema: z.ZodObject<{
3216
3237
  context?: string | undefined;
3217
3238
  achievedAt?: number | undefined;
3218
3239
  seen?: boolean | undefined;
3240
+ isOngoing?: boolean | undefined;
3219
3241
  }>>>;
3220
3242
  seen: z.ZodOptional<z.ZodBoolean>;
3221
3243
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
@@ -3251,6 +3273,7 @@ export declare const bannedUsersResponseSchema: z.ZodObject<{
3251
3273
  context?: string | undefined;
3252
3274
  achievedAt?: number | undefined;
3253
3275
  seen?: boolean | undefined;
3276
+ isOngoing?: boolean | undefined;
3254
3277
  }> | undefined;
3255
3278
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
3256
3279
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -3284,6 +3307,7 @@ export declare const bannedUsersResponseSchema: z.ZodObject<{
3284
3307
  context?: string | undefined;
3285
3308
  achievedAt?: number | undefined;
3286
3309
  seen?: boolean | undefined;
3310
+ isOngoing?: boolean | undefined;
3287
3311
  }> | undefined;
3288
3312
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
3289
3313
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -4210,6 +4234,7 @@ export declare const banStatusResponseSchema: z.ZodObject<{
4210
4234
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
4211
4235
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
4212
4236
  }>>;
4237
+ playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
4213
4238
  }, "strip", z.ZodTypeAny, {
4214
4239
  allGames?: boolean | undefined;
4215
4240
  favoriteLeagues?: boolean | undefined;
@@ -4237,6 +4262,7 @@ export declare const banStatusResponseSchema: z.ZodObject<{
4237
4262
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
4238
4263
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
4239
4264
  } | undefined;
4265
+ playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
4240
4266
  }, {
4241
4267
  allGames?: boolean | undefined;
4242
4268
  favoriteLeagues?: boolean | undefined;
@@ -4264,6 +4290,7 @@ export declare const banStatusResponseSchema: z.ZodObject<{
4264
4290
  mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
4265
4291
  worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
4266
4292
  } | undefined;
4293
+ playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
4267
4294
  }>>;
4268
4295
  spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
4269
4296
  viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
@@ -4402,6 +4429,7 @@ export declare const banStatusResponseSchema: z.ZodObject<{
4402
4429
  context: z.ZodOptional<z.ZodString>;
4403
4430
  achievedAt: z.ZodOptional<z.ZodNumber>;
4404
4431
  seen: z.ZodOptional<z.ZodBoolean>;
4432
+ isOngoing: z.ZodOptional<z.ZodBoolean>;
4405
4433
  }, "strip", z.ZodTypeAny, {
4406
4434
  target: number;
4407
4435
  current: number;
@@ -4409,6 +4437,7 @@ export declare const banStatusResponseSchema: z.ZodObject<{
4409
4437
  context?: string | undefined;
4410
4438
  achievedAt?: number | undefined;
4411
4439
  seen?: boolean | undefined;
4440
+ isOngoing?: boolean | undefined;
4412
4441
  }, {
4413
4442
  target: number;
4414
4443
  current: number;
@@ -4416,6 +4445,7 @@ export declare const banStatusResponseSchema: z.ZodObject<{
4416
4445
  context?: string | undefined;
4417
4446
  achievedAt?: number | undefined;
4418
4447
  seen?: boolean | undefined;
4448
+ isOngoing?: boolean | undefined;
4419
4449
  }>>>;
4420
4450
  seen: z.ZodOptional<z.ZodBoolean>;
4421
4451
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
@@ -4451,6 +4481,7 @@ export declare const banStatusResponseSchema: z.ZodObject<{
4451
4481
  context?: string | undefined;
4452
4482
  achievedAt?: number | undefined;
4453
4483
  seen?: boolean | undefined;
4484
+ isOngoing?: boolean | undefined;
4454
4485
  }> | undefined;
4455
4486
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
4456
4487
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
@@ -4484,6 +4515,7 @@ export declare const banStatusResponseSchema: z.ZodObject<{
4484
4515
  context?: string | undefined;
4485
4516
  achievedAt?: number | undefined;
4486
4517
  seen?: boolean | undefined;
4518
+ isOngoing?: boolean | undefined;
4487
4519
  }> | undefined;
4488
4520
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
4489
4521
  league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;