rategame-shared 1.1.316 → 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 +15 -0
- package/dist/schemas/game.d.ts +60 -0
- package/dist/schemas/list.d.ts +15 -0
- package/dist/schemas/moderation.d.ts +12 -0
- package/dist/schemas/rating.d.ts +9 -0
- package/dist/schemas/stadium.d.ts +12 -0
- package/dist/schemas/user.d.ts +13 -0
- package/dist/schemas/user.js +4 -0
- package/dist/schemas/userEvent.d.ts +9 -0
- package/dist/schemas/voting.d.ts +27 -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>>;
|
|
@@ -6541,6 +6544,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6541
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;
|
|
6542
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;
|
|
6543
6546
|
}>>;
|
|
6547
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
6544
6548
|
}, "strip", z.ZodTypeAny, {
|
|
6545
6549
|
allGames?: boolean | undefined;
|
|
6546
6550
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -6568,6 +6572,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6568
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;
|
|
6569
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;
|
|
6570
6574
|
} | undefined;
|
|
6575
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
6571
6576
|
}, {
|
|
6572
6577
|
allGames?: boolean | undefined;
|
|
6573
6578
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -6595,6 +6600,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6595
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;
|
|
6596
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;
|
|
6597
6602
|
} | undefined;
|
|
6603
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
6598
6604
|
}>>;
|
|
6599
6605
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
6600
6606
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -9155,6 +9161,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9155
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;
|
|
9156
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;
|
|
9157
9163
|
}>>;
|
|
9164
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
9158
9165
|
}, "strip", z.ZodTypeAny, {
|
|
9159
9166
|
allGames?: boolean | undefined;
|
|
9160
9167
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -9182,6 +9189,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9182
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;
|
|
9183
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;
|
|
9184
9191
|
} | undefined;
|
|
9192
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
9185
9193
|
}, {
|
|
9186
9194
|
allGames?: boolean | undefined;
|
|
9187
9195
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -9209,6 +9217,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9209
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;
|
|
9210
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;
|
|
9211
9219
|
} | undefined;
|
|
9220
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
9212
9221
|
}>>;
|
|
9213
9222
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
9214
9223
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -11777,6 +11786,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11777
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;
|
|
11778
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;
|
|
11779
11788
|
}>>;
|
|
11789
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
11780
11790
|
}, "strip", z.ZodTypeAny, {
|
|
11781
11791
|
allGames?: boolean | undefined;
|
|
11782
11792
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -11804,6 +11814,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11804
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;
|
|
11805
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;
|
|
11806
11816
|
} | undefined;
|
|
11817
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
11807
11818
|
}, {
|
|
11808
11819
|
allGames?: boolean | undefined;
|
|
11809
11820
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -11831,6 +11842,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11831
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;
|
|
11832
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;
|
|
11833
11844
|
} | undefined;
|
|
11845
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
11834
11846
|
}>>;
|
|
11835
11847
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
11836
11848
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -14484,6 +14496,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
14484
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;
|
|
14485
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;
|
|
14486
14498
|
}>>;
|
|
14499
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
14487
14500
|
}, "strip", z.ZodTypeAny, {
|
|
14488
14501
|
allGames?: boolean | undefined;
|
|
14489
14502
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -14511,6 +14524,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
14511
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;
|
|
14512
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;
|
|
14513
14526
|
} | undefined;
|
|
14527
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
14514
14528
|
}, {
|
|
14515
14529
|
allGames?: boolean | undefined;
|
|
14516
14530
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -14538,6 +14552,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
14538
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;
|
|
14539
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;
|
|
14540
14554
|
} | undefined;
|
|
14555
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
14541
14556
|
}>>;
|
|
14542
14557
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
14543
14558
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -17162,6 +17177,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
17162
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;
|
|
17163
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;
|
|
17164
17179
|
}>>;
|
|
17180
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
17165
17181
|
}, "strip", z.ZodTypeAny, {
|
|
17166
17182
|
allGames?: boolean | undefined;
|
|
17167
17183
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -17189,6 +17205,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
17189
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;
|
|
17190
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;
|
|
17191
17207
|
} | undefined;
|
|
17208
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
17192
17209
|
}, {
|
|
17193
17210
|
allGames?: boolean | undefined;
|
|
17194
17211
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -17216,6 +17233,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
17216
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;
|
|
17217
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;
|
|
17218
17235
|
} | undefined;
|
|
17236
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
17219
17237
|
}>>;
|
|
17220
17238
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
17221
17239
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -19822,6 +19840,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
19822
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;
|
|
19823
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;
|
|
19824
19842
|
}>>;
|
|
19843
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
19825
19844
|
}, "strip", z.ZodTypeAny, {
|
|
19826
19845
|
allGames?: boolean | undefined;
|
|
19827
19846
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -19849,6 +19868,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
19849
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;
|
|
19850
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;
|
|
19851
19870
|
} | undefined;
|
|
19871
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
19852
19872
|
}, {
|
|
19853
19873
|
allGames?: boolean | undefined;
|
|
19854
19874
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -19876,6 +19896,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
19876
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;
|
|
19877
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;
|
|
19878
19898
|
} | undefined;
|
|
19899
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
19879
19900
|
}>>;
|
|
19880
19901
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
19881
19902
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -22395,6 +22416,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22395
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;
|
|
22396
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;
|
|
22397
22418
|
}>>;
|
|
22419
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
22398
22420
|
}, "strip", z.ZodTypeAny, {
|
|
22399
22421
|
allGames?: boolean | undefined;
|
|
22400
22422
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -22422,6 +22444,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22422
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;
|
|
22423
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;
|
|
22424
22446
|
} | undefined;
|
|
22447
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
22425
22448
|
}, {
|
|
22426
22449
|
allGames?: boolean | undefined;
|
|
22427
22450
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -22449,6 +22472,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22449
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;
|
|
22450
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;
|
|
22451
22474
|
} | undefined;
|
|
22475
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
22452
22476
|
}>>;
|
|
22453
22477
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
22454
22478
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -24995,6 +25019,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24995
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;
|
|
24996
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;
|
|
24997
25021
|
}>>;
|
|
25022
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
24998
25023
|
}, "strip", z.ZodTypeAny, {
|
|
24999
25024
|
allGames?: boolean | undefined;
|
|
25000
25025
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -25022,6 +25047,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
25022
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;
|
|
25023
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;
|
|
25024
25049
|
} | undefined;
|
|
25050
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
25025
25051
|
}, {
|
|
25026
25052
|
allGames?: boolean | undefined;
|
|
25027
25053
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -25049,6 +25075,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
25049
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;
|
|
25050
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;
|
|
25051
25077
|
} | undefined;
|
|
25078
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
25052
25079
|
}>>;
|
|
25053
25080
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
25054
25081
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -27616,6 +27643,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27616
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;
|
|
27617
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;
|
|
27618
27645
|
}>>;
|
|
27646
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
27619
27647
|
}, "strip", z.ZodTypeAny, {
|
|
27620
27648
|
allGames?: boolean | undefined;
|
|
27621
27649
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -27643,6 +27671,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27643
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;
|
|
27644
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;
|
|
27645
27673
|
} | undefined;
|
|
27674
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
27646
27675
|
}, {
|
|
27647
27676
|
allGames?: boolean | undefined;
|
|
27648
27677
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -27670,6 +27699,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27670
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;
|
|
27671
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;
|
|
27672
27701
|
} | undefined;
|
|
27702
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
27673
27703
|
}>>;
|
|
27674
27704
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
27675
27705
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -30322,6 +30352,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
30322
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;
|
|
30323
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;
|
|
30324
30354
|
}>>;
|
|
30355
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
30325
30356
|
}, "strip", z.ZodTypeAny, {
|
|
30326
30357
|
allGames?: boolean | undefined;
|
|
30327
30358
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -30349,6 +30380,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
30349
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;
|
|
30350
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;
|
|
30351
30382
|
} | undefined;
|
|
30383
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
30352
30384
|
}, {
|
|
30353
30385
|
allGames?: boolean | undefined;
|
|
30354
30386
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -30376,6 +30408,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
30376
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;
|
|
30377
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;
|
|
30378
30410
|
} | undefined;
|
|
30411
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
30379
30412
|
}>>;
|
|
30380
30413
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
30381
30414
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -32999,6 +33032,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
32999
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;
|
|
33000
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;
|
|
33001
33034
|
}>>;
|
|
33035
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
33002
33036
|
}, "strip", z.ZodTypeAny, {
|
|
33003
33037
|
allGames?: boolean | undefined;
|
|
33004
33038
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -33026,6 +33060,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
33026
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;
|
|
33027
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;
|
|
33028
33062
|
} | undefined;
|
|
33063
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
33029
33064
|
}, {
|
|
33030
33065
|
allGames?: boolean | undefined;
|
|
33031
33066
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -33053,6 +33088,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
33053
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;
|
|
33054
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;
|
|
33055
33090
|
} | undefined;
|
|
33091
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
33056
33092
|
}>>;
|
|
33057
33093
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
33058
33094
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -35658,6 +35694,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
35658
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;
|
|
35659
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;
|
|
35660
35696
|
}>>;
|
|
35697
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
35661
35698
|
}, "strip", z.ZodTypeAny, {
|
|
35662
35699
|
allGames?: boolean | undefined;
|
|
35663
35700
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -35685,6 +35722,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
35685
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;
|
|
35686
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;
|
|
35687
35724
|
} | undefined;
|
|
35725
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
35688
35726
|
}, {
|
|
35689
35727
|
allGames?: boolean | undefined;
|
|
35690
35728
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -35712,6 +35750,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
35712
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;
|
|
35713
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;
|
|
35714
35752
|
} | undefined;
|
|
35753
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
35715
35754
|
}>>;
|
|
35716
35755
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
35717
35756
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -38281,6 +38320,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38281
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;
|
|
38282
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;
|
|
38283
38322
|
}>>;
|
|
38323
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
38284
38324
|
}, "strip", z.ZodTypeAny, {
|
|
38285
38325
|
allGames?: boolean | undefined;
|
|
38286
38326
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -38308,6 +38348,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38308
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;
|
|
38309
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;
|
|
38310
38350
|
} | undefined;
|
|
38351
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
38311
38352
|
}, {
|
|
38312
38353
|
allGames?: boolean | undefined;
|
|
38313
38354
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -38335,6 +38376,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38335
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;
|
|
38336
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;
|
|
38337
38378
|
} | undefined;
|
|
38379
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
38338
38380
|
}>>;
|
|
38339
38381
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
38340
38382
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -40881,6 +40923,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40881
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;
|
|
40882
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;
|
|
40883
40925
|
}>>;
|
|
40926
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
40884
40927
|
}, "strip", z.ZodTypeAny, {
|
|
40885
40928
|
allGames?: boolean | undefined;
|
|
40886
40929
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -40908,6 +40951,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40908
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;
|
|
40909
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;
|
|
40910
40953
|
} | undefined;
|
|
40954
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
40911
40955
|
}, {
|
|
40912
40956
|
allGames?: boolean | undefined;
|
|
40913
40957
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -40935,6 +40979,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40935
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;
|
|
40936
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;
|
|
40937
40981
|
} | undefined;
|
|
40982
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
40938
40983
|
}>>;
|
|
40939
40984
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
40940
40985
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -43502,6 +43547,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43502
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;
|
|
43503
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;
|
|
43504
43549
|
}>>;
|
|
43550
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
43505
43551
|
}, "strip", z.ZodTypeAny, {
|
|
43506
43552
|
allGames?: boolean | undefined;
|
|
43507
43553
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -43529,6 +43575,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43529
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;
|
|
43530
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;
|
|
43531
43577
|
} | undefined;
|
|
43578
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
43532
43579
|
}, {
|
|
43533
43580
|
allGames?: boolean | undefined;
|
|
43534
43581
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -43556,6 +43603,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43556
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;
|
|
43557
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;
|
|
43558
43605
|
} | undefined;
|
|
43606
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
43559
43607
|
}>>;
|
|
43560
43608
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
43561
43609
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -46208,6 +46256,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46208
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;
|
|
46209
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;
|
|
46210
46258
|
}>>;
|
|
46259
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
46211
46260
|
}, "strip", z.ZodTypeAny, {
|
|
46212
46261
|
allGames?: boolean | undefined;
|
|
46213
46262
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -46235,6 +46284,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46235
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;
|
|
46236
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;
|
|
46237
46286
|
} | undefined;
|
|
46287
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
46238
46288
|
}, {
|
|
46239
46289
|
allGames?: boolean | undefined;
|
|
46240
46290
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -46262,6 +46312,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46262
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;
|
|
46263
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;
|
|
46264
46314
|
} | undefined;
|
|
46315
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
46265
46316
|
}>>;
|
|
46266
46317
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
46267
46318
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -48885,6 +48936,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48885
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;
|
|
48886
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;
|
|
48887
48938
|
}>>;
|
|
48939
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
48888
48940
|
}, "strip", z.ZodTypeAny, {
|
|
48889
48941
|
allGames?: boolean | undefined;
|
|
48890
48942
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -48912,6 +48964,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48912
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;
|
|
48913
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;
|
|
48914
48966
|
} | undefined;
|
|
48967
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
48915
48968
|
}, {
|
|
48916
48969
|
allGames?: boolean | undefined;
|
|
48917
48970
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -48939,6 +48992,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48939
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;
|
|
48940
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;
|
|
48941
48994
|
} | undefined;
|
|
48995
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
48942
48996
|
}>>;
|
|
48943
48997
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
48944
48998
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -51544,6 +51598,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
51544
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;
|
|
51545
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;
|
|
51546
51600
|
}>>;
|
|
51601
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
51547
51602
|
}, "strip", z.ZodTypeAny, {
|
|
51548
51603
|
allGames?: boolean | undefined;
|
|
51549
51604
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -51571,6 +51626,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
51571
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;
|
|
51572
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;
|
|
51573
51628
|
} | undefined;
|
|
51629
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
51574
51630
|
}, {
|
|
51575
51631
|
allGames?: boolean | undefined;
|
|
51576
51632
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -51598,6 +51654,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
51598
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;
|
|
51599
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;
|
|
51600
51656
|
} | undefined;
|
|
51657
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
51601
51658
|
}>>;
|
|
51602
51659
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
51603
51660
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -53048,6 +53105,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
53048
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;
|
|
53049
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;
|
|
53050
53107
|
}>>;
|
|
53108
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
53051
53109
|
}, "strip", z.ZodTypeAny, {
|
|
53052
53110
|
allGames?: boolean | undefined;
|
|
53053
53111
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -53075,6 +53133,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
53075
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;
|
|
53076
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;
|
|
53077
53135
|
} | undefined;
|
|
53136
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
53078
53137
|
}, {
|
|
53079
53138
|
allGames?: boolean | undefined;
|
|
53080
53139
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -53102,6 +53161,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
53102
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;
|
|
53103
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;
|
|
53104
53163
|
} | undefined;
|
|
53164
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
53105
53165
|
}>>;
|
|
53106
53166
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
53107
53167
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|