rategame-shared 1.1.273 → 1.1.274
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 +380 -0
- package/dist/schemas/game.d.ts +1520 -0
- package/dist/schemas/list.d.ts +380 -0
- package/dist/schemas/moderation.d.ts +304 -0
- package/dist/schemas/rating.d.ts +228 -0
- package/dist/schemas/stadium.d.ts +304 -0
- package/dist/schemas/user.d.ts +1034 -725
- package/dist/schemas/user.js +24 -0
- package/dist/schemas/userEvent.d.ts +228 -0
- package/dist/schemas/voting.d.ts +228 -0
- package/package.json +1 -1
|
@@ -906,14 +906,90 @@ export declare const stadiumRatingSchema: z.ZodObject<{
|
|
|
906
906
|
allGames: z.ZodOptional<z.ZodBoolean>;
|
|
907
907
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
908
908
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
909
|
+
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
910
|
+
leaderboardChanges: z.ZodOptional<z.ZodBoolean>;
|
|
911
|
+
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
912
|
+
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
913
|
+
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
914
|
+
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
915
|
+
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
916
|
+
eventLikes: z.ZodOptional<z.ZodBoolean>;
|
|
917
|
+
commentLikes: z.ZodOptional<z.ZodBoolean>;
|
|
918
|
+
trendingGames: z.ZodOptional<z.ZodBoolean>;
|
|
919
|
+
gameChanges: z.ZodOptional<z.ZodObject<{
|
|
920
|
+
topRatedGameChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
921
|
+
mostRatedGameChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
922
|
+
worstRatedGameChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
923
|
+
}, "strip", z.ZodTypeAny, {
|
|
924
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
925
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
926
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
927
|
+
}, {
|
|
928
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
929
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
930
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
931
|
+
}>>;
|
|
932
|
+
gameTopLists: z.ZodOptional<z.ZodObject<{
|
|
933
|
+
topRated: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
934
|
+
mostRated: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
935
|
+
worstRated: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
936
|
+
}, "strip", z.ZodTypeAny, {
|
|
937
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
938
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
939
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
940
|
+
}, {
|
|
941
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
942
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
943
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
944
|
+
}>>;
|
|
909
945
|
}, "strip", z.ZodTypeAny, {
|
|
910
946
|
allGames?: boolean | undefined;
|
|
911
947
|
favoriteLeagues?: boolean | undefined;
|
|
912
948
|
favoriteTeams?: boolean | undefined;
|
|
949
|
+
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
950
|
+
leaderboardChanges?: boolean | undefined;
|
|
951
|
+
chatReplies?: boolean | undefined;
|
|
952
|
+
repliesToRatings?: boolean | undefined;
|
|
953
|
+
repliesToComments?: boolean | undefined;
|
|
954
|
+
ratingLikes?: boolean | undefined;
|
|
955
|
+
listLikes?: boolean | undefined;
|
|
956
|
+
eventLikes?: boolean | undefined;
|
|
957
|
+
commentLikes?: boolean | undefined;
|
|
958
|
+
trendingGames?: boolean | undefined;
|
|
959
|
+
gameChanges?: {
|
|
960
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
961
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
962
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
963
|
+
} | undefined;
|
|
964
|
+
gameTopLists?: {
|
|
965
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
966
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
967
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
968
|
+
} | undefined;
|
|
913
969
|
}, {
|
|
914
970
|
allGames?: boolean | undefined;
|
|
915
971
|
favoriteLeagues?: boolean | undefined;
|
|
916
972
|
favoriteTeams?: boolean | undefined;
|
|
973
|
+
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
974
|
+
leaderboardChanges?: boolean | undefined;
|
|
975
|
+
chatReplies?: boolean | undefined;
|
|
976
|
+
repliesToRatings?: boolean | undefined;
|
|
977
|
+
repliesToComments?: boolean | undefined;
|
|
978
|
+
ratingLikes?: boolean | undefined;
|
|
979
|
+
listLikes?: boolean | undefined;
|
|
980
|
+
eventLikes?: boolean | undefined;
|
|
981
|
+
commentLikes?: boolean | undefined;
|
|
982
|
+
trendingGames?: boolean | undefined;
|
|
983
|
+
gameChanges?: {
|
|
984
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
985
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
986
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
987
|
+
} | undefined;
|
|
988
|
+
gameTopLists?: {
|
|
989
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
990
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
991
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
992
|
+
} | undefined;
|
|
917
993
|
}>>;
|
|
918
994
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
919
995
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -2361,14 +2437,90 @@ export declare const createStadiumRatingSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
2361
2437
|
allGames: z.ZodOptional<z.ZodBoolean>;
|
|
2362
2438
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
2363
2439
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
2440
|
+
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
2441
|
+
leaderboardChanges: z.ZodOptional<z.ZodBoolean>;
|
|
2442
|
+
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
2443
|
+
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
2444
|
+
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
2445
|
+
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
2446
|
+
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
2447
|
+
eventLikes: z.ZodOptional<z.ZodBoolean>;
|
|
2448
|
+
commentLikes: z.ZodOptional<z.ZodBoolean>;
|
|
2449
|
+
trendingGames: z.ZodOptional<z.ZodBoolean>;
|
|
2450
|
+
gameChanges: z.ZodOptional<z.ZodObject<{
|
|
2451
|
+
topRatedGameChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
2452
|
+
mostRatedGameChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
2453
|
+
worstRatedGameChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
2454
|
+
}, "strip", z.ZodTypeAny, {
|
|
2455
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2456
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2457
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2458
|
+
}, {
|
|
2459
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2460
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2461
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2462
|
+
}>>;
|
|
2463
|
+
gameTopLists: z.ZodOptional<z.ZodObject<{
|
|
2464
|
+
topRated: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
2465
|
+
mostRated: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
2466
|
+
worstRated: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
2467
|
+
}, "strip", z.ZodTypeAny, {
|
|
2468
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2469
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2470
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2471
|
+
}, {
|
|
2472
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2473
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2474
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2475
|
+
}>>;
|
|
2364
2476
|
}, "strip", z.ZodTypeAny, {
|
|
2365
2477
|
allGames?: boolean | undefined;
|
|
2366
2478
|
favoriteLeagues?: boolean | undefined;
|
|
2367
2479
|
favoriteTeams?: boolean | undefined;
|
|
2480
|
+
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
2481
|
+
leaderboardChanges?: boolean | undefined;
|
|
2482
|
+
chatReplies?: boolean | undefined;
|
|
2483
|
+
repliesToRatings?: boolean | undefined;
|
|
2484
|
+
repliesToComments?: boolean | undefined;
|
|
2485
|
+
ratingLikes?: boolean | undefined;
|
|
2486
|
+
listLikes?: boolean | undefined;
|
|
2487
|
+
eventLikes?: boolean | undefined;
|
|
2488
|
+
commentLikes?: boolean | undefined;
|
|
2489
|
+
trendingGames?: boolean | undefined;
|
|
2490
|
+
gameChanges?: {
|
|
2491
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2492
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2493
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2494
|
+
} | undefined;
|
|
2495
|
+
gameTopLists?: {
|
|
2496
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2497
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2498
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2499
|
+
} | undefined;
|
|
2368
2500
|
}, {
|
|
2369
2501
|
allGames?: boolean | undefined;
|
|
2370
2502
|
favoriteLeagues?: boolean | undefined;
|
|
2371
2503
|
favoriteTeams?: boolean | undefined;
|
|
2504
|
+
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
2505
|
+
leaderboardChanges?: boolean | undefined;
|
|
2506
|
+
chatReplies?: boolean | undefined;
|
|
2507
|
+
repliesToRatings?: boolean | undefined;
|
|
2508
|
+
repliesToComments?: boolean | undefined;
|
|
2509
|
+
ratingLikes?: boolean | undefined;
|
|
2510
|
+
listLikes?: boolean | undefined;
|
|
2511
|
+
eventLikes?: boolean | undefined;
|
|
2512
|
+
commentLikes?: boolean | undefined;
|
|
2513
|
+
trendingGames?: boolean | undefined;
|
|
2514
|
+
gameChanges?: {
|
|
2515
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2516
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2517
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2518
|
+
} | undefined;
|
|
2519
|
+
gameTopLists?: {
|
|
2520
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2521
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2522
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2523
|
+
} | undefined;
|
|
2372
2524
|
}>>;
|
|
2373
2525
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2374
2526
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -3870,14 +4022,90 @@ export declare const stadiumThreadCommentSchema: z.ZodObject<{
|
|
|
3870
4022
|
allGames: z.ZodOptional<z.ZodBoolean>;
|
|
3871
4023
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
3872
4024
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
4025
|
+
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
4026
|
+
leaderboardChanges: z.ZodOptional<z.ZodBoolean>;
|
|
4027
|
+
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
4028
|
+
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
4029
|
+
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
4030
|
+
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
4031
|
+
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
4032
|
+
eventLikes: z.ZodOptional<z.ZodBoolean>;
|
|
4033
|
+
commentLikes: z.ZodOptional<z.ZodBoolean>;
|
|
4034
|
+
trendingGames: z.ZodOptional<z.ZodBoolean>;
|
|
4035
|
+
gameChanges: z.ZodOptional<z.ZodObject<{
|
|
4036
|
+
topRatedGameChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
4037
|
+
mostRatedGameChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
4038
|
+
worstRatedGameChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
4039
|
+
}, "strip", z.ZodTypeAny, {
|
|
4040
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4041
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4042
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4043
|
+
}, {
|
|
4044
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4045
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4046
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4047
|
+
}>>;
|
|
4048
|
+
gameTopLists: z.ZodOptional<z.ZodObject<{
|
|
4049
|
+
topRated: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
4050
|
+
mostRated: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
4051
|
+
worstRated: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
4052
|
+
}, "strip", z.ZodTypeAny, {
|
|
4053
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4054
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4055
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4056
|
+
}, {
|
|
4057
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4058
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4059
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4060
|
+
}>>;
|
|
3873
4061
|
}, "strip", z.ZodTypeAny, {
|
|
3874
4062
|
allGames?: boolean | undefined;
|
|
3875
4063
|
favoriteLeagues?: boolean | undefined;
|
|
3876
4064
|
favoriteTeams?: boolean | undefined;
|
|
4065
|
+
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
4066
|
+
leaderboardChanges?: boolean | undefined;
|
|
4067
|
+
chatReplies?: boolean | undefined;
|
|
4068
|
+
repliesToRatings?: boolean | undefined;
|
|
4069
|
+
repliesToComments?: boolean | undefined;
|
|
4070
|
+
ratingLikes?: boolean | undefined;
|
|
4071
|
+
listLikes?: boolean | undefined;
|
|
4072
|
+
eventLikes?: boolean | undefined;
|
|
4073
|
+
commentLikes?: boolean | undefined;
|
|
4074
|
+
trendingGames?: boolean | undefined;
|
|
4075
|
+
gameChanges?: {
|
|
4076
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4077
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4078
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4079
|
+
} | undefined;
|
|
4080
|
+
gameTopLists?: {
|
|
4081
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4082
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4083
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4084
|
+
} | undefined;
|
|
3877
4085
|
}, {
|
|
3878
4086
|
allGames?: boolean | undefined;
|
|
3879
4087
|
favoriteLeagues?: boolean | undefined;
|
|
3880
4088
|
favoriteTeams?: boolean | undefined;
|
|
4089
|
+
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
4090
|
+
leaderboardChanges?: boolean | undefined;
|
|
4091
|
+
chatReplies?: boolean | undefined;
|
|
4092
|
+
repliesToRatings?: boolean | undefined;
|
|
4093
|
+
repliesToComments?: boolean | undefined;
|
|
4094
|
+
ratingLikes?: boolean | undefined;
|
|
4095
|
+
listLikes?: boolean | undefined;
|
|
4096
|
+
eventLikes?: boolean | undefined;
|
|
4097
|
+
commentLikes?: boolean | undefined;
|
|
4098
|
+
trendingGames?: boolean | undefined;
|
|
4099
|
+
gameChanges?: {
|
|
4100
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4101
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4102
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4103
|
+
} | undefined;
|
|
4104
|
+
gameTopLists?: {
|
|
4105
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4106
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4107
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
4108
|
+
} | undefined;
|
|
3881
4109
|
}>>;
|
|
3882
4110
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3883
4111
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -4807,14 +5035,90 @@ export declare const stadiumThreadCommentSchema: z.ZodObject<{
|
|
|
4807
5035
|
allGames: z.ZodOptional<z.ZodBoolean>;
|
|
4808
5036
|
favoriteLeagues: z.ZodOptional<z.ZodBoolean>;
|
|
4809
5037
|
favoriteTeams: z.ZodOptional<z.ZodBoolean>;
|
|
5038
|
+
lastWeekScoreLeaderboard: z.ZodOptional<z.ZodBoolean>;
|
|
5039
|
+
leaderboardChanges: z.ZodOptional<z.ZodBoolean>;
|
|
5040
|
+
chatReplies: z.ZodOptional<z.ZodBoolean>;
|
|
5041
|
+
repliesToRatings: z.ZodOptional<z.ZodBoolean>;
|
|
5042
|
+
repliesToComments: z.ZodOptional<z.ZodBoolean>;
|
|
5043
|
+
ratingLikes: z.ZodOptional<z.ZodBoolean>;
|
|
5044
|
+
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
5045
|
+
eventLikes: z.ZodOptional<z.ZodBoolean>;
|
|
5046
|
+
commentLikes: z.ZodOptional<z.ZodBoolean>;
|
|
5047
|
+
trendingGames: z.ZodOptional<z.ZodBoolean>;
|
|
5048
|
+
gameChanges: z.ZodOptional<z.ZodObject<{
|
|
5049
|
+
topRatedGameChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
5050
|
+
mostRatedGameChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
5051
|
+
worstRatedGameChanges: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
5052
|
+
}, "strip", z.ZodTypeAny, {
|
|
5053
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
5054
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
5055
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
5056
|
+
}, {
|
|
5057
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
5058
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
5059
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
5060
|
+
}>>;
|
|
5061
|
+
gameTopLists: z.ZodOptional<z.ZodObject<{
|
|
5062
|
+
topRated: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
5063
|
+
mostRated: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
5064
|
+
worstRated: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
5065
|
+
}, "strip", z.ZodTypeAny, {
|
|
5066
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
5067
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
5068
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
5069
|
+
}, {
|
|
5070
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
5071
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
5072
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
5073
|
+
}>>;
|
|
4810
5074
|
}, "strip", z.ZodTypeAny, {
|
|
4811
5075
|
allGames?: boolean | undefined;
|
|
4812
5076
|
favoriteLeagues?: boolean | undefined;
|
|
4813
5077
|
favoriteTeams?: boolean | undefined;
|
|
5078
|
+
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
5079
|
+
leaderboardChanges?: boolean | undefined;
|
|
5080
|
+
chatReplies?: boolean | undefined;
|
|
5081
|
+
repliesToRatings?: boolean | undefined;
|
|
5082
|
+
repliesToComments?: boolean | undefined;
|
|
5083
|
+
ratingLikes?: boolean | undefined;
|
|
5084
|
+
listLikes?: boolean | undefined;
|
|
5085
|
+
eventLikes?: boolean | undefined;
|
|
5086
|
+
commentLikes?: boolean | undefined;
|
|
5087
|
+
trendingGames?: boolean | undefined;
|
|
5088
|
+
gameChanges?: {
|
|
5089
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
5090
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
5091
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
5092
|
+
} | undefined;
|
|
5093
|
+
gameTopLists?: {
|
|
5094
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
5095
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
5096
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
5097
|
+
} | undefined;
|
|
4814
5098
|
}, {
|
|
4815
5099
|
allGames?: boolean | undefined;
|
|
4816
5100
|
favoriteLeagues?: boolean | undefined;
|
|
4817
5101
|
favoriteTeams?: boolean | undefined;
|
|
5102
|
+
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
5103
|
+
leaderboardChanges?: boolean | undefined;
|
|
5104
|
+
chatReplies?: boolean | undefined;
|
|
5105
|
+
repliesToRatings?: boolean | undefined;
|
|
5106
|
+
repliesToComments?: boolean | undefined;
|
|
5107
|
+
ratingLikes?: boolean | undefined;
|
|
5108
|
+
listLikes?: boolean | undefined;
|
|
5109
|
+
eventLikes?: boolean | undefined;
|
|
5110
|
+
commentLikes?: boolean | undefined;
|
|
5111
|
+
trendingGames?: boolean | undefined;
|
|
5112
|
+
gameChanges?: {
|
|
5113
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
5114
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
5115
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
5116
|
+
} | undefined;
|
|
5117
|
+
gameTopLists?: {
|
|
5118
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
5119
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
5120
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
5121
|
+
} | undefined;
|
|
4818
5122
|
}>>;
|
|
4819
5123
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
4820
5124
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|