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.
- package/dist/schemas/chat.d.ts +40 -0
- package/dist/schemas/game.d.ts +160 -0
- package/dist/schemas/list.d.ts +40 -0
- package/dist/schemas/moderation.d.ts +32 -0
- package/dist/schemas/rating.d.ts +24 -0
- package/dist/schemas/stadium.d.ts +32 -0
- package/dist/schemas/user.d.ts +40 -0
- package/dist/schemas/user.js +5 -0
- package/dist/schemas/userEvent.d.ts +24 -0
- package/dist/schemas/voting.d.ts +72 -0
- package/package.json +1 -1
package/dist/schemas/game.d.ts
CHANGED
|
@@ -3988,6 +3988,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
3988
3988
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3989
3989
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3990
3990
|
}>>;
|
|
3991
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
3991
3992
|
}, "strip", z.ZodTypeAny, {
|
|
3992
3993
|
allGames?: boolean | undefined;
|
|
3993
3994
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -4015,6 +4016,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4015
4016
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4016
4017
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4017
4018
|
} | undefined;
|
|
4019
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
4018
4020
|
}, {
|
|
4019
4021
|
allGames?: boolean | undefined;
|
|
4020
4022
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -4042,6 +4044,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4042
4044
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4043
4045
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4044
4046
|
} | undefined;
|
|
4047
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
4045
4048
|
}>>;
|
|
4046
4049
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
4047
4050
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -4180,6 +4183,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4180
4183
|
context: z.ZodOptional<z.ZodString>;
|
|
4181
4184
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
4182
4185
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
4186
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
4183
4187
|
}, "strip", z.ZodTypeAny, {
|
|
4184
4188
|
target: number;
|
|
4185
4189
|
current: number;
|
|
@@ -4187,6 +4191,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4187
4191
|
context?: string | undefined;
|
|
4188
4192
|
achievedAt?: number | undefined;
|
|
4189
4193
|
seen?: boolean | undefined;
|
|
4194
|
+
isOngoing?: boolean | undefined;
|
|
4190
4195
|
}, {
|
|
4191
4196
|
target: number;
|
|
4192
4197
|
current: number;
|
|
@@ -4194,6 +4199,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4194
4199
|
context?: string | undefined;
|
|
4195
4200
|
achievedAt?: number | undefined;
|
|
4196
4201
|
seen?: boolean | undefined;
|
|
4202
|
+
isOngoing?: boolean | undefined;
|
|
4197
4203
|
}>>>;
|
|
4198
4204
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
4199
4205
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -4229,6 +4235,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4229
4235
|
context?: string | undefined;
|
|
4230
4236
|
achievedAt?: number | undefined;
|
|
4231
4237
|
seen?: boolean | undefined;
|
|
4238
|
+
isOngoing?: boolean | undefined;
|
|
4232
4239
|
}> | undefined;
|
|
4233
4240
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
4234
4241
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -4262,6 +4269,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4262
4269
|
context?: string | undefined;
|
|
4263
4270
|
achievedAt?: number | undefined;
|
|
4264
4271
|
seen?: boolean | undefined;
|
|
4272
|
+
isOngoing?: boolean | undefined;
|
|
4265
4273
|
}> | undefined;
|
|
4266
4274
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
4267
4275
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -6536,6 +6544,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6536
6544
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
6537
6545
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
6538
6546
|
}>>;
|
|
6547
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
6539
6548
|
}, "strip", z.ZodTypeAny, {
|
|
6540
6549
|
allGames?: boolean | undefined;
|
|
6541
6550
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -6563,6 +6572,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6563
6572
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
6564
6573
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
6565
6574
|
} | undefined;
|
|
6575
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
6566
6576
|
}, {
|
|
6567
6577
|
allGames?: boolean | undefined;
|
|
6568
6578
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -6590,6 +6600,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6590
6600
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
6591
6601
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
6592
6602
|
} | undefined;
|
|
6603
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
6593
6604
|
}>>;
|
|
6594
6605
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
6595
6606
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -6728,6 +6739,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6728
6739
|
context: z.ZodOptional<z.ZodString>;
|
|
6729
6740
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
6730
6741
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
6742
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
6731
6743
|
}, "strip", z.ZodTypeAny, {
|
|
6732
6744
|
target: number;
|
|
6733
6745
|
current: number;
|
|
@@ -6735,6 +6747,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6735
6747
|
context?: string | undefined;
|
|
6736
6748
|
achievedAt?: number | undefined;
|
|
6737
6749
|
seen?: boolean | undefined;
|
|
6750
|
+
isOngoing?: boolean | undefined;
|
|
6738
6751
|
}, {
|
|
6739
6752
|
target: number;
|
|
6740
6753
|
current: number;
|
|
@@ -6742,6 +6755,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6742
6755
|
context?: string | undefined;
|
|
6743
6756
|
achievedAt?: number | undefined;
|
|
6744
6757
|
seen?: boolean | undefined;
|
|
6758
|
+
isOngoing?: boolean | undefined;
|
|
6745
6759
|
}>>>;
|
|
6746
6760
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
6747
6761
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -6777,6 +6791,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6777
6791
|
context?: string | undefined;
|
|
6778
6792
|
achievedAt?: number | undefined;
|
|
6779
6793
|
seen?: boolean | undefined;
|
|
6794
|
+
isOngoing?: boolean | undefined;
|
|
6780
6795
|
}> | undefined;
|
|
6781
6796
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
6782
6797
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -6810,6 +6825,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6810
6825
|
context?: string | undefined;
|
|
6811
6826
|
achievedAt?: number | undefined;
|
|
6812
6827
|
seen?: boolean | undefined;
|
|
6828
|
+
isOngoing?: boolean | undefined;
|
|
6813
6829
|
}> | undefined;
|
|
6814
6830
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
6815
6831
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -9145,6 +9161,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9145
9161
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
9146
9162
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
9147
9163
|
}>>;
|
|
9164
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
9148
9165
|
}, "strip", z.ZodTypeAny, {
|
|
9149
9166
|
allGames?: boolean | undefined;
|
|
9150
9167
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -9172,6 +9189,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9172
9189
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
9173
9190
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
9174
9191
|
} | undefined;
|
|
9192
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
9175
9193
|
}, {
|
|
9176
9194
|
allGames?: boolean | undefined;
|
|
9177
9195
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -9199,6 +9217,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9199
9217
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
9200
9218
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
9201
9219
|
} | undefined;
|
|
9220
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
9202
9221
|
}>>;
|
|
9203
9222
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
9204
9223
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -9337,6 +9356,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9337
9356
|
context: z.ZodOptional<z.ZodString>;
|
|
9338
9357
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
9339
9358
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
9359
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
9340
9360
|
}, "strip", z.ZodTypeAny, {
|
|
9341
9361
|
target: number;
|
|
9342
9362
|
current: number;
|
|
@@ -9344,6 +9364,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9344
9364
|
context?: string | undefined;
|
|
9345
9365
|
achievedAt?: number | undefined;
|
|
9346
9366
|
seen?: boolean | undefined;
|
|
9367
|
+
isOngoing?: boolean | undefined;
|
|
9347
9368
|
}, {
|
|
9348
9369
|
target: number;
|
|
9349
9370
|
current: number;
|
|
@@ -9351,6 +9372,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9351
9372
|
context?: string | undefined;
|
|
9352
9373
|
achievedAt?: number | undefined;
|
|
9353
9374
|
seen?: boolean | undefined;
|
|
9375
|
+
isOngoing?: boolean | undefined;
|
|
9354
9376
|
}>>>;
|
|
9355
9377
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
9356
9378
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -9386,6 +9408,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9386
9408
|
context?: string | undefined;
|
|
9387
9409
|
achievedAt?: number | undefined;
|
|
9388
9410
|
seen?: boolean | undefined;
|
|
9411
|
+
isOngoing?: boolean | undefined;
|
|
9389
9412
|
}> | undefined;
|
|
9390
9413
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
9391
9414
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -9419,6 +9442,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9419
9442
|
context?: string | undefined;
|
|
9420
9443
|
achievedAt?: number | undefined;
|
|
9421
9444
|
seen?: boolean | undefined;
|
|
9445
|
+
isOngoing?: boolean | undefined;
|
|
9422
9446
|
}> | undefined;
|
|
9423
9447
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
9424
9448
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -11762,6 +11786,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11762
11786
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
11763
11787
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
11764
11788
|
}>>;
|
|
11789
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
11765
11790
|
}, "strip", z.ZodTypeAny, {
|
|
11766
11791
|
allGames?: boolean | undefined;
|
|
11767
11792
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -11789,6 +11814,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11789
11814
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
11790
11815
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
11791
11816
|
} | undefined;
|
|
11817
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
11792
11818
|
}, {
|
|
11793
11819
|
allGames?: boolean | undefined;
|
|
11794
11820
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -11816,6 +11842,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11816
11842
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
11817
11843
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
11818
11844
|
} | undefined;
|
|
11845
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
11819
11846
|
}>>;
|
|
11820
11847
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
11821
11848
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -11954,6 +11981,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11954
11981
|
context: z.ZodOptional<z.ZodString>;
|
|
11955
11982
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
11956
11983
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
11984
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
11957
11985
|
}, "strip", z.ZodTypeAny, {
|
|
11958
11986
|
target: number;
|
|
11959
11987
|
current: number;
|
|
@@ -11961,6 +11989,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11961
11989
|
context?: string | undefined;
|
|
11962
11990
|
achievedAt?: number | undefined;
|
|
11963
11991
|
seen?: boolean | undefined;
|
|
11992
|
+
isOngoing?: boolean | undefined;
|
|
11964
11993
|
}, {
|
|
11965
11994
|
target: number;
|
|
11966
11995
|
current: number;
|
|
@@ -11968,6 +11997,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11968
11997
|
context?: string | undefined;
|
|
11969
11998
|
achievedAt?: number | undefined;
|
|
11970
11999
|
seen?: boolean | undefined;
|
|
12000
|
+
isOngoing?: boolean | undefined;
|
|
11971
12001
|
}>>>;
|
|
11972
12002
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
11973
12003
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -12003,6 +12033,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
12003
12033
|
context?: string | undefined;
|
|
12004
12034
|
achievedAt?: number | undefined;
|
|
12005
12035
|
seen?: boolean | undefined;
|
|
12036
|
+
isOngoing?: boolean | undefined;
|
|
12006
12037
|
}> | undefined;
|
|
12007
12038
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
12008
12039
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -12036,6 +12067,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
12036
12067
|
context?: string | undefined;
|
|
12037
12068
|
achievedAt?: number | undefined;
|
|
12038
12069
|
seen?: boolean | undefined;
|
|
12070
|
+
isOngoing?: boolean | undefined;
|
|
12039
12071
|
}> | undefined;
|
|
12040
12072
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
12041
12073
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -14464,6 +14496,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
14464
14496
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
14465
14497
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
14466
14498
|
}>>;
|
|
14499
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
14467
14500
|
}, "strip", z.ZodTypeAny, {
|
|
14468
14501
|
allGames?: boolean | undefined;
|
|
14469
14502
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -14491,6 +14524,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
14491
14524
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
14492
14525
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
14493
14526
|
} | undefined;
|
|
14527
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
14494
14528
|
}, {
|
|
14495
14529
|
allGames?: boolean | undefined;
|
|
14496
14530
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -14518,6 +14552,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
14518
14552
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
14519
14553
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
14520
14554
|
} | undefined;
|
|
14555
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
14521
14556
|
}>>;
|
|
14522
14557
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
14523
14558
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -14656,6 +14691,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
14656
14691
|
context: z.ZodOptional<z.ZodString>;
|
|
14657
14692
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
14658
14693
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
14694
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
14659
14695
|
}, "strip", z.ZodTypeAny, {
|
|
14660
14696
|
target: number;
|
|
14661
14697
|
current: number;
|
|
@@ -14663,6 +14699,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
14663
14699
|
context?: string | undefined;
|
|
14664
14700
|
achievedAt?: number | undefined;
|
|
14665
14701
|
seen?: boolean | undefined;
|
|
14702
|
+
isOngoing?: boolean | undefined;
|
|
14666
14703
|
}, {
|
|
14667
14704
|
target: number;
|
|
14668
14705
|
current: number;
|
|
@@ -14670,6 +14707,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
14670
14707
|
context?: string | undefined;
|
|
14671
14708
|
achievedAt?: number | undefined;
|
|
14672
14709
|
seen?: boolean | undefined;
|
|
14710
|
+
isOngoing?: boolean | undefined;
|
|
14673
14711
|
}>>>;
|
|
14674
14712
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
14675
14713
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -14705,6 +14743,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
14705
14743
|
context?: string | undefined;
|
|
14706
14744
|
achievedAt?: number | undefined;
|
|
14707
14745
|
seen?: boolean | undefined;
|
|
14746
|
+
isOngoing?: boolean | undefined;
|
|
14708
14747
|
}> | undefined;
|
|
14709
14748
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
14710
14749
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -14738,6 +14777,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
14738
14777
|
context?: string | undefined;
|
|
14739
14778
|
achievedAt?: number | undefined;
|
|
14740
14779
|
seen?: boolean | undefined;
|
|
14780
|
+
isOngoing?: boolean | undefined;
|
|
14741
14781
|
}> | undefined;
|
|
14742
14782
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
14743
14783
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -17137,6 +17177,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
17137
17177
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
17138
17178
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
17139
17179
|
}>>;
|
|
17180
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
17140
17181
|
}, "strip", z.ZodTypeAny, {
|
|
17141
17182
|
allGames?: boolean | undefined;
|
|
17142
17183
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -17164,6 +17205,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
17164
17205
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
17165
17206
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
17166
17207
|
} | undefined;
|
|
17208
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
17167
17209
|
}, {
|
|
17168
17210
|
allGames?: boolean | undefined;
|
|
17169
17211
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -17191,6 +17233,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
17191
17233
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
17192
17234
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
17193
17235
|
} | undefined;
|
|
17236
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
17194
17237
|
}>>;
|
|
17195
17238
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
17196
17239
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -17329,6 +17372,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
17329
17372
|
context: z.ZodOptional<z.ZodString>;
|
|
17330
17373
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
17331
17374
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
17375
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
17332
17376
|
}, "strip", z.ZodTypeAny, {
|
|
17333
17377
|
target: number;
|
|
17334
17378
|
current: number;
|
|
@@ -17336,6 +17380,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
17336
17380
|
context?: string | undefined;
|
|
17337
17381
|
achievedAt?: number | undefined;
|
|
17338
17382
|
seen?: boolean | undefined;
|
|
17383
|
+
isOngoing?: boolean | undefined;
|
|
17339
17384
|
}, {
|
|
17340
17385
|
target: number;
|
|
17341
17386
|
current: number;
|
|
@@ -17343,6 +17388,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
17343
17388
|
context?: string | undefined;
|
|
17344
17389
|
achievedAt?: number | undefined;
|
|
17345
17390
|
seen?: boolean | undefined;
|
|
17391
|
+
isOngoing?: boolean | undefined;
|
|
17346
17392
|
}>>>;
|
|
17347
17393
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
17348
17394
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -17378,6 +17424,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
17378
17424
|
context?: string | undefined;
|
|
17379
17425
|
achievedAt?: number | undefined;
|
|
17380
17426
|
seen?: boolean | undefined;
|
|
17427
|
+
isOngoing?: boolean | undefined;
|
|
17381
17428
|
}> | undefined;
|
|
17382
17429
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
17383
17430
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -17411,6 +17458,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
17411
17458
|
context?: string | undefined;
|
|
17412
17459
|
achievedAt?: number | undefined;
|
|
17413
17460
|
seen?: boolean | undefined;
|
|
17461
|
+
isOngoing?: boolean | undefined;
|
|
17414
17462
|
}> | undefined;
|
|
17415
17463
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
17416
17464
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -19792,6 +19840,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
19792
19840
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
19793
19841
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
19794
19842
|
}>>;
|
|
19843
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
19795
19844
|
}, "strip", z.ZodTypeAny, {
|
|
19796
19845
|
allGames?: boolean | undefined;
|
|
19797
19846
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -19819,6 +19868,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
19819
19868
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
19820
19869
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
19821
19870
|
} | undefined;
|
|
19871
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
19822
19872
|
}, {
|
|
19823
19873
|
allGames?: boolean | undefined;
|
|
19824
19874
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -19846,6 +19896,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
19846
19896
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
19847
19897
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
19848
19898
|
} | undefined;
|
|
19899
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
19849
19900
|
}>>;
|
|
19850
19901
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
19851
19902
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -19984,6 +20035,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
19984
20035
|
context: z.ZodOptional<z.ZodString>;
|
|
19985
20036
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
19986
20037
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
20038
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
19987
20039
|
}, "strip", z.ZodTypeAny, {
|
|
19988
20040
|
target: number;
|
|
19989
20041
|
current: number;
|
|
@@ -19991,6 +20043,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
19991
20043
|
context?: string | undefined;
|
|
19992
20044
|
achievedAt?: number | undefined;
|
|
19993
20045
|
seen?: boolean | undefined;
|
|
20046
|
+
isOngoing?: boolean | undefined;
|
|
19994
20047
|
}, {
|
|
19995
20048
|
target: number;
|
|
19996
20049
|
current: number;
|
|
@@ -19998,6 +20051,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
19998
20051
|
context?: string | undefined;
|
|
19999
20052
|
achievedAt?: number | undefined;
|
|
20000
20053
|
seen?: boolean | undefined;
|
|
20054
|
+
isOngoing?: boolean | undefined;
|
|
20001
20055
|
}>>>;
|
|
20002
20056
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
20003
20057
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -20033,6 +20087,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
20033
20087
|
context?: string | undefined;
|
|
20034
20088
|
achievedAt?: number | undefined;
|
|
20035
20089
|
seen?: boolean | undefined;
|
|
20090
|
+
isOngoing?: boolean | undefined;
|
|
20036
20091
|
}> | undefined;
|
|
20037
20092
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
20038
20093
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -20066,6 +20121,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
20066
20121
|
context?: string | undefined;
|
|
20067
20122
|
achievedAt?: number | undefined;
|
|
20068
20123
|
seen?: boolean | undefined;
|
|
20124
|
+
isOngoing?: boolean | undefined;
|
|
20069
20125
|
}> | undefined;
|
|
20070
20126
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
20071
20127
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -22360,6 +22416,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22360
22416
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
22361
22417
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
22362
22418
|
}>>;
|
|
22419
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
22363
22420
|
}, "strip", z.ZodTypeAny, {
|
|
22364
22421
|
allGames?: boolean | undefined;
|
|
22365
22422
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -22387,6 +22444,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22387
22444
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
22388
22445
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
22389
22446
|
} | undefined;
|
|
22447
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
22390
22448
|
}, {
|
|
22391
22449
|
allGames?: boolean | undefined;
|
|
22392
22450
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -22414,6 +22472,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22414
22472
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
22415
22473
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
22416
22474
|
} | undefined;
|
|
22475
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
22417
22476
|
}>>;
|
|
22418
22477
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
22419
22478
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -22552,6 +22611,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22552
22611
|
context: z.ZodOptional<z.ZodString>;
|
|
22553
22612
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
22554
22613
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
22614
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
22555
22615
|
}, "strip", z.ZodTypeAny, {
|
|
22556
22616
|
target: number;
|
|
22557
22617
|
current: number;
|
|
@@ -22559,6 +22619,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22559
22619
|
context?: string | undefined;
|
|
22560
22620
|
achievedAt?: number | undefined;
|
|
22561
22621
|
seen?: boolean | undefined;
|
|
22622
|
+
isOngoing?: boolean | undefined;
|
|
22562
22623
|
}, {
|
|
22563
22624
|
target: number;
|
|
22564
22625
|
current: number;
|
|
@@ -22566,6 +22627,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22566
22627
|
context?: string | undefined;
|
|
22567
22628
|
achievedAt?: number | undefined;
|
|
22568
22629
|
seen?: boolean | undefined;
|
|
22630
|
+
isOngoing?: boolean | undefined;
|
|
22569
22631
|
}>>>;
|
|
22570
22632
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
22571
22633
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -22601,6 +22663,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22601
22663
|
context?: string | undefined;
|
|
22602
22664
|
achievedAt?: number | undefined;
|
|
22603
22665
|
seen?: boolean | undefined;
|
|
22666
|
+
isOngoing?: boolean | undefined;
|
|
22604
22667
|
}> | undefined;
|
|
22605
22668
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
22606
22669
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -22634,6 +22697,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22634
22697
|
context?: string | undefined;
|
|
22635
22698
|
achievedAt?: number | undefined;
|
|
22636
22699
|
seen?: boolean | undefined;
|
|
22700
|
+
isOngoing?: boolean | undefined;
|
|
22637
22701
|
}> | undefined;
|
|
22638
22702
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
22639
22703
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -24955,6 +25019,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24955
25019
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
24956
25020
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
24957
25021
|
}>>;
|
|
25022
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
24958
25023
|
}, "strip", z.ZodTypeAny, {
|
|
24959
25024
|
allGames?: boolean | undefined;
|
|
24960
25025
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -24982,6 +25047,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24982
25047
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
24983
25048
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
24984
25049
|
} | undefined;
|
|
25050
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
24985
25051
|
}, {
|
|
24986
25052
|
allGames?: boolean | undefined;
|
|
24987
25053
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -25009,6 +25075,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
25009
25075
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
25010
25076
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
25011
25077
|
} | undefined;
|
|
25078
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
25012
25079
|
}>>;
|
|
25013
25080
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
25014
25081
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -25147,6 +25214,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
25147
25214
|
context: z.ZodOptional<z.ZodString>;
|
|
25148
25215
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
25149
25216
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
25217
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
25150
25218
|
}, "strip", z.ZodTypeAny, {
|
|
25151
25219
|
target: number;
|
|
25152
25220
|
current: number;
|
|
@@ -25154,6 +25222,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
25154
25222
|
context?: string | undefined;
|
|
25155
25223
|
achievedAt?: number | undefined;
|
|
25156
25224
|
seen?: boolean | undefined;
|
|
25225
|
+
isOngoing?: boolean | undefined;
|
|
25157
25226
|
}, {
|
|
25158
25227
|
target: number;
|
|
25159
25228
|
current: number;
|
|
@@ -25161,6 +25230,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
25161
25230
|
context?: string | undefined;
|
|
25162
25231
|
achievedAt?: number | undefined;
|
|
25163
25232
|
seen?: boolean | undefined;
|
|
25233
|
+
isOngoing?: boolean | undefined;
|
|
25164
25234
|
}>>>;
|
|
25165
25235
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
25166
25236
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -25196,6 +25266,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
25196
25266
|
context?: string | undefined;
|
|
25197
25267
|
achievedAt?: number | undefined;
|
|
25198
25268
|
seen?: boolean | undefined;
|
|
25269
|
+
isOngoing?: boolean | undefined;
|
|
25199
25270
|
}> | undefined;
|
|
25200
25271
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
25201
25272
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -25229,6 +25300,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
25229
25300
|
context?: string | undefined;
|
|
25230
25301
|
achievedAt?: number | undefined;
|
|
25231
25302
|
seen?: boolean | undefined;
|
|
25303
|
+
isOngoing?: boolean | undefined;
|
|
25232
25304
|
}> | undefined;
|
|
25233
25305
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
25234
25306
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -27571,6 +27643,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27571
27643
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
27572
27644
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
27573
27645
|
}>>;
|
|
27646
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
27574
27647
|
}, "strip", z.ZodTypeAny, {
|
|
27575
27648
|
allGames?: boolean | undefined;
|
|
27576
27649
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -27598,6 +27671,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27598
27671
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
27599
27672
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
27600
27673
|
} | undefined;
|
|
27674
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
27601
27675
|
}, {
|
|
27602
27676
|
allGames?: boolean | undefined;
|
|
27603
27677
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -27625,6 +27699,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27625
27699
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
27626
27700
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
27627
27701
|
} | undefined;
|
|
27702
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
27628
27703
|
}>>;
|
|
27629
27704
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
27630
27705
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -27763,6 +27838,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27763
27838
|
context: z.ZodOptional<z.ZodString>;
|
|
27764
27839
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
27765
27840
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
27841
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
27766
27842
|
}, "strip", z.ZodTypeAny, {
|
|
27767
27843
|
target: number;
|
|
27768
27844
|
current: number;
|
|
@@ -27770,6 +27846,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27770
27846
|
context?: string | undefined;
|
|
27771
27847
|
achievedAt?: number | undefined;
|
|
27772
27848
|
seen?: boolean | undefined;
|
|
27849
|
+
isOngoing?: boolean | undefined;
|
|
27773
27850
|
}, {
|
|
27774
27851
|
target: number;
|
|
27775
27852
|
current: number;
|
|
@@ -27777,6 +27854,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27777
27854
|
context?: string | undefined;
|
|
27778
27855
|
achievedAt?: number | undefined;
|
|
27779
27856
|
seen?: boolean | undefined;
|
|
27857
|
+
isOngoing?: boolean | undefined;
|
|
27780
27858
|
}>>>;
|
|
27781
27859
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
27782
27860
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -27812,6 +27890,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27812
27890
|
context?: string | undefined;
|
|
27813
27891
|
achievedAt?: number | undefined;
|
|
27814
27892
|
seen?: boolean | undefined;
|
|
27893
|
+
isOngoing?: boolean | undefined;
|
|
27815
27894
|
}> | undefined;
|
|
27816
27895
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
27817
27896
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -27845,6 +27924,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27845
27924
|
context?: string | undefined;
|
|
27846
27925
|
achievedAt?: number | undefined;
|
|
27847
27926
|
seen?: boolean | undefined;
|
|
27927
|
+
isOngoing?: boolean | undefined;
|
|
27848
27928
|
}> | undefined;
|
|
27849
27929
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
27850
27930
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -30272,6 +30352,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
30272
30352
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
30273
30353
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
30274
30354
|
}>>;
|
|
30355
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
30275
30356
|
}, "strip", z.ZodTypeAny, {
|
|
30276
30357
|
allGames?: boolean | undefined;
|
|
30277
30358
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -30299,6 +30380,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
30299
30380
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
30300
30381
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
30301
30382
|
} | undefined;
|
|
30383
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
30302
30384
|
}, {
|
|
30303
30385
|
allGames?: boolean | undefined;
|
|
30304
30386
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -30326,6 +30408,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
30326
30408
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
30327
30409
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
30328
30410
|
} | undefined;
|
|
30411
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
30329
30412
|
}>>;
|
|
30330
30413
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
30331
30414
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -30464,6 +30547,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
30464
30547
|
context: z.ZodOptional<z.ZodString>;
|
|
30465
30548
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
30466
30549
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
30550
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
30467
30551
|
}, "strip", z.ZodTypeAny, {
|
|
30468
30552
|
target: number;
|
|
30469
30553
|
current: number;
|
|
@@ -30471,6 +30555,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
30471
30555
|
context?: string | undefined;
|
|
30472
30556
|
achievedAt?: number | undefined;
|
|
30473
30557
|
seen?: boolean | undefined;
|
|
30558
|
+
isOngoing?: boolean | undefined;
|
|
30474
30559
|
}, {
|
|
30475
30560
|
target: number;
|
|
30476
30561
|
current: number;
|
|
@@ -30478,6 +30563,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
30478
30563
|
context?: string | undefined;
|
|
30479
30564
|
achievedAt?: number | undefined;
|
|
30480
30565
|
seen?: boolean | undefined;
|
|
30566
|
+
isOngoing?: boolean | undefined;
|
|
30481
30567
|
}>>>;
|
|
30482
30568
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
30483
30569
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -30513,6 +30599,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
30513
30599
|
context?: string | undefined;
|
|
30514
30600
|
achievedAt?: number | undefined;
|
|
30515
30601
|
seen?: boolean | undefined;
|
|
30602
|
+
isOngoing?: boolean | undefined;
|
|
30516
30603
|
}> | undefined;
|
|
30517
30604
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
30518
30605
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -30546,6 +30633,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
30546
30633
|
context?: string | undefined;
|
|
30547
30634
|
achievedAt?: number | undefined;
|
|
30548
30635
|
seen?: boolean | undefined;
|
|
30636
|
+
isOngoing?: boolean | undefined;
|
|
30549
30637
|
}> | undefined;
|
|
30550
30638
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
30551
30639
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -32944,6 +33032,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
32944
33032
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
32945
33033
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
32946
33034
|
}>>;
|
|
33035
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
32947
33036
|
}, "strip", z.ZodTypeAny, {
|
|
32948
33037
|
allGames?: boolean | undefined;
|
|
32949
33038
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -32971,6 +33060,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
32971
33060
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
32972
33061
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
32973
33062
|
} | undefined;
|
|
33063
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
32974
33064
|
}, {
|
|
32975
33065
|
allGames?: boolean | undefined;
|
|
32976
33066
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -32998,6 +33088,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
32998
33088
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
32999
33089
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
33000
33090
|
} | undefined;
|
|
33091
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
33001
33092
|
}>>;
|
|
33002
33093
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
33003
33094
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -33136,6 +33227,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
33136
33227
|
context: z.ZodOptional<z.ZodString>;
|
|
33137
33228
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
33138
33229
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
33230
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
33139
33231
|
}, "strip", z.ZodTypeAny, {
|
|
33140
33232
|
target: number;
|
|
33141
33233
|
current: number;
|
|
@@ -33143,6 +33235,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
33143
33235
|
context?: string | undefined;
|
|
33144
33236
|
achievedAt?: number | undefined;
|
|
33145
33237
|
seen?: boolean | undefined;
|
|
33238
|
+
isOngoing?: boolean | undefined;
|
|
33146
33239
|
}, {
|
|
33147
33240
|
target: number;
|
|
33148
33241
|
current: number;
|
|
@@ -33150,6 +33243,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
33150
33243
|
context?: string | undefined;
|
|
33151
33244
|
achievedAt?: number | undefined;
|
|
33152
33245
|
seen?: boolean | undefined;
|
|
33246
|
+
isOngoing?: boolean | undefined;
|
|
33153
33247
|
}>>>;
|
|
33154
33248
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
33155
33249
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -33185,6 +33279,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
33185
33279
|
context?: string | undefined;
|
|
33186
33280
|
achievedAt?: number | undefined;
|
|
33187
33281
|
seen?: boolean | undefined;
|
|
33282
|
+
isOngoing?: boolean | undefined;
|
|
33188
33283
|
}> | undefined;
|
|
33189
33284
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
33190
33285
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -33218,6 +33313,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
33218
33313
|
context?: string | undefined;
|
|
33219
33314
|
achievedAt?: number | undefined;
|
|
33220
33315
|
seen?: boolean | undefined;
|
|
33316
|
+
isOngoing?: boolean | undefined;
|
|
33221
33317
|
}> | undefined;
|
|
33222
33318
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
33223
33319
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -35598,6 +35694,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
35598
35694
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
35599
35695
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
35600
35696
|
}>>;
|
|
35697
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
35601
35698
|
}, "strip", z.ZodTypeAny, {
|
|
35602
35699
|
allGames?: boolean | undefined;
|
|
35603
35700
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -35625,6 +35722,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
35625
35722
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
35626
35723
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
35627
35724
|
} | undefined;
|
|
35725
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
35628
35726
|
}, {
|
|
35629
35727
|
allGames?: boolean | undefined;
|
|
35630
35728
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -35652,6 +35750,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
35652
35750
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
35653
35751
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
35654
35752
|
} | undefined;
|
|
35753
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
35655
35754
|
}>>;
|
|
35656
35755
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
35657
35756
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -35790,6 +35889,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
35790
35889
|
context: z.ZodOptional<z.ZodString>;
|
|
35791
35890
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
35792
35891
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
35892
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
35793
35893
|
}, "strip", z.ZodTypeAny, {
|
|
35794
35894
|
target: number;
|
|
35795
35895
|
current: number;
|
|
@@ -35797,6 +35897,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
35797
35897
|
context?: string | undefined;
|
|
35798
35898
|
achievedAt?: number | undefined;
|
|
35799
35899
|
seen?: boolean | undefined;
|
|
35900
|
+
isOngoing?: boolean | undefined;
|
|
35800
35901
|
}, {
|
|
35801
35902
|
target: number;
|
|
35802
35903
|
current: number;
|
|
@@ -35804,6 +35905,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
35804
35905
|
context?: string | undefined;
|
|
35805
35906
|
achievedAt?: number | undefined;
|
|
35806
35907
|
seen?: boolean | undefined;
|
|
35908
|
+
isOngoing?: boolean | undefined;
|
|
35807
35909
|
}>>>;
|
|
35808
35910
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
35809
35911
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -35839,6 +35941,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
35839
35941
|
context?: string | undefined;
|
|
35840
35942
|
achievedAt?: number | undefined;
|
|
35841
35943
|
seen?: boolean | undefined;
|
|
35944
|
+
isOngoing?: boolean | undefined;
|
|
35842
35945
|
}> | undefined;
|
|
35843
35946
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
35844
35947
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -35872,6 +35975,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
35872
35975
|
context?: string | undefined;
|
|
35873
35976
|
achievedAt?: number | undefined;
|
|
35874
35977
|
seen?: boolean | undefined;
|
|
35978
|
+
isOngoing?: boolean | undefined;
|
|
35875
35979
|
}> | undefined;
|
|
35876
35980
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
35877
35981
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -38216,6 +38320,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38216
38320
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
38217
38321
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
38218
38322
|
}>>;
|
|
38323
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
38219
38324
|
}, "strip", z.ZodTypeAny, {
|
|
38220
38325
|
allGames?: boolean | undefined;
|
|
38221
38326
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -38243,6 +38348,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38243
38348
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
38244
38349
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
38245
38350
|
} | undefined;
|
|
38351
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
38246
38352
|
}, {
|
|
38247
38353
|
allGames?: boolean | undefined;
|
|
38248
38354
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -38270,6 +38376,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38270
38376
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
38271
38377
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
38272
38378
|
} | undefined;
|
|
38379
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
38273
38380
|
}>>;
|
|
38274
38381
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
38275
38382
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -38408,6 +38515,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38408
38515
|
context: z.ZodOptional<z.ZodString>;
|
|
38409
38516
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
38410
38517
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
38518
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
38411
38519
|
}, "strip", z.ZodTypeAny, {
|
|
38412
38520
|
target: number;
|
|
38413
38521
|
current: number;
|
|
@@ -38415,6 +38523,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38415
38523
|
context?: string | undefined;
|
|
38416
38524
|
achievedAt?: number | undefined;
|
|
38417
38525
|
seen?: boolean | undefined;
|
|
38526
|
+
isOngoing?: boolean | undefined;
|
|
38418
38527
|
}, {
|
|
38419
38528
|
target: number;
|
|
38420
38529
|
current: number;
|
|
@@ -38422,6 +38531,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38422
38531
|
context?: string | undefined;
|
|
38423
38532
|
achievedAt?: number | undefined;
|
|
38424
38533
|
seen?: boolean | undefined;
|
|
38534
|
+
isOngoing?: boolean | undefined;
|
|
38425
38535
|
}>>>;
|
|
38426
38536
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
38427
38537
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -38457,6 +38567,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38457
38567
|
context?: string | undefined;
|
|
38458
38568
|
achievedAt?: number | undefined;
|
|
38459
38569
|
seen?: boolean | undefined;
|
|
38570
|
+
isOngoing?: boolean | undefined;
|
|
38460
38571
|
}> | undefined;
|
|
38461
38572
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
38462
38573
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -38490,6 +38601,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38490
38601
|
context?: string | undefined;
|
|
38491
38602
|
achievedAt?: number | undefined;
|
|
38492
38603
|
seen?: boolean | undefined;
|
|
38604
|
+
isOngoing?: boolean | undefined;
|
|
38493
38605
|
}> | undefined;
|
|
38494
38606
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
38495
38607
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -40811,6 +40923,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40811
40923
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
40812
40924
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
40813
40925
|
}>>;
|
|
40926
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
40814
40927
|
}, "strip", z.ZodTypeAny, {
|
|
40815
40928
|
allGames?: boolean | undefined;
|
|
40816
40929
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -40838,6 +40951,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40838
40951
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
40839
40952
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
40840
40953
|
} | undefined;
|
|
40954
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
40841
40955
|
}, {
|
|
40842
40956
|
allGames?: boolean | undefined;
|
|
40843
40957
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -40865,6 +40979,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40865
40979
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
40866
40980
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
40867
40981
|
} | undefined;
|
|
40982
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
40868
40983
|
}>>;
|
|
40869
40984
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
40870
40985
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -41003,6 +41118,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
41003
41118
|
context: z.ZodOptional<z.ZodString>;
|
|
41004
41119
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
41005
41120
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
41121
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
41006
41122
|
}, "strip", z.ZodTypeAny, {
|
|
41007
41123
|
target: number;
|
|
41008
41124
|
current: number;
|
|
@@ -41010,6 +41126,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
41010
41126
|
context?: string | undefined;
|
|
41011
41127
|
achievedAt?: number | undefined;
|
|
41012
41128
|
seen?: boolean | undefined;
|
|
41129
|
+
isOngoing?: boolean | undefined;
|
|
41013
41130
|
}, {
|
|
41014
41131
|
target: number;
|
|
41015
41132
|
current: number;
|
|
@@ -41017,6 +41134,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
41017
41134
|
context?: string | undefined;
|
|
41018
41135
|
achievedAt?: number | undefined;
|
|
41019
41136
|
seen?: boolean | undefined;
|
|
41137
|
+
isOngoing?: boolean | undefined;
|
|
41020
41138
|
}>>>;
|
|
41021
41139
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
41022
41140
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -41052,6 +41170,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
41052
41170
|
context?: string | undefined;
|
|
41053
41171
|
achievedAt?: number | undefined;
|
|
41054
41172
|
seen?: boolean | undefined;
|
|
41173
|
+
isOngoing?: boolean | undefined;
|
|
41055
41174
|
}> | undefined;
|
|
41056
41175
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
41057
41176
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -41085,6 +41204,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
41085
41204
|
context?: string | undefined;
|
|
41086
41205
|
achievedAt?: number | undefined;
|
|
41087
41206
|
seen?: boolean | undefined;
|
|
41207
|
+
isOngoing?: boolean | undefined;
|
|
41088
41208
|
}> | undefined;
|
|
41089
41209
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
41090
41210
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -43427,6 +43547,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43427
43547
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
43428
43548
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
43429
43549
|
}>>;
|
|
43550
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
43430
43551
|
}, "strip", z.ZodTypeAny, {
|
|
43431
43552
|
allGames?: boolean | undefined;
|
|
43432
43553
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -43454,6 +43575,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43454
43575
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
43455
43576
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
43456
43577
|
} | undefined;
|
|
43578
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
43457
43579
|
}, {
|
|
43458
43580
|
allGames?: boolean | undefined;
|
|
43459
43581
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -43481,6 +43603,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43481
43603
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
43482
43604
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
43483
43605
|
} | undefined;
|
|
43606
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
43484
43607
|
}>>;
|
|
43485
43608
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
43486
43609
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -43619,6 +43742,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43619
43742
|
context: z.ZodOptional<z.ZodString>;
|
|
43620
43743
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
43621
43744
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
43745
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
43622
43746
|
}, "strip", z.ZodTypeAny, {
|
|
43623
43747
|
target: number;
|
|
43624
43748
|
current: number;
|
|
@@ -43626,6 +43750,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43626
43750
|
context?: string | undefined;
|
|
43627
43751
|
achievedAt?: number | undefined;
|
|
43628
43752
|
seen?: boolean | undefined;
|
|
43753
|
+
isOngoing?: boolean | undefined;
|
|
43629
43754
|
}, {
|
|
43630
43755
|
target: number;
|
|
43631
43756
|
current: number;
|
|
@@ -43633,6 +43758,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43633
43758
|
context?: string | undefined;
|
|
43634
43759
|
achievedAt?: number | undefined;
|
|
43635
43760
|
seen?: boolean | undefined;
|
|
43761
|
+
isOngoing?: boolean | undefined;
|
|
43636
43762
|
}>>>;
|
|
43637
43763
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
43638
43764
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -43668,6 +43794,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43668
43794
|
context?: string | undefined;
|
|
43669
43795
|
achievedAt?: number | undefined;
|
|
43670
43796
|
seen?: boolean | undefined;
|
|
43797
|
+
isOngoing?: boolean | undefined;
|
|
43671
43798
|
}> | undefined;
|
|
43672
43799
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
43673
43800
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -43701,6 +43828,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43701
43828
|
context?: string | undefined;
|
|
43702
43829
|
achievedAt?: number | undefined;
|
|
43703
43830
|
seen?: boolean | undefined;
|
|
43831
|
+
isOngoing?: boolean | undefined;
|
|
43704
43832
|
}> | undefined;
|
|
43705
43833
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
43706
43834
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -46128,6 +46256,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46128
46256
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
46129
46257
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
46130
46258
|
}>>;
|
|
46259
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
46131
46260
|
}, "strip", z.ZodTypeAny, {
|
|
46132
46261
|
allGames?: boolean | undefined;
|
|
46133
46262
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -46155,6 +46284,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46155
46284
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
46156
46285
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
46157
46286
|
} | undefined;
|
|
46287
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
46158
46288
|
}, {
|
|
46159
46289
|
allGames?: boolean | undefined;
|
|
46160
46290
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -46182,6 +46312,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46182
46312
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
46183
46313
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
46184
46314
|
} | undefined;
|
|
46315
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
46185
46316
|
}>>;
|
|
46186
46317
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
46187
46318
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -46320,6 +46451,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46320
46451
|
context: z.ZodOptional<z.ZodString>;
|
|
46321
46452
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
46322
46453
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
46454
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
46323
46455
|
}, "strip", z.ZodTypeAny, {
|
|
46324
46456
|
target: number;
|
|
46325
46457
|
current: number;
|
|
@@ -46327,6 +46459,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46327
46459
|
context?: string | undefined;
|
|
46328
46460
|
achievedAt?: number | undefined;
|
|
46329
46461
|
seen?: boolean | undefined;
|
|
46462
|
+
isOngoing?: boolean | undefined;
|
|
46330
46463
|
}, {
|
|
46331
46464
|
target: number;
|
|
46332
46465
|
current: number;
|
|
@@ -46334,6 +46467,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46334
46467
|
context?: string | undefined;
|
|
46335
46468
|
achievedAt?: number | undefined;
|
|
46336
46469
|
seen?: boolean | undefined;
|
|
46470
|
+
isOngoing?: boolean | undefined;
|
|
46337
46471
|
}>>>;
|
|
46338
46472
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
46339
46473
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -46369,6 +46503,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46369
46503
|
context?: string | undefined;
|
|
46370
46504
|
achievedAt?: number | undefined;
|
|
46371
46505
|
seen?: boolean | undefined;
|
|
46506
|
+
isOngoing?: boolean | undefined;
|
|
46372
46507
|
}> | undefined;
|
|
46373
46508
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
46374
46509
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -46402,6 +46537,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46402
46537
|
context?: string | undefined;
|
|
46403
46538
|
achievedAt?: number | undefined;
|
|
46404
46539
|
seen?: boolean | undefined;
|
|
46540
|
+
isOngoing?: boolean | undefined;
|
|
46405
46541
|
}> | undefined;
|
|
46406
46542
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
46407
46543
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -48800,6 +48936,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48800
48936
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
48801
48937
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
48802
48938
|
}>>;
|
|
48939
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
48803
48940
|
}, "strip", z.ZodTypeAny, {
|
|
48804
48941
|
allGames?: boolean | undefined;
|
|
48805
48942
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -48827,6 +48964,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48827
48964
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
48828
48965
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
48829
48966
|
} | undefined;
|
|
48967
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
48830
48968
|
}, {
|
|
48831
48969
|
allGames?: boolean | undefined;
|
|
48832
48970
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -48854,6 +48992,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48854
48992
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
48855
48993
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
48856
48994
|
} | undefined;
|
|
48995
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
48857
48996
|
}>>;
|
|
48858
48997
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
48859
48998
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -48992,6 +49131,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48992
49131
|
context: z.ZodOptional<z.ZodString>;
|
|
48993
49132
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
48994
49133
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
49134
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
48995
49135
|
}, "strip", z.ZodTypeAny, {
|
|
48996
49136
|
target: number;
|
|
48997
49137
|
current: number;
|
|
@@ -48999,6 +49139,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48999
49139
|
context?: string | undefined;
|
|
49000
49140
|
achievedAt?: number | undefined;
|
|
49001
49141
|
seen?: boolean | undefined;
|
|
49142
|
+
isOngoing?: boolean | undefined;
|
|
49002
49143
|
}, {
|
|
49003
49144
|
target: number;
|
|
49004
49145
|
current: number;
|
|
@@ -49006,6 +49147,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
49006
49147
|
context?: string | undefined;
|
|
49007
49148
|
achievedAt?: number | undefined;
|
|
49008
49149
|
seen?: boolean | undefined;
|
|
49150
|
+
isOngoing?: boolean | undefined;
|
|
49009
49151
|
}>>>;
|
|
49010
49152
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
49011
49153
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -49041,6 +49183,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
49041
49183
|
context?: string | undefined;
|
|
49042
49184
|
achievedAt?: number | undefined;
|
|
49043
49185
|
seen?: boolean | undefined;
|
|
49186
|
+
isOngoing?: boolean | undefined;
|
|
49044
49187
|
}> | undefined;
|
|
49045
49188
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
49046
49189
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -49074,6 +49217,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
49074
49217
|
context?: string | undefined;
|
|
49075
49218
|
achievedAt?: number | undefined;
|
|
49076
49219
|
seen?: boolean | undefined;
|
|
49220
|
+
isOngoing?: boolean | undefined;
|
|
49077
49221
|
}> | undefined;
|
|
49078
49222
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
49079
49223
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -51454,6 +51598,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
51454
51598
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
51455
51599
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
51456
51600
|
}>>;
|
|
51601
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
51457
51602
|
}, "strip", z.ZodTypeAny, {
|
|
51458
51603
|
allGames?: boolean | undefined;
|
|
51459
51604
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -51481,6 +51626,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
51481
51626
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
51482
51627
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
51483
51628
|
} | undefined;
|
|
51629
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
51484
51630
|
}, {
|
|
51485
51631
|
allGames?: boolean | undefined;
|
|
51486
51632
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -51508,6 +51654,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
51508
51654
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
51509
51655
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
51510
51656
|
} | undefined;
|
|
51657
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
51511
51658
|
}>>;
|
|
51512
51659
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
51513
51660
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -51646,6 +51793,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
51646
51793
|
context: z.ZodOptional<z.ZodString>;
|
|
51647
51794
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
51648
51795
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
51796
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
51649
51797
|
}, "strip", z.ZodTypeAny, {
|
|
51650
51798
|
target: number;
|
|
51651
51799
|
current: number;
|
|
@@ -51653,6 +51801,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
51653
51801
|
context?: string | undefined;
|
|
51654
51802
|
achievedAt?: number | undefined;
|
|
51655
51803
|
seen?: boolean | undefined;
|
|
51804
|
+
isOngoing?: boolean | undefined;
|
|
51656
51805
|
}, {
|
|
51657
51806
|
target: number;
|
|
51658
51807
|
current: number;
|
|
@@ -51660,6 +51809,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
51660
51809
|
context?: string | undefined;
|
|
51661
51810
|
achievedAt?: number | undefined;
|
|
51662
51811
|
seen?: boolean | undefined;
|
|
51812
|
+
isOngoing?: boolean | undefined;
|
|
51663
51813
|
}>>>;
|
|
51664
51814
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
51665
51815
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -51695,6 +51845,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
51695
51845
|
context?: string | undefined;
|
|
51696
51846
|
achievedAt?: number | undefined;
|
|
51697
51847
|
seen?: boolean | undefined;
|
|
51848
|
+
isOngoing?: boolean | undefined;
|
|
51698
51849
|
}> | undefined;
|
|
51699
51850
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
51700
51851
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -51728,6 +51879,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
51728
51879
|
context?: string | undefined;
|
|
51729
51880
|
achievedAt?: number | undefined;
|
|
51730
51881
|
seen?: boolean | undefined;
|
|
51882
|
+
isOngoing?: boolean | undefined;
|
|
51731
51883
|
}> | undefined;
|
|
51732
51884
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
51733
51885
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -52953,6 +53105,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
52953
53105
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
52954
53106
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
52955
53107
|
}>>;
|
|
53108
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
52956
53109
|
}, "strip", z.ZodTypeAny, {
|
|
52957
53110
|
allGames?: boolean | undefined;
|
|
52958
53111
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -52980,6 +53133,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
52980
53133
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
52981
53134
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
52982
53135
|
} | undefined;
|
|
53136
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
52983
53137
|
}, {
|
|
52984
53138
|
allGames?: boolean | undefined;
|
|
52985
53139
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -53007,6 +53161,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
53007
53161
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
53008
53162
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
53009
53163
|
} | undefined;
|
|
53164
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
53010
53165
|
}>>;
|
|
53011
53166
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
53012
53167
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -53145,6 +53300,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
53145
53300
|
context: z.ZodOptional<z.ZodString>;
|
|
53146
53301
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
53147
53302
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
53303
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
53148
53304
|
}, "strip", z.ZodTypeAny, {
|
|
53149
53305
|
target: number;
|
|
53150
53306
|
current: number;
|
|
@@ -53152,6 +53308,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
53152
53308
|
context?: string | undefined;
|
|
53153
53309
|
achievedAt?: number | undefined;
|
|
53154
53310
|
seen?: boolean | undefined;
|
|
53311
|
+
isOngoing?: boolean | undefined;
|
|
53155
53312
|
}, {
|
|
53156
53313
|
target: number;
|
|
53157
53314
|
current: number;
|
|
@@ -53159,6 +53316,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
53159
53316
|
context?: string | undefined;
|
|
53160
53317
|
achievedAt?: number | undefined;
|
|
53161
53318
|
seen?: boolean | undefined;
|
|
53319
|
+
isOngoing?: boolean | undefined;
|
|
53162
53320
|
}>>>;
|
|
53163
53321
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
53164
53322
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -53194,6 +53352,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
53194
53352
|
context?: string | undefined;
|
|
53195
53353
|
achievedAt?: number | undefined;
|
|
53196
53354
|
seen?: boolean | undefined;
|
|
53355
|
+
isOngoing?: boolean | undefined;
|
|
53197
53356
|
}> | undefined;
|
|
53198
53357
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
53199
53358
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -53227,6 +53386,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
53227
53386
|
context?: string | undefined;
|
|
53228
53387
|
achievedAt?: number | undefined;
|
|
53229
53388
|
seen?: boolean | undefined;
|
|
53389
|
+
isOngoing?: boolean | undefined;
|
|
53230
53390
|
}> | undefined;
|
|
53231
53391
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
53232
53392
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|