rategame-shared 1.1.294 → 1.1.296
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 +155 -155
- package/dist/schemas/game.d.ts +623 -623
- package/dist/schemas/list.d.ts +155 -155
- package/dist/schemas/moderation.d.ts +124 -124
- package/dist/schemas/rating.d.ts +96 -96
- package/dist/schemas/sharedTypes.d.ts +1 -1
- package/dist/schemas/sharedTypes.js +1 -0
- package/dist/schemas/stadium.d.ts +127 -127
- package/dist/schemas/stadium.js +1 -1
- package/dist/schemas/user.d.ts +121 -121
- package/dist/schemas/userEvent.d.ts +93 -93
- package/dist/schemas/voting.d.ts +279 -279
- package/package.json +1 -1
package/dist/schemas/rating.d.ts
CHANGED
|
@@ -377,7 +377,7 @@ export declare const searchRatingSchema: import("zod").ZodObject<{
|
|
|
377
377
|
teamId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
378
378
|
round: import("zod").ZodOptional<import("zod").ZodString>;
|
|
379
379
|
league: import("zod").ZodUnion<[import("zod").ZodLiteral<"nba">, import("zod").ZodLiteral<"ncaa">, import("zod").ZodLiteral<"nfl">, import("zod").ZodLiteral<"nhl">, import("zod").ZodLiteral<"mlb">, import("zod").ZodLiteral<"cbb">, import("zod").ZodLiteral<"cfb">, import("zod").ZodLiteral<"epl">, import("zod").ZodLiteral<"mls">, import("zod").ZodLiteral<"wnba">, import("zod").ZodLiteral<"cwc">, import("zod").ZodLiteral<"global">]>;
|
|
380
|
-
createdAt: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>;
|
|
380
|
+
createdAt: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"16hr">, import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>;
|
|
381
381
|
sortBy: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"rating:asc">, import("zod").ZodLiteral<"rating:desc">, import("zod").ZodLiteral<"createdAt:asc">, import("zod").ZodLiteral<"createdAt:desc">, import("zod").ZodLiteral<"userLikes:asc">, import("zod").ZodLiteral<"userLikes:desc">]>>;
|
|
382
382
|
limit: import("zod").ZodOptional<import("zod").ZodString>;
|
|
383
383
|
offset: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -398,7 +398,7 @@ export declare const searchRatingSchema: import("zod").ZodObject<{
|
|
|
398
398
|
round?: string | undefined;
|
|
399
399
|
q?: string | undefined;
|
|
400
400
|
username?: string | undefined;
|
|
401
|
-
createdAt?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
401
|
+
createdAt?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
402
402
|
following?: string | undefined;
|
|
403
403
|
limit?: string | undefined;
|
|
404
404
|
comment?: string | undefined;
|
|
@@ -418,7 +418,7 @@ export declare const searchRatingSchema: import("zod").ZodObject<{
|
|
|
418
418
|
round?: string | undefined;
|
|
419
419
|
q?: string | undefined;
|
|
420
420
|
username?: string | undefined;
|
|
421
|
-
createdAt?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
421
|
+
createdAt?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
422
422
|
following?: string | undefined;
|
|
423
423
|
limit?: string | undefined;
|
|
424
424
|
comment?: string | undefined;
|
|
@@ -1620,30 +1620,30 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
1620
1620
|
commentLikes: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1621
1621
|
trendingGames: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1622
1622
|
gameChanges: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
1623
|
-
topRatedGameChanges: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>>;
|
|
1624
|
-
mostRatedGameChanges: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>>;
|
|
1625
|
-
worstRatedGameChanges: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>>;
|
|
1623
|
+
topRatedGameChanges: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"16hr">, import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>>;
|
|
1624
|
+
mostRatedGameChanges: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"16hr">, import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>>;
|
|
1625
|
+
worstRatedGameChanges: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"16hr">, import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>>;
|
|
1626
1626
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1627
|
-
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1628
|
-
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1629
|
-
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1627
|
+
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1628
|
+
mostRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1629
|
+
worstRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1630
1630
|
}, {
|
|
1631
|
-
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1632
|
-
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1633
|
-
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1631
|
+
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1632
|
+
mostRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1633
|
+
worstRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1634
1634
|
}>>;
|
|
1635
1635
|
gameTopLists: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
1636
|
-
topRated: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>>;
|
|
1637
|
-
mostRated: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>>;
|
|
1638
|
-
worstRated: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>>;
|
|
1636
|
+
topRated: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"16hr">, import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>>;
|
|
1637
|
+
mostRated: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"16hr">, import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>>;
|
|
1638
|
+
worstRated: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"16hr">, import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>>;
|
|
1639
1639
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1640
|
-
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1641
|
-
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1642
|
-
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1640
|
+
topRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1641
|
+
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1642
|
+
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1643
1643
|
}, {
|
|
1644
|
-
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1645
|
-
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1646
|
-
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1644
|
+
topRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1645
|
+
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1646
|
+
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1647
1647
|
}>>;
|
|
1648
1648
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1649
1649
|
allGames?: boolean | undefined;
|
|
@@ -1662,14 +1662,14 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
1662
1662
|
commentLikes?: boolean | undefined;
|
|
1663
1663
|
trendingGames?: boolean | undefined;
|
|
1664
1664
|
gameChanges?: {
|
|
1665
|
-
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1666
|
-
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1667
|
-
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1665
|
+
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1666
|
+
mostRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1667
|
+
worstRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1668
1668
|
} | undefined;
|
|
1669
1669
|
gameTopLists?: {
|
|
1670
|
-
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1671
|
-
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1672
|
-
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1670
|
+
topRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1671
|
+
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1672
|
+
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1673
1673
|
} | undefined;
|
|
1674
1674
|
}, {
|
|
1675
1675
|
allGames?: boolean | undefined;
|
|
@@ -1688,20 +1688,20 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
1688
1688
|
commentLikes?: boolean | undefined;
|
|
1689
1689
|
trendingGames?: boolean | undefined;
|
|
1690
1690
|
gameChanges?: {
|
|
1691
|
-
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1692
|
-
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1693
|
-
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1691
|
+
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1692
|
+
mostRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1693
|
+
worstRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1694
1694
|
} | undefined;
|
|
1695
1695
|
gameTopLists?: {
|
|
1696
|
-
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1697
|
-
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1698
|
-
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1696
|
+
topRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1697
|
+
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1698
|
+
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1699
1699
|
} | undefined;
|
|
1700
1700
|
}>>;
|
|
1701
1701
|
spoilersEnabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1702
1702
|
viewedChangelogs: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodBoolean>>;
|
|
1703
1703
|
lastSelectedLeague: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"nba">, import("zod").ZodLiteral<"ncaa">, import("zod").ZodLiteral<"nfl">, import("zod").ZodLiteral<"nhl">, import("zod").ZodLiteral<"mlb">, import("zod").ZodLiteral<"cbb">, import("zod").ZodLiteral<"cfb">, import("zod").ZodLiteral<"epl">, import("zod").ZodLiteral<"mls">, import("zod").ZodLiteral<"wnba">, import("zod").ZodLiteral<"cwc">, import("zod").ZodLiteral<"global">]>>;
|
|
1704
|
-
lastSelectedFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>;
|
|
1704
|
+
lastSelectedFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"16hr">, import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>;
|
|
1705
1705
|
lastSelectedRatingFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"rating:asc">, import("zod").ZodLiteral<"rating:desc">, import("zod").ZodLiteral<"createdAt:asc">, import("zod").ZodLiteral<"createdAt:desc">, import("zod").ZodLiteral<"userLikes:asc">, import("zod").ZodLiteral<"userLikes:desc">]>>;
|
|
1706
1706
|
lastSelectedGamesFeedType: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"newest">, import("zod").ZodLiteral<"forYou">]>>;
|
|
1707
1707
|
lastSelectedCombinedFeedType: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"newest">, import("zod").ZodLiteral<"following">]>>;
|
|
@@ -2642,30 +2642,30 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
2642
2642
|
commentLikes: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2643
2643
|
trendingGames: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2644
2644
|
gameChanges: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
2645
|
-
topRatedGameChanges: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>>;
|
|
2646
|
-
mostRatedGameChanges: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>>;
|
|
2647
|
-
worstRatedGameChanges: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>>;
|
|
2645
|
+
topRatedGameChanges: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"16hr">, import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>>;
|
|
2646
|
+
mostRatedGameChanges: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"16hr">, import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>>;
|
|
2647
|
+
worstRatedGameChanges: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"16hr">, import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>>;
|
|
2648
2648
|
}, "strip", import("zod").ZodTypeAny, {
|
|
2649
|
-
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2650
|
-
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2651
|
-
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2649
|
+
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2650
|
+
mostRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2651
|
+
worstRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2652
2652
|
}, {
|
|
2653
|
-
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2654
|
-
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2655
|
-
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2653
|
+
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2654
|
+
mostRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2655
|
+
worstRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2656
2656
|
}>>;
|
|
2657
2657
|
gameTopLists: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
2658
|
-
topRated: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>>;
|
|
2659
|
-
mostRated: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>>;
|
|
2660
|
-
worstRated: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>>;
|
|
2658
|
+
topRated: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"16hr">, import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>>;
|
|
2659
|
+
mostRated: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"16hr">, import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>>;
|
|
2660
|
+
worstRated: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"16hr">, import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>>;
|
|
2661
2661
|
}, "strip", import("zod").ZodTypeAny, {
|
|
2662
|
-
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2663
|
-
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2664
|
-
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2662
|
+
topRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2663
|
+
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2664
|
+
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2665
2665
|
}, {
|
|
2666
|
-
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2667
|
-
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2668
|
-
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2666
|
+
topRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2667
|
+
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2668
|
+
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2669
2669
|
}>>;
|
|
2670
2670
|
}, "strip", import("zod").ZodTypeAny, {
|
|
2671
2671
|
allGames?: boolean | undefined;
|
|
@@ -2684,14 +2684,14 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
2684
2684
|
commentLikes?: boolean | undefined;
|
|
2685
2685
|
trendingGames?: boolean | undefined;
|
|
2686
2686
|
gameChanges?: {
|
|
2687
|
-
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2688
|
-
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2689
|
-
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2687
|
+
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2688
|
+
mostRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2689
|
+
worstRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2690
2690
|
} | undefined;
|
|
2691
2691
|
gameTopLists?: {
|
|
2692
|
-
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2693
|
-
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2694
|
-
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2692
|
+
topRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2693
|
+
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2694
|
+
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2695
2695
|
} | undefined;
|
|
2696
2696
|
}, {
|
|
2697
2697
|
allGames?: boolean | undefined;
|
|
@@ -2710,20 +2710,20 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
2710
2710
|
commentLikes?: boolean | undefined;
|
|
2711
2711
|
trendingGames?: boolean | undefined;
|
|
2712
2712
|
gameChanges?: {
|
|
2713
|
-
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2714
|
-
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2715
|
-
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2713
|
+
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2714
|
+
mostRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2715
|
+
worstRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2716
2716
|
} | undefined;
|
|
2717
2717
|
gameTopLists?: {
|
|
2718
|
-
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2719
|
-
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2720
|
-
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2718
|
+
topRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2719
|
+
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2720
|
+
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2721
2721
|
} | undefined;
|
|
2722
2722
|
}>>;
|
|
2723
2723
|
spoilersEnabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2724
2724
|
viewedChangelogs: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodBoolean>>;
|
|
2725
2725
|
lastSelectedLeague: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"nba">, import("zod").ZodLiteral<"ncaa">, import("zod").ZodLiteral<"nfl">, import("zod").ZodLiteral<"nhl">, import("zod").ZodLiteral<"mlb">, import("zod").ZodLiteral<"cbb">, import("zod").ZodLiteral<"cfb">, import("zod").ZodLiteral<"epl">, import("zod").ZodLiteral<"mls">, import("zod").ZodLiteral<"wnba">, import("zod").ZodLiteral<"cwc">, import("zod").ZodLiteral<"global">]>>;
|
|
2726
|
-
lastSelectedFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>;
|
|
2726
|
+
lastSelectedFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"16hr">, import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>;
|
|
2727
2727
|
lastSelectedRatingFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"rating:asc">, import("zod").ZodLiteral<"rating:desc">, import("zod").ZodLiteral<"createdAt:asc">, import("zod").ZodLiteral<"createdAt:desc">, import("zod").ZodLiteral<"userLikes:asc">, import("zod").ZodLiteral<"userLikes:desc">]>>;
|
|
2728
2728
|
lastSelectedGamesFeedType: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"newest">, import("zod").ZodLiteral<"forYou">]>>;
|
|
2729
2729
|
lastSelectedCombinedFeedType: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"newest">, import("zod").ZodLiteral<"following">]>>;
|
|
@@ -3735,30 +3735,30 @@ export declare const threadCommentLikeSchema: import("zod").ZodObject<{
|
|
|
3735
3735
|
commentLikes: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
3736
3736
|
trendingGames: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
3737
3737
|
gameChanges: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
3738
|
-
topRatedGameChanges: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>>;
|
|
3739
|
-
mostRatedGameChanges: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>>;
|
|
3740
|
-
worstRatedGameChanges: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>>;
|
|
3738
|
+
topRatedGameChanges: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"16hr">, import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>>;
|
|
3739
|
+
mostRatedGameChanges: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"16hr">, import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>>;
|
|
3740
|
+
worstRatedGameChanges: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"16hr">, import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>>;
|
|
3741
3741
|
}, "strip", import("zod").ZodTypeAny, {
|
|
3742
|
-
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3743
|
-
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3744
|
-
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3742
|
+
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3743
|
+
mostRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3744
|
+
worstRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3745
3745
|
}, {
|
|
3746
|
-
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3747
|
-
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3748
|
-
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3746
|
+
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3747
|
+
mostRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3748
|
+
worstRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3749
3749
|
}>>;
|
|
3750
3750
|
gameTopLists: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
3751
|
-
topRated: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>>;
|
|
3752
|
-
mostRated: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>>;
|
|
3753
|
-
worstRated: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>>;
|
|
3751
|
+
topRated: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"16hr">, import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>>;
|
|
3752
|
+
mostRated: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"16hr">, import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>>;
|
|
3753
|
+
worstRated: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"16hr">, import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>>;
|
|
3754
3754
|
}, "strip", import("zod").ZodTypeAny, {
|
|
3755
|
-
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3756
|
-
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3757
|
-
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3755
|
+
topRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3756
|
+
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3757
|
+
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3758
3758
|
}, {
|
|
3759
|
-
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3760
|
-
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3761
|
-
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3759
|
+
topRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3760
|
+
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3761
|
+
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3762
3762
|
}>>;
|
|
3763
3763
|
}, "strip", import("zod").ZodTypeAny, {
|
|
3764
3764
|
allGames?: boolean | undefined;
|
|
@@ -3777,14 +3777,14 @@ export declare const threadCommentLikeSchema: import("zod").ZodObject<{
|
|
|
3777
3777
|
commentLikes?: boolean | undefined;
|
|
3778
3778
|
trendingGames?: boolean | undefined;
|
|
3779
3779
|
gameChanges?: {
|
|
3780
|
-
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3781
|
-
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3782
|
-
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3780
|
+
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3781
|
+
mostRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3782
|
+
worstRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3783
3783
|
} | undefined;
|
|
3784
3784
|
gameTopLists?: {
|
|
3785
|
-
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3786
|
-
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3787
|
-
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3785
|
+
topRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3786
|
+
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3787
|
+
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3788
3788
|
} | undefined;
|
|
3789
3789
|
}, {
|
|
3790
3790
|
allGames?: boolean | undefined;
|
|
@@ -3803,20 +3803,20 @@ export declare const threadCommentLikeSchema: import("zod").ZodObject<{
|
|
|
3803
3803
|
commentLikes?: boolean | undefined;
|
|
3804
3804
|
trendingGames?: boolean | undefined;
|
|
3805
3805
|
gameChanges?: {
|
|
3806
|
-
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3807
|
-
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3808
|
-
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3806
|
+
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3807
|
+
mostRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3808
|
+
worstRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3809
3809
|
} | undefined;
|
|
3810
3810
|
gameTopLists?: {
|
|
3811
|
-
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3812
|
-
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3813
|
-
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3811
|
+
topRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3812
|
+
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3813
|
+
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3814
3814
|
} | undefined;
|
|
3815
3815
|
}>>;
|
|
3816
3816
|
spoilersEnabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
3817
3817
|
viewedChangelogs: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodBoolean>>;
|
|
3818
3818
|
lastSelectedLeague: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"nba">, import("zod").ZodLiteral<"ncaa">, import("zod").ZodLiteral<"nfl">, import("zod").ZodLiteral<"nhl">, import("zod").ZodLiteral<"mlb">, import("zod").ZodLiteral<"cbb">, import("zod").ZodLiteral<"cfb">, import("zod").ZodLiteral<"epl">, import("zod").ZodLiteral<"mls">, import("zod").ZodLiteral<"wnba">, import("zod").ZodLiteral<"cwc">, import("zod").ZodLiteral<"global">]>>;
|
|
3819
|
-
lastSelectedFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>;
|
|
3819
|
+
lastSelectedFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"16hr">, import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>;
|
|
3820
3820
|
lastSelectedRatingFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"rating:asc">, import("zod").ZodLiteral<"rating:desc">, import("zod").ZodLiteral<"createdAt:asc">, import("zod").ZodLiteral<"createdAt:desc">, import("zod").ZodLiteral<"userLikes:asc">, import("zod").ZodLiteral<"userLikes:desc">]>>;
|
|
3821
3821
|
lastSelectedGamesFeedType: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"newest">, import("zod").ZodLiteral<"forYou">]>>;
|
|
3822
3822
|
lastSelectedCombinedFeedType: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"newest">, import("zod").ZodLiteral<"following">]>>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const timeFilterSchema: import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>;
|
|
1
|
+
export declare const timeFilterSchema: import("zod").ZodUnion<[import("zod").ZodLiteral<"16hr">, import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>;
|
|
2
2
|
export declare const calendarTimeFilterSchema: import("zod").ZodUnion<[import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"Last Week">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All Time">]>;
|
|
3
3
|
export declare const ratingSortSchema: import("zod").ZodUnion<[import("zod").ZodLiteral<"rating:asc">, import("zod").ZodLiteral<"rating:desc">, import("zod").ZodLiteral<"createdAt:asc">, import("zod").ZodLiteral<"createdAt:desc">, import("zod").ZodLiteral<"userLikes:asc">, import("zod").ZodLiteral<"userLikes:desc">]>;
|
|
4
4
|
export declare const leagueSlug: import("zod").ZodUnion<[import("zod").ZodLiteral<"nba">, import("zod").ZodLiteral<"ncaa">, import("zod").ZodLiteral<"nfl">, import("zod").ZodLiteral<"nhl">, import("zod").ZodLiteral<"mlb">, import("zod").ZodLiteral<"cbb">, import("zod").ZodLiteral<"cfb">, import("zod").ZodLiteral<"epl">, import("zod").ZodLiteral<"mls">, import("zod").ZodLiteral<"wnba">, import("zod").ZodLiteral<"cwc">, import("zod").ZodLiteral<"global">]>;
|
|
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.seasonGroupingSchema = exports.leagueSlug = exports.ratingSortSchema = exports.calendarTimeFilterSchema = exports.timeFilterSchema = void 0;
|
|
4
4
|
const zod_1 = require("zod");
|
|
5
5
|
exports.timeFilterSchema = (0, zod_1.union)([
|
|
6
|
+
(0, zod_1.literal)("16hr"),
|
|
6
7
|
(0, zod_1.literal)("Today"),
|
|
7
8
|
(0, zod_1.literal)("Last 3 Days"),
|
|
8
9
|
(0, zod_1.literal)("This Week"),
|