rategame-shared 1.1.315 → 1.1.317
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/schemas/chat.d.ts +40 -0
- package/dist/schemas/game.d.ts +160 -0
- package/dist/schemas/list.d.ts +40 -0
- package/dist/schemas/moderation.d.ts +32 -0
- package/dist/schemas/rating.d.ts +24 -0
- package/dist/schemas/stadium.d.ts +32 -0
- package/dist/schemas/user.d.ts +40 -0
- package/dist/schemas/user.js +5 -0
- package/dist/schemas/userEvent.d.ts +24 -0
- package/dist/schemas/voting.d.ts +72 -0
- package/package.json +1 -1
package/dist/schemas/user.d.ts
CHANGED
|
@@ -43,6 +43,7 @@ export declare const oneTimeProgressSchema: z.ZodObject<{
|
|
|
43
43
|
context: z.ZodOptional<z.ZodString>;
|
|
44
44
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
45
45
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
46
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
46
47
|
}, "strip", z.ZodTypeAny, {
|
|
47
48
|
target: number;
|
|
48
49
|
current: number;
|
|
@@ -50,6 +51,7 @@ export declare const oneTimeProgressSchema: z.ZodObject<{
|
|
|
50
51
|
context?: string | undefined;
|
|
51
52
|
achievedAt?: number | undefined;
|
|
52
53
|
seen?: boolean | undefined;
|
|
54
|
+
isOngoing?: boolean | undefined;
|
|
53
55
|
}, {
|
|
54
56
|
target: number;
|
|
55
57
|
current: number;
|
|
@@ -57,6 +59,7 @@ export declare const oneTimeProgressSchema: z.ZodObject<{
|
|
|
57
59
|
context?: string | undefined;
|
|
58
60
|
achievedAt?: number | undefined;
|
|
59
61
|
seen?: boolean | undefined;
|
|
62
|
+
isOngoing?: boolean | undefined;
|
|
60
63
|
}>;
|
|
61
64
|
export declare const achievementSchema: z.ZodObject<{
|
|
62
65
|
id: z.ZodString;
|
|
@@ -129,6 +132,7 @@ export declare const achievementSchema: z.ZodObject<{
|
|
|
129
132
|
context: z.ZodOptional<z.ZodString>;
|
|
130
133
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
131
134
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
135
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
132
136
|
}, "strip", z.ZodTypeAny, {
|
|
133
137
|
target: number;
|
|
134
138
|
current: number;
|
|
@@ -136,6 +140,7 @@ export declare const achievementSchema: z.ZodObject<{
|
|
|
136
140
|
context?: string | undefined;
|
|
137
141
|
achievedAt?: number | undefined;
|
|
138
142
|
seen?: boolean | undefined;
|
|
143
|
+
isOngoing?: boolean | undefined;
|
|
139
144
|
}, {
|
|
140
145
|
target: number;
|
|
141
146
|
current: number;
|
|
@@ -143,6 +148,7 @@ export declare const achievementSchema: z.ZodObject<{
|
|
|
143
148
|
context?: string | undefined;
|
|
144
149
|
achievedAt?: number | undefined;
|
|
145
150
|
seen?: boolean | undefined;
|
|
151
|
+
isOngoing?: boolean | undefined;
|
|
146
152
|
}>>>;
|
|
147
153
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
148
154
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -178,6 +184,7 @@ export declare const achievementSchema: z.ZodObject<{
|
|
|
178
184
|
context?: string | undefined;
|
|
179
185
|
achievedAt?: number | undefined;
|
|
180
186
|
seen?: boolean | undefined;
|
|
187
|
+
isOngoing?: boolean | undefined;
|
|
181
188
|
}> | undefined;
|
|
182
189
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
183
190
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -211,6 +218,7 @@ export declare const achievementSchema: z.ZodObject<{
|
|
|
211
218
|
context?: string | undefined;
|
|
212
219
|
achievedAt?: number | undefined;
|
|
213
220
|
seen?: boolean | undefined;
|
|
221
|
+
isOngoing?: boolean | undefined;
|
|
214
222
|
}> | undefined;
|
|
215
223
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
216
224
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -932,6 +940,7 @@ export declare const userSchema: z.ZodObject<{
|
|
|
932
940
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
933
941
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
934
942
|
}>>;
|
|
943
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
935
944
|
}, "strip", z.ZodTypeAny, {
|
|
936
945
|
allGames?: boolean | undefined;
|
|
937
946
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -959,6 +968,7 @@ export declare const userSchema: z.ZodObject<{
|
|
|
959
968
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
960
969
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
961
970
|
} | undefined;
|
|
971
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
962
972
|
}, {
|
|
963
973
|
allGames?: boolean | undefined;
|
|
964
974
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -986,6 +996,7 @@ export declare const userSchema: z.ZodObject<{
|
|
|
986
996
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
987
997
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
988
998
|
} | undefined;
|
|
999
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
989
1000
|
}>>;
|
|
990
1001
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
991
1002
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -1124,6 +1135,7 @@ export declare const userSchema: z.ZodObject<{
|
|
|
1124
1135
|
context: z.ZodOptional<z.ZodString>;
|
|
1125
1136
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
1126
1137
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
1138
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
1127
1139
|
}, "strip", z.ZodTypeAny, {
|
|
1128
1140
|
target: number;
|
|
1129
1141
|
current: number;
|
|
@@ -1131,6 +1143,7 @@ export declare const userSchema: z.ZodObject<{
|
|
|
1131
1143
|
context?: string | undefined;
|
|
1132
1144
|
achievedAt?: number | undefined;
|
|
1133
1145
|
seen?: boolean | undefined;
|
|
1146
|
+
isOngoing?: boolean | undefined;
|
|
1134
1147
|
}, {
|
|
1135
1148
|
target: number;
|
|
1136
1149
|
current: number;
|
|
@@ -1138,6 +1151,7 @@ export declare const userSchema: z.ZodObject<{
|
|
|
1138
1151
|
context?: string | undefined;
|
|
1139
1152
|
achievedAt?: number | undefined;
|
|
1140
1153
|
seen?: boolean | undefined;
|
|
1154
|
+
isOngoing?: boolean | undefined;
|
|
1141
1155
|
}>>>;
|
|
1142
1156
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
1143
1157
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -1173,6 +1187,7 @@ export declare const userSchema: z.ZodObject<{
|
|
|
1173
1187
|
context?: string | undefined;
|
|
1174
1188
|
achievedAt?: number | undefined;
|
|
1175
1189
|
seen?: boolean | undefined;
|
|
1190
|
+
isOngoing?: boolean | undefined;
|
|
1176
1191
|
}> | undefined;
|
|
1177
1192
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
1178
1193
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -1206,6 +1221,7 @@ export declare const userSchema: z.ZodObject<{
|
|
|
1206
1221
|
context?: string | undefined;
|
|
1207
1222
|
achievedAt?: number | undefined;
|
|
1208
1223
|
seen?: boolean | undefined;
|
|
1224
|
+
isOngoing?: boolean | undefined;
|
|
1209
1225
|
}> | undefined;
|
|
1210
1226
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
1211
1227
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -1470,6 +1486,7 @@ export declare const userSchema: z.ZodObject<{
|
|
|
1470
1486
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1471
1487
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1472
1488
|
} | undefined;
|
|
1489
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
1473
1490
|
} | undefined;
|
|
1474
1491
|
spoilersEnabled?: boolean | undefined;
|
|
1475
1492
|
viewedChangelogs?: Record<string, boolean> | undefined;
|
|
@@ -1527,6 +1544,7 @@ export declare const userSchema: z.ZodObject<{
|
|
|
1527
1544
|
context?: string | undefined;
|
|
1528
1545
|
achievedAt?: number | undefined;
|
|
1529
1546
|
seen?: boolean | undefined;
|
|
1547
|
+
isOngoing?: boolean | undefined;
|
|
1530
1548
|
}> | undefined;
|
|
1531
1549
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
1532
1550
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -1739,6 +1757,7 @@ export declare const userSchema: z.ZodObject<{
|
|
|
1739
1757
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1740
1758
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1741
1759
|
} | undefined;
|
|
1760
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
1742
1761
|
} | undefined;
|
|
1743
1762
|
spoilersEnabled?: boolean | undefined;
|
|
1744
1763
|
viewedChangelogs?: Record<string, boolean> | undefined;
|
|
@@ -1796,6 +1815,7 @@ export declare const userSchema: z.ZodObject<{
|
|
|
1796
1815
|
context?: string | undefined;
|
|
1797
1816
|
achievedAt?: number | undefined;
|
|
1798
1817
|
seen?: boolean | undefined;
|
|
1818
|
+
isOngoing?: boolean | undefined;
|
|
1799
1819
|
}> | undefined;
|
|
1800
1820
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
1801
1821
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -2548,6 +2568,7 @@ export declare const createUserSchema: z.ZodObject<Omit<{
|
|
|
2548
2568
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2549
2569
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2550
2570
|
}>>;
|
|
2571
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
2551
2572
|
}, "strip", z.ZodTypeAny, {
|
|
2552
2573
|
allGames?: boolean | undefined;
|
|
2553
2574
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -2575,6 +2596,7 @@ export declare const createUserSchema: z.ZodObject<Omit<{
|
|
|
2575
2596
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2576
2597
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2577
2598
|
} | undefined;
|
|
2599
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
2578
2600
|
}, {
|
|
2579
2601
|
allGames?: boolean | undefined;
|
|
2580
2602
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -2602,6 +2624,7 @@ export declare const createUserSchema: z.ZodObject<Omit<{
|
|
|
2602
2624
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2603
2625
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2604
2626
|
} | undefined;
|
|
2627
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
2605
2628
|
}>>;
|
|
2606
2629
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2607
2630
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -2740,6 +2763,7 @@ export declare const createUserSchema: z.ZodObject<Omit<{
|
|
|
2740
2763
|
context: z.ZodOptional<z.ZodString>;
|
|
2741
2764
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
2742
2765
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
2766
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
2743
2767
|
}, "strip", z.ZodTypeAny, {
|
|
2744
2768
|
target: number;
|
|
2745
2769
|
current: number;
|
|
@@ -2747,6 +2771,7 @@ export declare const createUserSchema: z.ZodObject<Omit<{
|
|
|
2747
2771
|
context?: string | undefined;
|
|
2748
2772
|
achievedAt?: number | undefined;
|
|
2749
2773
|
seen?: boolean | undefined;
|
|
2774
|
+
isOngoing?: boolean | undefined;
|
|
2750
2775
|
}, {
|
|
2751
2776
|
target: number;
|
|
2752
2777
|
current: number;
|
|
@@ -2754,6 +2779,7 @@ export declare const createUserSchema: z.ZodObject<Omit<{
|
|
|
2754
2779
|
context?: string | undefined;
|
|
2755
2780
|
achievedAt?: number | undefined;
|
|
2756
2781
|
seen?: boolean | undefined;
|
|
2782
|
+
isOngoing?: boolean | undefined;
|
|
2757
2783
|
}>>>;
|
|
2758
2784
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
2759
2785
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -2789,6 +2815,7 @@ export declare const createUserSchema: z.ZodObject<Omit<{
|
|
|
2789
2815
|
context?: string | undefined;
|
|
2790
2816
|
achievedAt?: number | undefined;
|
|
2791
2817
|
seen?: boolean | undefined;
|
|
2818
|
+
isOngoing?: boolean | undefined;
|
|
2792
2819
|
}> | undefined;
|
|
2793
2820
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
2794
2821
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -2822,6 +2849,7 @@ export declare const createUserSchema: z.ZodObject<Omit<{
|
|
|
2822
2849
|
context?: string | undefined;
|
|
2823
2850
|
achievedAt?: number | undefined;
|
|
2824
2851
|
seen?: boolean | undefined;
|
|
2852
|
+
isOngoing?: boolean | undefined;
|
|
2825
2853
|
}> | undefined;
|
|
2826
2854
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
2827
2855
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -3075,6 +3103,7 @@ export declare const createUserSchema: z.ZodObject<Omit<{
|
|
|
3075
3103
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3076
3104
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3077
3105
|
} | undefined;
|
|
3106
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
3078
3107
|
} | undefined;
|
|
3079
3108
|
spoilersEnabled?: boolean | undefined;
|
|
3080
3109
|
viewedChangelogs?: Record<string, boolean> | undefined;
|
|
@@ -3132,6 +3161,7 @@ export declare const createUserSchema: z.ZodObject<Omit<{
|
|
|
3132
3161
|
context?: string | undefined;
|
|
3133
3162
|
achievedAt?: number | undefined;
|
|
3134
3163
|
seen?: boolean | undefined;
|
|
3164
|
+
isOngoing?: boolean | undefined;
|
|
3135
3165
|
}> | undefined;
|
|
3136
3166
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
3137
3167
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -3333,6 +3363,7 @@ export declare const createUserSchema: z.ZodObject<Omit<{
|
|
|
3333
3363
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3334
3364
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3335
3365
|
} | undefined;
|
|
3366
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
3336
3367
|
} | undefined;
|
|
3337
3368
|
spoilersEnabled?: boolean | undefined;
|
|
3338
3369
|
viewedChangelogs?: Record<string, boolean> | undefined;
|
|
@@ -3390,6 +3421,7 @@ export declare const createUserSchema: z.ZodObject<Omit<{
|
|
|
3390
3421
|
context?: string | undefined;
|
|
3391
3422
|
achievedAt?: number | undefined;
|
|
3392
3423
|
seen?: boolean | undefined;
|
|
3424
|
+
isOngoing?: boolean | undefined;
|
|
3393
3425
|
}> | undefined;
|
|
3394
3426
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
3395
3427
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -4142,6 +4174,7 @@ export declare const reducedUserSchema: z.ZodObject<Pick<{
|
|
|
4142
4174
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4143
4175
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4144
4176
|
}>>;
|
|
4177
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
4145
4178
|
}, "strip", z.ZodTypeAny, {
|
|
4146
4179
|
allGames?: boolean | undefined;
|
|
4147
4180
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -4169,6 +4202,7 @@ export declare const reducedUserSchema: z.ZodObject<Pick<{
|
|
|
4169
4202
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4170
4203
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4171
4204
|
} | undefined;
|
|
4205
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
4172
4206
|
}, {
|
|
4173
4207
|
allGames?: boolean | undefined;
|
|
4174
4208
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -4196,6 +4230,7 @@ export declare const reducedUserSchema: z.ZodObject<Pick<{
|
|
|
4196
4230
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4197
4231
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4198
4232
|
} | undefined;
|
|
4233
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
4199
4234
|
}>>;
|
|
4200
4235
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
4201
4236
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -4334,6 +4369,7 @@ export declare const reducedUserSchema: z.ZodObject<Pick<{
|
|
|
4334
4369
|
context: z.ZodOptional<z.ZodString>;
|
|
4335
4370
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
4336
4371
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
4372
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
4337
4373
|
}, "strip", z.ZodTypeAny, {
|
|
4338
4374
|
target: number;
|
|
4339
4375
|
current: number;
|
|
@@ -4341,6 +4377,7 @@ export declare const reducedUserSchema: z.ZodObject<Pick<{
|
|
|
4341
4377
|
context?: string | undefined;
|
|
4342
4378
|
achievedAt?: number | undefined;
|
|
4343
4379
|
seen?: boolean | undefined;
|
|
4380
|
+
isOngoing?: boolean | undefined;
|
|
4344
4381
|
}, {
|
|
4345
4382
|
target: number;
|
|
4346
4383
|
current: number;
|
|
@@ -4348,6 +4385,7 @@ export declare const reducedUserSchema: z.ZodObject<Pick<{
|
|
|
4348
4385
|
context?: string | undefined;
|
|
4349
4386
|
achievedAt?: number | undefined;
|
|
4350
4387
|
seen?: boolean | undefined;
|
|
4388
|
+
isOngoing?: boolean | undefined;
|
|
4351
4389
|
}>>>;
|
|
4352
4390
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
4353
4391
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -4383,6 +4421,7 @@ export declare const reducedUserSchema: z.ZodObject<Pick<{
|
|
|
4383
4421
|
context?: string | undefined;
|
|
4384
4422
|
achievedAt?: number | undefined;
|
|
4385
4423
|
seen?: boolean | undefined;
|
|
4424
|
+
isOngoing?: boolean | undefined;
|
|
4386
4425
|
}> | undefined;
|
|
4387
4426
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
4388
4427
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -4416,6 +4455,7 @@ export declare const reducedUserSchema: z.ZodObject<Pick<{
|
|
|
4416
4455
|
context?: string | undefined;
|
|
4417
4456
|
achievedAt?: number | undefined;
|
|
4418
4457
|
seen?: boolean | undefined;
|
|
4458
|
+
isOngoing?: boolean | undefined;
|
|
4419
4459
|
}> | undefined;
|
|
4420
4460
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
4421
4461
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
package/dist/schemas/user.js
CHANGED
|
@@ -85,6 +85,7 @@ exports.oneTimeProgressSchema = (0, zod_1.object)({
|
|
|
85
85
|
context: (0, zod_1.string)().optional(),
|
|
86
86
|
achievedAt: (0, zod_1.number)().optional(),
|
|
87
87
|
seen: (0, zod_1.boolean)().optional(),
|
|
88
|
+
isOngoing: (0, zod_1.boolean)().optional(), // Indicates if the season is still in progress
|
|
88
89
|
});
|
|
89
90
|
exports.achievementSchema = (0, zod_1.object)({
|
|
90
91
|
id: (0, zod_1.string)(),
|
|
@@ -216,6 +217,10 @@ exports.userSchema = (0, zod_1.object)({
|
|
|
216
217
|
worstRated: sharedTypes_1.timeFilterSchema.optional().nullable(),
|
|
217
218
|
})
|
|
218
219
|
.optional(),
|
|
220
|
+
playerTopLists: zod_1.z
|
|
221
|
+
.union([(0, zod_1.literal)("daily"), (0, zod_1.literal)("weekly"), (0, zod_1.literal)("monthly")])
|
|
222
|
+
.optional()
|
|
223
|
+
.nullable(),
|
|
219
224
|
}).optional(),
|
|
220
225
|
spoilersEnabled: (0, zod_1.boolean)().optional(),
|
|
221
226
|
viewedChangelogs: (0, zod_1.record)((0, zod_1.boolean)()).optional(),
|
|
@@ -835,6 +835,7 @@ export declare const userEventCommentSchema: z.ZodObject<{
|
|
|
835
835
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
836
836
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
837
837
|
}>>;
|
|
838
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
838
839
|
}, "strip", z.ZodTypeAny, {
|
|
839
840
|
allGames?: boolean | undefined;
|
|
840
841
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -862,6 +863,7 @@ export declare const userEventCommentSchema: z.ZodObject<{
|
|
|
862
863
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
863
864
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
864
865
|
} | undefined;
|
|
866
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
865
867
|
}, {
|
|
866
868
|
allGames?: boolean | undefined;
|
|
867
869
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -889,6 +891,7 @@ export declare const userEventCommentSchema: z.ZodObject<{
|
|
|
889
891
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
890
892
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
891
893
|
} | undefined;
|
|
894
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
892
895
|
}>>;
|
|
893
896
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
894
897
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -1027,6 +1030,7 @@ export declare const userEventCommentSchema: z.ZodObject<{
|
|
|
1027
1030
|
context: z.ZodOptional<z.ZodString>;
|
|
1028
1031
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
1029
1032
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
1033
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
1030
1034
|
}, "strip", z.ZodTypeAny, {
|
|
1031
1035
|
target: number;
|
|
1032
1036
|
current: number;
|
|
@@ -1034,6 +1038,7 @@ export declare const userEventCommentSchema: z.ZodObject<{
|
|
|
1034
1038
|
context?: string | undefined;
|
|
1035
1039
|
achievedAt?: number | undefined;
|
|
1036
1040
|
seen?: boolean | undefined;
|
|
1041
|
+
isOngoing?: boolean | undefined;
|
|
1037
1042
|
}, {
|
|
1038
1043
|
target: number;
|
|
1039
1044
|
current: number;
|
|
@@ -1041,6 +1046,7 @@ export declare const userEventCommentSchema: z.ZodObject<{
|
|
|
1041
1046
|
context?: string | undefined;
|
|
1042
1047
|
achievedAt?: number | undefined;
|
|
1043
1048
|
seen?: boolean | undefined;
|
|
1049
|
+
isOngoing?: boolean | undefined;
|
|
1044
1050
|
}>>>;
|
|
1045
1051
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
1046
1052
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -1076,6 +1082,7 @@ export declare const userEventCommentSchema: z.ZodObject<{
|
|
|
1076
1082
|
context?: string | undefined;
|
|
1077
1083
|
achievedAt?: number | undefined;
|
|
1078
1084
|
seen?: boolean | undefined;
|
|
1085
|
+
isOngoing?: boolean | undefined;
|
|
1079
1086
|
}> | undefined;
|
|
1080
1087
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
1081
1088
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -1109,6 +1116,7 @@ export declare const userEventCommentSchema: z.ZodObject<{
|
|
|
1109
1116
|
context?: string | undefined;
|
|
1110
1117
|
achievedAt?: number | undefined;
|
|
1111
1118
|
seen?: boolean | undefined;
|
|
1119
|
+
isOngoing?: boolean | undefined;
|
|
1112
1120
|
}> | undefined;
|
|
1113
1121
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
1114
1122
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -1928,6 +1936,7 @@ export declare const userEventCommentSchema: z.ZodObject<{
|
|
|
1928
1936
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1929
1937
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1930
1938
|
}>>;
|
|
1939
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
1931
1940
|
}, "strip", z.ZodTypeAny, {
|
|
1932
1941
|
allGames?: boolean | undefined;
|
|
1933
1942
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -1955,6 +1964,7 @@ export declare const userEventCommentSchema: z.ZodObject<{
|
|
|
1955
1964
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1956
1965
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1957
1966
|
} | undefined;
|
|
1967
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
1958
1968
|
}, {
|
|
1959
1969
|
allGames?: boolean | undefined;
|
|
1960
1970
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -1982,6 +1992,7 @@ export declare const userEventCommentSchema: z.ZodObject<{
|
|
|
1982
1992
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1983
1993
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1984
1994
|
} | undefined;
|
|
1995
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
1985
1996
|
}>>;
|
|
1986
1997
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1987
1998
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -2120,6 +2131,7 @@ export declare const userEventCommentSchema: z.ZodObject<{
|
|
|
2120
2131
|
context: z.ZodOptional<z.ZodString>;
|
|
2121
2132
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
2122
2133
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
2134
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
2123
2135
|
}, "strip", z.ZodTypeAny, {
|
|
2124
2136
|
target: number;
|
|
2125
2137
|
current: number;
|
|
@@ -2127,6 +2139,7 @@ export declare const userEventCommentSchema: z.ZodObject<{
|
|
|
2127
2139
|
context?: string | undefined;
|
|
2128
2140
|
achievedAt?: number | undefined;
|
|
2129
2141
|
seen?: boolean | undefined;
|
|
2142
|
+
isOngoing?: boolean | undefined;
|
|
2130
2143
|
}, {
|
|
2131
2144
|
target: number;
|
|
2132
2145
|
current: number;
|
|
@@ -2134,6 +2147,7 @@ export declare const userEventCommentSchema: z.ZodObject<{
|
|
|
2134
2147
|
context?: string | undefined;
|
|
2135
2148
|
achievedAt?: number | undefined;
|
|
2136
2149
|
seen?: boolean | undefined;
|
|
2150
|
+
isOngoing?: boolean | undefined;
|
|
2137
2151
|
}>>>;
|
|
2138
2152
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
2139
2153
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -2169,6 +2183,7 @@ export declare const userEventCommentSchema: z.ZodObject<{
|
|
|
2169
2183
|
context?: string | undefined;
|
|
2170
2184
|
achievedAt?: number | undefined;
|
|
2171
2185
|
seen?: boolean | undefined;
|
|
2186
|
+
isOngoing?: boolean | undefined;
|
|
2172
2187
|
}> | undefined;
|
|
2173
2188
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
2174
2189
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -2202,6 +2217,7 @@ export declare const userEventCommentSchema: z.ZodObject<{
|
|
|
2202
2217
|
context?: string | undefined;
|
|
2203
2218
|
achievedAt?: number | undefined;
|
|
2204
2219
|
seen?: boolean | undefined;
|
|
2220
|
+
isOngoing?: boolean | undefined;
|
|
2205
2221
|
}> | undefined;
|
|
2206
2222
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
2207
2223
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -3074,6 +3090,7 @@ export declare const userEventCommentLikeSchema: z.ZodObject<{
|
|
|
3074
3090
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3075
3091
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3076
3092
|
}>>;
|
|
3093
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
3077
3094
|
}, "strip", z.ZodTypeAny, {
|
|
3078
3095
|
allGames?: boolean | undefined;
|
|
3079
3096
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -3101,6 +3118,7 @@ export declare const userEventCommentLikeSchema: z.ZodObject<{
|
|
|
3101
3118
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3102
3119
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3103
3120
|
} | undefined;
|
|
3121
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
3104
3122
|
}, {
|
|
3105
3123
|
allGames?: boolean | undefined;
|
|
3106
3124
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -3128,6 +3146,7 @@ export declare const userEventCommentLikeSchema: z.ZodObject<{
|
|
|
3128
3146
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3129
3147
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3130
3148
|
} | undefined;
|
|
3149
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
3131
3150
|
}>>;
|
|
3132
3151
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3133
3152
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -3266,6 +3285,7 @@ export declare const userEventCommentLikeSchema: z.ZodObject<{
|
|
|
3266
3285
|
context: z.ZodOptional<z.ZodString>;
|
|
3267
3286
|
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
3268
3287
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
3288
|
+
isOngoing: z.ZodOptional<z.ZodBoolean>;
|
|
3269
3289
|
}, "strip", z.ZodTypeAny, {
|
|
3270
3290
|
target: number;
|
|
3271
3291
|
current: number;
|
|
@@ -3273,6 +3293,7 @@ export declare const userEventCommentLikeSchema: z.ZodObject<{
|
|
|
3273
3293
|
context?: string | undefined;
|
|
3274
3294
|
achievedAt?: number | undefined;
|
|
3275
3295
|
seen?: boolean | undefined;
|
|
3296
|
+
isOngoing?: boolean | undefined;
|
|
3276
3297
|
}, {
|
|
3277
3298
|
target: number;
|
|
3278
3299
|
current: number;
|
|
@@ -3280,6 +3301,7 @@ export declare const userEventCommentLikeSchema: z.ZodObject<{
|
|
|
3280
3301
|
context?: string | undefined;
|
|
3281
3302
|
achievedAt?: number | undefined;
|
|
3282
3303
|
seen?: boolean | undefined;
|
|
3304
|
+
isOngoing?: boolean | undefined;
|
|
3283
3305
|
}>>>;
|
|
3284
3306
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
3285
3307
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
@@ -3315,6 +3337,7 @@ export declare const userEventCommentLikeSchema: z.ZodObject<{
|
|
|
3315
3337
|
context?: string | undefined;
|
|
3316
3338
|
achievedAt?: number | undefined;
|
|
3317
3339
|
seen?: boolean | undefined;
|
|
3340
|
+
isOngoing?: boolean | undefined;
|
|
3318
3341
|
}> | undefined;
|
|
3319
3342
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
3320
3343
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
@@ -3348,6 +3371,7 @@ export declare const userEventCommentLikeSchema: z.ZodObject<{
|
|
|
3348
3371
|
context?: string | undefined;
|
|
3349
3372
|
achievedAt?: number | undefined;
|
|
3350
3373
|
seen?: boolean | undefined;
|
|
3374
|
+
isOngoing?: boolean | undefined;
|
|
3351
3375
|
}> | undefined;
|
|
3352
3376
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
3353
3377
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|