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/game.d.ts
CHANGED
|
@@ -4178,27 +4178,35 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4178
4178
|
target: z.ZodNumber;
|
|
4179
4179
|
label: z.ZodOptional<z.ZodString>;
|
|
4180
4180
|
context: z.ZodOptional<z.ZodString>;
|
|
4181
|
+
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
4182
|
+
seen: z.ZodOptional<z.ZodBoolean>;
|
|
4181
4183
|
}, "strip", z.ZodTypeAny, {
|
|
4182
4184
|
target: number;
|
|
4183
4185
|
current: number;
|
|
4184
4186
|
label?: string | undefined;
|
|
4185
4187
|
context?: string | undefined;
|
|
4188
|
+
achievedAt?: number | undefined;
|
|
4189
|
+
seen?: boolean | undefined;
|
|
4186
4190
|
}, {
|
|
4187
4191
|
target: number;
|
|
4188
4192
|
current: number;
|
|
4189
4193
|
label?: string | undefined;
|
|
4190
4194
|
context?: string | undefined;
|
|
4195
|
+
achievedAt?: number | undefined;
|
|
4196
|
+
seen?: boolean | undefined;
|
|
4191
4197
|
}>>>;
|
|
4192
4198
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
4193
4199
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
4194
4200
|
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">]>>;
|
|
4195
4201
|
sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
|
|
4202
|
+
seasonal: z.ZodOptional<z.ZodBoolean>;
|
|
4196
4203
|
}, "strip", z.ZodTypeAny, {
|
|
4197
4204
|
id: string;
|
|
4198
4205
|
name: string;
|
|
4199
4206
|
description: string;
|
|
4200
4207
|
type?: "global" | "sport" | "league" | undefined;
|
|
4201
4208
|
progress?: number | undefined;
|
|
4209
|
+
seen?: boolean | undefined;
|
|
4202
4210
|
tiers?: {
|
|
4203
4211
|
bronze: {
|
|
4204
4212
|
threshold: number;
|
|
@@ -4219,16 +4227,19 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4219
4227
|
current: number;
|
|
4220
4228
|
label?: string | undefined;
|
|
4221
4229
|
context?: string | undefined;
|
|
4230
|
+
achievedAt?: number | undefined;
|
|
4231
|
+
seen?: boolean | undefined;
|
|
4222
4232
|
}> | undefined;
|
|
4223
|
-
seen?: boolean | undefined;
|
|
4224
4233
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
4225
4234
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
4235
|
+
seasonal?: boolean | undefined;
|
|
4226
4236
|
}, {
|
|
4227
4237
|
id: string;
|
|
4228
4238
|
name: string;
|
|
4229
4239
|
description: string;
|
|
4230
4240
|
type?: "global" | "sport" | "league" | undefined;
|
|
4231
4241
|
progress?: number | undefined;
|
|
4242
|
+
seen?: boolean | undefined;
|
|
4232
4243
|
tiers?: {
|
|
4233
4244
|
bronze: {
|
|
4234
4245
|
threshold: number;
|
|
@@ -4249,10 +4260,12 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4249
4260
|
current: number;
|
|
4250
4261
|
label?: string | undefined;
|
|
4251
4262
|
context?: string | undefined;
|
|
4263
|
+
achievedAt?: number | undefined;
|
|
4264
|
+
seen?: boolean | undefined;
|
|
4252
4265
|
}> | undefined;
|
|
4253
|
-
seen?: boolean | undefined;
|
|
4254
4266
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
4255
4267
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
4268
|
+
seasonal?: boolean | undefined;
|
|
4256
4269
|
}>>>;
|
|
4257
4270
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
4258
4271
|
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6690,27 +6703,35 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6690
6703
|
target: z.ZodNumber;
|
|
6691
6704
|
label: z.ZodOptional<z.ZodString>;
|
|
6692
6705
|
context: z.ZodOptional<z.ZodString>;
|
|
6706
|
+
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
6707
|
+
seen: z.ZodOptional<z.ZodBoolean>;
|
|
6693
6708
|
}, "strip", z.ZodTypeAny, {
|
|
6694
6709
|
target: number;
|
|
6695
6710
|
current: number;
|
|
6696
6711
|
label?: string | undefined;
|
|
6697
6712
|
context?: string | undefined;
|
|
6713
|
+
achievedAt?: number | undefined;
|
|
6714
|
+
seen?: boolean | undefined;
|
|
6698
6715
|
}, {
|
|
6699
6716
|
target: number;
|
|
6700
6717
|
current: number;
|
|
6701
6718
|
label?: string | undefined;
|
|
6702
6719
|
context?: string | undefined;
|
|
6720
|
+
achievedAt?: number | undefined;
|
|
6721
|
+
seen?: boolean | undefined;
|
|
6703
6722
|
}>>>;
|
|
6704
6723
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
6705
6724
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
6706
6725
|
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">]>>;
|
|
6707
6726
|
sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
|
|
6727
|
+
seasonal: z.ZodOptional<z.ZodBoolean>;
|
|
6708
6728
|
}, "strip", z.ZodTypeAny, {
|
|
6709
6729
|
id: string;
|
|
6710
6730
|
name: string;
|
|
6711
6731
|
description: string;
|
|
6712
6732
|
type?: "global" | "sport" | "league" | undefined;
|
|
6713
6733
|
progress?: number | undefined;
|
|
6734
|
+
seen?: boolean | undefined;
|
|
6714
6735
|
tiers?: {
|
|
6715
6736
|
bronze: {
|
|
6716
6737
|
threshold: number;
|
|
@@ -6731,16 +6752,19 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6731
6752
|
current: number;
|
|
6732
6753
|
label?: string | undefined;
|
|
6733
6754
|
context?: string | undefined;
|
|
6755
|
+
achievedAt?: number | undefined;
|
|
6756
|
+
seen?: boolean | undefined;
|
|
6734
6757
|
}> | undefined;
|
|
6735
|
-
seen?: boolean | undefined;
|
|
6736
6758
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
6737
6759
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
6760
|
+
seasonal?: boolean | undefined;
|
|
6738
6761
|
}, {
|
|
6739
6762
|
id: string;
|
|
6740
6763
|
name: string;
|
|
6741
6764
|
description: string;
|
|
6742
6765
|
type?: "global" | "sport" | "league" | undefined;
|
|
6743
6766
|
progress?: number | undefined;
|
|
6767
|
+
seen?: boolean | undefined;
|
|
6744
6768
|
tiers?: {
|
|
6745
6769
|
bronze: {
|
|
6746
6770
|
threshold: number;
|
|
@@ -6761,10 +6785,12 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6761
6785
|
current: number;
|
|
6762
6786
|
label?: string | undefined;
|
|
6763
6787
|
context?: string | undefined;
|
|
6788
|
+
achievedAt?: number | undefined;
|
|
6789
|
+
seen?: boolean | undefined;
|
|
6764
6790
|
}> | undefined;
|
|
6765
|
-
seen?: boolean | undefined;
|
|
6766
6791
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
6767
6792
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
6793
|
+
seasonal?: boolean | undefined;
|
|
6768
6794
|
}>>>;
|
|
6769
6795
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
6770
6796
|
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9263,27 +9289,35 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9263
9289
|
target: z.ZodNumber;
|
|
9264
9290
|
label: z.ZodOptional<z.ZodString>;
|
|
9265
9291
|
context: z.ZodOptional<z.ZodString>;
|
|
9292
|
+
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
9293
|
+
seen: z.ZodOptional<z.ZodBoolean>;
|
|
9266
9294
|
}, "strip", z.ZodTypeAny, {
|
|
9267
9295
|
target: number;
|
|
9268
9296
|
current: number;
|
|
9269
9297
|
label?: string | undefined;
|
|
9270
9298
|
context?: string | undefined;
|
|
9299
|
+
achievedAt?: number | undefined;
|
|
9300
|
+
seen?: boolean | undefined;
|
|
9271
9301
|
}, {
|
|
9272
9302
|
target: number;
|
|
9273
9303
|
current: number;
|
|
9274
9304
|
label?: string | undefined;
|
|
9275
9305
|
context?: string | undefined;
|
|
9306
|
+
achievedAt?: number | undefined;
|
|
9307
|
+
seen?: boolean | undefined;
|
|
9276
9308
|
}>>>;
|
|
9277
9309
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
9278
9310
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
9279
9311
|
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">]>>;
|
|
9280
9312
|
sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
|
|
9313
|
+
seasonal: z.ZodOptional<z.ZodBoolean>;
|
|
9281
9314
|
}, "strip", z.ZodTypeAny, {
|
|
9282
9315
|
id: string;
|
|
9283
9316
|
name: string;
|
|
9284
9317
|
description: string;
|
|
9285
9318
|
type?: "global" | "sport" | "league" | undefined;
|
|
9286
9319
|
progress?: number | undefined;
|
|
9320
|
+
seen?: boolean | undefined;
|
|
9287
9321
|
tiers?: {
|
|
9288
9322
|
bronze: {
|
|
9289
9323
|
threshold: number;
|
|
@@ -9304,16 +9338,19 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9304
9338
|
current: number;
|
|
9305
9339
|
label?: string | undefined;
|
|
9306
9340
|
context?: string | undefined;
|
|
9341
|
+
achievedAt?: number | undefined;
|
|
9342
|
+
seen?: boolean | undefined;
|
|
9307
9343
|
}> | undefined;
|
|
9308
|
-
seen?: boolean | undefined;
|
|
9309
9344
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
9310
9345
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
9346
|
+
seasonal?: boolean | undefined;
|
|
9311
9347
|
}, {
|
|
9312
9348
|
id: string;
|
|
9313
9349
|
name: string;
|
|
9314
9350
|
description: string;
|
|
9315
9351
|
type?: "global" | "sport" | "league" | undefined;
|
|
9316
9352
|
progress?: number | undefined;
|
|
9353
|
+
seen?: boolean | undefined;
|
|
9317
9354
|
tiers?: {
|
|
9318
9355
|
bronze: {
|
|
9319
9356
|
threshold: number;
|
|
@@ -9334,10 +9371,12 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9334
9371
|
current: number;
|
|
9335
9372
|
label?: string | undefined;
|
|
9336
9373
|
context?: string | undefined;
|
|
9374
|
+
achievedAt?: number | undefined;
|
|
9375
|
+
seen?: boolean | undefined;
|
|
9337
9376
|
}> | undefined;
|
|
9338
|
-
seen?: boolean | undefined;
|
|
9339
9377
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
9340
9378
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
9379
|
+
seasonal?: boolean | undefined;
|
|
9341
9380
|
}>>>;
|
|
9342
9381
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
9343
9382
|
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
@@ -11844,27 +11883,35 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11844
11883
|
target: z.ZodNumber;
|
|
11845
11884
|
label: z.ZodOptional<z.ZodString>;
|
|
11846
11885
|
context: z.ZodOptional<z.ZodString>;
|
|
11886
|
+
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
11887
|
+
seen: z.ZodOptional<z.ZodBoolean>;
|
|
11847
11888
|
}, "strip", z.ZodTypeAny, {
|
|
11848
11889
|
target: number;
|
|
11849
11890
|
current: number;
|
|
11850
11891
|
label?: string | undefined;
|
|
11851
11892
|
context?: string | undefined;
|
|
11893
|
+
achievedAt?: number | undefined;
|
|
11894
|
+
seen?: boolean | undefined;
|
|
11852
11895
|
}, {
|
|
11853
11896
|
target: number;
|
|
11854
11897
|
current: number;
|
|
11855
11898
|
label?: string | undefined;
|
|
11856
11899
|
context?: string | undefined;
|
|
11900
|
+
achievedAt?: number | undefined;
|
|
11901
|
+
seen?: boolean | undefined;
|
|
11857
11902
|
}>>>;
|
|
11858
11903
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
11859
11904
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
11860
11905
|
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">]>>;
|
|
11861
11906
|
sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
|
|
11907
|
+
seasonal: z.ZodOptional<z.ZodBoolean>;
|
|
11862
11908
|
}, "strip", z.ZodTypeAny, {
|
|
11863
11909
|
id: string;
|
|
11864
11910
|
name: string;
|
|
11865
11911
|
description: string;
|
|
11866
11912
|
type?: "global" | "sport" | "league" | undefined;
|
|
11867
11913
|
progress?: number | undefined;
|
|
11914
|
+
seen?: boolean | undefined;
|
|
11868
11915
|
tiers?: {
|
|
11869
11916
|
bronze: {
|
|
11870
11917
|
threshold: number;
|
|
@@ -11885,16 +11932,19 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11885
11932
|
current: number;
|
|
11886
11933
|
label?: string | undefined;
|
|
11887
11934
|
context?: string | undefined;
|
|
11935
|
+
achievedAt?: number | undefined;
|
|
11936
|
+
seen?: boolean | undefined;
|
|
11888
11937
|
}> | undefined;
|
|
11889
|
-
seen?: boolean | undefined;
|
|
11890
11938
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
11891
11939
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
11940
|
+
seasonal?: boolean | undefined;
|
|
11892
11941
|
}, {
|
|
11893
11942
|
id: string;
|
|
11894
11943
|
name: string;
|
|
11895
11944
|
description: string;
|
|
11896
11945
|
type?: "global" | "sport" | "league" | undefined;
|
|
11897
11946
|
progress?: number | undefined;
|
|
11947
|
+
seen?: boolean | undefined;
|
|
11898
11948
|
tiers?: {
|
|
11899
11949
|
bronze: {
|
|
11900
11950
|
threshold: number;
|
|
@@ -11915,10 +11965,12 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11915
11965
|
current: number;
|
|
11916
11966
|
label?: string | undefined;
|
|
11917
11967
|
context?: string | undefined;
|
|
11968
|
+
achievedAt?: number | undefined;
|
|
11969
|
+
seen?: boolean | undefined;
|
|
11918
11970
|
}> | undefined;
|
|
11919
|
-
seen?: boolean | undefined;
|
|
11920
11971
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
11921
11972
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
11973
|
+
seasonal?: boolean | undefined;
|
|
11922
11974
|
}>>>;
|
|
11923
11975
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
11924
11976
|
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
@@ -14510,27 +14562,35 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
14510
14562
|
target: z.ZodNumber;
|
|
14511
14563
|
label: z.ZodOptional<z.ZodString>;
|
|
14512
14564
|
context: z.ZodOptional<z.ZodString>;
|
|
14565
|
+
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
14566
|
+
seen: z.ZodOptional<z.ZodBoolean>;
|
|
14513
14567
|
}, "strip", z.ZodTypeAny, {
|
|
14514
14568
|
target: number;
|
|
14515
14569
|
current: number;
|
|
14516
14570
|
label?: string | undefined;
|
|
14517
14571
|
context?: string | undefined;
|
|
14572
|
+
achievedAt?: number | undefined;
|
|
14573
|
+
seen?: boolean | undefined;
|
|
14518
14574
|
}, {
|
|
14519
14575
|
target: number;
|
|
14520
14576
|
current: number;
|
|
14521
14577
|
label?: string | undefined;
|
|
14522
14578
|
context?: string | undefined;
|
|
14579
|
+
achievedAt?: number | undefined;
|
|
14580
|
+
seen?: boolean | undefined;
|
|
14523
14581
|
}>>>;
|
|
14524
14582
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
14525
14583
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
14526
14584
|
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">]>>;
|
|
14527
14585
|
sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
|
|
14586
|
+
seasonal: z.ZodOptional<z.ZodBoolean>;
|
|
14528
14587
|
}, "strip", z.ZodTypeAny, {
|
|
14529
14588
|
id: string;
|
|
14530
14589
|
name: string;
|
|
14531
14590
|
description: string;
|
|
14532
14591
|
type?: "global" | "sport" | "league" | undefined;
|
|
14533
14592
|
progress?: number | undefined;
|
|
14593
|
+
seen?: boolean | undefined;
|
|
14534
14594
|
tiers?: {
|
|
14535
14595
|
bronze: {
|
|
14536
14596
|
threshold: number;
|
|
@@ -14551,16 +14611,19 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
14551
14611
|
current: number;
|
|
14552
14612
|
label?: string | undefined;
|
|
14553
14613
|
context?: string | undefined;
|
|
14614
|
+
achievedAt?: number | undefined;
|
|
14615
|
+
seen?: boolean | undefined;
|
|
14554
14616
|
}> | undefined;
|
|
14555
|
-
seen?: boolean | undefined;
|
|
14556
14617
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
14557
14618
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
14619
|
+
seasonal?: boolean | undefined;
|
|
14558
14620
|
}, {
|
|
14559
14621
|
id: string;
|
|
14560
14622
|
name: string;
|
|
14561
14623
|
description: string;
|
|
14562
14624
|
type?: "global" | "sport" | "league" | undefined;
|
|
14563
14625
|
progress?: number | undefined;
|
|
14626
|
+
seen?: boolean | undefined;
|
|
14564
14627
|
tiers?: {
|
|
14565
14628
|
bronze: {
|
|
14566
14629
|
threshold: number;
|
|
@@ -14581,10 +14644,12 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
14581
14644
|
current: number;
|
|
14582
14645
|
label?: string | undefined;
|
|
14583
14646
|
context?: string | undefined;
|
|
14647
|
+
achievedAt?: number | undefined;
|
|
14648
|
+
seen?: boolean | undefined;
|
|
14584
14649
|
}> | undefined;
|
|
14585
|
-
seen?: boolean | undefined;
|
|
14586
14650
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
14587
14651
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
14652
|
+
seasonal?: boolean | undefined;
|
|
14588
14653
|
}>>>;
|
|
14589
14654
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
14590
14655
|
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
@@ -17147,27 +17212,35 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
17147
17212
|
target: z.ZodNumber;
|
|
17148
17213
|
label: z.ZodOptional<z.ZodString>;
|
|
17149
17214
|
context: z.ZodOptional<z.ZodString>;
|
|
17215
|
+
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
17216
|
+
seen: z.ZodOptional<z.ZodBoolean>;
|
|
17150
17217
|
}, "strip", z.ZodTypeAny, {
|
|
17151
17218
|
target: number;
|
|
17152
17219
|
current: number;
|
|
17153
17220
|
label?: string | undefined;
|
|
17154
17221
|
context?: string | undefined;
|
|
17222
|
+
achievedAt?: number | undefined;
|
|
17223
|
+
seen?: boolean | undefined;
|
|
17155
17224
|
}, {
|
|
17156
17225
|
target: number;
|
|
17157
17226
|
current: number;
|
|
17158
17227
|
label?: string | undefined;
|
|
17159
17228
|
context?: string | undefined;
|
|
17229
|
+
achievedAt?: number | undefined;
|
|
17230
|
+
seen?: boolean | undefined;
|
|
17160
17231
|
}>>>;
|
|
17161
17232
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
17162
17233
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
17163
17234
|
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">]>>;
|
|
17164
17235
|
sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
|
|
17236
|
+
seasonal: z.ZodOptional<z.ZodBoolean>;
|
|
17165
17237
|
}, "strip", z.ZodTypeAny, {
|
|
17166
17238
|
id: string;
|
|
17167
17239
|
name: string;
|
|
17168
17240
|
description: string;
|
|
17169
17241
|
type?: "global" | "sport" | "league" | undefined;
|
|
17170
17242
|
progress?: number | undefined;
|
|
17243
|
+
seen?: boolean | undefined;
|
|
17171
17244
|
tiers?: {
|
|
17172
17245
|
bronze: {
|
|
17173
17246
|
threshold: number;
|
|
@@ -17188,16 +17261,19 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
17188
17261
|
current: number;
|
|
17189
17262
|
label?: string | undefined;
|
|
17190
17263
|
context?: string | undefined;
|
|
17264
|
+
achievedAt?: number | undefined;
|
|
17265
|
+
seen?: boolean | undefined;
|
|
17191
17266
|
}> | undefined;
|
|
17192
|
-
seen?: boolean | undefined;
|
|
17193
17267
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
17194
17268
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
17269
|
+
seasonal?: boolean | undefined;
|
|
17195
17270
|
}, {
|
|
17196
17271
|
id: string;
|
|
17197
17272
|
name: string;
|
|
17198
17273
|
description: string;
|
|
17199
17274
|
type?: "global" | "sport" | "league" | undefined;
|
|
17200
17275
|
progress?: number | undefined;
|
|
17276
|
+
seen?: boolean | undefined;
|
|
17201
17277
|
tiers?: {
|
|
17202
17278
|
bronze: {
|
|
17203
17279
|
threshold: number;
|
|
@@ -17218,10 +17294,12 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
17218
17294
|
current: number;
|
|
17219
17295
|
label?: string | undefined;
|
|
17220
17296
|
context?: string | undefined;
|
|
17297
|
+
achievedAt?: number | undefined;
|
|
17298
|
+
seen?: boolean | undefined;
|
|
17221
17299
|
}> | undefined;
|
|
17222
|
-
seen?: boolean | undefined;
|
|
17223
17300
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
17224
17301
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
17302
|
+
seasonal?: boolean | undefined;
|
|
17225
17303
|
}>>>;
|
|
17226
17304
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
17227
17305
|
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
@@ -19766,27 +19844,35 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
19766
19844
|
target: z.ZodNumber;
|
|
19767
19845
|
label: z.ZodOptional<z.ZodString>;
|
|
19768
19846
|
context: z.ZodOptional<z.ZodString>;
|
|
19847
|
+
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
19848
|
+
seen: z.ZodOptional<z.ZodBoolean>;
|
|
19769
19849
|
}, "strip", z.ZodTypeAny, {
|
|
19770
19850
|
target: number;
|
|
19771
19851
|
current: number;
|
|
19772
19852
|
label?: string | undefined;
|
|
19773
19853
|
context?: string | undefined;
|
|
19854
|
+
achievedAt?: number | undefined;
|
|
19855
|
+
seen?: boolean | undefined;
|
|
19774
19856
|
}, {
|
|
19775
19857
|
target: number;
|
|
19776
19858
|
current: number;
|
|
19777
19859
|
label?: string | undefined;
|
|
19778
19860
|
context?: string | undefined;
|
|
19861
|
+
achievedAt?: number | undefined;
|
|
19862
|
+
seen?: boolean | undefined;
|
|
19779
19863
|
}>>>;
|
|
19780
19864
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
19781
19865
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
19782
19866
|
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">]>>;
|
|
19783
19867
|
sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
|
|
19868
|
+
seasonal: z.ZodOptional<z.ZodBoolean>;
|
|
19784
19869
|
}, "strip", z.ZodTypeAny, {
|
|
19785
19870
|
id: string;
|
|
19786
19871
|
name: string;
|
|
19787
19872
|
description: string;
|
|
19788
19873
|
type?: "global" | "sport" | "league" | undefined;
|
|
19789
19874
|
progress?: number | undefined;
|
|
19875
|
+
seen?: boolean | undefined;
|
|
19790
19876
|
tiers?: {
|
|
19791
19877
|
bronze: {
|
|
19792
19878
|
threshold: number;
|
|
@@ -19807,16 +19893,19 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
19807
19893
|
current: number;
|
|
19808
19894
|
label?: string | undefined;
|
|
19809
19895
|
context?: string | undefined;
|
|
19896
|
+
achievedAt?: number | undefined;
|
|
19897
|
+
seen?: boolean | undefined;
|
|
19810
19898
|
}> | undefined;
|
|
19811
|
-
seen?: boolean | undefined;
|
|
19812
19899
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
19813
19900
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
19901
|
+
seasonal?: boolean | undefined;
|
|
19814
19902
|
}, {
|
|
19815
19903
|
id: string;
|
|
19816
19904
|
name: string;
|
|
19817
19905
|
description: string;
|
|
19818
19906
|
type?: "global" | "sport" | "league" | undefined;
|
|
19819
19907
|
progress?: number | undefined;
|
|
19908
|
+
seen?: boolean | undefined;
|
|
19820
19909
|
tiers?: {
|
|
19821
19910
|
bronze: {
|
|
19822
19911
|
threshold: number;
|
|
@@ -19837,10 +19926,12 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
19837
19926
|
current: number;
|
|
19838
19927
|
label?: string | undefined;
|
|
19839
19928
|
context?: string | undefined;
|
|
19929
|
+
achievedAt?: number | undefined;
|
|
19930
|
+
seen?: boolean | undefined;
|
|
19840
19931
|
}> | undefined;
|
|
19841
|
-
seen?: boolean | undefined;
|
|
19842
19932
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
19843
19933
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
19934
|
+
seasonal?: boolean | undefined;
|
|
19844
19935
|
}>>>;
|
|
19845
19936
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
19846
19937
|
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
@@ -22298,27 +22389,35 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22298
22389
|
target: z.ZodNumber;
|
|
22299
22390
|
label: z.ZodOptional<z.ZodString>;
|
|
22300
22391
|
context: z.ZodOptional<z.ZodString>;
|
|
22392
|
+
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
22393
|
+
seen: z.ZodOptional<z.ZodBoolean>;
|
|
22301
22394
|
}, "strip", z.ZodTypeAny, {
|
|
22302
22395
|
target: number;
|
|
22303
22396
|
current: number;
|
|
22304
22397
|
label?: string | undefined;
|
|
22305
22398
|
context?: string | undefined;
|
|
22399
|
+
achievedAt?: number | undefined;
|
|
22400
|
+
seen?: boolean | undefined;
|
|
22306
22401
|
}, {
|
|
22307
22402
|
target: number;
|
|
22308
22403
|
current: number;
|
|
22309
22404
|
label?: string | undefined;
|
|
22310
22405
|
context?: string | undefined;
|
|
22406
|
+
achievedAt?: number | undefined;
|
|
22407
|
+
seen?: boolean | undefined;
|
|
22311
22408
|
}>>>;
|
|
22312
22409
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
22313
22410
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
22314
22411
|
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">]>>;
|
|
22315
22412
|
sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
|
|
22413
|
+
seasonal: z.ZodOptional<z.ZodBoolean>;
|
|
22316
22414
|
}, "strip", z.ZodTypeAny, {
|
|
22317
22415
|
id: string;
|
|
22318
22416
|
name: string;
|
|
22319
22417
|
description: string;
|
|
22320
22418
|
type?: "global" | "sport" | "league" | undefined;
|
|
22321
22419
|
progress?: number | undefined;
|
|
22420
|
+
seen?: boolean | undefined;
|
|
22322
22421
|
tiers?: {
|
|
22323
22422
|
bronze: {
|
|
22324
22423
|
threshold: number;
|
|
@@ -22339,16 +22438,19 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22339
22438
|
current: number;
|
|
22340
22439
|
label?: string | undefined;
|
|
22341
22440
|
context?: string | undefined;
|
|
22441
|
+
achievedAt?: number | undefined;
|
|
22442
|
+
seen?: boolean | undefined;
|
|
22342
22443
|
}> | undefined;
|
|
22343
|
-
seen?: boolean | undefined;
|
|
22344
22444
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
22345
22445
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
22446
|
+
seasonal?: boolean | undefined;
|
|
22346
22447
|
}, {
|
|
22347
22448
|
id: string;
|
|
22348
22449
|
name: string;
|
|
22349
22450
|
description: string;
|
|
22350
22451
|
type?: "global" | "sport" | "league" | undefined;
|
|
22351
22452
|
progress?: number | undefined;
|
|
22453
|
+
seen?: boolean | undefined;
|
|
22352
22454
|
tiers?: {
|
|
22353
22455
|
bronze: {
|
|
22354
22456
|
threshold: number;
|
|
@@ -22369,10 +22471,12 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22369
22471
|
current: number;
|
|
22370
22472
|
label?: string | undefined;
|
|
22371
22473
|
context?: string | undefined;
|
|
22474
|
+
achievedAt?: number | undefined;
|
|
22475
|
+
seen?: boolean | undefined;
|
|
22372
22476
|
}> | undefined;
|
|
22373
|
-
seen?: boolean | undefined;
|
|
22374
22477
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
22375
22478
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
22479
|
+
seasonal?: boolean | undefined;
|
|
22376
22480
|
}>>>;
|
|
22377
22481
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
22378
22482
|
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
@@ -24857,27 +24961,35 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24857
24961
|
target: z.ZodNumber;
|
|
24858
24962
|
label: z.ZodOptional<z.ZodString>;
|
|
24859
24963
|
context: z.ZodOptional<z.ZodString>;
|
|
24964
|
+
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
24965
|
+
seen: z.ZodOptional<z.ZodBoolean>;
|
|
24860
24966
|
}, "strip", z.ZodTypeAny, {
|
|
24861
24967
|
target: number;
|
|
24862
24968
|
current: number;
|
|
24863
24969
|
label?: string | undefined;
|
|
24864
24970
|
context?: string | undefined;
|
|
24971
|
+
achievedAt?: number | undefined;
|
|
24972
|
+
seen?: boolean | undefined;
|
|
24865
24973
|
}, {
|
|
24866
24974
|
target: number;
|
|
24867
24975
|
current: number;
|
|
24868
24976
|
label?: string | undefined;
|
|
24869
24977
|
context?: string | undefined;
|
|
24978
|
+
achievedAt?: number | undefined;
|
|
24979
|
+
seen?: boolean | undefined;
|
|
24870
24980
|
}>>>;
|
|
24871
24981
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
24872
24982
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
24873
24983
|
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">]>>;
|
|
24874
24984
|
sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
|
|
24985
|
+
seasonal: z.ZodOptional<z.ZodBoolean>;
|
|
24875
24986
|
}, "strip", z.ZodTypeAny, {
|
|
24876
24987
|
id: string;
|
|
24877
24988
|
name: string;
|
|
24878
24989
|
description: string;
|
|
24879
24990
|
type?: "global" | "sport" | "league" | undefined;
|
|
24880
24991
|
progress?: number | undefined;
|
|
24992
|
+
seen?: boolean | undefined;
|
|
24881
24993
|
tiers?: {
|
|
24882
24994
|
bronze: {
|
|
24883
24995
|
threshold: number;
|
|
@@ -24898,16 +25010,19 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24898
25010
|
current: number;
|
|
24899
25011
|
label?: string | undefined;
|
|
24900
25012
|
context?: string | undefined;
|
|
25013
|
+
achievedAt?: number | undefined;
|
|
25014
|
+
seen?: boolean | undefined;
|
|
24901
25015
|
}> | undefined;
|
|
24902
|
-
seen?: boolean | undefined;
|
|
24903
25016
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
24904
25017
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
25018
|
+
seasonal?: boolean | undefined;
|
|
24905
25019
|
}, {
|
|
24906
25020
|
id: string;
|
|
24907
25021
|
name: string;
|
|
24908
25022
|
description: string;
|
|
24909
25023
|
type?: "global" | "sport" | "league" | undefined;
|
|
24910
25024
|
progress?: number | undefined;
|
|
25025
|
+
seen?: boolean | undefined;
|
|
24911
25026
|
tiers?: {
|
|
24912
25027
|
bronze: {
|
|
24913
25028
|
threshold: number;
|
|
@@ -24928,10 +25043,12 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24928
25043
|
current: number;
|
|
24929
25044
|
label?: string | undefined;
|
|
24930
25045
|
context?: string | undefined;
|
|
25046
|
+
achievedAt?: number | undefined;
|
|
25047
|
+
seen?: boolean | undefined;
|
|
24931
25048
|
}> | undefined;
|
|
24932
|
-
seen?: boolean | undefined;
|
|
24933
25049
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
24934
25050
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
25051
|
+
seasonal?: boolean | undefined;
|
|
24935
25052
|
}>>>;
|
|
24936
25053
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
24937
25054
|
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
@@ -27437,27 +27554,35 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27437
27554
|
target: z.ZodNumber;
|
|
27438
27555
|
label: z.ZodOptional<z.ZodString>;
|
|
27439
27556
|
context: z.ZodOptional<z.ZodString>;
|
|
27557
|
+
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
27558
|
+
seen: z.ZodOptional<z.ZodBoolean>;
|
|
27440
27559
|
}, "strip", z.ZodTypeAny, {
|
|
27441
27560
|
target: number;
|
|
27442
27561
|
current: number;
|
|
27443
27562
|
label?: string | undefined;
|
|
27444
27563
|
context?: string | undefined;
|
|
27564
|
+
achievedAt?: number | undefined;
|
|
27565
|
+
seen?: boolean | undefined;
|
|
27445
27566
|
}, {
|
|
27446
27567
|
target: number;
|
|
27447
27568
|
current: number;
|
|
27448
27569
|
label?: string | undefined;
|
|
27449
27570
|
context?: string | undefined;
|
|
27571
|
+
achievedAt?: number | undefined;
|
|
27572
|
+
seen?: boolean | undefined;
|
|
27450
27573
|
}>>>;
|
|
27451
27574
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
27452
27575
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
27453
27576
|
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">]>>;
|
|
27454
27577
|
sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
|
|
27578
|
+
seasonal: z.ZodOptional<z.ZodBoolean>;
|
|
27455
27579
|
}, "strip", z.ZodTypeAny, {
|
|
27456
27580
|
id: string;
|
|
27457
27581
|
name: string;
|
|
27458
27582
|
description: string;
|
|
27459
27583
|
type?: "global" | "sport" | "league" | undefined;
|
|
27460
27584
|
progress?: number | undefined;
|
|
27585
|
+
seen?: boolean | undefined;
|
|
27461
27586
|
tiers?: {
|
|
27462
27587
|
bronze: {
|
|
27463
27588
|
threshold: number;
|
|
@@ -27478,16 +27603,19 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27478
27603
|
current: number;
|
|
27479
27604
|
label?: string | undefined;
|
|
27480
27605
|
context?: string | undefined;
|
|
27606
|
+
achievedAt?: number | undefined;
|
|
27607
|
+
seen?: boolean | undefined;
|
|
27481
27608
|
}> | undefined;
|
|
27482
|
-
seen?: boolean | undefined;
|
|
27483
27609
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
27484
27610
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
27611
|
+
seasonal?: boolean | undefined;
|
|
27485
27612
|
}, {
|
|
27486
27613
|
id: string;
|
|
27487
27614
|
name: string;
|
|
27488
27615
|
description: string;
|
|
27489
27616
|
type?: "global" | "sport" | "league" | undefined;
|
|
27490
27617
|
progress?: number | undefined;
|
|
27618
|
+
seen?: boolean | undefined;
|
|
27491
27619
|
tiers?: {
|
|
27492
27620
|
bronze: {
|
|
27493
27621
|
threshold: number;
|
|
@@ -27508,10 +27636,12 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27508
27636
|
current: number;
|
|
27509
27637
|
label?: string | undefined;
|
|
27510
27638
|
context?: string | undefined;
|
|
27639
|
+
achievedAt?: number | undefined;
|
|
27640
|
+
seen?: boolean | undefined;
|
|
27511
27641
|
}> | undefined;
|
|
27512
|
-
seen?: boolean | undefined;
|
|
27513
27642
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
27514
27643
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
27644
|
+
seasonal?: boolean | undefined;
|
|
27515
27645
|
}>>>;
|
|
27516
27646
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
27517
27647
|
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
@@ -30102,27 +30232,35 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
30102
30232
|
target: z.ZodNumber;
|
|
30103
30233
|
label: z.ZodOptional<z.ZodString>;
|
|
30104
30234
|
context: z.ZodOptional<z.ZodString>;
|
|
30235
|
+
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
30236
|
+
seen: z.ZodOptional<z.ZodBoolean>;
|
|
30105
30237
|
}, "strip", z.ZodTypeAny, {
|
|
30106
30238
|
target: number;
|
|
30107
30239
|
current: number;
|
|
30108
30240
|
label?: string | undefined;
|
|
30109
30241
|
context?: string | undefined;
|
|
30242
|
+
achievedAt?: number | undefined;
|
|
30243
|
+
seen?: boolean | undefined;
|
|
30110
30244
|
}, {
|
|
30111
30245
|
target: number;
|
|
30112
30246
|
current: number;
|
|
30113
30247
|
label?: string | undefined;
|
|
30114
30248
|
context?: string | undefined;
|
|
30249
|
+
achievedAt?: number | undefined;
|
|
30250
|
+
seen?: boolean | undefined;
|
|
30115
30251
|
}>>>;
|
|
30116
30252
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
30117
30253
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
30118
30254
|
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">]>>;
|
|
30119
30255
|
sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
|
|
30256
|
+
seasonal: z.ZodOptional<z.ZodBoolean>;
|
|
30120
30257
|
}, "strip", z.ZodTypeAny, {
|
|
30121
30258
|
id: string;
|
|
30122
30259
|
name: string;
|
|
30123
30260
|
description: string;
|
|
30124
30261
|
type?: "global" | "sport" | "league" | undefined;
|
|
30125
30262
|
progress?: number | undefined;
|
|
30263
|
+
seen?: boolean | undefined;
|
|
30126
30264
|
tiers?: {
|
|
30127
30265
|
bronze: {
|
|
30128
30266
|
threshold: number;
|
|
@@ -30143,16 +30281,19 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
30143
30281
|
current: number;
|
|
30144
30282
|
label?: string | undefined;
|
|
30145
30283
|
context?: string | undefined;
|
|
30284
|
+
achievedAt?: number | undefined;
|
|
30285
|
+
seen?: boolean | undefined;
|
|
30146
30286
|
}> | undefined;
|
|
30147
|
-
seen?: boolean | undefined;
|
|
30148
30287
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
30149
30288
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
30289
|
+
seasonal?: boolean | undefined;
|
|
30150
30290
|
}, {
|
|
30151
30291
|
id: string;
|
|
30152
30292
|
name: string;
|
|
30153
30293
|
description: string;
|
|
30154
30294
|
type?: "global" | "sport" | "league" | undefined;
|
|
30155
30295
|
progress?: number | undefined;
|
|
30296
|
+
seen?: boolean | undefined;
|
|
30156
30297
|
tiers?: {
|
|
30157
30298
|
bronze: {
|
|
30158
30299
|
threshold: number;
|
|
@@ -30173,10 +30314,12 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
30173
30314
|
current: number;
|
|
30174
30315
|
label?: string | undefined;
|
|
30175
30316
|
context?: string | undefined;
|
|
30317
|
+
achievedAt?: number | undefined;
|
|
30318
|
+
seen?: boolean | undefined;
|
|
30176
30319
|
}> | undefined;
|
|
30177
|
-
seen?: boolean | undefined;
|
|
30178
30320
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
30179
30321
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
30322
|
+
seasonal?: boolean | undefined;
|
|
30180
30323
|
}>>>;
|
|
30181
30324
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
30182
30325
|
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
@@ -32738,27 +32881,35 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
32738
32881
|
target: z.ZodNumber;
|
|
32739
32882
|
label: z.ZodOptional<z.ZodString>;
|
|
32740
32883
|
context: z.ZodOptional<z.ZodString>;
|
|
32884
|
+
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
32885
|
+
seen: z.ZodOptional<z.ZodBoolean>;
|
|
32741
32886
|
}, "strip", z.ZodTypeAny, {
|
|
32742
32887
|
target: number;
|
|
32743
32888
|
current: number;
|
|
32744
32889
|
label?: string | undefined;
|
|
32745
32890
|
context?: string | undefined;
|
|
32891
|
+
achievedAt?: number | undefined;
|
|
32892
|
+
seen?: boolean | undefined;
|
|
32746
32893
|
}, {
|
|
32747
32894
|
target: number;
|
|
32748
32895
|
current: number;
|
|
32749
32896
|
label?: string | undefined;
|
|
32750
32897
|
context?: string | undefined;
|
|
32898
|
+
achievedAt?: number | undefined;
|
|
32899
|
+
seen?: boolean | undefined;
|
|
32751
32900
|
}>>>;
|
|
32752
32901
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
32753
32902
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
32754
32903
|
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">]>>;
|
|
32755
32904
|
sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
|
|
32905
|
+
seasonal: z.ZodOptional<z.ZodBoolean>;
|
|
32756
32906
|
}, "strip", z.ZodTypeAny, {
|
|
32757
32907
|
id: string;
|
|
32758
32908
|
name: string;
|
|
32759
32909
|
description: string;
|
|
32760
32910
|
type?: "global" | "sport" | "league" | undefined;
|
|
32761
32911
|
progress?: number | undefined;
|
|
32912
|
+
seen?: boolean | undefined;
|
|
32762
32913
|
tiers?: {
|
|
32763
32914
|
bronze: {
|
|
32764
32915
|
threshold: number;
|
|
@@ -32779,16 +32930,19 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
32779
32930
|
current: number;
|
|
32780
32931
|
label?: string | undefined;
|
|
32781
32932
|
context?: string | undefined;
|
|
32933
|
+
achievedAt?: number | undefined;
|
|
32934
|
+
seen?: boolean | undefined;
|
|
32782
32935
|
}> | undefined;
|
|
32783
|
-
seen?: boolean | undefined;
|
|
32784
32936
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
32785
32937
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
32938
|
+
seasonal?: boolean | undefined;
|
|
32786
32939
|
}, {
|
|
32787
32940
|
id: string;
|
|
32788
32941
|
name: string;
|
|
32789
32942
|
description: string;
|
|
32790
32943
|
type?: "global" | "sport" | "league" | undefined;
|
|
32791
32944
|
progress?: number | undefined;
|
|
32945
|
+
seen?: boolean | undefined;
|
|
32792
32946
|
tiers?: {
|
|
32793
32947
|
bronze: {
|
|
32794
32948
|
threshold: number;
|
|
@@ -32809,10 +32963,12 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
32809
32963
|
current: number;
|
|
32810
32964
|
label?: string | undefined;
|
|
32811
32965
|
context?: string | undefined;
|
|
32966
|
+
achievedAt?: number | undefined;
|
|
32967
|
+
seen?: boolean | undefined;
|
|
32812
32968
|
}> | undefined;
|
|
32813
|
-
seen?: boolean | undefined;
|
|
32814
32969
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
32815
32970
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
32971
|
+
seasonal?: boolean | undefined;
|
|
32816
32972
|
}>>>;
|
|
32817
32973
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
32818
32974
|
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
@@ -35356,27 +35512,35 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
35356
35512
|
target: z.ZodNumber;
|
|
35357
35513
|
label: z.ZodOptional<z.ZodString>;
|
|
35358
35514
|
context: z.ZodOptional<z.ZodString>;
|
|
35515
|
+
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
35516
|
+
seen: z.ZodOptional<z.ZodBoolean>;
|
|
35359
35517
|
}, "strip", z.ZodTypeAny, {
|
|
35360
35518
|
target: number;
|
|
35361
35519
|
current: number;
|
|
35362
35520
|
label?: string | undefined;
|
|
35363
35521
|
context?: string | undefined;
|
|
35522
|
+
achievedAt?: number | undefined;
|
|
35523
|
+
seen?: boolean | undefined;
|
|
35364
35524
|
}, {
|
|
35365
35525
|
target: number;
|
|
35366
35526
|
current: number;
|
|
35367
35527
|
label?: string | undefined;
|
|
35368
35528
|
context?: string | undefined;
|
|
35529
|
+
achievedAt?: number | undefined;
|
|
35530
|
+
seen?: boolean | undefined;
|
|
35369
35531
|
}>>>;
|
|
35370
35532
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
35371
35533
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
35372
35534
|
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">]>>;
|
|
35373
35535
|
sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
|
|
35536
|
+
seasonal: z.ZodOptional<z.ZodBoolean>;
|
|
35374
35537
|
}, "strip", z.ZodTypeAny, {
|
|
35375
35538
|
id: string;
|
|
35376
35539
|
name: string;
|
|
35377
35540
|
description: string;
|
|
35378
35541
|
type?: "global" | "sport" | "league" | undefined;
|
|
35379
35542
|
progress?: number | undefined;
|
|
35543
|
+
seen?: boolean | undefined;
|
|
35380
35544
|
tiers?: {
|
|
35381
35545
|
bronze: {
|
|
35382
35546
|
threshold: number;
|
|
@@ -35397,16 +35561,19 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
35397
35561
|
current: number;
|
|
35398
35562
|
label?: string | undefined;
|
|
35399
35563
|
context?: string | undefined;
|
|
35564
|
+
achievedAt?: number | undefined;
|
|
35565
|
+
seen?: boolean | undefined;
|
|
35400
35566
|
}> | undefined;
|
|
35401
|
-
seen?: boolean | undefined;
|
|
35402
35567
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
35403
35568
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
35569
|
+
seasonal?: boolean | undefined;
|
|
35404
35570
|
}, {
|
|
35405
35571
|
id: string;
|
|
35406
35572
|
name: string;
|
|
35407
35573
|
description: string;
|
|
35408
35574
|
type?: "global" | "sport" | "league" | undefined;
|
|
35409
35575
|
progress?: number | undefined;
|
|
35576
|
+
seen?: boolean | undefined;
|
|
35410
35577
|
tiers?: {
|
|
35411
35578
|
bronze: {
|
|
35412
35579
|
threshold: number;
|
|
@@ -35427,10 +35594,12 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
35427
35594
|
current: number;
|
|
35428
35595
|
label?: string | undefined;
|
|
35429
35596
|
context?: string | undefined;
|
|
35597
|
+
achievedAt?: number | undefined;
|
|
35598
|
+
seen?: boolean | undefined;
|
|
35430
35599
|
}> | undefined;
|
|
35431
|
-
seen?: boolean | undefined;
|
|
35432
35600
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
35433
35601
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
35602
|
+
seasonal?: boolean | undefined;
|
|
35434
35603
|
}>>>;
|
|
35435
35604
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
35436
35605
|
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
@@ -37938,27 +38107,35 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
37938
38107
|
target: z.ZodNumber;
|
|
37939
38108
|
label: z.ZodOptional<z.ZodString>;
|
|
37940
38109
|
context: z.ZodOptional<z.ZodString>;
|
|
38110
|
+
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
38111
|
+
seen: z.ZodOptional<z.ZodBoolean>;
|
|
37941
38112
|
}, "strip", z.ZodTypeAny, {
|
|
37942
38113
|
target: number;
|
|
37943
38114
|
current: number;
|
|
37944
38115
|
label?: string | undefined;
|
|
37945
38116
|
context?: string | undefined;
|
|
38117
|
+
achievedAt?: number | undefined;
|
|
38118
|
+
seen?: boolean | undefined;
|
|
37946
38119
|
}, {
|
|
37947
38120
|
target: number;
|
|
37948
38121
|
current: number;
|
|
37949
38122
|
label?: string | undefined;
|
|
37950
38123
|
context?: string | undefined;
|
|
38124
|
+
achievedAt?: number | undefined;
|
|
38125
|
+
seen?: boolean | undefined;
|
|
37951
38126
|
}>>>;
|
|
37952
38127
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
37953
38128
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
37954
38129
|
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">]>>;
|
|
37955
38130
|
sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
|
|
38131
|
+
seasonal: z.ZodOptional<z.ZodBoolean>;
|
|
37956
38132
|
}, "strip", z.ZodTypeAny, {
|
|
37957
38133
|
id: string;
|
|
37958
38134
|
name: string;
|
|
37959
38135
|
description: string;
|
|
37960
38136
|
type?: "global" | "sport" | "league" | undefined;
|
|
37961
38137
|
progress?: number | undefined;
|
|
38138
|
+
seen?: boolean | undefined;
|
|
37962
38139
|
tiers?: {
|
|
37963
38140
|
bronze: {
|
|
37964
38141
|
threshold: number;
|
|
@@ -37979,16 +38156,19 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
37979
38156
|
current: number;
|
|
37980
38157
|
label?: string | undefined;
|
|
37981
38158
|
context?: string | undefined;
|
|
38159
|
+
achievedAt?: number | undefined;
|
|
38160
|
+
seen?: boolean | undefined;
|
|
37982
38161
|
}> | undefined;
|
|
37983
|
-
seen?: boolean | undefined;
|
|
37984
38162
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
37985
38163
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
38164
|
+
seasonal?: boolean | undefined;
|
|
37986
38165
|
}, {
|
|
37987
38166
|
id: string;
|
|
37988
38167
|
name: string;
|
|
37989
38168
|
description: string;
|
|
37990
38169
|
type?: "global" | "sport" | "league" | undefined;
|
|
37991
38170
|
progress?: number | undefined;
|
|
38171
|
+
seen?: boolean | undefined;
|
|
37992
38172
|
tiers?: {
|
|
37993
38173
|
bronze: {
|
|
37994
38174
|
threshold: number;
|
|
@@ -38009,10 +38189,12 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38009
38189
|
current: number;
|
|
38010
38190
|
label?: string | undefined;
|
|
38011
38191
|
context?: string | undefined;
|
|
38192
|
+
achievedAt?: number | undefined;
|
|
38193
|
+
seen?: boolean | undefined;
|
|
38012
38194
|
}> | undefined;
|
|
38013
|
-
seen?: boolean | undefined;
|
|
38014
38195
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
38015
38196
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
38197
|
+
seasonal?: boolean | undefined;
|
|
38016
38198
|
}>>>;
|
|
38017
38199
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
38018
38200
|
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
@@ -40497,27 +40679,35 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40497
40679
|
target: z.ZodNumber;
|
|
40498
40680
|
label: z.ZodOptional<z.ZodString>;
|
|
40499
40681
|
context: z.ZodOptional<z.ZodString>;
|
|
40682
|
+
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
40683
|
+
seen: z.ZodOptional<z.ZodBoolean>;
|
|
40500
40684
|
}, "strip", z.ZodTypeAny, {
|
|
40501
40685
|
target: number;
|
|
40502
40686
|
current: number;
|
|
40503
40687
|
label?: string | undefined;
|
|
40504
40688
|
context?: string | undefined;
|
|
40689
|
+
achievedAt?: number | undefined;
|
|
40690
|
+
seen?: boolean | undefined;
|
|
40505
40691
|
}, {
|
|
40506
40692
|
target: number;
|
|
40507
40693
|
current: number;
|
|
40508
40694
|
label?: string | undefined;
|
|
40509
40695
|
context?: string | undefined;
|
|
40696
|
+
achievedAt?: number | undefined;
|
|
40697
|
+
seen?: boolean | undefined;
|
|
40510
40698
|
}>>>;
|
|
40511
40699
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
40512
40700
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
40513
40701
|
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">]>>;
|
|
40514
40702
|
sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
|
|
40703
|
+
seasonal: z.ZodOptional<z.ZodBoolean>;
|
|
40515
40704
|
}, "strip", z.ZodTypeAny, {
|
|
40516
40705
|
id: string;
|
|
40517
40706
|
name: string;
|
|
40518
40707
|
description: string;
|
|
40519
40708
|
type?: "global" | "sport" | "league" | undefined;
|
|
40520
40709
|
progress?: number | undefined;
|
|
40710
|
+
seen?: boolean | undefined;
|
|
40521
40711
|
tiers?: {
|
|
40522
40712
|
bronze: {
|
|
40523
40713
|
threshold: number;
|
|
@@ -40538,16 +40728,19 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40538
40728
|
current: number;
|
|
40539
40729
|
label?: string | undefined;
|
|
40540
40730
|
context?: string | undefined;
|
|
40731
|
+
achievedAt?: number | undefined;
|
|
40732
|
+
seen?: boolean | undefined;
|
|
40541
40733
|
}> | undefined;
|
|
40542
|
-
seen?: boolean | undefined;
|
|
40543
40734
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
40544
40735
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
40736
|
+
seasonal?: boolean | undefined;
|
|
40545
40737
|
}, {
|
|
40546
40738
|
id: string;
|
|
40547
40739
|
name: string;
|
|
40548
40740
|
description: string;
|
|
40549
40741
|
type?: "global" | "sport" | "league" | undefined;
|
|
40550
40742
|
progress?: number | undefined;
|
|
40743
|
+
seen?: boolean | undefined;
|
|
40551
40744
|
tiers?: {
|
|
40552
40745
|
bronze: {
|
|
40553
40746
|
threshold: number;
|
|
@@ -40568,10 +40761,12 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40568
40761
|
current: number;
|
|
40569
40762
|
label?: string | undefined;
|
|
40570
40763
|
context?: string | undefined;
|
|
40764
|
+
achievedAt?: number | undefined;
|
|
40765
|
+
seen?: boolean | undefined;
|
|
40571
40766
|
}> | undefined;
|
|
40572
|
-
seen?: boolean | undefined;
|
|
40573
40767
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
40574
40768
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
40769
|
+
seasonal?: boolean | undefined;
|
|
40575
40770
|
}>>>;
|
|
40576
40771
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
40577
40772
|
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
@@ -43077,27 +43272,35 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43077
43272
|
target: z.ZodNumber;
|
|
43078
43273
|
label: z.ZodOptional<z.ZodString>;
|
|
43079
43274
|
context: z.ZodOptional<z.ZodString>;
|
|
43275
|
+
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
43276
|
+
seen: z.ZodOptional<z.ZodBoolean>;
|
|
43080
43277
|
}, "strip", z.ZodTypeAny, {
|
|
43081
43278
|
target: number;
|
|
43082
43279
|
current: number;
|
|
43083
43280
|
label?: string | undefined;
|
|
43084
43281
|
context?: string | undefined;
|
|
43282
|
+
achievedAt?: number | undefined;
|
|
43283
|
+
seen?: boolean | undefined;
|
|
43085
43284
|
}, {
|
|
43086
43285
|
target: number;
|
|
43087
43286
|
current: number;
|
|
43088
43287
|
label?: string | undefined;
|
|
43089
43288
|
context?: string | undefined;
|
|
43289
|
+
achievedAt?: number | undefined;
|
|
43290
|
+
seen?: boolean | undefined;
|
|
43090
43291
|
}>>>;
|
|
43091
43292
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
43092
43293
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
43093
43294
|
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">]>>;
|
|
43094
43295
|
sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
|
|
43296
|
+
seasonal: z.ZodOptional<z.ZodBoolean>;
|
|
43095
43297
|
}, "strip", z.ZodTypeAny, {
|
|
43096
43298
|
id: string;
|
|
43097
43299
|
name: string;
|
|
43098
43300
|
description: string;
|
|
43099
43301
|
type?: "global" | "sport" | "league" | undefined;
|
|
43100
43302
|
progress?: number | undefined;
|
|
43303
|
+
seen?: boolean | undefined;
|
|
43101
43304
|
tiers?: {
|
|
43102
43305
|
bronze: {
|
|
43103
43306
|
threshold: number;
|
|
@@ -43118,16 +43321,19 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43118
43321
|
current: number;
|
|
43119
43322
|
label?: string | undefined;
|
|
43120
43323
|
context?: string | undefined;
|
|
43324
|
+
achievedAt?: number | undefined;
|
|
43325
|
+
seen?: boolean | undefined;
|
|
43121
43326
|
}> | undefined;
|
|
43122
|
-
seen?: boolean | undefined;
|
|
43123
43327
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
43124
43328
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
43329
|
+
seasonal?: boolean | undefined;
|
|
43125
43330
|
}, {
|
|
43126
43331
|
id: string;
|
|
43127
43332
|
name: string;
|
|
43128
43333
|
description: string;
|
|
43129
43334
|
type?: "global" | "sport" | "league" | undefined;
|
|
43130
43335
|
progress?: number | undefined;
|
|
43336
|
+
seen?: boolean | undefined;
|
|
43131
43337
|
tiers?: {
|
|
43132
43338
|
bronze: {
|
|
43133
43339
|
threshold: number;
|
|
@@ -43148,10 +43354,12 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43148
43354
|
current: number;
|
|
43149
43355
|
label?: string | undefined;
|
|
43150
43356
|
context?: string | undefined;
|
|
43357
|
+
achievedAt?: number | undefined;
|
|
43358
|
+
seen?: boolean | undefined;
|
|
43151
43359
|
}> | undefined;
|
|
43152
|
-
seen?: boolean | undefined;
|
|
43153
43360
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
43154
43361
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
43362
|
+
seasonal?: boolean | undefined;
|
|
43155
43363
|
}>>>;
|
|
43156
43364
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
43157
43365
|
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
@@ -45742,27 +45950,35 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
45742
45950
|
target: z.ZodNumber;
|
|
45743
45951
|
label: z.ZodOptional<z.ZodString>;
|
|
45744
45952
|
context: z.ZodOptional<z.ZodString>;
|
|
45953
|
+
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
45954
|
+
seen: z.ZodOptional<z.ZodBoolean>;
|
|
45745
45955
|
}, "strip", z.ZodTypeAny, {
|
|
45746
45956
|
target: number;
|
|
45747
45957
|
current: number;
|
|
45748
45958
|
label?: string | undefined;
|
|
45749
45959
|
context?: string | undefined;
|
|
45960
|
+
achievedAt?: number | undefined;
|
|
45961
|
+
seen?: boolean | undefined;
|
|
45750
45962
|
}, {
|
|
45751
45963
|
target: number;
|
|
45752
45964
|
current: number;
|
|
45753
45965
|
label?: string | undefined;
|
|
45754
45966
|
context?: string | undefined;
|
|
45967
|
+
achievedAt?: number | undefined;
|
|
45968
|
+
seen?: boolean | undefined;
|
|
45755
45969
|
}>>>;
|
|
45756
45970
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
45757
45971
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
45758
45972
|
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">]>>;
|
|
45759
45973
|
sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
|
|
45974
|
+
seasonal: z.ZodOptional<z.ZodBoolean>;
|
|
45760
45975
|
}, "strip", z.ZodTypeAny, {
|
|
45761
45976
|
id: string;
|
|
45762
45977
|
name: string;
|
|
45763
45978
|
description: string;
|
|
45764
45979
|
type?: "global" | "sport" | "league" | undefined;
|
|
45765
45980
|
progress?: number | undefined;
|
|
45981
|
+
seen?: boolean | undefined;
|
|
45766
45982
|
tiers?: {
|
|
45767
45983
|
bronze: {
|
|
45768
45984
|
threshold: number;
|
|
@@ -45783,16 +45999,19 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
45783
45999
|
current: number;
|
|
45784
46000
|
label?: string | undefined;
|
|
45785
46001
|
context?: string | undefined;
|
|
46002
|
+
achievedAt?: number | undefined;
|
|
46003
|
+
seen?: boolean | undefined;
|
|
45786
46004
|
}> | undefined;
|
|
45787
|
-
seen?: boolean | undefined;
|
|
45788
46005
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
45789
46006
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
46007
|
+
seasonal?: boolean | undefined;
|
|
45790
46008
|
}, {
|
|
45791
46009
|
id: string;
|
|
45792
46010
|
name: string;
|
|
45793
46011
|
description: string;
|
|
45794
46012
|
type?: "global" | "sport" | "league" | undefined;
|
|
45795
46013
|
progress?: number | undefined;
|
|
46014
|
+
seen?: boolean | undefined;
|
|
45796
46015
|
tiers?: {
|
|
45797
46016
|
bronze: {
|
|
45798
46017
|
threshold: number;
|
|
@@ -45813,10 +46032,12 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
45813
46032
|
current: number;
|
|
45814
46033
|
label?: string | undefined;
|
|
45815
46034
|
context?: string | undefined;
|
|
46035
|
+
achievedAt?: number | undefined;
|
|
46036
|
+
seen?: boolean | undefined;
|
|
45816
46037
|
}> | undefined;
|
|
45817
|
-
seen?: boolean | undefined;
|
|
45818
46038
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
45819
46039
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
46040
|
+
seasonal?: boolean | undefined;
|
|
45820
46041
|
}>>>;
|
|
45821
46042
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
45822
46043
|
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
@@ -48378,27 +48599,35 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48378
48599
|
target: z.ZodNumber;
|
|
48379
48600
|
label: z.ZodOptional<z.ZodString>;
|
|
48380
48601
|
context: z.ZodOptional<z.ZodString>;
|
|
48602
|
+
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
48603
|
+
seen: z.ZodOptional<z.ZodBoolean>;
|
|
48381
48604
|
}, "strip", z.ZodTypeAny, {
|
|
48382
48605
|
target: number;
|
|
48383
48606
|
current: number;
|
|
48384
48607
|
label?: string | undefined;
|
|
48385
48608
|
context?: string | undefined;
|
|
48609
|
+
achievedAt?: number | undefined;
|
|
48610
|
+
seen?: boolean | undefined;
|
|
48386
48611
|
}, {
|
|
48387
48612
|
target: number;
|
|
48388
48613
|
current: number;
|
|
48389
48614
|
label?: string | undefined;
|
|
48390
48615
|
context?: string | undefined;
|
|
48616
|
+
achievedAt?: number | undefined;
|
|
48617
|
+
seen?: boolean | undefined;
|
|
48391
48618
|
}>>>;
|
|
48392
48619
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
48393
48620
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
48394
48621
|
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">]>>;
|
|
48395
48622
|
sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
|
|
48623
|
+
seasonal: z.ZodOptional<z.ZodBoolean>;
|
|
48396
48624
|
}, "strip", z.ZodTypeAny, {
|
|
48397
48625
|
id: string;
|
|
48398
48626
|
name: string;
|
|
48399
48627
|
description: string;
|
|
48400
48628
|
type?: "global" | "sport" | "league" | undefined;
|
|
48401
48629
|
progress?: number | undefined;
|
|
48630
|
+
seen?: boolean | undefined;
|
|
48402
48631
|
tiers?: {
|
|
48403
48632
|
bronze: {
|
|
48404
48633
|
threshold: number;
|
|
@@ -48419,16 +48648,19 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48419
48648
|
current: number;
|
|
48420
48649
|
label?: string | undefined;
|
|
48421
48650
|
context?: string | undefined;
|
|
48651
|
+
achievedAt?: number | undefined;
|
|
48652
|
+
seen?: boolean | undefined;
|
|
48422
48653
|
}> | undefined;
|
|
48423
|
-
seen?: boolean | undefined;
|
|
48424
48654
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
48425
48655
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
48656
|
+
seasonal?: boolean | undefined;
|
|
48426
48657
|
}, {
|
|
48427
48658
|
id: string;
|
|
48428
48659
|
name: string;
|
|
48429
48660
|
description: string;
|
|
48430
48661
|
type?: "global" | "sport" | "league" | undefined;
|
|
48431
48662
|
progress?: number | undefined;
|
|
48663
|
+
seen?: boolean | undefined;
|
|
48432
48664
|
tiers?: {
|
|
48433
48665
|
bronze: {
|
|
48434
48666
|
threshold: number;
|
|
@@ -48449,10 +48681,12 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48449
48681
|
current: number;
|
|
48450
48682
|
label?: string | undefined;
|
|
48451
48683
|
context?: string | undefined;
|
|
48684
|
+
achievedAt?: number | undefined;
|
|
48685
|
+
seen?: boolean | undefined;
|
|
48452
48686
|
}> | undefined;
|
|
48453
|
-
seen?: boolean | undefined;
|
|
48454
48687
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
48455
48688
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
48689
|
+
seasonal?: boolean | undefined;
|
|
48456
48690
|
}>>>;
|
|
48457
48691
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
48458
48692
|
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
@@ -50996,27 +51230,35 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
50996
51230
|
target: z.ZodNumber;
|
|
50997
51231
|
label: z.ZodOptional<z.ZodString>;
|
|
50998
51232
|
context: z.ZodOptional<z.ZodString>;
|
|
51233
|
+
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
51234
|
+
seen: z.ZodOptional<z.ZodBoolean>;
|
|
50999
51235
|
}, "strip", z.ZodTypeAny, {
|
|
51000
51236
|
target: number;
|
|
51001
51237
|
current: number;
|
|
51002
51238
|
label?: string | undefined;
|
|
51003
51239
|
context?: string | undefined;
|
|
51240
|
+
achievedAt?: number | undefined;
|
|
51241
|
+
seen?: boolean | undefined;
|
|
51004
51242
|
}, {
|
|
51005
51243
|
target: number;
|
|
51006
51244
|
current: number;
|
|
51007
51245
|
label?: string | undefined;
|
|
51008
51246
|
context?: string | undefined;
|
|
51247
|
+
achievedAt?: number | undefined;
|
|
51248
|
+
seen?: boolean | undefined;
|
|
51009
51249
|
}>>>;
|
|
51010
51250
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
51011
51251
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
51012
51252
|
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">]>>;
|
|
51013
51253
|
sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
|
|
51254
|
+
seasonal: z.ZodOptional<z.ZodBoolean>;
|
|
51014
51255
|
}, "strip", z.ZodTypeAny, {
|
|
51015
51256
|
id: string;
|
|
51016
51257
|
name: string;
|
|
51017
51258
|
description: string;
|
|
51018
51259
|
type?: "global" | "sport" | "league" | undefined;
|
|
51019
51260
|
progress?: number | undefined;
|
|
51261
|
+
seen?: boolean | undefined;
|
|
51020
51262
|
tiers?: {
|
|
51021
51263
|
bronze: {
|
|
51022
51264
|
threshold: number;
|
|
@@ -51037,16 +51279,19 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
51037
51279
|
current: number;
|
|
51038
51280
|
label?: string | undefined;
|
|
51039
51281
|
context?: string | undefined;
|
|
51282
|
+
achievedAt?: number | undefined;
|
|
51283
|
+
seen?: boolean | undefined;
|
|
51040
51284
|
}> | undefined;
|
|
51041
|
-
seen?: boolean | undefined;
|
|
51042
51285
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
51043
51286
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
51287
|
+
seasonal?: boolean | undefined;
|
|
51044
51288
|
}, {
|
|
51045
51289
|
id: string;
|
|
51046
51290
|
name: string;
|
|
51047
51291
|
description: string;
|
|
51048
51292
|
type?: "global" | "sport" | "league" | undefined;
|
|
51049
51293
|
progress?: number | undefined;
|
|
51294
|
+
seen?: boolean | undefined;
|
|
51050
51295
|
tiers?: {
|
|
51051
51296
|
bronze: {
|
|
51052
51297
|
threshold: number;
|
|
@@ -51067,10 +51312,12 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
51067
51312
|
current: number;
|
|
51068
51313
|
label?: string | undefined;
|
|
51069
51314
|
context?: string | undefined;
|
|
51315
|
+
achievedAt?: number | undefined;
|
|
51316
|
+
seen?: boolean | undefined;
|
|
51070
51317
|
}> | undefined;
|
|
51071
|
-
seen?: boolean | undefined;
|
|
51072
51318
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
51073
51319
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
51320
|
+
seasonal?: boolean | undefined;
|
|
51074
51321
|
}>>>;
|
|
51075
51322
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
51076
51323
|
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
@@ -52459,27 +52706,35 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
52459
52706
|
target: z.ZodNumber;
|
|
52460
52707
|
label: z.ZodOptional<z.ZodString>;
|
|
52461
52708
|
context: z.ZodOptional<z.ZodString>;
|
|
52709
|
+
achievedAt: z.ZodOptional<z.ZodNumber>;
|
|
52710
|
+
seen: z.ZodOptional<z.ZodBoolean>;
|
|
52462
52711
|
}, "strip", z.ZodTypeAny, {
|
|
52463
52712
|
target: number;
|
|
52464
52713
|
current: number;
|
|
52465
52714
|
label?: string | undefined;
|
|
52466
52715
|
context?: string | undefined;
|
|
52716
|
+
achievedAt?: number | undefined;
|
|
52717
|
+
seen?: boolean | undefined;
|
|
52467
52718
|
}, {
|
|
52468
52719
|
target: number;
|
|
52469
52720
|
current: number;
|
|
52470
52721
|
label?: string | undefined;
|
|
52471
52722
|
context?: string | undefined;
|
|
52723
|
+
achievedAt?: number | undefined;
|
|
52724
|
+
seen?: boolean | undefined;
|
|
52472
52725
|
}>>>;
|
|
52473
52726
|
seen: z.ZodOptional<z.ZodBoolean>;
|
|
52474
52727
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
|
|
52475
52728
|
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">]>>;
|
|
52476
52729
|
sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
|
|
52730
|
+
seasonal: z.ZodOptional<z.ZodBoolean>;
|
|
52477
52731
|
}, "strip", z.ZodTypeAny, {
|
|
52478
52732
|
id: string;
|
|
52479
52733
|
name: string;
|
|
52480
52734
|
description: string;
|
|
52481
52735
|
type?: "global" | "sport" | "league" | undefined;
|
|
52482
52736
|
progress?: number | undefined;
|
|
52737
|
+
seen?: boolean | undefined;
|
|
52483
52738
|
tiers?: {
|
|
52484
52739
|
bronze: {
|
|
52485
52740
|
threshold: number;
|
|
@@ -52500,16 +52755,19 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
52500
52755
|
current: number;
|
|
52501
52756
|
label?: string | undefined;
|
|
52502
52757
|
context?: string | undefined;
|
|
52758
|
+
achievedAt?: number | undefined;
|
|
52759
|
+
seen?: boolean | undefined;
|
|
52503
52760
|
}> | undefined;
|
|
52504
|
-
seen?: boolean | undefined;
|
|
52505
52761
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
52506
52762
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
52763
|
+
seasonal?: boolean | undefined;
|
|
52507
52764
|
}, {
|
|
52508
52765
|
id: string;
|
|
52509
52766
|
name: string;
|
|
52510
52767
|
description: string;
|
|
52511
52768
|
type?: "global" | "sport" | "league" | undefined;
|
|
52512
52769
|
progress?: number | undefined;
|
|
52770
|
+
seen?: boolean | undefined;
|
|
52513
52771
|
tiers?: {
|
|
52514
52772
|
bronze: {
|
|
52515
52773
|
threshold: number;
|
|
@@ -52530,10 +52788,12 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
52530
52788
|
current: number;
|
|
52531
52789
|
label?: string | undefined;
|
|
52532
52790
|
context?: string | undefined;
|
|
52791
|
+
achievedAt?: number | undefined;
|
|
52792
|
+
seen?: boolean | undefined;
|
|
52533
52793
|
}> | undefined;
|
|
52534
|
-
seen?: boolean | undefined;
|
|
52535
52794
|
sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
|
|
52536
52795
|
league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
|
|
52796
|
+
seasonal?: boolean | undefined;
|
|
52537
52797
|
}>>>;
|
|
52538
52798
|
repliesLeft: z.ZodOptional<z.ZodNumber>;
|
|
52539
52799
|
listRepliesLeft: z.ZodOptional<z.ZodNumber>;
|