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
|
@@ -19,6 +19,7 @@ exports.userEventSchema = zod_1.z.object({
|
|
|
19
19
|
achievementDescription: zod_1.z.string(),
|
|
20
20
|
tier: zod_1.z.number().optional(),
|
|
21
21
|
progress: zod_1.z.number(),
|
|
22
|
+
seasonKey: zod_1.z.string().optional(), // For seasonal achievements, identifies which season was earned
|
|
22
23
|
}),
|
|
23
24
|
// Streak event data
|
|
24
25
|
zod_1.z.object({
|
package/dist/schemas/voting.d.ts
CHANGED
|
@@ -907,27 +907,35 @@ export declare const playerVoteSchema: z.ZodObject<{
|
|
|
907
907
|
target: z.ZodNumber;
|
|
908
908
|
label: z.ZodOptional<z.ZodString>;
|
|
909
909
|
context: z.ZodOptional<z.ZodString>;
|
|
910
|
+
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
911
|
+
seen: z.ZodOptional<z.ZodBoolean>;
|
|
910
912
|
}, "strip", z.ZodTypeAny, {
|
|
911
913
|
target: number;
|
|
912
914
|
current: number;
|
|
913
915
|
label?: string | undefined;
|
|
914
916
|
context?: string | undefined;
|
|
917
|
+
achievedAt?: number | undefined;
|
|
918
|
+
seen?: boolean | undefined;
|
|
915
919
|
}, {
|
|
916
920
|
target: number;
|
|
917
921
|
current: number;
|
|
918
922
|
label?: string | undefined;
|
|
919
923
|
context?: string | undefined;
|
|
924
|
+
achievedAt?: number | undefined;
|
|
925
|
+
seen?: boolean | undefined;
|
|
920
926
|
}>>>;
|
|
921
927
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
922
928
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
923
929
|
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">]>>;
|
|
924
930
|
sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
|
|
931
|
+
seasonal: z.ZodOptional<z.ZodBoolean>;
|
|
925
932
|
}, "strip", z.ZodTypeAny, {
|
|
926
933
|
id: string;
|
|
927
934
|
name: string;
|
|
928
935
|
description: string;
|
|
929
936
|
type?: "global" | "sport" | "league" | undefined;
|
|
930
937
|
progress?: number | undefined;
|
|
938
|
+
seen?: boolean | undefined;
|
|
931
939
|
tiers?: {
|
|
932
940
|
bronze: {
|
|
933
941
|
threshold: number;
|
|
@@ -948,16 +956,19 @@ export declare const playerVoteSchema: z.ZodObject<{
|
|
|
948
956
|
current: number;
|
|
949
957
|
label?: string | undefined;
|
|
950
958
|
context?: string | undefined;
|
|
959
|
+
achievedAt?: number | undefined;
|
|
960
|
+
seen?: boolean | undefined;
|
|
951
961
|
}> | undefined;
|
|
952
|
-
seen?: boolean | undefined;
|
|
953
962
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
954
963
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
964
|
+
seasonal?: boolean | undefined;
|
|
955
965
|
}, {
|
|
956
966
|
id: string;
|
|
957
967
|
name: string;
|
|
958
968
|
description: string;
|
|
959
969
|
type?: "global" | "sport" | "league" | undefined;
|
|
960
970
|
progress?: number | undefined;
|
|
971
|
+
seen?: boolean | undefined;
|
|
961
972
|
tiers?: {
|
|
962
973
|
bronze: {
|
|
963
974
|
threshold: number;
|
|
@@ -978,10 +989,12 @@ export declare const playerVoteSchema: z.ZodObject<{
|
|
|
978
989
|
current: number;
|
|
979
990
|
label?: string | undefined;
|
|
980
991
|
context?: string | undefined;
|
|
992
|
+
achievedAt?: number | undefined;
|
|
993
|
+
seen?: boolean | undefined;
|
|
981
994
|
}> | undefined;
|
|
982
|
-
seen?: boolean | undefined;
|
|
983
995
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
984
996
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
997
|
+
seasonal?: boolean | undefined;
|
|
985
998
|
}>>>;
|
|
986
999
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
987
1000
|
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2085,27 +2098,35 @@ export declare const voteSubmissionDtoSchema: z.ZodObject<{
|
|
|
2085
2098
|
target: z.ZodNumber;
|
|
2086
2099
|
label: z.ZodOptional<z.ZodString>;
|
|
2087
2100
|
context: z.ZodOptional<z.ZodString>;
|
|
2101
|
+
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
2102
|
+
seen: z.ZodOptional<z.ZodBoolean>;
|
|
2088
2103
|
}, "strip", z.ZodTypeAny, {
|
|
2089
2104
|
target: number;
|
|
2090
2105
|
current: number;
|
|
2091
2106
|
label?: string | undefined;
|
|
2092
2107
|
context?: string | undefined;
|
|
2108
|
+
achievedAt?: number | undefined;
|
|
2109
|
+
seen?: boolean | undefined;
|
|
2093
2110
|
}, {
|
|
2094
2111
|
target: number;
|
|
2095
2112
|
current: number;
|
|
2096
2113
|
label?: string | undefined;
|
|
2097
2114
|
context?: string | undefined;
|
|
2115
|
+
achievedAt?: number | undefined;
|
|
2116
|
+
seen?: boolean | undefined;
|
|
2098
2117
|
}>>>;
|
|
2099
2118
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
2100
2119
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
2101
2120
|
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">]>>;
|
|
2102
2121
|
sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
|
|
2122
|
+
seasonal: z.ZodOptional<z.ZodBoolean>;
|
|
2103
2123
|
}, "strip", z.ZodTypeAny, {
|
|
2104
2124
|
id: string;
|
|
2105
2125
|
name: string;
|
|
2106
2126
|
description: string;
|
|
2107
2127
|
type?: "global" | "sport" | "league" | undefined;
|
|
2108
2128
|
progress?: number | undefined;
|
|
2129
|
+
seen?: boolean | undefined;
|
|
2109
2130
|
tiers?: {
|
|
2110
2131
|
bronze: {
|
|
2111
2132
|
threshold: number;
|
|
@@ -2126,16 +2147,19 @@ export declare const voteSubmissionDtoSchema: z.ZodObject<{
|
|
|
2126
2147
|
current: number;
|
|
2127
2148
|
label?: string | undefined;
|
|
2128
2149
|
context?: string | undefined;
|
|
2150
|
+
achievedAt?: number | undefined;
|
|
2151
|
+
seen?: boolean | undefined;
|
|
2129
2152
|
}> | undefined;
|
|
2130
|
-
seen?: boolean | undefined;
|
|
2131
2153
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
2132
2154
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
2155
|
+
seasonal?: boolean | undefined;
|
|
2133
2156
|
}, {
|
|
2134
2157
|
id: string;
|
|
2135
2158
|
name: string;
|
|
2136
2159
|
description: string;
|
|
2137
2160
|
type?: "global" | "sport" | "league" | undefined;
|
|
2138
2161
|
progress?: number | undefined;
|
|
2162
|
+
seen?: boolean | undefined;
|
|
2139
2163
|
tiers?: {
|
|
2140
2164
|
bronze: {
|
|
2141
2165
|
threshold: number;
|
|
@@ -2156,10 +2180,12 @@ export declare const voteSubmissionDtoSchema: z.ZodObject<{
|
|
|
2156
2180
|
current: number;
|
|
2157
2181
|
label?: string | undefined;
|
|
2158
2182
|
context?: string | undefined;
|
|
2183
|
+
achievedAt?: number | undefined;
|
|
2184
|
+
seen?: boolean | undefined;
|
|
2159
2185
|
}> | undefined;
|
|
2160
|
-
seen?: boolean | undefined;
|
|
2161
2186
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
2162
2187
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
2188
|
+
seasonal?: boolean | undefined;
|
|
2163
2189
|
}>>>;
|
|
2164
2190
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
2165
2191
|
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4584,27 +4610,35 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
4584
4610
|
target: z.ZodNumber;
|
|
4585
4611
|
label: z.ZodOptional<z.ZodString>;
|
|
4586
4612
|
context: z.ZodOptional<z.ZodString>;
|
|
4613
|
+
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
4614
|
+
seen: z.ZodOptional<z.ZodBoolean>;
|
|
4587
4615
|
}, "strip", z.ZodTypeAny, {
|
|
4588
4616
|
target: number;
|
|
4589
4617
|
current: number;
|
|
4590
4618
|
label?: string | undefined;
|
|
4591
4619
|
context?: string | undefined;
|
|
4620
|
+
achievedAt?: number | undefined;
|
|
4621
|
+
seen?: boolean | undefined;
|
|
4592
4622
|
}, {
|
|
4593
4623
|
target: number;
|
|
4594
4624
|
current: number;
|
|
4595
4625
|
label?: string | undefined;
|
|
4596
4626
|
context?: string | undefined;
|
|
4627
|
+
achievedAt?: number | undefined;
|
|
4628
|
+
seen?: boolean | undefined;
|
|
4597
4629
|
}>>>;
|
|
4598
4630
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
4599
4631
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
4600
4632
|
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">]>>;
|
|
4601
4633
|
sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
|
|
4634
|
+
seasonal: z.ZodOptional<z.ZodBoolean>;
|
|
4602
4635
|
}, "strip", z.ZodTypeAny, {
|
|
4603
4636
|
id: string;
|
|
4604
4637
|
name: string;
|
|
4605
4638
|
description: string;
|
|
4606
4639
|
type?: "global" | "sport" | "league" | undefined;
|
|
4607
4640
|
progress?: number | undefined;
|
|
4641
|
+
seen?: boolean | undefined;
|
|
4608
4642
|
tiers?: {
|
|
4609
4643
|
bronze: {
|
|
4610
4644
|
threshold: number;
|
|
@@ -4625,16 +4659,19 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
4625
4659
|
current: number;
|
|
4626
4660
|
label?: string | undefined;
|
|
4627
4661
|
context?: string | undefined;
|
|
4662
|
+
achievedAt?: number | undefined;
|
|
4663
|
+
seen?: boolean | undefined;
|
|
4628
4664
|
}> | undefined;
|
|
4629
|
-
seen?: boolean | undefined;
|
|
4630
4665
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
4631
4666
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
4667
|
+
seasonal?: boolean | undefined;
|
|
4632
4668
|
}, {
|
|
4633
4669
|
id: string;
|
|
4634
4670
|
name: string;
|
|
4635
4671
|
description: string;
|
|
4636
4672
|
type?: "global" | "sport" | "league" | undefined;
|
|
4637
4673
|
progress?: number | undefined;
|
|
4674
|
+
seen?: boolean | undefined;
|
|
4638
4675
|
tiers?: {
|
|
4639
4676
|
bronze: {
|
|
4640
4677
|
threshold: number;
|
|
@@ -4655,10 +4692,12 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
4655
4692
|
current: number;
|
|
4656
4693
|
label?: string | undefined;
|
|
4657
4694
|
context?: string | undefined;
|
|
4695
|
+
achievedAt?: number | undefined;
|
|
4696
|
+
seen?: boolean | undefined;
|
|
4658
4697
|
}> | undefined;
|
|
4659
|
-
seen?: boolean | undefined;
|
|
4660
4698
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
4661
4699
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
4700
|
+
seasonal?: boolean | undefined;
|
|
4662
4701
|
}>>>;
|
|
4663
4702
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
4664
4703
|
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
@@ -7143,27 +7182,35 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
7143
7182
|
target: z.ZodNumber;
|
|
7144
7183
|
label: z.ZodOptional<z.ZodString>;
|
|
7145
7184
|
context: z.ZodOptional<z.ZodString>;
|
|
7185
|
+
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
7186
|
+
seen: z.ZodOptional<z.ZodBoolean>;
|
|
7146
7187
|
}, "strip", z.ZodTypeAny, {
|
|
7147
7188
|
target: number;
|
|
7148
7189
|
current: number;
|
|
7149
7190
|
label?: string | undefined;
|
|
7150
7191
|
context?: string | undefined;
|
|
7192
|
+
achievedAt?: number | undefined;
|
|
7193
|
+
seen?: boolean | undefined;
|
|
7151
7194
|
}, {
|
|
7152
7195
|
target: number;
|
|
7153
7196
|
current: number;
|
|
7154
7197
|
label?: string | undefined;
|
|
7155
7198
|
context?: string | undefined;
|
|
7199
|
+
achievedAt?: number | undefined;
|
|
7200
|
+
seen?: boolean | undefined;
|
|
7156
7201
|
}>>>;
|
|
7157
7202
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
7158
7203
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
7159
7204
|
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">]>>;
|
|
7160
7205
|
sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
|
|
7206
|
+
seasonal: z.ZodOptional<z.ZodBoolean>;
|
|
7161
7207
|
}, "strip", z.ZodTypeAny, {
|
|
7162
7208
|
id: string;
|
|
7163
7209
|
name: string;
|
|
7164
7210
|
description: string;
|
|
7165
7211
|
type?: "global" | "sport" | "league" | undefined;
|
|
7166
7212
|
progress?: number | undefined;
|
|
7213
|
+
seen?: boolean | undefined;
|
|
7167
7214
|
tiers?: {
|
|
7168
7215
|
bronze: {
|
|
7169
7216
|
threshold: number;
|
|
@@ -7184,16 +7231,19 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
7184
7231
|
current: number;
|
|
7185
7232
|
label?: string | undefined;
|
|
7186
7233
|
context?: string | undefined;
|
|
7234
|
+
achievedAt?: number | undefined;
|
|
7235
|
+
seen?: boolean | undefined;
|
|
7187
7236
|
}> | undefined;
|
|
7188
|
-
seen?: boolean | undefined;
|
|
7189
7237
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
7190
7238
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
7239
|
+
seasonal?: boolean | undefined;
|
|
7191
7240
|
}, {
|
|
7192
7241
|
id: string;
|
|
7193
7242
|
name: string;
|
|
7194
7243
|
description: string;
|
|
7195
7244
|
type?: "global" | "sport" | "league" | undefined;
|
|
7196
7245
|
progress?: number | undefined;
|
|
7246
|
+
seen?: boolean | undefined;
|
|
7197
7247
|
tiers?: {
|
|
7198
7248
|
bronze: {
|
|
7199
7249
|
threshold: number;
|
|
@@ -7214,10 +7264,12 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
7214
7264
|
current: number;
|
|
7215
7265
|
label?: string | undefined;
|
|
7216
7266
|
context?: string | undefined;
|
|
7267
|
+
achievedAt?: number | undefined;
|
|
7268
|
+
seen?: boolean | undefined;
|
|
7217
7269
|
}> | undefined;
|
|
7218
|
-
seen?: boolean | undefined;
|
|
7219
7270
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
7220
7271
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
7272
|
+
seasonal?: boolean | undefined;
|
|
7221
7273
|
}>>>;
|
|
7222
7274
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
7223
7275
|
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9723,27 +9775,35 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
9723
9775
|
target: z.ZodNumber;
|
|
9724
9776
|
label: z.ZodOptional<z.ZodString>;
|
|
9725
9777
|
context: z.ZodOptional<z.ZodString>;
|
|
9778
|
+
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
9779
|
+
seen: z.ZodOptional<z.ZodBoolean>;
|
|
9726
9780
|
}, "strip", z.ZodTypeAny, {
|
|
9727
9781
|
target: number;
|
|
9728
9782
|
current: number;
|
|
9729
9783
|
label?: string | undefined;
|
|
9730
9784
|
context?: string | undefined;
|
|
9785
|
+
achievedAt?: number | undefined;
|
|
9786
|
+
seen?: boolean | undefined;
|
|
9731
9787
|
}, {
|
|
9732
9788
|
target: number;
|
|
9733
9789
|
current: number;
|
|
9734
9790
|
label?: string | undefined;
|
|
9735
9791
|
context?: string | undefined;
|
|
9792
|
+
achievedAt?: number | undefined;
|
|
9793
|
+
seen?: boolean | undefined;
|
|
9736
9794
|
}>>>;
|
|
9737
9795
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
9738
9796
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
9739
9797
|
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">]>>;
|
|
9740
9798
|
sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
|
|
9799
|
+
seasonal: z.ZodOptional<z.ZodBoolean>;
|
|
9741
9800
|
}, "strip", z.ZodTypeAny, {
|
|
9742
9801
|
id: string;
|
|
9743
9802
|
name: string;
|
|
9744
9803
|
description: string;
|
|
9745
9804
|
type?: "global" | "sport" | "league" | undefined;
|
|
9746
9805
|
progress?: number | undefined;
|
|
9806
|
+
seen?: boolean | undefined;
|
|
9747
9807
|
tiers?: {
|
|
9748
9808
|
bronze: {
|
|
9749
9809
|
threshold: number;
|
|
@@ -9764,16 +9824,19 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
9764
9824
|
current: number;
|
|
9765
9825
|
label?: string | undefined;
|
|
9766
9826
|
context?: string | undefined;
|
|
9827
|
+
achievedAt?: number | undefined;
|
|
9828
|
+
seen?: boolean | undefined;
|
|
9767
9829
|
}> | undefined;
|
|
9768
|
-
seen?: boolean | undefined;
|
|
9769
9830
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
9770
9831
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
9832
|
+
seasonal?: boolean | undefined;
|
|
9771
9833
|
}, {
|
|
9772
9834
|
id: string;
|
|
9773
9835
|
name: string;
|
|
9774
9836
|
description: string;
|
|
9775
9837
|
type?: "global" | "sport" | "league" | undefined;
|
|
9776
9838
|
progress?: number | undefined;
|
|
9839
|
+
seen?: boolean | undefined;
|
|
9777
9840
|
tiers?: {
|
|
9778
9841
|
bronze: {
|
|
9779
9842
|
threshold: number;
|
|
@@ -9794,10 +9857,12 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
9794
9857
|
current: number;
|
|
9795
9858
|
label?: string | undefined;
|
|
9796
9859
|
context?: string | undefined;
|
|
9860
|
+
achievedAt?: number | undefined;
|
|
9861
|
+
seen?: boolean | undefined;
|
|
9797
9862
|
}> | undefined;
|
|
9798
|
-
seen?: boolean | undefined;
|
|
9799
9863
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
9800
9864
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
9865
|
+
seasonal?: boolean | undefined;
|
|
9801
9866
|
}>>>;
|
|
9802
9867
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
9803
9868
|
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
@@ -12388,27 +12453,35 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
12388
12453
|
target: z.ZodNumber;
|
|
12389
12454
|
label: z.ZodOptional<z.ZodString>;
|
|
12390
12455
|
context: z.ZodOptional<z.ZodString>;
|
|
12456
|
+
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
12457
|
+
seen: z.ZodOptional<z.ZodBoolean>;
|
|
12391
12458
|
}, "strip", z.ZodTypeAny, {
|
|
12392
12459
|
target: number;
|
|
12393
12460
|
current: number;
|
|
12394
12461
|
label?: string | undefined;
|
|
12395
12462
|
context?: string | undefined;
|
|
12463
|
+
achievedAt?: number | undefined;
|
|
12464
|
+
seen?: boolean | undefined;
|
|
12396
12465
|
}, {
|
|
12397
12466
|
target: number;
|
|
12398
12467
|
current: number;
|
|
12399
12468
|
label?: string | undefined;
|
|
12400
12469
|
context?: string | undefined;
|
|
12470
|
+
achievedAt?: number | undefined;
|
|
12471
|
+
seen?: boolean | undefined;
|
|
12401
12472
|
}>>>;
|
|
12402
12473
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
12403
12474
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
12404
12475
|
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">]>>;
|
|
12405
12476
|
sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
|
|
12477
|
+
seasonal: z.ZodOptional<z.ZodBoolean>;
|
|
12406
12478
|
}, "strip", z.ZodTypeAny, {
|
|
12407
12479
|
id: string;
|
|
12408
12480
|
name: string;
|
|
12409
12481
|
description: string;
|
|
12410
12482
|
type?: "global" | "sport" | "league" | undefined;
|
|
12411
12483
|
progress?: number | undefined;
|
|
12484
|
+
seen?: boolean | undefined;
|
|
12412
12485
|
tiers?: {
|
|
12413
12486
|
bronze: {
|
|
12414
12487
|
threshold: number;
|
|
@@ -12429,16 +12502,19 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
12429
12502
|
current: number;
|
|
12430
12503
|
label?: string | undefined;
|
|
12431
12504
|
context?: string | undefined;
|
|
12505
|
+
achievedAt?: number | undefined;
|
|
12506
|
+
seen?: boolean | undefined;
|
|
12432
12507
|
}> | undefined;
|
|
12433
|
-
seen?: boolean | undefined;
|
|
12434
12508
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
12435
12509
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
12510
|
+
seasonal?: boolean | undefined;
|
|
12436
12511
|
}, {
|
|
12437
12512
|
id: string;
|
|
12438
12513
|
name: string;
|
|
12439
12514
|
description: string;
|
|
12440
12515
|
type?: "global" | "sport" | "league" | undefined;
|
|
12441
12516
|
progress?: number | undefined;
|
|
12517
|
+
seen?: boolean | undefined;
|
|
12442
12518
|
tiers?: {
|
|
12443
12519
|
bronze: {
|
|
12444
12520
|
threshold: number;
|
|
@@ -12459,10 +12535,12 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
12459
12535
|
current: number;
|
|
12460
12536
|
label?: string | undefined;
|
|
12461
12537
|
context?: string | undefined;
|
|
12538
|
+
achievedAt?: number | undefined;
|
|
12539
|
+
seen?: boolean | undefined;
|
|
12462
12540
|
}> | undefined;
|
|
12463
|
-
seen?: boolean | undefined;
|
|
12464
12541
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
12465
12542
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
12543
|
+
seasonal?: boolean | undefined;
|
|
12466
12544
|
}>>>;
|
|
12467
12545
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
12468
12546
|
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
@@ -15024,27 +15102,35 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
15024
15102
|
target: z.ZodNumber;
|
|
15025
15103
|
label: z.ZodOptional<z.ZodString>;
|
|
15026
15104
|
context: z.ZodOptional<z.ZodString>;
|
|
15105
|
+
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
15106
|
+
seen: z.ZodOptional<z.ZodBoolean>;
|
|
15027
15107
|
}, "strip", z.ZodTypeAny, {
|
|
15028
15108
|
target: number;
|
|
15029
15109
|
current: number;
|
|
15030
15110
|
label?: string | undefined;
|
|
15031
15111
|
context?: string | undefined;
|
|
15112
|
+
achievedAt?: number | undefined;
|
|
15113
|
+
seen?: boolean | undefined;
|
|
15032
15114
|
}, {
|
|
15033
15115
|
target: number;
|
|
15034
15116
|
current: number;
|
|
15035
15117
|
label?: string | undefined;
|
|
15036
15118
|
context?: string | undefined;
|
|
15119
|
+
achievedAt?: number | undefined;
|
|
15120
|
+
seen?: boolean | undefined;
|
|
15037
15121
|
}>>>;
|
|
15038
15122
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
15039
15123
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
15040
15124
|
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">]>>;
|
|
15041
15125
|
sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
|
|
15126
|
+
seasonal: z.ZodOptional<z.ZodBoolean>;
|
|
15042
15127
|
}, "strip", z.ZodTypeAny, {
|
|
15043
15128
|
id: string;
|
|
15044
15129
|
name: string;
|
|
15045
15130
|
description: string;
|
|
15046
15131
|
type?: "global" | "sport" | "league" | undefined;
|
|
15047
15132
|
progress?: number | undefined;
|
|
15133
|
+
seen?: boolean | undefined;
|
|
15048
15134
|
tiers?: {
|
|
15049
15135
|
bronze: {
|
|
15050
15136
|
threshold: number;
|
|
@@ -15065,16 +15151,19 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
15065
15151
|
current: number;
|
|
15066
15152
|
label?: string | undefined;
|
|
15067
15153
|
context?: string | undefined;
|
|
15154
|
+
achievedAt?: number | undefined;
|
|
15155
|
+
seen?: boolean | undefined;
|
|
15068
15156
|
}> | undefined;
|
|
15069
|
-
seen?: boolean | undefined;
|
|
15070
15157
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
15071
15158
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
15159
|
+
seasonal?: boolean | undefined;
|
|
15072
15160
|
}, {
|
|
15073
15161
|
id: string;
|
|
15074
15162
|
name: string;
|
|
15075
15163
|
description: string;
|
|
15076
15164
|
type?: "global" | "sport" | "league" | undefined;
|
|
15077
15165
|
progress?: number | undefined;
|
|
15166
|
+
seen?: boolean | undefined;
|
|
15078
15167
|
tiers?: {
|
|
15079
15168
|
bronze: {
|
|
15080
15169
|
threshold: number;
|
|
@@ -15095,10 +15184,12 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
15095
15184
|
current: number;
|
|
15096
15185
|
label?: string | undefined;
|
|
15097
15186
|
context?: string | undefined;
|
|
15187
|
+
achievedAt?: number | undefined;
|
|
15188
|
+
seen?: boolean | undefined;
|
|
15098
15189
|
}> | undefined;
|
|
15099
|
-
seen?: boolean | undefined;
|
|
15100
15190
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
15101
15191
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
15192
|
+
seasonal?: boolean | undefined;
|
|
15102
15193
|
}>>>;
|
|
15103
15194
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
15104
15195
|
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
@@ -17642,27 +17733,35 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
17642
17733
|
target: z.ZodNumber;
|
|
17643
17734
|
label: z.ZodOptional<z.ZodString>;
|
|
17644
17735
|
context: z.ZodOptional<z.ZodString>;
|
|
17736
|
+
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
17737
|
+
seen: z.ZodOptional<z.ZodBoolean>;
|
|
17645
17738
|
}, "strip", z.ZodTypeAny, {
|
|
17646
17739
|
target: number;
|
|
17647
17740
|
current: number;
|
|
17648
17741
|
label?: string | undefined;
|
|
17649
17742
|
context?: string | undefined;
|
|
17743
|
+
achievedAt?: number | undefined;
|
|
17744
|
+
seen?: boolean | undefined;
|
|
17650
17745
|
}, {
|
|
17651
17746
|
target: number;
|
|
17652
17747
|
current: number;
|
|
17653
17748
|
label?: string | undefined;
|
|
17654
17749
|
context?: string | undefined;
|
|
17750
|
+
achievedAt?: number | undefined;
|
|
17751
|
+
seen?: boolean | undefined;
|
|
17655
17752
|
}>>>;
|
|
17656
17753
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
17657
17754
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
17658
17755
|
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">]>>;
|
|
17659
17756
|
sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
|
|
17757
|
+
seasonal: z.ZodOptional<z.ZodBoolean>;
|
|
17660
17758
|
}, "strip", z.ZodTypeAny, {
|
|
17661
17759
|
id: string;
|
|
17662
17760
|
name: string;
|
|
17663
17761
|
description: string;
|
|
17664
17762
|
type?: "global" | "sport" | "league" | undefined;
|
|
17665
17763
|
progress?: number | undefined;
|
|
17764
|
+
seen?: boolean | undefined;
|
|
17666
17765
|
tiers?: {
|
|
17667
17766
|
bronze: {
|
|
17668
17767
|
threshold: number;
|
|
@@ -17683,16 +17782,19 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
17683
17782
|
current: number;
|
|
17684
17783
|
label?: string | undefined;
|
|
17685
17784
|
context?: string | undefined;
|
|
17785
|
+
achievedAt?: number | undefined;
|
|
17786
|
+
seen?: boolean | undefined;
|
|
17686
17787
|
}> | undefined;
|
|
17687
|
-
seen?: boolean | undefined;
|
|
17688
17788
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
17689
17789
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
17790
|
+
seasonal?: boolean | undefined;
|
|
17690
17791
|
}, {
|
|
17691
17792
|
id: string;
|
|
17692
17793
|
name: string;
|
|
17693
17794
|
description: string;
|
|
17694
17795
|
type?: "global" | "sport" | "league" | undefined;
|
|
17695
17796
|
progress?: number | undefined;
|
|
17797
|
+
seen?: boolean | undefined;
|
|
17696
17798
|
tiers?: {
|
|
17697
17799
|
bronze: {
|
|
17698
17800
|
threshold: number;
|
|
@@ -17713,10 +17815,12 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
17713
17815
|
current: number;
|
|
17714
17816
|
label?: string | undefined;
|
|
17715
17817
|
context?: string | undefined;
|
|
17818
|
+
achievedAt?: number | undefined;
|
|
17819
|
+
seen?: boolean | undefined;
|
|
17716
17820
|
}> | undefined;
|
|
17717
|
-
seen?: boolean | undefined;
|
|
17718
17821
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
17719
17822
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
17823
|
+
seasonal?: boolean | undefined;
|
|
17720
17824
|
}>>>;
|
|
17721
17825
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
17722
17826
|
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
@@ -21787,27 +21891,35 @@ export declare const userVoteResponseDtoSchema: z.ZodObject<{
|
|
|
21787
21891
|
target: z.ZodNumber;
|
|
21788
21892
|
label: z.ZodOptional<z.ZodString>;
|
|
21789
21893
|
context: z.ZodOptional<z.ZodString>;
|
|
21894
|
+
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
21895
|
+
seen: z.ZodOptional<z.ZodBoolean>;
|
|
21790
21896
|
}, "strip", z.ZodTypeAny, {
|
|
21791
21897
|
target: number;
|
|
21792
21898
|
current: number;
|
|
21793
21899
|
label?: string | undefined;
|
|
21794
21900
|
context?: string | undefined;
|
|
21901
|
+
achievedAt?: number | undefined;
|
|
21902
|
+
seen?: boolean | undefined;
|
|
21795
21903
|
}, {
|
|
21796
21904
|
target: number;
|
|
21797
21905
|
current: number;
|
|
21798
21906
|
label?: string | undefined;
|
|
21799
21907
|
context?: string | undefined;
|
|
21908
|
+
achievedAt?: number | undefined;
|
|
21909
|
+
seen?: boolean | undefined;
|
|
21800
21910
|
}>>>;
|
|
21801
21911
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
21802
21912
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
21803
21913
|
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">]>>;
|
|
21804
21914
|
sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
|
|
21915
|
+
seasonal: z.ZodOptional<z.ZodBoolean>;
|
|
21805
21916
|
}, "strip", z.ZodTypeAny, {
|
|
21806
21917
|
id: string;
|
|
21807
21918
|
name: string;
|
|
21808
21919
|
description: string;
|
|
21809
21920
|
type?: "global" | "sport" | "league" | undefined;
|
|
21810
21921
|
progress?: number | undefined;
|
|
21922
|
+
seen?: boolean | undefined;
|
|
21811
21923
|
tiers?: {
|
|
21812
21924
|
bronze: {
|
|
21813
21925
|
threshold: number;
|
|
@@ -21828,16 +21940,19 @@ export declare const userVoteResponseDtoSchema: z.ZodObject<{
|
|
|
21828
21940
|
current: number;
|
|
21829
21941
|
label?: string | undefined;
|
|
21830
21942
|
context?: string | undefined;
|
|
21943
|
+
achievedAt?: number | undefined;
|
|
21944
|
+
seen?: boolean | undefined;
|
|
21831
21945
|
}> | undefined;
|
|
21832
|
-
seen?: boolean | undefined;
|
|
21833
21946
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
21834
21947
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
21948
|
+
seasonal?: boolean | undefined;
|
|
21835
21949
|
}, {
|
|
21836
21950
|
id: string;
|
|
21837
21951
|
name: string;
|
|
21838
21952
|
description: string;
|
|
21839
21953
|
type?: "global" | "sport" | "league" | undefined;
|
|
21840
21954
|
progress?: number | undefined;
|
|
21955
|
+
seen?: boolean | undefined;
|
|
21841
21956
|
tiers?: {
|
|
21842
21957
|
bronze: {
|
|
21843
21958
|
threshold: number;
|
|
@@ -21858,10 +21973,12 @@ export declare const userVoteResponseDtoSchema: z.ZodObject<{
|
|
|
21858
21973
|
current: number;
|
|
21859
21974
|
label?: string | undefined;
|
|
21860
21975
|
context?: string | undefined;
|
|
21976
|
+
achievedAt?: number | undefined;
|
|
21977
|
+
seen?: boolean | undefined;
|
|
21861
21978
|
}> | undefined;
|
|
21862
|
-
seen?: boolean | undefined;
|
|
21863
21979
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
21864
21980
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
21981
|
+
seasonal?: boolean | undefined;
|
|
21865
21982
|
}>>>;
|
|
21866
21983
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
21867
21984
|
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|