rategame-shared 1.1.321 → 1.1.323
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/models/pick.d.ts +2 -1
- package/dist/schemas/game.d.ts +245 -0
- package/dist/schemas/game.js +2 -0
- package/dist/schemas/notification.d.ts +27 -0
- package/dist/schemas/pick.d.ts +331 -0
- package/dist/schemas/pick.js +6 -1
- package/dist/schemas/rating.d.ts +49 -0
- package/dist/schemas/stadium.d.ts +28 -0
- package/dist/schemas/voting.d.ts +90 -0
- package/package.json +1 -1
package/dist/schemas/voting.d.ts
CHANGED
|
@@ -2720,6 +2720,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
2720
2720
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2721
2721
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2722
2722
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2723
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
2723
2724
|
}, "strip", z.ZodTypeAny, {
|
|
2724
2725
|
name: string | null;
|
|
2725
2726
|
image: string | null;
|
|
@@ -2734,6 +2735,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
2734
2735
|
school?: string | null | undefined;
|
|
2735
2736
|
city?: string | null | undefined;
|
|
2736
2737
|
venueName?: string | null | undefined;
|
|
2738
|
+
pickCount?: number | undefined;
|
|
2737
2739
|
}, {
|
|
2738
2740
|
name: string | null;
|
|
2739
2741
|
image: string | null;
|
|
@@ -2748,6 +2750,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
2748
2750
|
school?: string | null | undefined;
|
|
2749
2751
|
city?: string | null | undefined;
|
|
2750
2752
|
venueName?: string | null | undefined;
|
|
2753
|
+
pickCount?: number | undefined;
|
|
2751
2754
|
}>;
|
|
2752
2755
|
awayTeam: z.ZodObject<{
|
|
2753
2756
|
id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -2763,6 +2766,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
2763
2766
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2764
2767
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2765
2768
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2769
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
2766
2770
|
}, "strip", z.ZodTypeAny, {
|
|
2767
2771
|
name: string | null;
|
|
2768
2772
|
image: string | null;
|
|
@@ -2777,6 +2781,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
2777
2781
|
school?: string | null | undefined;
|
|
2778
2782
|
city?: string | null | undefined;
|
|
2779
2783
|
venueName?: string | null | undefined;
|
|
2784
|
+
pickCount?: number | undefined;
|
|
2780
2785
|
}, {
|
|
2781
2786
|
name: string | null;
|
|
2782
2787
|
image: string | null;
|
|
@@ -2791,6 +2796,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
2791
2796
|
school?: string | null | undefined;
|
|
2792
2797
|
city?: string | null | undefined;
|
|
2793
2798
|
venueName?: string | null | undefined;
|
|
2799
|
+
pickCount?: number | undefined;
|
|
2794
2800
|
}>;
|
|
2795
2801
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
2796
2802
|
homeTeamWins: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -4935,6 +4941,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
4935
4941
|
school?: string | null | undefined;
|
|
4936
4942
|
city?: string | null | undefined;
|
|
4937
4943
|
venueName?: string | null | undefined;
|
|
4944
|
+
pickCount?: number | undefined;
|
|
4938
4945
|
};
|
|
4939
4946
|
awayTeam: {
|
|
4940
4947
|
name: string | null;
|
|
@@ -4950,6 +4957,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
4950
4957
|
school?: string | null | undefined;
|
|
4951
4958
|
city?: string | null | undefined;
|
|
4952
4959
|
venueName?: string | null | undefined;
|
|
4960
|
+
pickCount?: number | undefined;
|
|
4953
4961
|
};
|
|
4954
4962
|
timeRemainingMinutes: number;
|
|
4955
4963
|
timeRemainingSeconds: number;
|
|
@@ -5128,6 +5136,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
5128
5136
|
school?: string | null | undefined;
|
|
5129
5137
|
city?: string | null | undefined;
|
|
5130
5138
|
venueName?: string | null | undefined;
|
|
5139
|
+
pickCount?: number | undefined;
|
|
5131
5140
|
};
|
|
5132
5141
|
awayTeam: {
|
|
5133
5142
|
name: string | null;
|
|
@@ -5143,6 +5152,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
5143
5152
|
school?: string | null | undefined;
|
|
5144
5153
|
city?: string | null | undefined;
|
|
5145
5154
|
venueName?: string | null | undefined;
|
|
5155
|
+
pickCount?: number | undefined;
|
|
5146
5156
|
};
|
|
5147
5157
|
timeRemainingMinutes: number;
|
|
5148
5158
|
timeRemainingSeconds: number;
|
|
@@ -5323,6 +5333,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
5323
5333
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5324
5334
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5325
5335
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5336
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
5326
5337
|
}, "strip", z.ZodTypeAny, {
|
|
5327
5338
|
name: string | null;
|
|
5328
5339
|
image: string | null;
|
|
@@ -5337,6 +5348,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
5337
5348
|
school?: string | null | undefined;
|
|
5338
5349
|
city?: string | null | undefined;
|
|
5339
5350
|
venueName?: string | null | undefined;
|
|
5351
|
+
pickCount?: number | undefined;
|
|
5340
5352
|
}, {
|
|
5341
5353
|
name: string | null;
|
|
5342
5354
|
image: string | null;
|
|
@@ -5351,6 +5363,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
5351
5363
|
school?: string | null | undefined;
|
|
5352
5364
|
city?: string | null | undefined;
|
|
5353
5365
|
venueName?: string | null | undefined;
|
|
5366
|
+
pickCount?: number | undefined;
|
|
5354
5367
|
}>;
|
|
5355
5368
|
awayTeam: z.ZodObject<{
|
|
5356
5369
|
id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -5366,6 +5379,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
5366
5379
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5367
5380
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5368
5381
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5382
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
5369
5383
|
}, "strip", z.ZodTypeAny, {
|
|
5370
5384
|
name: string | null;
|
|
5371
5385
|
image: string | null;
|
|
@@ -5380,6 +5394,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
5380
5394
|
school?: string | null | undefined;
|
|
5381
5395
|
city?: string | null | undefined;
|
|
5382
5396
|
venueName?: string | null | undefined;
|
|
5397
|
+
pickCount?: number | undefined;
|
|
5383
5398
|
}, {
|
|
5384
5399
|
name: string | null;
|
|
5385
5400
|
image: string | null;
|
|
@@ -5394,6 +5409,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
5394
5409
|
school?: string | null | undefined;
|
|
5395
5410
|
city?: string | null | undefined;
|
|
5396
5411
|
venueName?: string | null | undefined;
|
|
5412
|
+
pickCount?: number | undefined;
|
|
5397
5413
|
}>;
|
|
5398
5414
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
5399
5415
|
homeTeamWins: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -7544,6 +7560,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
7544
7560
|
school?: string | null | undefined;
|
|
7545
7561
|
city?: string | null | undefined;
|
|
7546
7562
|
venueName?: string | null | undefined;
|
|
7563
|
+
pickCount?: number | undefined;
|
|
7547
7564
|
};
|
|
7548
7565
|
awayTeam: {
|
|
7549
7566
|
name: string | null;
|
|
@@ -7559,6 +7576,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
7559
7576
|
school?: string | null | undefined;
|
|
7560
7577
|
city?: string | null | undefined;
|
|
7561
7578
|
venueName?: string | null | undefined;
|
|
7579
|
+
pickCount?: number | undefined;
|
|
7562
7580
|
};
|
|
7563
7581
|
totalInningsRemaining: number;
|
|
7564
7582
|
innings: {
|
|
@@ -7744,6 +7762,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
7744
7762
|
school?: string | null | undefined;
|
|
7745
7763
|
city?: string | null | undefined;
|
|
7746
7764
|
venueName?: string | null | undefined;
|
|
7765
|
+
pickCount?: number | undefined;
|
|
7747
7766
|
};
|
|
7748
7767
|
awayTeam: {
|
|
7749
7768
|
name: string | null;
|
|
@@ -7759,6 +7778,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
7759
7778
|
school?: string | null | undefined;
|
|
7760
7779
|
city?: string | null | undefined;
|
|
7761
7780
|
venueName?: string | null | undefined;
|
|
7781
|
+
pickCount?: number | undefined;
|
|
7762
7782
|
};
|
|
7763
7783
|
totalInningsRemaining: number;
|
|
7764
7784
|
innings: {
|
|
@@ -7947,6 +7967,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
7947
7967
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7948
7968
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7949
7969
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7970
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
7950
7971
|
}, "strip", z.ZodTypeAny, {
|
|
7951
7972
|
name: string | null;
|
|
7952
7973
|
image: string | null;
|
|
@@ -7961,6 +7982,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
7961
7982
|
school?: string | null | undefined;
|
|
7962
7983
|
city?: string | null | undefined;
|
|
7963
7984
|
venueName?: string | null | undefined;
|
|
7985
|
+
pickCount?: number | undefined;
|
|
7964
7986
|
}, {
|
|
7965
7987
|
name: string | null;
|
|
7966
7988
|
image: string | null;
|
|
@@ -7975,6 +7997,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
7975
7997
|
school?: string | null | undefined;
|
|
7976
7998
|
city?: string | null | undefined;
|
|
7977
7999
|
venueName?: string | null | undefined;
|
|
8000
|
+
pickCount?: number | undefined;
|
|
7978
8001
|
}>;
|
|
7979
8002
|
awayTeam: z.ZodObject<{
|
|
7980
8003
|
id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -7990,6 +8013,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
7990
8013
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7991
8014
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7992
8015
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8016
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
7993
8017
|
}, "strip", z.ZodTypeAny, {
|
|
7994
8018
|
name: string | null;
|
|
7995
8019
|
image: string | null;
|
|
@@ -8004,6 +8028,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
8004
8028
|
school?: string | null | undefined;
|
|
8005
8029
|
city?: string | null | undefined;
|
|
8006
8030
|
venueName?: string | null | undefined;
|
|
8031
|
+
pickCount?: number | undefined;
|
|
8007
8032
|
}, {
|
|
8008
8033
|
name: string | null;
|
|
8009
8034
|
image: string | null;
|
|
@@ -8018,6 +8043,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
8018
8043
|
school?: string | null | undefined;
|
|
8019
8044
|
city?: string | null | undefined;
|
|
8020
8045
|
venueName?: string | null | undefined;
|
|
8046
|
+
pickCount?: number | undefined;
|
|
8021
8047
|
}>;
|
|
8022
8048
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
8023
8049
|
homeTeamWins: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -10143,6 +10169,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
10143
10169
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10144
10170
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10145
10171
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10172
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
10146
10173
|
}, {
|
|
10147
10174
|
scorePeriod1: z.ZodNumber;
|
|
10148
10175
|
scorePeriod2: z.ZodNumber;
|
|
@@ -10166,6 +10193,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
10166
10193
|
school?: string | null | undefined;
|
|
10167
10194
|
city?: string | null | undefined;
|
|
10168
10195
|
venueName?: string | undefined;
|
|
10196
|
+
pickCount?: number | undefined;
|
|
10169
10197
|
}, {
|
|
10170
10198
|
name: string | null;
|
|
10171
10199
|
image: string | null;
|
|
@@ -10183,6 +10211,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
10183
10211
|
school?: string | null | undefined;
|
|
10184
10212
|
city?: string | null | undefined;
|
|
10185
10213
|
venueName?: string | undefined;
|
|
10214
|
+
pickCount?: number | undefined;
|
|
10186
10215
|
}>;
|
|
10187
10216
|
awayTeam: z.ZodObject<z.objectUtil.extendShape<{
|
|
10188
10217
|
id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -10198,6 +10227,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
10198
10227
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10199
10228
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10200
10229
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10230
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
10201
10231
|
}, {
|
|
10202
10232
|
scorePeriod1: z.ZodNumber;
|
|
10203
10233
|
scorePeriod2: z.ZodNumber;
|
|
@@ -10221,6 +10251,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
10221
10251
|
school?: string | null | undefined;
|
|
10222
10252
|
city?: string | null | undefined;
|
|
10223
10253
|
venueName?: string | undefined;
|
|
10254
|
+
pickCount?: number | undefined;
|
|
10224
10255
|
}, {
|
|
10225
10256
|
name: string | null;
|
|
10226
10257
|
image: string | null;
|
|
@@ -10238,6 +10269,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
10238
10269
|
school?: string | null | undefined;
|
|
10239
10270
|
city?: string | null | undefined;
|
|
10240
10271
|
venueName?: string | undefined;
|
|
10272
|
+
pickCount?: number | undefined;
|
|
10241
10273
|
}>;
|
|
10242
10274
|
hadExtraTime: z.ZodBoolean;
|
|
10243
10275
|
halfTimeBreak: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -10265,6 +10297,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
10265
10297
|
school?: string | null | undefined;
|
|
10266
10298
|
city?: string | null | undefined;
|
|
10267
10299
|
venueName?: string | undefined;
|
|
10300
|
+
pickCount?: number | undefined;
|
|
10268
10301
|
};
|
|
10269
10302
|
awayTeam: {
|
|
10270
10303
|
name: string | null;
|
|
@@ -10283,6 +10316,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
10283
10316
|
school?: string | null | undefined;
|
|
10284
10317
|
city?: string | null | undefined;
|
|
10285
10318
|
venueName?: string | undefined;
|
|
10319
|
+
pickCount?: number | undefined;
|
|
10286
10320
|
};
|
|
10287
10321
|
period: string;
|
|
10288
10322
|
clock: string;
|
|
@@ -10461,6 +10495,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
10461
10495
|
school?: string | null | undefined;
|
|
10462
10496
|
city?: string | null | undefined;
|
|
10463
10497
|
venueName?: string | undefined;
|
|
10498
|
+
pickCount?: number | undefined;
|
|
10464
10499
|
};
|
|
10465
10500
|
awayTeam: {
|
|
10466
10501
|
name: string | null;
|
|
@@ -10479,6 +10514,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
10479
10514
|
school?: string | null | undefined;
|
|
10480
10515
|
city?: string | null | undefined;
|
|
10481
10516
|
venueName?: string | undefined;
|
|
10517
|
+
pickCount?: number | undefined;
|
|
10482
10518
|
};
|
|
10483
10519
|
period: string;
|
|
10484
10520
|
clock: string;
|
|
@@ -10656,6 +10692,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
10656
10692
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10657
10693
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10658
10694
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10695
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
10659
10696
|
}, "strip", z.ZodTypeAny, {
|
|
10660
10697
|
name: string | null;
|
|
10661
10698
|
image: string | null;
|
|
@@ -10670,6 +10707,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
10670
10707
|
school?: string | null | undefined;
|
|
10671
10708
|
city?: string | null | undefined;
|
|
10672
10709
|
venueName?: string | null | undefined;
|
|
10710
|
+
pickCount?: number | undefined;
|
|
10673
10711
|
}, {
|
|
10674
10712
|
name: string | null;
|
|
10675
10713
|
image: string | null;
|
|
@@ -10684,6 +10722,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
10684
10722
|
school?: string | null | undefined;
|
|
10685
10723
|
city?: string | null | undefined;
|
|
10686
10724
|
venueName?: string | null | undefined;
|
|
10725
|
+
pickCount?: number | undefined;
|
|
10687
10726
|
}>;
|
|
10688
10727
|
awayTeam: z.ZodObject<{
|
|
10689
10728
|
id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -10699,6 +10738,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
10699
10738
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10700
10739
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10701
10740
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10741
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
10702
10742
|
}, "strip", z.ZodTypeAny, {
|
|
10703
10743
|
name: string | null;
|
|
10704
10744
|
image: string | null;
|
|
@@ -10713,6 +10753,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
10713
10753
|
school?: string | null | undefined;
|
|
10714
10754
|
city?: string | null | undefined;
|
|
10715
10755
|
venueName?: string | null | undefined;
|
|
10756
|
+
pickCount?: number | undefined;
|
|
10716
10757
|
}, {
|
|
10717
10758
|
name: string | null;
|
|
10718
10759
|
image: string | null;
|
|
@@ -10727,6 +10768,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
10727
10768
|
school?: string | null | undefined;
|
|
10728
10769
|
city?: string | null | undefined;
|
|
10729
10770
|
venueName?: string | null | undefined;
|
|
10771
|
+
pickCount?: number | undefined;
|
|
10730
10772
|
}>;
|
|
10731
10773
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
10732
10774
|
homeTeamWins: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -12908,6 +12950,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
12908
12950
|
school?: string | null | undefined;
|
|
12909
12951
|
city?: string | null | undefined;
|
|
12910
12952
|
venueName?: string | null | undefined;
|
|
12953
|
+
pickCount?: number | undefined;
|
|
12911
12954
|
};
|
|
12912
12955
|
awayTeam: {
|
|
12913
12956
|
name: string | null;
|
|
@@ -12923,6 +12966,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
12923
12966
|
school?: string | null | undefined;
|
|
12924
12967
|
city?: string | null | undefined;
|
|
12925
12968
|
venueName?: string | null | undefined;
|
|
12969
|
+
pickCount?: number | undefined;
|
|
12926
12970
|
};
|
|
12927
12971
|
seasonType: number;
|
|
12928
12972
|
possession: string | null;
|
|
@@ -13121,6 +13165,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
13121
13165
|
school?: string | null | undefined;
|
|
13122
13166
|
city?: string | null | undefined;
|
|
13123
13167
|
venueName?: string | null | undefined;
|
|
13168
|
+
pickCount?: number | undefined;
|
|
13124
13169
|
};
|
|
13125
13170
|
awayTeam: {
|
|
13126
13171
|
name: string | null;
|
|
@@ -13136,6 +13181,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
13136
13181
|
school?: string | null | undefined;
|
|
13137
13182
|
city?: string | null | undefined;
|
|
13138
13183
|
venueName?: string | null | undefined;
|
|
13184
|
+
pickCount?: number | undefined;
|
|
13139
13185
|
};
|
|
13140
13186
|
seasonType: number;
|
|
13141
13187
|
possession: string | null;
|
|
@@ -13336,6 +13382,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
13336
13382
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
13337
13383
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
13338
13384
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
13385
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
13339
13386
|
}, "strip", z.ZodTypeAny, {
|
|
13340
13387
|
name: string | null;
|
|
13341
13388
|
image: string | null;
|
|
@@ -13350,6 +13397,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
13350
13397
|
school?: string | null | undefined;
|
|
13351
13398
|
city?: string | null | undefined;
|
|
13352
13399
|
venueName?: string | null | undefined;
|
|
13400
|
+
pickCount?: number | undefined;
|
|
13353
13401
|
}, {
|
|
13354
13402
|
name: string | null;
|
|
13355
13403
|
image: string | null;
|
|
@@ -13364,6 +13412,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
13364
13412
|
school?: string | null | undefined;
|
|
13365
13413
|
city?: string | null | undefined;
|
|
13366
13414
|
venueName?: string | null | undefined;
|
|
13415
|
+
pickCount?: number | undefined;
|
|
13367
13416
|
}>;
|
|
13368
13417
|
awayTeam: z.ZodObject<{
|
|
13369
13418
|
id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -13379,6 +13428,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
13379
13428
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
13380
13429
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
13381
13430
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
13431
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
13382
13432
|
}, "strip", z.ZodTypeAny, {
|
|
13383
13433
|
name: string | null;
|
|
13384
13434
|
image: string | null;
|
|
@@ -13393,6 +13443,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
13393
13443
|
school?: string | null | undefined;
|
|
13394
13444
|
city?: string | null | undefined;
|
|
13395
13445
|
venueName?: string | null | undefined;
|
|
13446
|
+
pickCount?: number | undefined;
|
|
13396
13447
|
}, {
|
|
13397
13448
|
name: string | null;
|
|
13398
13449
|
image: string | null;
|
|
@@ -13407,6 +13458,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
13407
13458
|
school?: string | null | undefined;
|
|
13408
13459
|
city?: string | null | undefined;
|
|
13409
13460
|
venueName?: string | null | undefined;
|
|
13461
|
+
pickCount?: number | undefined;
|
|
13410
13462
|
}>;
|
|
13411
13463
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
13412
13464
|
homeTeamWins: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -15584,6 +15636,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
15584
15636
|
school?: string | null | undefined;
|
|
15585
15637
|
city?: string | null | undefined;
|
|
15586
15638
|
venueName?: string | null | undefined;
|
|
15639
|
+
pickCount?: number | undefined;
|
|
15587
15640
|
};
|
|
15588
15641
|
awayTeam: {
|
|
15589
15642
|
name: string | null;
|
|
@@ -15599,6 +15652,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
15599
15652
|
school?: string | null | undefined;
|
|
15600
15653
|
city?: string | null | undefined;
|
|
15601
15654
|
venueName?: string | null | undefined;
|
|
15655
|
+
pickCount?: number | undefined;
|
|
15602
15656
|
};
|
|
15603
15657
|
timeRemainingMinutes: number;
|
|
15604
15658
|
timeRemainingSeconds: number;
|
|
@@ -15790,6 +15844,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
15790
15844
|
school?: string | null | undefined;
|
|
15791
15845
|
city?: string | null | undefined;
|
|
15792
15846
|
venueName?: string | null | undefined;
|
|
15847
|
+
pickCount?: number | undefined;
|
|
15793
15848
|
};
|
|
15794
15849
|
awayTeam: {
|
|
15795
15850
|
name: string | null;
|
|
@@ -15805,6 +15860,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
15805
15860
|
school?: string | null | undefined;
|
|
15806
15861
|
city?: string | null | undefined;
|
|
15807
15862
|
venueName?: string | null | undefined;
|
|
15863
|
+
pickCount?: number | undefined;
|
|
15808
15864
|
};
|
|
15809
15865
|
timeRemainingMinutes: number;
|
|
15810
15866
|
timeRemainingSeconds: number;
|
|
@@ -15998,6 +16054,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
15998
16054
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
15999
16055
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
16000
16056
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
16057
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
16001
16058
|
}, "strip", z.ZodTypeAny, {
|
|
16002
16059
|
name: string | null;
|
|
16003
16060
|
image: string | null;
|
|
@@ -16012,6 +16069,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
16012
16069
|
school?: string | null | undefined;
|
|
16013
16070
|
city?: string | null | undefined;
|
|
16014
16071
|
venueName?: string | null | undefined;
|
|
16072
|
+
pickCount?: number | undefined;
|
|
16015
16073
|
}, {
|
|
16016
16074
|
name: string | null;
|
|
16017
16075
|
image: string | null;
|
|
@@ -16026,6 +16084,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
16026
16084
|
school?: string | null | undefined;
|
|
16027
16085
|
city?: string | null | undefined;
|
|
16028
16086
|
venueName?: string | null | undefined;
|
|
16087
|
+
pickCount?: number | undefined;
|
|
16029
16088
|
}>;
|
|
16030
16089
|
awayTeam: z.ZodObject<{
|
|
16031
16090
|
id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -16041,6 +16100,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
16041
16100
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
16042
16101
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
16043
16102
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
16103
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
16044
16104
|
}, "strip", z.ZodTypeAny, {
|
|
16045
16105
|
name: string | null;
|
|
16046
16106
|
image: string | null;
|
|
@@ -16055,6 +16115,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
16055
16115
|
school?: string | null | undefined;
|
|
16056
16116
|
city?: string | null | undefined;
|
|
16057
16117
|
venueName?: string | null | undefined;
|
|
16118
|
+
pickCount?: number | undefined;
|
|
16058
16119
|
}, {
|
|
16059
16120
|
name: string | null;
|
|
16060
16121
|
image: string | null;
|
|
@@ -16069,6 +16130,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
16069
16130
|
school?: string | null | undefined;
|
|
16070
16131
|
city?: string | null | undefined;
|
|
16071
16132
|
venueName?: string | null | undefined;
|
|
16133
|
+
pickCount?: number | undefined;
|
|
16072
16134
|
}>;
|
|
16073
16135
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
16074
16136
|
homeTeamWins: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -18198,6 +18260,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
18198
18260
|
school?: string | null | undefined;
|
|
18199
18261
|
city?: string | null | undefined;
|
|
18200
18262
|
venueName?: string | null | undefined;
|
|
18263
|
+
pickCount?: number | undefined;
|
|
18201
18264
|
};
|
|
18202
18265
|
awayTeam: {
|
|
18203
18266
|
name: string | null;
|
|
@@ -18213,6 +18276,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
18213
18276
|
school?: string | null | undefined;
|
|
18214
18277
|
city?: string | null | undefined;
|
|
18215
18278
|
venueName?: string | null | undefined;
|
|
18279
|
+
pickCount?: number | undefined;
|
|
18216
18280
|
};
|
|
18217
18281
|
timeRemainingMinutes: number;
|
|
18218
18282
|
timeRemainingSeconds: number;
|
|
@@ -18384,6 +18448,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
18384
18448
|
school?: string | null | undefined;
|
|
18385
18449
|
city?: string | null | undefined;
|
|
18386
18450
|
venueName?: string | null | undefined;
|
|
18451
|
+
pickCount?: number | undefined;
|
|
18387
18452
|
};
|
|
18388
18453
|
awayTeam: {
|
|
18389
18454
|
name: string | null;
|
|
@@ -18399,6 +18464,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
18399
18464
|
school?: string | null | undefined;
|
|
18400
18465
|
city?: string | null | undefined;
|
|
18401
18466
|
venueName?: string | null | undefined;
|
|
18467
|
+
pickCount?: number | undefined;
|
|
18402
18468
|
};
|
|
18403
18469
|
timeRemainingMinutes: number;
|
|
18404
18470
|
timeRemainingSeconds: number;
|
|
@@ -18585,6 +18651,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
18585
18651
|
school?: string | null | undefined;
|
|
18586
18652
|
city?: string | null | undefined;
|
|
18587
18653
|
venueName?: string | null | undefined;
|
|
18654
|
+
pickCount?: number | undefined;
|
|
18588
18655
|
};
|
|
18589
18656
|
awayTeam: {
|
|
18590
18657
|
name: string | null;
|
|
@@ -18600,6 +18667,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
18600
18667
|
school?: string | null | undefined;
|
|
18601
18668
|
city?: string | null | undefined;
|
|
18602
18669
|
venueName?: string | null | undefined;
|
|
18670
|
+
pickCount?: number | undefined;
|
|
18603
18671
|
};
|
|
18604
18672
|
timeRemainingMinutes: number;
|
|
18605
18673
|
timeRemainingSeconds: number;
|
|
@@ -18777,6 +18845,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
18777
18845
|
school?: string | null | undefined;
|
|
18778
18846
|
city?: string | null | undefined;
|
|
18779
18847
|
venueName?: string | null | undefined;
|
|
18848
|
+
pickCount?: number | undefined;
|
|
18780
18849
|
};
|
|
18781
18850
|
awayTeam: {
|
|
18782
18851
|
name: string | null;
|
|
@@ -18792,6 +18861,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
18792
18861
|
school?: string | null | undefined;
|
|
18793
18862
|
city?: string | null | undefined;
|
|
18794
18863
|
venueName?: string | null | undefined;
|
|
18864
|
+
pickCount?: number | undefined;
|
|
18795
18865
|
};
|
|
18796
18866
|
totalInningsRemaining: number;
|
|
18797
18867
|
innings: {
|
|
@@ -18981,6 +19051,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
18981
19051
|
school?: string | null | undefined;
|
|
18982
19052
|
city?: string | null | undefined;
|
|
18983
19053
|
venueName?: string | undefined;
|
|
19054
|
+
pickCount?: number | undefined;
|
|
18984
19055
|
};
|
|
18985
19056
|
awayTeam: {
|
|
18986
19057
|
name: string | null;
|
|
@@ -18999,6 +19070,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
18999
19070
|
school?: string | null | undefined;
|
|
19000
19071
|
city?: string | null | undefined;
|
|
19001
19072
|
venueName?: string | undefined;
|
|
19073
|
+
pickCount?: number | undefined;
|
|
19002
19074
|
};
|
|
19003
19075
|
period: string;
|
|
19004
19076
|
clock: string;
|
|
@@ -19174,6 +19246,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
19174
19246
|
school?: string | null | undefined;
|
|
19175
19247
|
city?: string | null | undefined;
|
|
19176
19248
|
venueName?: string | null | undefined;
|
|
19249
|
+
pickCount?: number | undefined;
|
|
19177
19250
|
};
|
|
19178
19251
|
awayTeam: {
|
|
19179
19252
|
name: string | null;
|
|
@@ -19189,6 +19262,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
19189
19262
|
school?: string | null | undefined;
|
|
19190
19263
|
city?: string | null | undefined;
|
|
19191
19264
|
venueName?: string | null | undefined;
|
|
19265
|
+
pickCount?: number | undefined;
|
|
19192
19266
|
};
|
|
19193
19267
|
seasonType: number;
|
|
19194
19268
|
possession: string | null;
|
|
@@ -19387,6 +19461,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
19387
19461
|
school?: string | null | undefined;
|
|
19388
19462
|
city?: string | null | undefined;
|
|
19389
19463
|
venueName?: string | null | undefined;
|
|
19464
|
+
pickCount?: number | undefined;
|
|
19390
19465
|
};
|
|
19391
19466
|
awayTeam: {
|
|
19392
19467
|
name: string | null;
|
|
@@ -19402,6 +19477,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
19402
19477
|
school?: string | null | undefined;
|
|
19403
19478
|
city?: string | null | undefined;
|
|
19404
19479
|
venueName?: string | null | undefined;
|
|
19480
|
+
pickCount?: number | undefined;
|
|
19405
19481
|
};
|
|
19406
19482
|
timeRemainingMinutes: number;
|
|
19407
19483
|
timeRemainingSeconds: number;
|
|
@@ -19592,6 +19668,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
19592
19668
|
school?: string | null | undefined;
|
|
19593
19669
|
city?: string | null | undefined;
|
|
19594
19670
|
venueName?: string | null | undefined;
|
|
19671
|
+
pickCount?: number | undefined;
|
|
19595
19672
|
};
|
|
19596
19673
|
awayTeam: {
|
|
19597
19674
|
name: string | null;
|
|
@@ -19607,6 +19684,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
19607
19684
|
school?: string | null | undefined;
|
|
19608
19685
|
city?: string | null | undefined;
|
|
19609
19686
|
venueName?: string | null | undefined;
|
|
19687
|
+
pickCount?: number | undefined;
|
|
19610
19688
|
};
|
|
19611
19689
|
timeRemainingMinutes: number;
|
|
19612
19690
|
timeRemainingSeconds: number;
|
|
@@ -19793,6 +19871,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
19793
19871
|
school?: string | null | undefined;
|
|
19794
19872
|
city?: string | null | undefined;
|
|
19795
19873
|
venueName?: string | null | undefined;
|
|
19874
|
+
pickCount?: number | undefined;
|
|
19796
19875
|
};
|
|
19797
19876
|
awayTeam: {
|
|
19798
19877
|
name: string | null;
|
|
@@ -19808,6 +19887,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
19808
19887
|
school?: string | null | undefined;
|
|
19809
19888
|
city?: string | null | undefined;
|
|
19810
19889
|
venueName?: string | null | undefined;
|
|
19890
|
+
pickCount?: number | undefined;
|
|
19811
19891
|
};
|
|
19812
19892
|
timeRemainingMinutes: number;
|
|
19813
19893
|
timeRemainingSeconds: number;
|
|
@@ -19985,6 +20065,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
19985
20065
|
school?: string | null | undefined;
|
|
19986
20066
|
city?: string | null | undefined;
|
|
19987
20067
|
venueName?: string | null | undefined;
|
|
20068
|
+
pickCount?: number | undefined;
|
|
19988
20069
|
};
|
|
19989
20070
|
awayTeam: {
|
|
19990
20071
|
name: string | null;
|
|
@@ -20000,6 +20081,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
20000
20081
|
school?: string | null | undefined;
|
|
20001
20082
|
city?: string | null | undefined;
|
|
20002
20083
|
venueName?: string | null | undefined;
|
|
20084
|
+
pickCount?: number | undefined;
|
|
20003
20085
|
};
|
|
20004
20086
|
totalInningsRemaining: number;
|
|
20005
20087
|
innings: {
|
|
@@ -20189,6 +20271,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
20189
20271
|
school?: string | null | undefined;
|
|
20190
20272
|
city?: string | null | undefined;
|
|
20191
20273
|
venueName?: string | undefined;
|
|
20274
|
+
pickCount?: number | undefined;
|
|
20192
20275
|
};
|
|
20193
20276
|
awayTeam: {
|
|
20194
20277
|
name: string | null;
|
|
@@ -20207,6 +20290,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
20207
20290
|
school?: string | null | undefined;
|
|
20208
20291
|
city?: string | null | undefined;
|
|
20209
20292
|
venueName?: string | undefined;
|
|
20293
|
+
pickCount?: number | undefined;
|
|
20210
20294
|
};
|
|
20211
20295
|
period: string;
|
|
20212
20296
|
clock: string;
|
|
@@ -20382,6 +20466,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
20382
20466
|
school?: string | null | undefined;
|
|
20383
20467
|
city?: string | null | undefined;
|
|
20384
20468
|
venueName?: string | null | undefined;
|
|
20469
|
+
pickCount?: number | undefined;
|
|
20385
20470
|
};
|
|
20386
20471
|
awayTeam: {
|
|
20387
20472
|
name: string | null;
|
|
@@ -20397,6 +20482,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
20397
20482
|
school?: string | null | undefined;
|
|
20398
20483
|
city?: string | null | undefined;
|
|
20399
20484
|
venueName?: string | null | undefined;
|
|
20485
|
+
pickCount?: number | undefined;
|
|
20400
20486
|
};
|
|
20401
20487
|
seasonType: number;
|
|
20402
20488
|
possession: string | null;
|
|
@@ -20595,6 +20681,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
20595
20681
|
school?: string | null | undefined;
|
|
20596
20682
|
city?: string | null | undefined;
|
|
20597
20683
|
venueName?: string | null | undefined;
|
|
20684
|
+
pickCount?: number | undefined;
|
|
20598
20685
|
};
|
|
20599
20686
|
awayTeam: {
|
|
20600
20687
|
name: string | null;
|
|
@@ -20610,6 +20697,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
20610
20697
|
school?: string | null | undefined;
|
|
20611
20698
|
city?: string | null | undefined;
|
|
20612
20699
|
venueName?: string | null | undefined;
|
|
20700
|
+
pickCount?: number | undefined;
|
|
20613
20701
|
};
|
|
20614
20702
|
timeRemainingMinutes: number;
|
|
20615
20703
|
timeRemainingSeconds: number;
|
|
@@ -20800,6 +20888,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
20800
20888
|
school?: string | null | undefined;
|
|
20801
20889
|
city?: string | null | undefined;
|
|
20802
20890
|
venueName?: string | null | undefined;
|
|
20891
|
+
pickCount?: number | undefined;
|
|
20803
20892
|
};
|
|
20804
20893
|
awayTeam: {
|
|
20805
20894
|
name: string | null;
|
|
@@ -20815,6 +20904,7 @@ export declare const playerWithVotesAndGameSchema: z.ZodObject<{
|
|
|
20815
20904
|
school?: string | null | undefined;
|
|
20816
20905
|
city?: string | null | undefined;
|
|
20817
20906
|
venueName?: string | null | undefined;
|
|
20907
|
+
pickCount?: number | undefined;
|
|
20818
20908
|
};
|
|
20819
20909
|
timeRemainingMinutes: number;
|
|
20820
20910
|
timeRemainingSeconds: number;
|