rategame-shared 1.1.308 → 1.1.309
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/helpers/index.js +11 -0
- package/dist/schemas/chat.d.ts +75 -10
- package/dist/schemas/game.d.ts +300 -40
- package/dist/schemas/list.d.ts +75 -10
- package/dist/schemas/moderation.d.ts +60 -8
- package/dist/schemas/rating.d.ts +45 -6
- package/dist/schemas/stadium.d.ts +60 -8
- package/dist/schemas/user.d.ts +84 -12
- package/dist/schemas/user.js +3 -0
- package/dist/schemas/userEvent.d.ts +50 -6
- package/dist/schemas/userEvent.js +1 -0
- package/dist/schemas/voting.d.ts +135 -18
- package/package.json +1 -1
package/dist/schemas/user.d.ts
CHANGED
|
@@ -41,16 +41,22 @@ export declare const oneTimeProgressSchema: z.ZodObject<{
|
|
|
41
41
|
target: z.ZodNumber;
|
|
42
42
|
label: z.ZodOptional<z.ZodString>;
|
|
43
43
|
context: z.ZodOptional<z.ZodString>;
|
|
44
|
+
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
45
|
+
seen: z.ZodOptional<z.ZodBoolean>;
|
|
44
46
|
}, "strip", z.ZodTypeAny, {
|
|
45
47
|
target: number;
|
|
46
48
|
current: number;
|
|
47
49
|
label?: string | undefined;
|
|
48
50
|
context?: string | undefined;
|
|
51
|
+
achievedAt?: number | undefined;
|
|
52
|
+
seen?: boolean | undefined;
|
|
49
53
|
}, {
|
|
50
54
|
target: number;
|
|
51
55
|
current: number;
|
|
52
56
|
label?: string | undefined;
|
|
53
57
|
context?: string | undefined;
|
|
58
|
+
achievedAt?: number | undefined;
|
|
59
|
+
seen?: boolean | undefined;
|
|
54
60
|
}>;
|
|
55
61
|
export declare const achievementSchema: z.ZodObject<{
|
|
56
62
|
id: z.ZodString;
|
|
@@ -121,27 +127,35 @@ export declare const achievementSchema: z.ZodObject<{
|
|
|
121
127
|
target: z.ZodNumber;
|
|
122
128
|
label: z.ZodOptional<z.ZodString>;
|
|
123
129
|
context: z.ZodOptional<z.ZodString>;
|
|
130
|
+
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
131
|
+
seen: z.ZodOptional<z.ZodBoolean>;
|
|
124
132
|
}, "strip", z.ZodTypeAny, {
|
|
125
133
|
target: number;
|
|
126
134
|
current: number;
|
|
127
135
|
label?: string | undefined;
|
|
128
136
|
context?: string | undefined;
|
|
137
|
+
achievedAt?: number | undefined;
|
|
138
|
+
seen?: boolean | undefined;
|
|
129
139
|
}, {
|
|
130
140
|
target: number;
|
|
131
141
|
current: number;
|
|
132
142
|
label?: string | undefined;
|
|
133
143
|
context?: string | undefined;
|
|
144
|
+
achievedAt?: number | undefined;
|
|
145
|
+
seen?: boolean | undefined;
|
|
134
146
|
}>>>;
|
|
135
147
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
136
148
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
137
149
|
league: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"global">]>>;
|
|
138
150
|
sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
|
|
151
|
+
seasonal: z.ZodOptional<z.ZodBoolean>;
|
|
139
152
|
}, "strip", z.ZodTypeAny, {
|
|
140
153
|
id: string;
|
|
141
154
|
name: string;
|
|
142
155
|
description: string;
|
|
143
156
|
type?: "global" | "sport" | "league" | undefined;
|
|
144
157
|
progress?: number | undefined;
|
|
158
|
+
seen?: boolean | undefined;
|
|
145
159
|
tiers?: {
|
|
146
160
|
bronze: {
|
|
147
161
|
threshold: number;
|
|
@@ -162,16 +176,19 @@ export declare const achievementSchema: z.ZodObject<{
|
|
|
162
176
|
current: number;
|
|
163
177
|
label?: string | undefined;
|
|
164
178
|
context?: string | undefined;
|
|
179
|
+
achievedAt?: number | undefined;
|
|
180
|
+
seen?: boolean | undefined;
|
|
165
181
|
}> | undefined;
|
|
166
|
-
seen?: boolean | undefined;
|
|
167
182
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
168
183
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
184
|
+
seasonal?: boolean | undefined;
|
|
169
185
|
}, {
|
|
170
186
|
id: string;
|
|
171
187
|
name: string;
|
|
172
188
|
description: string;
|
|
173
189
|
type?: "global" | "sport" | "league" | undefined;
|
|
174
190
|
progress?: number | undefined;
|
|
191
|
+
seen?: boolean | undefined;
|
|
175
192
|
tiers?: {
|
|
176
193
|
bronze: {
|
|
177
194
|
threshold: number;
|
|
@@ -192,10 +209,12 @@ export declare const achievementSchema: z.ZodObject<{
|
|
|
192
209
|
current: number;
|
|
193
210
|
label?: string | undefined;
|
|
194
211
|
context?: string | undefined;
|
|
212
|
+
achievedAt?: number | undefined;
|
|
213
|
+
seen?: boolean | undefined;
|
|
195
214
|
}> | undefined;
|
|
196
|
-
seen?: boolean | undefined;
|
|
197
215
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
198
216
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
217
|
+
seasonal?: boolean | undefined;
|
|
199
218
|
}>;
|
|
200
219
|
export declare const userSchema: z.ZodObject<{
|
|
201
220
|
id: z.ZodString;
|
|
@@ -1103,27 +1122,35 @@ export declare const userSchema: z.ZodObject<{
|
|
|
1103
1122
|
target: z.ZodNumber;
|
|
1104
1123
|
label: z.ZodOptional<z.ZodString>;
|
|
1105
1124
|
context: z.ZodOptional<z.ZodString>;
|
|
1125
|
+
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
1126
|
+
seen: z.ZodOptional<z.ZodBoolean>;
|
|
1106
1127
|
}, "strip", z.ZodTypeAny, {
|
|
1107
1128
|
target: number;
|
|
1108
1129
|
current: number;
|
|
1109
1130
|
label?: string | undefined;
|
|
1110
1131
|
context?: string | undefined;
|
|
1132
|
+
achievedAt?: number | undefined;
|
|
1133
|
+
seen?: boolean | undefined;
|
|
1111
1134
|
}, {
|
|
1112
1135
|
target: number;
|
|
1113
1136
|
current: number;
|
|
1114
1137
|
label?: string | undefined;
|
|
1115
1138
|
context?: string | undefined;
|
|
1139
|
+
achievedAt?: number | undefined;
|
|
1140
|
+
seen?: boolean | undefined;
|
|
1116
1141
|
}>>>;
|
|
1117
1142
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
1118
1143
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
1119
1144
|
league: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"global">]>>;
|
|
1120
1145
|
sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
|
|
1146
|
+
seasonal: z.ZodOptional<z.ZodBoolean>;
|
|
1121
1147
|
}, "strip", z.ZodTypeAny, {
|
|
1122
1148
|
id: string;
|
|
1123
1149
|
name: string;
|
|
1124
1150
|
description: string;
|
|
1125
1151
|
type?: "global" | "sport" | "league" | undefined;
|
|
1126
1152
|
progress?: number | undefined;
|
|
1153
|
+
seen?: boolean | undefined;
|
|
1127
1154
|
tiers?: {
|
|
1128
1155
|
bronze: {
|
|
1129
1156
|
threshold: number;
|
|
@@ -1144,16 +1171,19 @@ export declare const userSchema: z.ZodObject<{
|
|
|
1144
1171
|
current: number;
|
|
1145
1172
|
label?: string | undefined;
|
|
1146
1173
|
context?: string | undefined;
|
|
1174
|
+
achievedAt?: number | undefined;
|
|
1175
|
+
seen?: boolean | undefined;
|
|
1147
1176
|
}> | undefined;
|
|
1148
|
-
seen?: boolean | undefined;
|
|
1149
1177
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
1150
1178
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
1179
|
+
seasonal?: boolean | undefined;
|
|
1151
1180
|
}, {
|
|
1152
1181
|
id: string;
|
|
1153
1182
|
name: string;
|
|
1154
1183
|
description: string;
|
|
1155
1184
|
type?: "global" | "sport" | "league" | undefined;
|
|
1156
1185
|
progress?: number | undefined;
|
|
1186
|
+
seen?: boolean | undefined;
|
|
1157
1187
|
tiers?: {
|
|
1158
1188
|
bronze: {
|
|
1159
1189
|
threshold: number;
|
|
@@ -1174,10 +1204,12 @@ export declare const userSchema: z.ZodObject<{
|
|
|
1174
1204
|
current: number;
|
|
1175
1205
|
label?: string | undefined;
|
|
1176
1206
|
context?: string | undefined;
|
|
1207
|
+
achievedAt?: number | undefined;
|
|
1208
|
+
seen?: boolean | undefined;
|
|
1177
1209
|
}> | undefined;
|
|
1178
|
-
seen?: boolean | undefined;
|
|
1179
1210
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
1180
1211
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
1212
|
+
seasonal?: boolean | undefined;
|
|
1181
1213
|
}>>>;
|
|
1182
1214
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
1183
1215
|
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1449,6 +1481,7 @@ export declare const userSchema: z.ZodObject<{
|
|
|
1449
1481
|
description: string;
|
|
1450
1482
|
type?: "global" | "sport" | "league" | undefined;
|
|
1451
1483
|
progress?: number | undefined;
|
|
1484
|
+
seen?: boolean | undefined;
|
|
1452
1485
|
tiers?: {
|
|
1453
1486
|
bronze: {
|
|
1454
1487
|
threshold: number;
|
|
@@ -1469,10 +1502,12 @@ export declare const userSchema: z.ZodObject<{
|
|
|
1469
1502
|
current: number;
|
|
1470
1503
|
label?: string | undefined;
|
|
1471
1504
|
context?: string | undefined;
|
|
1505
|
+
achievedAt?: number | undefined;
|
|
1506
|
+
seen?: boolean | undefined;
|
|
1472
1507
|
}> | undefined;
|
|
1473
|
-
seen?: boolean | undefined;
|
|
1474
1508
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
1475
1509
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
1510
|
+
seasonal?: boolean | undefined;
|
|
1476
1511
|
}>> | undefined;
|
|
1477
1512
|
repliesLeft?: number | undefined;
|
|
1478
1513
|
listRepliesLeft?: number | undefined;
|
|
@@ -1710,6 +1745,7 @@ export declare const userSchema: z.ZodObject<{
|
|
|
1710
1745
|
description: string;
|
|
1711
1746
|
type?: "global" | "sport" | "league" | undefined;
|
|
1712
1747
|
progress?: number | undefined;
|
|
1748
|
+
seen?: boolean | undefined;
|
|
1713
1749
|
tiers?: {
|
|
1714
1750
|
bronze: {
|
|
1715
1751
|
threshold: number;
|
|
@@ -1730,10 +1766,12 @@ export declare const userSchema: z.ZodObject<{
|
|
|
1730
1766
|
current: number;
|
|
1731
1767
|
label?: string | undefined;
|
|
1732
1768
|
context?: string | undefined;
|
|
1769
|
+
achievedAt?: number | undefined;
|
|
1770
|
+
seen?: boolean | undefined;
|
|
1733
1771
|
}> | undefined;
|
|
1734
|
-
seen?: boolean | undefined;
|
|
1735
1772
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
1736
1773
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
1774
|
+
seasonal?: boolean | undefined;
|
|
1737
1775
|
}>> | undefined;
|
|
1738
1776
|
repliesLeft?: number | undefined;
|
|
1739
1777
|
listRepliesLeft?: number | undefined;
|
|
@@ -2667,27 +2705,35 @@ export declare const createUserSchema: z.ZodObject<Omit<{
|
|
|
2667
2705
|
target: z.ZodNumber;
|
|
2668
2706
|
label: z.ZodOptional<z.ZodString>;
|
|
2669
2707
|
context: z.ZodOptional<z.ZodString>;
|
|
2708
|
+
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
2709
|
+
seen: z.ZodOptional<z.ZodBoolean>;
|
|
2670
2710
|
}, "strip", z.ZodTypeAny, {
|
|
2671
2711
|
target: number;
|
|
2672
2712
|
current: number;
|
|
2673
2713
|
label?: string | undefined;
|
|
2674
2714
|
context?: string | undefined;
|
|
2715
|
+
achievedAt?: number | undefined;
|
|
2716
|
+
seen?: boolean | undefined;
|
|
2675
2717
|
}, {
|
|
2676
2718
|
target: number;
|
|
2677
2719
|
current: number;
|
|
2678
2720
|
label?: string | undefined;
|
|
2679
2721
|
context?: string | undefined;
|
|
2722
|
+
achievedAt?: number | undefined;
|
|
2723
|
+
seen?: boolean | undefined;
|
|
2680
2724
|
}>>>;
|
|
2681
2725
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
2682
2726
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
2683
2727
|
league: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"global">]>>;
|
|
2684
2728
|
sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
|
|
2729
|
+
seasonal: z.ZodOptional<z.ZodBoolean>;
|
|
2685
2730
|
}, "strip", z.ZodTypeAny, {
|
|
2686
2731
|
id: string;
|
|
2687
2732
|
name: string;
|
|
2688
2733
|
description: string;
|
|
2689
2734
|
type?: "global" | "sport" | "league" | undefined;
|
|
2690
2735
|
progress?: number | undefined;
|
|
2736
|
+
seen?: boolean | undefined;
|
|
2691
2737
|
tiers?: {
|
|
2692
2738
|
bronze: {
|
|
2693
2739
|
threshold: number;
|
|
@@ -2708,16 +2754,19 @@ export declare const createUserSchema: z.ZodObject<Omit<{
|
|
|
2708
2754
|
current: number;
|
|
2709
2755
|
label?: string | undefined;
|
|
2710
2756
|
context?: string | undefined;
|
|
2757
|
+
achievedAt?: number | undefined;
|
|
2758
|
+
seen?: boolean | undefined;
|
|
2711
2759
|
}> | undefined;
|
|
2712
|
-
seen?: boolean | undefined;
|
|
2713
2760
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
2714
2761
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
2762
|
+
seasonal?: boolean | undefined;
|
|
2715
2763
|
}, {
|
|
2716
2764
|
id: string;
|
|
2717
2765
|
name: string;
|
|
2718
2766
|
description: string;
|
|
2719
2767
|
type?: "global" | "sport" | "league" | undefined;
|
|
2720
2768
|
progress?: number | undefined;
|
|
2769
|
+
seen?: boolean | undefined;
|
|
2721
2770
|
tiers?: {
|
|
2722
2771
|
bronze: {
|
|
2723
2772
|
threshold: number;
|
|
@@ -2738,10 +2787,12 @@ export declare const createUserSchema: z.ZodObject<Omit<{
|
|
|
2738
2787
|
current: number;
|
|
2739
2788
|
label?: string | undefined;
|
|
2740
2789
|
context?: string | undefined;
|
|
2790
|
+
achievedAt?: number | undefined;
|
|
2791
|
+
seen?: boolean | undefined;
|
|
2741
2792
|
}> | undefined;
|
|
2742
|
-
seen?: boolean | undefined;
|
|
2743
2793
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
2744
2794
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
2795
|
+
seasonal?: boolean | undefined;
|
|
2745
2796
|
}>>>;
|
|
2746
2797
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
2747
2798
|
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3002,6 +3053,7 @@ export declare const createUserSchema: z.ZodObject<Omit<{
|
|
|
3002
3053
|
description: string;
|
|
3003
3054
|
type?: "global" | "sport" | "league" | undefined;
|
|
3004
3055
|
progress?: number | undefined;
|
|
3056
|
+
seen?: boolean | undefined;
|
|
3005
3057
|
tiers?: {
|
|
3006
3058
|
bronze: {
|
|
3007
3059
|
threshold: number;
|
|
@@ -3022,10 +3074,12 @@ export declare const createUserSchema: z.ZodObject<Omit<{
|
|
|
3022
3074
|
current: number;
|
|
3023
3075
|
label?: string | undefined;
|
|
3024
3076
|
context?: string | undefined;
|
|
3077
|
+
achievedAt?: number | undefined;
|
|
3078
|
+
seen?: boolean | undefined;
|
|
3025
3079
|
}> | undefined;
|
|
3026
|
-
seen?: boolean | undefined;
|
|
3027
3080
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
3028
3081
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
3082
|
+
seasonal?: boolean | undefined;
|
|
3029
3083
|
}>> | undefined;
|
|
3030
3084
|
repliesLeft?: number | undefined;
|
|
3031
3085
|
listRepliesLeft?: number | undefined;
|
|
@@ -3252,6 +3306,7 @@ export declare const createUserSchema: z.ZodObject<Omit<{
|
|
|
3252
3306
|
description: string;
|
|
3253
3307
|
type?: "global" | "sport" | "league" | undefined;
|
|
3254
3308
|
progress?: number | undefined;
|
|
3309
|
+
seen?: boolean | undefined;
|
|
3255
3310
|
tiers?: {
|
|
3256
3311
|
bronze: {
|
|
3257
3312
|
threshold: number;
|
|
@@ -3272,10 +3327,12 @@ export declare const createUserSchema: z.ZodObject<Omit<{
|
|
|
3272
3327
|
current: number;
|
|
3273
3328
|
label?: string | undefined;
|
|
3274
3329
|
context?: string | undefined;
|
|
3330
|
+
achievedAt?: number | undefined;
|
|
3331
|
+
seen?: boolean | undefined;
|
|
3275
3332
|
}> | undefined;
|
|
3276
|
-
seen?: boolean | undefined;
|
|
3277
3333
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
3278
3334
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
3335
|
+
seasonal?: boolean | undefined;
|
|
3279
3336
|
}>> | undefined;
|
|
3280
3337
|
repliesLeft?: number | undefined;
|
|
3281
3338
|
listRepliesLeft?: number | undefined;
|
|
@@ -4209,27 +4266,35 @@ export declare const reducedUserSchema: z.ZodObject<Pick<{
|
|
|
4209
4266
|
target: z.ZodNumber;
|
|
4210
4267
|
label: z.ZodOptional<z.ZodString>;
|
|
4211
4268
|
context: z.ZodOptional<z.ZodString>;
|
|
4269
|
+
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
4270
|
+
seen: z.ZodOptional<z.ZodBoolean>;
|
|
4212
4271
|
}, "strip", z.ZodTypeAny, {
|
|
4213
4272
|
target: number;
|
|
4214
4273
|
current: number;
|
|
4215
4274
|
label?: string | undefined;
|
|
4216
4275
|
context?: string | undefined;
|
|
4276
|
+
achievedAt?: number | undefined;
|
|
4277
|
+
seen?: boolean | undefined;
|
|
4217
4278
|
}, {
|
|
4218
4279
|
target: number;
|
|
4219
4280
|
current: number;
|
|
4220
4281
|
label?: string | undefined;
|
|
4221
4282
|
context?: string | undefined;
|
|
4283
|
+
achievedAt?: number | undefined;
|
|
4284
|
+
seen?: boolean | undefined;
|
|
4222
4285
|
}>>>;
|
|
4223
4286
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
4224
4287
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
4225
4288
|
league: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"global">]>>;
|
|
4226
4289
|
sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
|
|
4290
|
+
seasonal: z.ZodOptional<z.ZodBoolean>;
|
|
4227
4291
|
}, "strip", z.ZodTypeAny, {
|
|
4228
4292
|
id: string;
|
|
4229
4293
|
name: string;
|
|
4230
4294
|
description: string;
|
|
4231
4295
|
type?: "global" | "sport" | "league" | undefined;
|
|
4232
4296
|
progress?: number | undefined;
|
|
4297
|
+
seen?: boolean | undefined;
|
|
4233
4298
|
tiers?: {
|
|
4234
4299
|
bronze: {
|
|
4235
4300
|
threshold: number;
|
|
@@ -4250,16 +4315,19 @@ export declare const reducedUserSchema: z.ZodObject<Pick<{
|
|
|
4250
4315
|
current: number;
|
|
4251
4316
|
label?: string | undefined;
|
|
4252
4317
|
context?: string | undefined;
|
|
4318
|
+
achievedAt?: number | undefined;
|
|
4319
|
+
seen?: boolean | undefined;
|
|
4253
4320
|
}> | undefined;
|
|
4254
|
-
seen?: boolean | undefined;
|
|
4255
4321
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
4256
4322
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
4323
|
+
seasonal?: boolean | undefined;
|
|
4257
4324
|
}, {
|
|
4258
4325
|
id: string;
|
|
4259
4326
|
name: string;
|
|
4260
4327
|
description: string;
|
|
4261
4328
|
type?: "global" | "sport" | "league" | undefined;
|
|
4262
4329
|
progress?: number | undefined;
|
|
4330
|
+
seen?: boolean | undefined;
|
|
4263
4331
|
tiers?: {
|
|
4264
4332
|
bronze: {
|
|
4265
4333
|
threshold: number;
|
|
@@ -4280,10 +4348,12 @@ export declare const reducedUserSchema: z.ZodObject<Pick<{
|
|
|
4280
4348
|
current: number;
|
|
4281
4349
|
label?: string | undefined;
|
|
4282
4350
|
context?: string | undefined;
|
|
4351
|
+
achievedAt?: number | undefined;
|
|
4352
|
+
seen?: boolean | undefined;
|
|
4283
4353
|
}> | undefined;
|
|
4284
|
-
seen?: boolean | undefined;
|
|
4285
4354
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
4286
4355
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
4356
|
+
seasonal?: boolean | undefined;
|
|
4287
4357
|
}>>>;
|
|
4288
4358
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
4289
4359
|
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4375,6 +4445,8 @@ export interface OneTimeProgressUpdate {
|
|
|
4375
4445
|
target: number;
|
|
4376
4446
|
label?: string;
|
|
4377
4447
|
context?: string;
|
|
4448
|
+
achievedAt?: number;
|
|
4449
|
+
seen?: boolean;
|
|
4378
4450
|
}
|
|
4379
4451
|
export interface OneTimeProgressResult {
|
|
4380
4452
|
updatedProgress: Record<string, OneTimeProgressUpdate>;
|
package/dist/schemas/user.js
CHANGED
|
@@ -78,6 +78,8 @@ exports.oneTimeProgressSchema = (0, zod_1.object)({
|
|
|
78
78
|
target: (0, zod_1.number)(),
|
|
79
79
|
label: (0, zod_1.string)().optional(),
|
|
80
80
|
context: (0, zod_1.string)().optional(),
|
|
81
|
+
achievedAt: (0, zod_1.number)().optional(),
|
|
82
|
+
seen: (0, zod_1.boolean)().optional(),
|
|
81
83
|
});
|
|
82
84
|
exports.achievementSchema = (0, zod_1.object)({
|
|
83
85
|
id: (0, zod_1.string)(),
|
|
@@ -114,6 +116,7 @@ exports.achievementSchema = (0, zod_1.object)({
|
|
|
114
116
|
(0, zod_1.literal)("baseball"),
|
|
115
117
|
(0, zod_1.literal)("hockey"),
|
|
116
118
|
]).optional(),
|
|
119
|
+
seasonal: (0, zod_1.boolean)().optional(),
|
|
117
120
|
});
|
|
118
121
|
exports.userSchema = (0, zod_1.object)({
|
|
119
122
|
id: (0, zod_1.string)(),
|
|
@@ -9,18 +9,21 @@ export declare const userEventSchema: z.ZodObject<{
|
|
|
9
9
|
achievementDescription: z.ZodString;
|
|
10
10
|
tier: z.ZodOptional<z.ZodNumber>;
|
|
11
11
|
progress: z.ZodNumber;
|
|
12
|
+
seasonKey: z.ZodOptional<z.ZodString>;
|
|
12
13
|
}, "strip", z.ZodTypeAny, {
|
|
13
14
|
progress: number;
|
|
14
15
|
achievementId: string;
|
|
15
16
|
achievementName: string;
|
|
16
17
|
achievementDescription: string;
|
|
17
18
|
tier?: number | undefined;
|
|
19
|
+
seasonKey?: string | undefined;
|
|
18
20
|
}, {
|
|
19
21
|
progress: number;
|
|
20
22
|
achievementId: string;
|
|
21
23
|
achievementName: string;
|
|
22
24
|
achievementDescription: string;
|
|
23
25
|
tier?: number | undefined;
|
|
26
|
+
seasonKey?: string | undefined;
|
|
24
27
|
}>, z.ZodObject<{
|
|
25
28
|
streakNumber: z.ZodNumber;
|
|
26
29
|
milestone: z.ZodNumber;
|
|
@@ -76,6 +79,7 @@ export declare const userEventSchema: z.ZodObject<{
|
|
|
76
79
|
achievementName: string;
|
|
77
80
|
achievementDescription: string;
|
|
78
81
|
tier?: number | undefined;
|
|
82
|
+
seasonKey?: string | undefined;
|
|
79
83
|
} | {
|
|
80
84
|
streakNumber: number;
|
|
81
85
|
milestone: number;
|
|
@@ -101,6 +105,7 @@ export declare const userEventSchema: z.ZodObject<{
|
|
|
101
105
|
achievementName: string;
|
|
102
106
|
achievementDescription: string;
|
|
103
107
|
tier?: number | undefined;
|
|
108
|
+
seasonKey?: string | undefined;
|
|
104
109
|
} | {
|
|
105
110
|
streakNumber: number;
|
|
106
111
|
milestone: number;
|
|
@@ -1020,27 +1025,35 @@ export declare const userEventCommentSchema: z.ZodObject<{
|
|
|
1020
1025
|
target: z.ZodNumber;
|
|
1021
1026
|
label: z.ZodOptional<z.ZodString>;
|
|
1022
1027
|
context: z.ZodOptional<z.ZodString>;
|
|
1028
|
+
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
1029
|
+
seen: z.ZodOptional<z.ZodBoolean>;
|
|
1023
1030
|
}, "strip", z.ZodTypeAny, {
|
|
1024
1031
|
target: number;
|
|
1025
1032
|
current: number;
|
|
1026
1033
|
label?: string | undefined;
|
|
1027
1034
|
context?: string | undefined;
|
|
1035
|
+
achievedAt?: number | undefined;
|
|
1036
|
+
seen?: boolean | undefined;
|
|
1028
1037
|
}, {
|
|
1029
1038
|
target: number;
|
|
1030
1039
|
current: number;
|
|
1031
1040
|
label?: string | undefined;
|
|
1032
1041
|
context?: string | undefined;
|
|
1042
|
+
achievedAt?: number | undefined;
|
|
1043
|
+
seen?: boolean | undefined;
|
|
1033
1044
|
}>>>;
|
|
1034
1045
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
1035
1046
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
1036
1047
|
league: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"global">]>>;
|
|
1037
1048
|
sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
|
|
1049
|
+
seasonal: z.ZodOptional<z.ZodBoolean>;
|
|
1038
1050
|
}, "strip", z.ZodTypeAny, {
|
|
1039
1051
|
id: string;
|
|
1040
1052
|
name: string;
|
|
1041
1053
|
description: string;
|
|
1042
1054
|
type?: "global" | "sport" | "league" | undefined;
|
|
1043
1055
|
progress?: number | undefined;
|
|
1056
|
+
seen?: boolean | undefined;
|
|
1044
1057
|
tiers?: {
|
|
1045
1058
|
bronze: {
|
|
1046
1059
|
threshold: number;
|
|
@@ -1061,16 +1074,19 @@ export declare const userEventCommentSchema: z.ZodObject<{
|
|
|
1061
1074
|
current: number;
|
|
1062
1075
|
label?: string | undefined;
|
|
1063
1076
|
context?: string | undefined;
|
|
1077
|
+
achievedAt?: number | undefined;
|
|
1078
|
+
seen?: boolean | undefined;
|
|
1064
1079
|
}> | undefined;
|
|
1065
|
-
seen?: boolean | undefined;
|
|
1066
1080
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
1067
1081
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
1082
|
+
seasonal?: boolean | undefined;
|
|
1068
1083
|
}, {
|
|
1069
1084
|
id: string;
|
|
1070
1085
|
name: string;
|
|
1071
1086
|
description: string;
|
|
1072
1087
|
type?: "global" | "sport" | "league" | undefined;
|
|
1073
1088
|
progress?: number | undefined;
|
|
1089
|
+
seen?: boolean | undefined;
|
|
1074
1090
|
tiers?: {
|
|
1075
1091
|
bronze: {
|
|
1076
1092
|
threshold: number;
|
|
@@ -1091,10 +1107,12 @@ export declare const userEventCommentSchema: z.ZodObject<{
|
|
|
1091
1107
|
current: number;
|
|
1092
1108
|
label?: string | undefined;
|
|
1093
1109
|
context?: string | undefined;
|
|
1110
|
+
achievedAt?: number | undefined;
|
|
1111
|
+
seen?: boolean | undefined;
|
|
1094
1112
|
}> | undefined;
|
|
1095
|
-
seen?: boolean | undefined;
|
|
1096
1113
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
1097
1114
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
1115
|
+
seasonal?: boolean | undefined;
|
|
1098
1116
|
}>>>;
|
|
1099
1117
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
1100
1118
|
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2077,27 +2095,35 @@ export declare const userEventCommentSchema: z.ZodObject<{
|
|
|
2077
2095
|
target: z.ZodNumber;
|
|
2078
2096
|
label: z.ZodOptional<z.ZodString>;
|
|
2079
2097
|
context: z.ZodOptional<z.ZodString>;
|
|
2098
|
+
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
2099
|
+
seen: z.ZodOptional<z.ZodBoolean>;
|
|
2080
2100
|
}, "strip", z.ZodTypeAny, {
|
|
2081
2101
|
target: number;
|
|
2082
2102
|
current: number;
|
|
2083
2103
|
label?: string | undefined;
|
|
2084
2104
|
context?: string | undefined;
|
|
2105
|
+
achievedAt?: number | undefined;
|
|
2106
|
+
seen?: boolean | undefined;
|
|
2085
2107
|
}, {
|
|
2086
2108
|
target: number;
|
|
2087
2109
|
current: number;
|
|
2088
2110
|
label?: string | undefined;
|
|
2089
2111
|
context?: string | undefined;
|
|
2112
|
+
achievedAt?: number | undefined;
|
|
2113
|
+
seen?: boolean | undefined;
|
|
2090
2114
|
}>>>;
|
|
2091
2115
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
2092
2116
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
2093
2117
|
league: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"global">]>>;
|
|
2094
2118
|
sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
|
|
2119
|
+
seasonal: z.ZodOptional<z.ZodBoolean>;
|
|
2095
2120
|
}, "strip", z.ZodTypeAny, {
|
|
2096
2121
|
id: string;
|
|
2097
2122
|
name: string;
|
|
2098
2123
|
description: string;
|
|
2099
2124
|
type?: "global" | "sport" | "league" | undefined;
|
|
2100
2125
|
progress?: number | undefined;
|
|
2126
|
+
seen?: boolean | undefined;
|
|
2101
2127
|
tiers?: {
|
|
2102
2128
|
bronze: {
|
|
2103
2129
|
threshold: number;
|
|
@@ -2118,16 +2144,19 @@ export declare const userEventCommentSchema: z.ZodObject<{
|
|
|
2118
2144
|
current: number;
|
|
2119
2145
|
label?: string | undefined;
|
|
2120
2146
|
context?: string | undefined;
|
|
2147
|
+
achievedAt?: number | undefined;
|
|
2148
|
+
seen?: boolean | undefined;
|
|
2121
2149
|
}> | undefined;
|
|
2122
|
-
seen?: boolean | undefined;
|
|
2123
2150
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
2124
2151
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
2152
|
+
seasonal?: boolean | undefined;
|
|
2125
2153
|
}, {
|
|
2126
2154
|
id: string;
|
|
2127
2155
|
name: string;
|
|
2128
2156
|
description: string;
|
|
2129
2157
|
type?: "global" | "sport" | "league" | undefined;
|
|
2130
2158
|
progress?: number | undefined;
|
|
2159
|
+
seen?: boolean | undefined;
|
|
2131
2160
|
tiers?: {
|
|
2132
2161
|
bronze: {
|
|
2133
2162
|
threshold: number;
|
|
@@ -2148,10 +2177,12 @@ export declare const userEventCommentSchema: z.ZodObject<{
|
|
|
2148
2177
|
current: number;
|
|
2149
2178
|
label?: string | undefined;
|
|
2150
2179
|
context?: string | undefined;
|
|
2180
|
+
achievedAt?: number | undefined;
|
|
2181
|
+
seen?: boolean | undefined;
|
|
2151
2182
|
}> | undefined;
|
|
2152
|
-
seen?: boolean | undefined;
|
|
2153
2183
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
2154
2184
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
2185
|
+
seasonal?: boolean | undefined;
|
|
2155
2186
|
}>>>;
|
|
2156
2187
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
2157
2188
|
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3187,27 +3218,35 @@ export declare const userEventCommentLikeSchema: z.ZodObject<{
|
|
|
3187
3218
|
target: z.ZodNumber;
|
|
3188
3219
|
label: z.ZodOptional<z.ZodString>;
|
|
3189
3220
|
context: z.ZodOptional<z.ZodString>;
|
|
3221
|
+
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
3222
|
+
seen: z.ZodOptional<z.ZodBoolean>;
|
|
3190
3223
|
}, "strip", z.ZodTypeAny, {
|
|
3191
3224
|
target: number;
|
|
3192
3225
|
current: number;
|
|
3193
3226
|
label?: string | undefined;
|
|
3194
3227
|
context?: string | undefined;
|
|
3228
|
+
achievedAt?: number | undefined;
|
|
3229
|
+
seen?: boolean | undefined;
|
|
3195
3230
|
}, {
|
|
3196
3231
|
target: number;
|
|
3197
3232
|
current: number;
|
|
3198
3233
|
label?: string | undefined;
|
|
3199
3234
|
context?: string | undefined;
|
|
3235
|
+
achievedAt?: number | undefined;
|
|
3236
|
+
seen?: boolean | undefined;
|
|
3200
3237
|
}>>>;
|
|
3201
3238
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
3202
3239
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
3203
3240
|
league: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"global">]>>;
|
|
3204
3241
|
sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
|
|
3242
|
+
seasonal: z.ZodOptional<z.ZodBoolean>;
|
|
3205
3243
|
}, "strip", z.ZodTypeAny, {
|
|
3206
3244
|
id: string;
|
|
3207
3245
|
name: string;
|
|
3208
3246
|
description: string;
|
|
3209
3247
|
type?: "global" | "sport" | "league" | undefined;
|
|
3210
3248
|
progress?: number | undefined;
|
|
3249
|
+
seen?: boolean | undefined;
|
|
3211
3250
|
tiers?: {
|
|
3212
3251
|
bronze: {
|
|
3213
3252
|
threshold: number;
|
|
@@ -3228,16 +3267,19 @@ export declare const userEventCommentLikeSchema: z.ZodObject<{
|
|
|
3228
3267
|
current: number;
|
|
3229
3268
|
label?: string | undefined;
|
|
3230
3269
|
context?: string | undefined;
|
|
3270
|
+
achievedAt?: number | undefined;
|
|
3271
|
+
seen?: boolean | undefined;
|
|
3231
3272
|
}> | undefined;
|
|
3232
|
-
seen?: boolean | undefined;
|
|
3233
3273
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
3234
3274
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
3275
|
+
seasonal?: boolean | undefined;
|
|
3235
3276
|
}, {
|
|
3236
3277
|
id: string;
|
|
3237
3278
|
name: string;
|
|
3238
3279
|
description: string;
|
|
3239
3280
|
type?: "global" | "sport" | "league" | undefined;
|
|
3240
3281
|
progress?: number | undefined;
|
|
3282
|
+
seen?: boolean | undefined;
|
|
3241
3283
|
tiers?: {
|
|
3242
3284
|
bronze: {
|
|
3243
3285
|
threshold: number;
|
|
@@ -3258,10 +3300,12 @@ export declare const userEventCommentLikeSchema: z.ZodObject<{
|
|
|
3258
3300
|
current: number;
|
|
3259
3301
|
label?: string | undefined;
|
|
3260
3302
|
context?: string | undefined;
|
|
3303
|
+
achievedAt?: number | undefined;
|
|
3304
|
+
seen?: boolean | undefined;
|
|
3261
3305
|
}> | undefined;
|
|
3262
|
-
seen?: boolean | undefined;
|
|
3263
3306
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
3264
3307
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
3308
|
+
seasonal?: boolean | undefined;
|
|
3265
3309
|
}>>>;
|
|
3266
3310
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
3267
3311
|
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|