rategame-shared 1.1.179 → 1.1.180
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/schemas/game.d.ts +245 -0
- package/dist/schemas/game.js +1 -0
- package/dist/schemas/notification.d.ts +18 -0
- package/dist/schemas/rating.d.ts +30 -0
- package/dist/schemas/team.d.ts +6 -6
- package/package.json +1 -1
package/dist/schemas/game.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ export declare const gameTeamSchema: z.ZodObject<{
|
|
|
11
11
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
12
12
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
13
13
|
school: z.ZodOptional<z.ZodString>;
|
|
14
|
+
city: z.ZodOptional<z.ZodString>;
|
|
14
15
|
}, "strip", z.ZodTypeAny, {
|
|
15
16
|
name: string;
|
|
16
17
|
image: string;
|
|
@@ -23,6 +24,7 @@ export declare const gameTeamSchema: z.ZodObject<{
|
|
|
23
24
|
scoreExtraTime?: number | undefined;
|
|
24
25
|
stadiumUrl?: string | undefined;
|
|
25
26
|
school?: string | undefined;
|
|
27
|
+
city?: string | undefined;
|
|
26
28
|
}, {
|
|
27
29
|
name: string;
|
|
28
30
|
image: string;
|
|
@@ -35,6 +37,7 @@ export declare const gameTeamSchema: z.ZodObject<{
|
|
|
35
37
|
scoreExtraTime?: number | undefined;
|
|
36
38
|
stadiumUrl?: string | undefined;
|
|
37
39
|
school?: string | undefined;
|
|
40
|
+
city?: string | undefined;
|
|
38
41
|
}>;
|
|
39
42
|
export declare const gameRatingAggregateSchema: z.ZodObject<{
|
|
40
43
|
avg: z.ZodNumber;
|
|
@@ -791,6 +794,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
791
794
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
792
795
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
793
796
|
school: z.ZodOptional<z.ZodString>;
|
|
797
|
+
city: z.ZodOptional<z.ZodString>;
|
|
794
798
|
}, "strip", z.ZodTypeAny, {
|
|
795
799
|
name: string;
|
|
796
800
|
image: string;
|
|
@@ -803,6 +807,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
803
807
|
scoreExtraTime?: number | undefined;
|
|
804
808
|
stadiumUrl?: string | undefined;
|
|
805
809
|
school?: string | undefined;
|
|
810
|
+
city?: string | undefined;
|
|
806
811
|
}, {
|
|
807
812
|
name: string;
|
|
808
813
|
image: string;
|
|
@@ -815,6 +820,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
815
820
|
scoreExtraTime?: number | undefined;
|
|
816
821
|
stadiumUrl?: string | undefined;
|
|
817
822
|
school?: string | undefined;
|
|
823
|
+
city?: string | undefined;
|
|
818
824
|
}>;
|
|
819
825
|
awayTeam: z.ZodObject<{
|
|
820
826
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -828,6 +834,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
828
834
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
829
835
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
830
836
|
school: z.ZodOptional<z.ZodString>;
|
|
837
|
+
city: z.ZodOptional<z.ZodString>;
|
|
831
838
|
}, "strip", z.ZodTypeAny, {
|
|
832
839
|
name: string;
|
|
833
840
|
image: string;
|
|
@@ -840,6 +847,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
840
847
|
scoreExtraTime?: number | undefined;
|
|
841
848
|
stadiumUrl?: string | undefined;
|
|
842
849
|
school?: string | undefined;
|
|
850
|
+
city?: string | undefined;
|
|
843
851
|
}, {
|
|
844
852
|
name: string;
|
|
845
853
|
image: string;
|
|
@@ -852,6 +860,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
852
860
|
scoreExtraTime?: number | undefined;
|
|
853
861
|
stadiumUrl?: string | undefined;
|
|
854
862
|
school?: string | undefined;
|
|
863
|
+
city?: string | undefined;
|
|
855
864
|
}>;
|
|
856
865
|
timeRemainingMinutes: z.ZodNumber;
|
|
857
866
|
timeRemainingSeconds: z.ZodNumber;
|
|
@@ -1861,6 +1870,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
1861
1870
|
scoreExtraTime?: number | undefined;
|
|
1862
1871
|
stadiumUrl?: string | undefined;
|
|
1863
1872
|
school?: string | undefined;
|
|
1873
|
+
city?: string | undefined;
|
|
1864
1874
|
};
|
|
1865
1875
|
awayTeam: {
|
|
1866
1876
|
name: string;
|
|
@@ -1874,6 +1884,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
1874
1884
|
scoreExtraTime?: number | undefined;
|
|
1875
1885
|
stadiumUrl?: string | undefined;
|
|
1876
1886
|
school?: string | undefined;
|
|
1887
|
+
city?: string | undefined;
|
|
1877
1888
|
};
|
|
1878
1889
|
timeRemainingMinutes: number;
|
|
1879
1890
|
timeRemainingSeconds: number;
|
|
@@ -2028,6 +2039,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
2028
2039
|
scoreExtraTime?: number | undefined;
|
|
2029
2040
|
stadiumUrl?: string | undefined;
|
|
2030
2041
|
school?: string | undefined;
|
|
2042
|
+
city?: string | undefined;
|
|
2031
2043
|
};
|
|
2032
2044
|
awayTeam: {
|
|
2033
2045
|
name: string;
|
|
@@ -2041,6 +2053,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
2041
2053
|
scoreExtraTime?: number | undefined;
|
|
2042
2054
|
stadiumUrl?: string | undefined;
|
|
2043
2055
|
school?: string | undefined;
|
|
2056
|
+
city?: string | undefined;
|
|
2044
2057
|
};
|
|
2045
2058
|
timeRemainingMinutes: number;
|
|
2046
2059
|
timeRemainingSeconds: number;
|
|
@@ -2198,6 +2211,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
2198
2211
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
2199
2212
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
2200
2213
|
school: z.ZodOptional<z.ZodString>;
|
|
2214
|
+
city: z.ZodOptional<z.ZodString>;
|
|
2201
2215
|
}, "strip", z.ZodTypeAny, {
|
|
2202
2216
|
name: string;
|
|
2203
2217
|
image: string;
|
|
@@ -2210,6 +2224,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
2210
2224
|
scoreExtraTime?: number | undefined;
|
|
2211
2225
|
stadiumUrl?: string | undefined;
|
|
2212
2226
|
school?: string | undefined;
|
|
2227
|
+
city?: string | undefined;
|
|
2213
2228
|
}, {
|
|
2214
2229
|
name: string;
|
|
2215
2230
|
image: string;
|
|
@@ -2222,6 +2237,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
2222
2237
|
scoreExtraTime?: number | undefined;
|
|
2223
2238
|
stadiumUrl?: string | undefined;
|
|
2224
2239
|
school?: string | undefined;
|
|
2240
|
+
city?: string | undefined;
|
|
2225
2241
|
}>;
|
|
2226
2242
|
awayTeam: z.ZodObject<{
|
|
2227
2243
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -2235,6 +2251,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
2235
2251
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
2236
2252
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
2237
2253
|
school: z.ZodOptional<z.ZodString>;
|
|
2254
|
+
city: z.ZodOptional<z.ZodString>;
|
|
2238
2255
|
}, "strip", z.ZodTypeAny, {
|
|
2239
2256
|
name: string;
|
|
2240
2257
|
image: string;
|
|
@@ -2247,6 +2264,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
2247
2264
|
scoreExtraTime?: number | undefined;
|
|
2248
2265
|
stadiumUrl?: string | undefined;
|
|
2249
2266
|
school?: string | undefined;
|
|
2267
|
+
city?: string | undefined;
|
|
2250
2268
|
}, {
|
|
2251
2269
|
name: string;
|
|
2252
2270
|
image: string;
|
|
@@ -2259,6 +2277,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
2259
2277
|
scoreExtraTime?: number | undefined;
|
|
2260
2278
|
stadiumUrl?: string | undefined;
|
|
2261
2279
|
school?: string | undefined;
|
|
2280
|
+
city?: string | undefined;
|
|
2262
2281
|
}>;
|
|
2263
2282
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
2264
2283
|
homeTeamWins: z.ZodNumber;
|
|
@@ -4038,6 +4057,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4038
4057
|
scoreExtraTime?: number | undefined;
|
|
4039
4058
|
stadiumUrl?: string | undefined;
|
|
4040
4059
|
school?: string | undefined;
|
|
4060
|
+
city?: string | undefined;
|
|
4041
4061
|
};
|
|
4042
4062
|
awayTeam: {
|
|
4043
4063
|
name: string;
|
|
@@ -4051,6 +4071,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4051
4071
|
scoreExtraTime?: number | undefined;
|
|
4052
4072
|
stadiumUrl?: string | undefined;
|
|
4053
4073
|
school?: string | undefined;
|
|
4074
|
+
city?: string | undefined;
|
|
4054
4075
|
};
|
|
4055
4076
|
id?: string | undefined;
|
|
4056
4077
|
ratings?: {
|
|
@@ -4211,6 +4232,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4211
4232
|
scoreExtraTime?: number | undefined;
|
|
4212
4233
|
stadiumUrl?: string | undefined;
|
|
4213
4234
|
school?: string | undefined;
|
|
4235
|
+
city?: string | undefined;
|
|
4214
4236
|
};
|
|
4215
4237
|
awayTeam: {
|
|
4216
4238
|
name: string;
|
|
@@ -4224,6 +4246,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4224
4246
|
scoreExtraTime?: number | undefined;
|
|
4225
4247
|
stadiumUrl?: string | undefined;
|
|
4226
4248
|
school?: string | undefined;
|
|
4249
|
+
city?: string | undefined;
|
|
4227
4250
|
};
|
|
4228
4251
|
id?: string | undefined;
|
|
4229
4252
|
ratings?: {
|
|
@@ -4388,6 +4411,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
4388
4411
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
4389
4412
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
4390
4413
|
school: z.ZodOptional<z.ZodString>;
|
|
4414
|
+
city: z.ZodOptional<z.ZodString>;
|
|
4391
4415
|
}, "strip", z.ZodTypeAny, {
|
|
4392
4416
|
name: string;
|
|
4393
4417
|
image: string;
|
|
@@ -4400,6 +4424,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
4400
4424
|
scoreExtraTime?: number | undefined;
|
|
4401
4425
|
stadiumUrl?: string | undefined;
|
|
4402
4426
|
school?: string | undefined;
|
|
4427
|
+
city?: string | undefined;
|
|
4403
4428
|
}, {
|
|
4404
4429
|
name: string;
|
|
4405
4430
|
image: string;
|
|
@@ -4412,6 +4437,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
4412
4437
|
scoreExtraTime?: number | undefined;
|
|
4413
4438
|
stadiumUrl?: string | undefined;
|
|
4414
4439
|
school?: string | undefined;
|
|
4440
|
+
city?: string | undefined;
|
|
4415
4441
|
}>;
|
|
4416
4442
|
awayTeam: z.ZodObject<{
|
|
4417
4443
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -4425,6 +4451,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
4425
4451
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
4426
4452
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
4427
4453
|
school: z.ZodOptional<z.ZodString>;
|
|
4454
|
+
city: z.ZodOptional<z.ZodString>;
|
|
4428
4455
|
}, "strip", z.ZodTypeAny, {
|
|
4429
4456
|
name: string;
|
|
4430
4457
|
image: string;
|
|
@@ -4437,6 +4464,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
4437
4464
|
scoreExtraTime?: number | undefined;
|
|
4438
4465
|
stadiumUrl?: string | undefined;
|
|
4439
4466
|
school?: string | undefined;
|
|
4467
|
+
city?: string | undefined;
|
|
4440
4468
|
}, {
|
|
4441
4469
|
name: string;
|
|
4442
4470
|
image: string;
|
|
@@ -4449,6 +4477,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
4449
4477
|
scoreExtraTime?: number | undefined;
|
|
4450
4478
|
stadiumUrl?: string | undefined;
|
|
4451
4479
|
school?: string | undefined;
|
|
4480
|
+
city?: string | undefined;
|
|
4452
4481
|
}>;
|
|
4453
4482
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
4454
4483
|
homeTeamWins: z.ZodNumber;
|
|
@@ -6251,6 +6280,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6251
6280
|
scoreExtraTime?: number | undefined;
|
|
6252
6281
|
stadiumUrl?: string | undefined;
|
|
6253
6282
|
school?: string | undefined;
|
|
6283
|
+
city?: string | undefined;
|
|
6254
6284
|
};
|
|
6255
6285
|
awayTeam: {
|
|
6256
6286
|
name: string;
|
|
@@ -6264,6 +6294,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6264
6294
|
scoreExtraTime?: number | undefined;
|
|
6265
6295
|
stadiumUrl?: string | undefined;
|
|
6266
6296
|
school?: string | undefined;
|
|
6297
|
+
city?: string | undefined;
|
|
6267
6298
|
};
|
|
6268
6299
|
timeRemainingMinutes: number;
|
|
6269
6300
|
timeRemainingSeconds: number;
|
|
@@ -6437,6 +6468,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6437
6468
|
scoreExtraTime?: number | undefined;
|
|
6438
6469
|
stadiumUrl?: string | undefined;
|
|
6439
6470
|
school?: string | undefined;
|
|
6471
|
+
city?: string | undefined;
|
|
6440
6472
|
};
|
|
6441
6473
|
awayTeam: {
|
|
6442
6474
|
name: string;
|
|
@@ -6450,6 +6482,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6450
6482
|
scoreExtraTime?: number | undefined;
|
|
6451
6483
|
stadiumUrl?: string | undefined;
|
|
6452
6484
|
school?: string | undefined;
|
|
6485
|
+
city?: string | undefined;
|
|
6453
6486
|
};
|
|
6454
6487
|
timeRemainingMinutes: number;
|
|
6455
6488
|
timeRemainingSeconds: number;
|
|
@@ -6639,6 +6672,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6639
6672
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
6640
6673
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
6641
6674
|
school: z.ZodOptional<z.ZodString>;
|
|
6675
|
+
city: z.ZodOptional<z.ZodString>;
|
|
6642
6676
|
}, "strip", z.ZodTypeAny, {
|
|
6643
6677
|
name: string;
|
|
6644
6678
|
image: string;
|
|
@@ -6651,6 +6685,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6651
6685
|
scoreExtraTime?: number | undefined;
|
|
6652
6686
|
stadiumUrl?: string | undefined;
|
|
6653
6687
|
school?: string | undefined;
|
|
6688
|
+
city?: string | undefined;
|
|
6654
6689
|
}, {
|
|
6655
6690
|
name: string;
|
|
6656
6691
|
image: string;
|
|
@@ -6663,6 +6698,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6663
6698
|
scoreExtraTime?: number | undefined;
|
|
6664
6699
|
stadiumUrl?: string | undefined;
|
|
6665
6700
|
school?: string | undefined;
|
|
6701
|
+
city?: string | undefined;
|
|
6666
6702
|
}>;
|
|
6667
6703
|
awayTeam: z.ZodObject<{
|
|
6668
6704
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -6676,6 +6712,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6676
6712
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
6677
6713
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
6678
6714
|
school: z.ZodOptional<z.ZodString>;
|
|
6715
|
+
city: z.ZodOptional<z.ZodString>;
|
|
6679
6716
|
}, "strip", z.ZodTypeAny, {
|
|
6680
6717
|
name: string;
|
|
6681
6718
|
image: string;
|
|
@@ -6688,6 +6725,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6688
6725
|
scoreExtraTime?: number | undefined;
|
|
6689
6726
|
stadiumUrl?: string | undefined;
|
|
6690
6727
|
school?: string | undefined;
|
|
6728
|
+
city?: string | undefined;
|
|
6691
6729
|
}, {
|
|
6692
6730
|
name: string;
|
|
6693
6731
|
image: string;
|
|
@@ -6700,6 +6738,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6700
6738
|
scoreExtraTime?: number | undefined;
|
|
6701
6739
|
stadiumUrl?: string | undefined;
|
|
6702
6740
|
school?: string | undefined;
|
|
6741
|
+
city?: string | undefined;
|
|
6703
6742
|
}>;
|
|
6704
6743
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
6705
6744
|
homeTeamWins: z.ZodNumber;
|
|
@@ -8508,6 +8547,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8508
8547
|
scoreExtraTime?: number | undefined;
|
|
8509
8548
|
stadiumUrl?: string | undefined;
|
|
8510
8549
|
school?: string | undefined;
|
|
8550
|
+
city?: string | undefined;
|
|
8511
8551
|
};
|
|
8512
8552
|
awayTeam: {
|
|
8513
8553
|
name: string;
|
|
@@ -8521,6 +8561,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8521
8561
|
scoreExtraTime?: number | undefined;
|
|
8522
8562
|
stadiumUrl?: string | undefined;
|
|
8523
8563
|
school?: string | undefined;
|
|
8564
|
+
city?: string | undefined;
|
|
8524
8565
|
};
|
|
8525
8566
|
totalInningsRemaining: number;
|
|
8526
8567
|
innings: {
|
|
@@ -8701,6 +8742,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8701
8742
|
scoreExtraTime?: number | undefined;
|
|
8702
8743
|
stadiumUrl?: string | undefined;
|
|
8703
8744
|
school?: string | undefined;
|
|
8745
|
+
city?: string | undefined;
|
|
8704
8746
|
};
|
|
8705
8747
|
awayTeam: {
|
|
8706
8748
|
name: string;
|
|
@@ -8714,6 +8756,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8714
8756
|
scoreExtraTime?: number | undefined;
|
|
8715
8757
|
stadiumUrl?: string | undefined;
|
|
8716
8758
|
school?: string | undefined;
|
|
8759
|
+
city?: string | undefined;
|
|
8717
8760
|
};
|
|
8718
8761
|
totalInningsRemaining: number;
|
|
8719
8762
|
innings: {
|
|
@@ -8898,6 +8941,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8898
8941
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
8899
8942
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
8900
8943
|
school: z.ZodOptional<z.ZodString>;
|
|
8944
|
+
city: z.ZodOptional<z.ZodString>;
|
|
8901
8945
|
}, "strip", z.ZodTypeAny, {
|
|
8902
8946
|
name: string;
|
|
8903
8947
|
image: string;
|
|
@@ -8910,6 +8954,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8910
8954
|
scoreExtraTime?: number | undefined;
|
|
8911
8955
|
stadiumUrl?: string | undefined;
|
|
8912
8956
|
school?: string | undefined;
|
|
8957
|
+
city?: string | undefined;
|
|
8913
8958
|
}, {
|
|
8914
8959
|
name: string;
|
|
8915
8960
|
image: string;
|
|
@@ -8922,6 +8967,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8922
8967
|
scoreExtraTime?: number | undefined;
|
|
8923
8968
|
stadiumUrl?: string | undefined;
|
|
8924
8969
|
school?: string | undefined;
|
|
8970
|
+
city?: string | undefined;
|
|
8925
8971
|
}>;
|
|
8926
8972
|
awayTeam: z.ZodObject<{
|
|
8927
8973
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -8935,6 +8981,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8935
8981
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
8936
8982
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
8937
8983
|
school: z.ZodOptional<z.ZodString>;
|
|
8984
|
+
city: z.ZodOptional<z.ZodString>;
|
|
8938
8985
|
}, "strip", z.ZodTypeAny, {
|
|
8939
8986
|
name: string;
|
|
8940
8987
|
image: string;
|
|
@@ -8947,6 +8994,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8947
8994
|
scoreExtraTime?: number | undefined;
|
|
8948
8995
|
stadiumUrl?: string | undefined;
|
|
8949
8996
|
school?: string | undefined;
|
|
8997
|
+
city?: string | undefined;
|
|
8950
8998
|
}, {
|
|
8951
8999
|
name: string;
|
|
8952
9000
|
image: string;
|
|
@@ -8959,6 +9007,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8959
9007
|
scoreExtraTime?: number | undefined;
|
|
8960
9008
|
stadiumUrl?: string | undefined;
|
|
8961
9009
|
school?: string | undefined;
|
|
9010
|
+
city?: string | undefined;
|
|
8962
9011
|
}>;
|
|
8963
9012
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
8964
9013
|
homeTeamWins: z.ZodNumber;
|
|
@@ -10742,6 +10791,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10742
10791
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
10743
10792
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
10744
10793
|
school: z.ZodOptional<z.ZodString>;
|
|
10794
|
+
city: z.ZodOptional<z.ZodString>;
|
|
10745
10795
|
}, {
|
|
10746
10796
|
scorePeriod1: z.ZodNumber;
|
|
10747
10797
|
scorePeriod2: z.ZodNumber;
|
|
@@ -10763,6 +10813,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10763
10813
|
teamCode?: string | undefined;
|
|
10764
10814
|
stadiumUrl?: string | undefined;
|
|
10765
10815
|
school?: string | undefined;
|
|
10816
|
+
city?: string | undefined;
|
|
10766
10817
|
venueName?: string | undefined;
|
|
10767
10818
|
}, {
|
|
10768
10819
|
name: string;
|
|
@@ -10779,6 +10830,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10779
10830
|
teamCode?: string | undefined;
|
|
10780
10831
|
stadiumUrl?: string | undefined;
|
|
10781
10832
|
school?: string | undefined;
|
|
10833
|
+
city?: string | undefined;
|
|
10782
10834
|
venueName?: string | undefined;
|
|
10783
10835
|
}>;
|
|
10784
10836
|
awayTeam: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -10793,6 +10845,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10793
10845
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
10794
10846
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
10795
10847
|
school: z.ZodOptional<z.ZodString>;
|
|
10848
|
+
city: z.ZodOptional<z.ZodString>;
|
|
10796
10849
|
}, {
|
|
10797
10850
|
scorePeriod1: z.ZodNumber;
|
|
10798
10851
|
scorePeriod2: z.ZodNumber;
|
|
@@ -10814,6 +10867,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10814
10867
|
teamCode?: string | undefined;
|
|
10815
10868
|
stadiumUrl?: string | undefined;
|
|
10816
10869
|
school?: string | undefined;
|
|
10870
|
+
city?: string | undefined;
|
|
10817
10871
|
venueName?: string | undefined;
|
|
10818
10872
|
}, {
|
|
10819
10873
|
name: string;
|
|
@@ -10830,6 +10884,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10830
10884
|
teamCode?: string | undefined;
|
|
10831
10885
|
stadiumUrl?: string | undefined;
|
|
10832
10886
|
school?: string | undefined;
|
|
10887
|
+
city?: string | undefined;
|
|
10833
10888
|
venueName?: string | undefined;
|
|
10834
10889
|
}>;
|
|
10835
10890
|
hadExtraTime: z.ZodBoolean;
|
|
@@ -10855,6 +10910,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10855
10910
|
teamCode?: string | undefined;
|
|
10856
10911
|
stadiumUrl?: string | undefined;
|
|
10857
10912
|
school?: string | undefined;
|
|
10913
|
+
city?: string | undefined;
|
|
10858
10914
|
venueName?: string | undefined;
|
|
10859
10915
|
};
|
|
10860
10916
|
awayTeam: {
|
|
@@ -10872,6 +10928,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10872
10928
|
teamCode?: string | undefined;
|
|
10873
10929
|
stadiumUrl?: string | undefined;
|
|
10874
10930
|
school?: string | undefined;
|
|
10931
|
+
city?: string | undefined;
|
|
10875
10932
|
venueName?: string | undefined;
|
|
10876
10933
|
};
|
|
10877
10934
|
period: string;
|
|
@@ -11045,6 +11102,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11045
11102
|
teamCode?: string | undefined;
|
|
11046
11103
|
stadiumUrl?: string | undefined;
|
|
11047
11104
|
school?: string | undefined;
|
|
11105
|
+
city?: string | undefined;
|
|
11048
11106
|
venueName?: string | undefined;
|
|
11049
11107
|
};
|
|
11050
11108
|
awayTeam: {
|
|
@@ -11062,6 +11120,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11062
11120
|
teamCode?: string | undefined;
|
|
11063
11121
|
stadiumUrl?: string | undefined;
|
|
11064
11122
|
school?: string | undefined;
|
|
11123
|
+
city?: string | undefined;
|
|
11065
11124
|
venueName?: string | undefined;
|
|
11066
11125
|
};
|
|
11067
11126
|
period: string;
|
|
@@ -11235,6 +11294,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
11235
11294
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
11236
11295
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
11237
11296
|
school: z.ZodOptional<z.ZodString>;
|
|
11297
|
+
city: z.ZodOptional<z.ZodString>;
|
|
11238
11298
|
}, "strip", z.ZodTypeAny, {
|
|
11239
11299
|
name: string;
|
|
11240
11300
|
image: string;
|
|
@@ -11247,6 +11307,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
11247
11307
|
scoreExtraTime?: number | undefined;
|
|
11248
11308
|
stadiumUrl?: string | undefined;
|
|
11249
11309
|
school?: string | undefined;
|
|
11310
|
+
city?: string | undefined;
|
|
11250
11311
|
}, {
|
|
11251
11312
|
name: string;
|
|
11252
11313
|
image: string;
|
|
@@ -11259,6 +11320,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
11259
11320
|
scoreExtraTime?: number | undefined;
|
|
11260
11321
|
stadiumUrl?: string | undefined;
|
|
11261
11322
|
school?: string | undefined;
|
|
11323
|
+
city?: string | undefined;
|
|
11262
11324
|
}>;
|
|
11263
11325
|
awayTeam: z.ZodObject<{
|
|
11264
11326
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -11272,6 +11334,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
11272
11334
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
11273
11335
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
11274
11336
|
school: z.ZodOptional<z.ZodString>;
|
|
11337
|
+
city: z.ZodOptional<z.ZodString>;
|
|
11275
11338
|
}, "strip", z.ZodTypeAny, {
|
|
11276
11339
|
name: string;
|
|
11277
11340
|
image: string;
|
|
@@ -11284,6 +11347,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
11284
11347
|
scoreExtraTime?: number | undefined;
|
|
11285
11348
|
stadiumUrl?: string | undefined;
|
|
11286
11349
|
school?: string | undefined;
|
|
11350
|
+
city?: string | undefined;
|
|
11287
11351
|
}, {
|
|
11288
11352
|
name: string;
|
|
11289
11353
|
image: string;
|
|
@@ -11296,6 +11360,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
11296
11360
|
scoreExtraTime?: number | undefined;
|
|
11297
11361
|
stadiumUrl?: string | undefined;
|
|
11298
11362
|
school?: string | undefined;
|
|
11363
|
+
city?: string | undefined;
|
|
11299
11364
|
}>;
|
|
11300
11365
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
11301
11366
|
homeTeamWins: z.ZodNumber;
|
|
@@ -13135,6 +13200,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13135
13200
|
scoreExtraTime?: number | undefined;
|
|
13136
13201
|
stadiumUrl?: string | undefined;
|
|
13137
13202
|
school?: string | undefined;
|
|
13203
|
+
city?: string | undefined;
|
|
13138
13204
|
};
|
|
13139
13205
|
awayTeam: {
|
|
13140
13206
|
name: string;
|
|
@@ -13148,6 +13214,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13148
13214
|
scoreExtraTime?: number | undefined;
|
|
13149
13215
|
stadiumUrl?: string | undefined;
|
|
13150
13216
|
school?: string | undefined;
|
|
13217
|
+
city?: string | undefined;
|
|
13151
13218
|
};
|
|
13152
13219
|
seasonType: number;
|
|
13153
13220
|
possession: string | null;
|
|
@@ -13341,6 +13408,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13341
13408
|
scoreExtraTime?: number | undefined;
|
|
13342
13409
|
stadiumUrl?: string | undefined;
|
|
13343
13410
|
school?: string | undefined;
|
|
13411
|
+
city?: string | undefined;
|
|
13344
13412
|
};
|
|
13345
13413
|
awayTeam: {
|
|
13346
13414
|
name: string;
|
|
@@ -13354,6 +13422,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13354
13422
|
scoreExtraTime?: number | undefined;
|
|
13355
13423
|
stadiumUrl?: string | undefined;
|
|
13356
13424
|
school?: string | undefined;
|
|
13425
|
+
city?: string | undefined;
|
|
13357
13426
|
};
|
|
13358
13427
|
seasonType: number;
|
|
13359
13428
|
possession: string | null;
|
|
@@ -13550,6 +13619,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13550
13619
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
13551
13620
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
13552
13621
|
school: z.ZodOptional<z.ZodString>;
|
|
13622
|
+
city: z.ZodOptional<z.ZodString>;
|
|
13553
13623
|
}, "strip", z.ZodTypeAny, {
|
|
13554
13624
|
name: string;
|
|
13555
13625
|
image: string;
|
|
@@ -13562,6 +13632,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13562
13632
|
scoreExtraTime?: number | undefined;
|
|
13563
13633
|
stadiumUrl?: string | undefined;
|
|
13564
13634
|
school?: string | undefined;
|
|
13635
|
+
city?: string | undefined;
|
|
13565
13636
|
}, {
|
|
13566
13637
|
name: string;
|
|
13567
13638
|
image: string;
|
|
@@ -13574,6 +13645,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13574
13645
|
scoreExtraTime?: number | undefined;
|
|
13575
13646
|
stadiumUrl?: string | undefined;
|
|
13576
13647
|
school?: string | undefined;
|
|
13648
|
+
city?: string | undefined;
|
|
13577
13649
|
}>;
|
|
13578
13650
|
awayTeam: z.ZodObject<{
|
|
13579
13651
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -13587,6 +13659,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13587
13659
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
13588
13660
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
13589
13661
|
school: z.ZodOptional<z.ZodString>;
|
|
13662
|
+
city: z.ZodOptional<z.ZodString>;
|
|
13590
13663
|
}, "strip", z.ZodTypeAny, {
|
|
13591
13664
|
name: string;
|
|
13592
13665
|
image: string;
|
|
@@ -13599,6 +13672,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13599
13672
|
scoreExtraTime?: number | undefined;
|
|
13600
13673
|
stadiumUrl?: string | undefined;
|
|
13601
13674
|
school?: string | undefined;
|
|
13675
|
+
city?: string | undefined;
|
|
13602
13676
|
}, {
|
|
13603
13677
|
name: string;
|
|
13604
13678
|
image: string;
|
|
@@ -13611,6 +13685,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13611
13685
|
scoreExtraTime?: number | undefined;
|
|
13612
13686
|
stadiumUrl?: string | undefined;
|
|
13613
13687
|
school?: string | undefined;
|
|
13688
|
+
city?: string | undefined;
|
|
13614
13689
|
}>;
|
|
13615
13690
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
13616
13691
|
homeTeamWins: z.ZodNumber;
|
|
@@ -15446,6 +15521,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
15446
15521
|
scoreExtraTime?: number | undefined;
|
|
15447
15522
|
stadiumUrl?: string | undefined;
|
|
15448
15523
|
school?: string | undefined;
|
|
15524
|
+
city?: string | undefined;
|
|
15449
15525
|
};
|
|
15450
15526
|
awayTeam: {
|
|
15451
15527
|
name: string;
|
|
@@ -15459,6 +15535,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
15459
15535
|
scoreExtraTime?: number | undefined;
|
|
15460
15536
|
stadiumUrl?: string | undefined;
|
|
15461
15537
|
school?: string | undefined;
|
|
15538
|
+
city?: string | undefined;
|
|
15462
15539
|
};
|
|
15463
15540
|
timeRemainingMinutes: number;
|
|
15464
15541
|
timeRemainingSeconds: number;
|
|
@@ -15645,6 +15722,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
15645
15722
|
scoreExtraTime?: number | undefined;
|
|
15646
15723
|
stadiumUrl?: string | undefined;
|
|
15647
15724
|
school?: string | undefined;
|
|
15725
|
+
city?: string | undefined;
|
|
15648
15726
|
};
|
|
15649
15727
|
awayTeam: {
|
|
15650
15728
|
name: string;
|
|
@@ -15658,6 +15736,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
15658
15736
|
scoreExtraTime?: number | undefined;
|
|
15659
15737
|
stadiumUrl?: string | undefined;
|
|
15660
15738
|
school?: string | undefined;
|
|
15739
|
+
city?: string | undefined;
|
|
15661
15740
|
};
|
|
15662
15741
|
timeRemainingMinutes: number;
|
|
15663
15742
|
timeRemainingSeconds: number;
|
|
@@ -15847,6 +15926,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
15847
15926
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
15848
15927
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
15849
15928
|
school: z.ZodOptional<z.ZodString>;
|
|
15929
|
+
city: z.ZodOptional<z.ZodString>;
|
|
15850
15930
|
}, "strip", z.ZodTypeAny, {
|
|
15851
15931
|
name: string;
|
|
15852
15932
|
image: string;
|
|
@@ -15859,6 +15939,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
15859
15939
|
scoreExtraTime?: number | undefined;
|
|
15860
15940
|
stadiumUrl?: string | undefined;
|
|
15861
15941
|
school?: string | undefined;
|
|
15942
|
+
city?: string | undefined;
|
|
15862
15943
|
}, {
|
|
15863
15944
|
name: string;
|
|
15864
15945
|
image: string;
|
|
@@ -15871,6 +15952,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
15871
15952
|
scoreExtraTime?: number | undefined;
|
|
15872
15953
|
stadiumUrl?: string | undefined;
|
|
15873
15954
|
school?: string | undefined;
|
|
15955
|
+
city?: string | undefined;
|
|
15874
15956
|
}>;
|
|
15875
15957
|
awayTeam: z.ZodObject<{
|
|
15876
15958
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -15884,6 +15966,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
15884
15966
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
15885
15967
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
15886
15968
|
school: z.ZodOptional<z.ZodString>;
|
|
15969
|
+
city: z.ZodOptional<z.ZodString>;
|
|
15887
15970
|
}, "strip", z.ZodTypeAny, {
|
|
15888
15971
|
name: string;
|
|
15889
15972
|
image: string;
|
|
@@ -15896,6 +15979,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
15896
15979
|
scoreExtraTime?: number | undefined;
|
|
15897
15980
|
stadiumUrl?: string | undefined;
|
|
15898
15981
|
school?: string | undefined;
|
|
15982
|
+
city?: string | undefined;
|
|
15899
15983
|
}, {
|
|
15900
15984
|
name: string;
|
|
15901
15985
|
image: string;
|
|
@@ -15908,6 +15992,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
15908
15992
|
scoreExtraTime?: number | undefined;
|
|
15909
15993
|
stadiumUrl?: string | undefined;
|
|
15910
15994
|
school?: string | undefined;
|
|
15995
|
+
city?: string | undefined;
|
|
15911
15996
|
}>;
|
|
15912
15997
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
15913
15998
|
homeTeamWins: z.ZodNumber;
|
|
@@ -17695,6 +17780,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
17695
17780
|
scoreExtraTime?: number | undefined;
|
|
17696
17781
|
stadiumUrl?: string | undefined;
|
|
17697
17782
|
school?: string | undefined;
|
|
17783
|
+
city?: string | undefined;
|
|
17698
17784
|
};
|
|
17699
17785
|
awayTeam: {
|
|
17700
17786
|
name: string;
|
|
@@ -17708,6 +17794,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
17708
17794
|
scoreExtraTime?: number | undefined;
|
|
17709
17795
|
stadiumUrl?: string | undefined;
|
|
17710
17796
|
school?: string | undefined;
|
|
17797
|
+
city?: string | undefined;
|
|
17711
17798
|
};
|
|
17712
17799
|
timeRemainingMinutes: number;
|
|
17713
17800
|
timeRemainingSeconds: number;
|
|
@@ -17874,6 +17961,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
17874
17961
|
scoreExtraTime?: number | undefined;
|
|
17875
17962
|
stadiumUrl?: string | undefined;
|
|
17876
17963
|
school?: string | undefined;
|
|
17964
|
+
city?: string | undefined;
|
|
17877
17965
|
};
|
|
17878
17966
|
awayTeam: {
|
|
17879
17967
|
name: string;
|
|
@@ -17887,6 +17975,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
17887
17975
|
scoreExtraTime?: number | undefined;
|
|
17888
17976
|
stadiumUrl?: string | undefined;
|
|
17889
17977
|
school?: string | undefined;
|
|
17978
|
+
city?: string | undefined;
|
|
17890
17979
|
};
|
|
17891
17980
|
timeRemainingMinutes: number;
|
|
17892
17981
|
timeRemainingSeconds: number;
|
|
@@ -18057,6 +18146,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
18057
18146
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
18058
18147
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
18059
18148
|
school: z.ZodOptional<z.ZodString>;
|
|
18149
|
+
city: z.ZodOptional<z.ZodString>;
|
|
18060
18150
|
}, "strip", z.ZodTypeAny, {
|
|
18061
18151
|
name: string;
|
|
18062
18152
|
image: string;
|
|
@@ -18069,6 +18159,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
18069
18159
|
scoreExtraTime?: number | undefined;
|
|
18070
18160
|
stadiumUrl?: string | undefined;
|
|
18071
18161
|
school?: string | undefined;
|
|
18162
|
+
city?: string | undefined;
|
|
18072
18163
|
}, {
|
|
18073
18164
|
name: string;
|
|
18074
18165
|
image: string;
|
|
@@ -18081,6 +18172,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
18081
18172
|
scoreExtraTime?: number | undefined;
|
|
18082
18173
|
stadiumUrl?: string | undefined;
|
|
18083
18174
|
school?: string | undefined;
|
|
18175
|
+
city?: string | undefined;
|
|
18084
18176
|
}>;
|
|
18085
18177
|
awayTeam: z.ZodObject<{
|
|
18086
18178
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -18094,6 +18186,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
18094
18186
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
18095
18187
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
18096
18188
|
school: z.ZodOptional<z.ZodString>;
|
|
18189
|
+
city: z.ZodOptional<z.ZodString>;
|
|
18097
18190
|
}, "strip", z.ZodTypeAny, {
|
|
18098
18191
|
name: string;
|
|
18099
18192
|
image: string;
|
|
@@ -18106,6 +18199,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
18106
18199
|
scoreExtraTime?: number | undefined;
|
|
18107
18200
|
stadiumUrl?: string | undefined;
|
|
18108
18201
|
school?: string | undefined;
|
|
18202
|
+
city?: string | undefined;
|
|
18109
18203
|
}, {
|
|
18110
18204
|
name: string;
|
|
18111
18205
|
image: string;
|
|
@@ -18118,6 +18212,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
18118
18212
|
scoreExtraTime?: number | undefined;
|
|
18119
18213
|
stadiumUrl?: string | undefined;
|
|
18120
18214
|
school?: string | undefined;
|
|
18215
|
+
city?: string | undefined;
|
|
18121
18216
|
}>;
|
|
18122
18217
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
18123
18218
|
homeTeamWins: z.ZodNumber;
|
|
@@ -19920,6 +20015,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
19920
20015
|
scoreExtraTime?: number | undefined;
|
|
19921
20016
|
stadiumUrl?: string | undefined;
|
|
19922
20017
|
school?: string | undefined;
|
|
20018
|
+
city?: string | undefined;
|
|
19923
20019
|
};
|
|
19924
20020
|
awayTeam: {
|
|
19925
20021
|
name: string;
|
|
@@ -19933,6 +20029,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
19933
20029
|
scoreExtraTime?: number | undefined;
|
|
19934
20030
|
stadiumUrl?: string | undefined;
|
|
19935
20031
|
school?: string | undefined;
|
|
20032
|
+
city?: string | undefined;
|
|
19936
20033
|
};
|
|
19937
20034
|
timeRemainingMinutes: number;
|
|
19938
20035
|
timeRemainingSeconds: number;
|
|
@@ -20106,6 +20203,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20106
20203
|
scoreExtraTime?: number | undefined;
|
|
20107
20204
|
stadiumUrl?: string | undefined;
|
|
20108
20205
|
school?: string | undefined;
|
|
20206
|
+
city?: string | undefined;
|
|
20109
20207
|
};
|
|
20110
20208
|
awayTeam: {
|
|
20111
20209
|
name: string;
|
|
@@ -20119,6 +20217,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20119
20217
|
scoreExtraTime?: number | undefined;
|
|
20120
20218
|
stadiumUrl?: string | undefined;
|
|
20121
20219
|
school?: string | undefined;
|
|
20220
|
+
city?: string | undefined;
|
|
20122
20221
|
};
|
|
20123
20222
|
timeRemainingMinutes: number;
|
|
20124
20223
|
timeRemainingSeconds: number;
|
|
@@ -20294,6 +20393,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20294
20393
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
20295
20394
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
20296
20395
|
school: z.ZodOptional<z.ZodString>;
|
|
20396
|
+
city: z.ZodOptional<z.ZodString>;
|
|
20297
20397
|
}, "strip", z.ZodTypeAny, {
|
|
20298
20398
|
name: string;
|
|
20299
20399
|
image: string;
|
|
@@ -20306,6 +20406,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20306
20406
|
scoreExtraTime?: number | undefined;
|
|
20307
20407
|
stadiumUrl?: string | undefined;
|
|
20308
20408
|
school?: string | undefined;
|
|
20409
|
+
city?: string | undefined;
|
|
20309
20410
|
}, {
|
|
20310
20411
|
name: string;
|
|
20311
20412
|
image: string;
|
|
@@ -20318,6 +20419,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20318
20419
|
scoreExtraTime?: number | undefined;
|
|
20319
20420
|
stadiumUrl?: string | undefined;
|
|
20320
20421
|
school?: string | undefined;
|
|
20422
|
+
city?: string | undefined;
|
|
20321
20423
|
}>;
|
|
20322
20424
|
awayTeam: z.ZodObject<{
|
|
20323
20425
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -20331,6 +20433,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20331
20433
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
20332
20434
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
20333
20435
|
school: z.ZodOptional<z.ZodString>;
|
|
20436
|
+
city: z.ZodOptional<z.ZodString>;
|
|
20334
20437
|
}, "strip", z.ZodTypeAny, {
|
|
20335
20438
|
name: string;
|
|
20336
20439
|
image: string;
|
|
@@ -20343,6 +20446,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20343
20446
|
scoreExtraTime?: number | undefined;
|
|
20344
20447
|
stadiumUrl?: string | undefined;
|
|
20345
20448
|
school?: string | undefined;
|
|
20449
|
+
city?: string | undefined;
|
|
20346
20450
|
}, {
|
|
20347
20451
|
name: string;
|
|
20348
20452
|
image: string;
|
|
@@ -20355,6 +20459,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20355
20459
|
scoreExtraTime?: number | undefined;
|
|
20356
20460
|
stadiumUrl?: string | undefined;
|
|
20357
20461
|
school?: string | undefined;
|
|
20462
|
+
city?: string | undefined;
|
|
20358
20463
|
}>;
|
|
20359
20464
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
20360
20465
|
homeTeamWins: z.ZodNumber;
|
|
@@ -22163,6 +22268,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22163
22268
|
scoreExtraTime?: number | undefined;
|
|
22164
22269
|
stadiumUrl?: string | undefined;
|
|
22165
22270
|
school?: string | undefined;
|
|
22271
|
+
city?: string | undefined;
|
|
22166
22272
|
};
|
|
22167
22273
|
awayTeam: {
|
|
22168
22274
|
name: string;
|
|
@@ -22176,6 +22282,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22176
22282
|
scoreExtraTime?: number | undefined;
|
|
22177
22283
|
stadiumUrl?: string | undefined;
|
|
22178
22284
|
school?: string | undefined;
|
|
22285
|
+
city?: string | undefined;
|
|
22179
22286
|
};
|
|
22180
22287
|
totalInningsRemaining: number;
|
|
22181
22288
|
innings: {
|
|
@@ -22356,6 +22463,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22356
22463
|
scoreExtraTime?: number | undefined;
|
|
22357
22464
|
stadiumUrl?: string | undefined;
|
|
22358
22465
|
school?: string | undefined;
|
|
22466
|
+
city?: string | undefined;
|
|
22359
22467
|
};
|
|
22360
22468
|
awayTeam: {
|
|
22361
22469
|
name: string;
|
|
@@ -22369,6 +22477,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22369
22477
|
scoreExtraTime?: number | undefined;
|
|
22370
22478
|
stadiumUrl?: string | undefined;
|
|
22371
22479
|
school?: string | undefined;
|
|
22480
|
+
city?: string | undefined;
|
|
22372
22481
|
};
|
|
22373
22482
|
totalInningsRemaining: number;
|
|
22374
22483
|
innings: {
|
|
@@ -22552,6 +22661,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22552
22661
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
22553
22662
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
22554
22663
|
school: z.ZodOptional<z.ZodString>;
|
|
22664
|
+
city: z.ZodOptional<z.ZodString>;
|
|
22555
22665
|
}, "strip", z.ZodTypeAny, {
|
|
22556
22666
|
name: string;
|
|
22557
22667
|
image: string;
|
|
@@ -22564,6 +22674,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22564
22674
|
scoreExtraTime?: number | undefined;
|
|
22565
22675
|
stadiumUrl?: string | undefined;
|
|
22566
22676
|
school?: string | undefined;
|
|
22677
|
+
city?: string | undefined;
|
|
22567
22678
|
}, {
|
|
22568
22679
|
name: string;
|
|
22569
22680
|
image: string;
|
|
@@ -22576,6 +22687,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22576
22687
|
scoreExtraTime?: number | undefined;
|
|
22577
22688
|
stadiumUrl?: string | undefined;
|
|
22578
22689
|
school?: string | undefined;
|
|
22690
|
+
city?: string | undefined;
|
|
22579
22691
|
}>;
|
|
22580
22692
|
awayTeam: z.ZodObject<{
|
|
22581
22693
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -22589,6 +22701,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22589
22701
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
22590
22702
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
22591
22703
|
school: z.ZodOptional<z.ZodString>;
|
|
22704
|
+
city: z.ZodOptional<z.ZodString>;
|
|
22592
22705
|
}, "strip", z.ZodTypeAny, {
|
|
22593
22706
|
name: string;
|
|
22594
22707
|
image: string;
|
|
@@ -22601,6 +22714,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22601
22714
|
scoreExtraTime?: number | undefined;
|
|
22602
22715
|
stadiumUrl?: string | undefined;
|
|
22603
22716
|
school?: string | undefined;
|
|
22717
|
+
city?: string | undefined;
|
|
22604
22718
|
}, {
|
|
22605
22719
|
name: string;
|
|
22606
22720
|
image: string;
|
|
@@ -22613,6 +22727,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22613
22727
|
scoreExtraTime?: number | undefined;
|
|
22614
22728
|
stadiumUrl?: string | undefined;
|
|
22615
22729
|
school?: string | undefined;
|
|
22730
|
+
city?: string | undefined;
|
|
22616
22731
|
}>;
|
|
22617
22732
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
22618
22733
|
homeTeamWins: z.ZodNumber;
|
|
@@ -24396,6 +24511,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24396
24511
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
24397
24512
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
24398
24513
|
school: z.ZodOptional<z.ZodString>;
|
|
24514
|
+
city: z.ZodOptional<z.ZodString>;
|
|
24399
24515
|
}, {
|
|
24400
24516
|
scorePeriod1: z.ZodNumber;
|
|
24401
24517
|
scorePeriod2: z.ZodNumber;
|
|
@@ -24417,6 +24533,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24417
24533
|
teamCode?: string | undefined;
|
|
24418
24534
|
stadiumUrl?: string | undefined;
|
|
24419
24535
|
school?: string | undefined;
|
|
24536
|
+
city?: string | undefined;
|
|
24420
24537
|
venueName?: string | undefined;
|
|
24421
24538
|
}, {
|
|
24422
24539
|
name: string;
|
|
@@ -24433,6 +24550,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24433
24550
|
teamCode?: string | undefined;
|
|
24434
24551
|
stadiumUrl?: string | undefined;
|
|
24435
24552
|
school?: string | undefined;
|
|
24553
|
+
city?: string | undefined;
|
|
24436
24554
|
venueName?: string | undefined;
|
|
24437
24555
|
}>;
|
|
24438
24556
|
awayTeam: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -24447,6 +24565,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24447
24565
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
24448
24566
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
24449
24567
|
school: z.ZodOptional<z.ZodString>;
|
|
24568
|
+
city: z.ZodOptional<z.ZodString>;
|
|
24450
24569
|
}, {
|
|
24451
24570
|
scorePeriod1: z.ZodNumber;
|
|
24452
24571
|
scorePeriod2: z.ZodNumber;
|
|
@@ -24468,6 +24587,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24468
24587
|
teamCode?: string | undefined;
|
|
24469
24588
|
stadiumUrl?: string | undefined;
|
|
24470
24589
|
school?: string | undefined;
|
|
24590
|
+
city?: string | undefined;
|
|
24471
24591
|
venueName?: string | undefined;
|
|
24472
24592
|
}, {
|
|
24473
24593
|
name: string;
|
|
@@ -24484,6 +24604,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24484
24604
|
teamCode?: string | undefined;
|
|
24485
24605
|
stadiumUrl?: string | undefined;
|
|
24486
24606
|
school?: string | undefined;
|
|
24607
|
+
city?: string | undefined;
|
|
24487
24608
|
venueName?: string | undefined;
|
|
24488
24609
|
}>;
|
|
24489
24610
|
hadExtraTime: z.ZodBoolean;
|
|
@@ -24509,6 +24630,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24509
24630
|
teamCode?: string | undefined;
|
|
24510
24631
|
stadiumUrl?: string | undefined;
|
|
24511
24632
|
school?: string | undefined;
|
|
24633
|
+
city?: string | undefined;
|
|
24512
24634
|
venueName?: string | undefined;
|
|
24513
24635
|
};
|
|
24514
24636
|
awayTeam: {
|
|
@@ -24526,6 +24648,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24526
24648
|
teamCode?: string | undefined;
|
|
24527
24649
|
stadiumUrl?: string | undefined;
|
|
24528
24650
|
school?: string | undefined;
|
|
24651
|
+
city?: string | undefined;
|
|
24529
24652
|
venueName?: string | undefined;
|
|
24530
24653
|
};
|
|
24531
24654
|
period: string;
|
|
@@ -24699,6 +24822,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24699
24822
|
teamCode?: string | undefined;
|
|
24700
24823
|
stadiumUrl?: string | undefined;
|
|
24701
24824
|
school?: string | undefined;
|
|
24825
|
+
city?: string | undefined;
|
|
24702
24826
|
venueName?: string | undefined;
|
|
24703
24827
|
};
|
|
24704
24828
|
awayTeam: {
|
|
@@ -24716,6 +24840,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24716
24840
|
teamCode?: string | undefined;
|
|
24717
24841
|
stadiumUrl?: string | undefined;
|
|
24718
24842
|
school?: string | undefined;
|
|
24843
|
+
city?: string | undefined;
|
|
24719
24844
|
venueName?: string | undefined;
|
|
24720
24845
|
};
|
|
24721
24846
|
period: string;
|
|
@@ -24888,6 +25013,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24888
25013
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
24889
25014
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
24890
25015
|
school: z.ZodOptional<z.ZodString>;
|
|
25016
|
+
city: z.ZodOptional<z.ZodString>;
|
|
24891
25017
|
}, "strip", z.ZodTypeAny, {
|
|
24892
25018
|
name: string;
|
|
24893
25019
|
image: string;
|
|
@@ -24900,6 +25026,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24900
25026
|
scoreExtraTime?: number | undefined;
|
|
24901
25027
|
stadiumUrl?: string | undefined;
|
|
24902
25028
|
school?: string | undefined;
|
|
25029
|
+
city?: string | undefined;
|
|
24903
25030
|
}, {
|
|
24904
25031
|
name: string;
|
|
24905
25032
|
image: string;
|
|
@@ -24912,6 +25039,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24912
25039
|
scoreExtraTime?: number | undefined;
|
|
24913
25040
|
stadiumUrl?: string | undefined;
|
|
24914
25041
|
school?: string | undefined;
|
|
25042
|
+
city?: string | undefined;
|
|
24915
25043
|
}>;
|
|
24916
25044
|
awayTeam: z.ZodObject<{
|
|
24917
25045
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -24925,6 +25053,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24925
25053
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
24926
25054
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
24927
25055
|
school: z.ZodOptional<z.ZodString>;
|
|
25056
|
+
city: z.ZodOptional<z.ZodString>;
|
|
24928
25057
|
}, "strip", z.ZodTypeAny, {
|
|
24929
25058
|
name: string;
|
|
24930
25059
|
image: string;
|
|
@@ -24937,6 +25066,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24937
25066
|
scoreExtraTime?: number | undefined;
|
|
24938
25067
|
stadiumUrl?: string | undefined;
|
|
24939
25068
|
school?: string | undefined;
|
|
25069
|
+
city?: string | undefined;
|
|
24940
25070
|
}, {
|
|
24941
25071
|
name: string;
|
|
24942
25072
|
image: string;
|
|
@@ -24949,6 +25079,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24949
25079
|
scoreExtraTime?: number | undefined;
|
|
24950
25080
|
stadiumUrl?: string | undefined;
|
|
24951
25081
|
school?: string | undefined;
|
|
25082
|
+
city?: string | undefined;
|
|
24952
25083
|
}>;
|
|
24953
25084
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
24954
25085
|
homeTeamWins: z.ZodNumber;
|
|
@@ -26788,6 +26919,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
26788
26919
|
scoreExtraTime?: number | undefined;
|
|
26789
26920
|
stadiumUrl?: string | undefined;
|
|
26790
26921
|
school?: string | undefined;
|
|
26922
|
+
city?: string | undefined;
|
|
26791
26923
|
};
|
|
26792
26924
|
awayTeam: {
|
|
26793
26925
|
name: string;
|
|
@@ -26801,6 +26933,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
26801
26933
|
scoreExtraTime?: number | undefined;
|
|
26802
26934
|
stadiumUrl?: string | undefined;
|
|
26803
26935
|
school?: string | undefined;
|
|
26936
|
+
city?: string | undefined;
|
|
26804
26937
|
};
|
|
26805
26938
|
seasonType: number;
|
|
26806
26939
|
possession: string | null;
|
|
@@ -26994,6 +27127,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
26994
27127
|
scoreExtraTime?: number | undefined;
|
|
26995
27128
|
stadiumUrl?: string | undefined;
|
|
26996
27129
|
school?: string | undefined;
|
|
27130
|
+
city?: string | undefined;
|
|
26997
27131
|
};
|
|
26998
27132
|
awayTeam: {
|
|
26999
27133
|
name: string;
|
|
@@ -27007,6 +27141,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27007
27141
|
scoreExtraTime?: number | undefined;
|
|
27008
27142
|
stadiumUrl?: string | undefined;
|
|
27009
27143
|
school?: string | undefined;
|
|
27144
|
+
city?: string | undefined;
|
|
27010
27145
|
};
|
|
27011
27146
|
seasonType: number;
|
|
27012
27147
|
possession: string | null;
|
|
@@ -27202,6 +27337,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27202
27337
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
27203
27338
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
27204
27339
|
school: z.ZodOptional<z.ZodString>;
|
|
27340
|
+
city: z.ZodOptional<z.ZodString>;
|
|
27205
27341
|
}, "strip", z.ZodTypeAny, {
|
|
27206
27342
|
name: string;
|
|
27207
27343
|
image: string;
|
|
@@ -27214,6 +27350,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27214
27350
|
scoreExtraTime?: number | undefined;
|
|
27215
27351
|
stadiumUrl?: string | undefined;
|
|
27216
27352
|
school?: string | undefined;
|
|
27353
|
+
city?: string | undefined;
|
|
27217
27354
|
}, {
|
|
27218
27355
|
name: string;
|
|
27219
27356
|
image: string;
|
|
@@ -27226,6 +27363,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27226
27363
|
scoreExtraTime?: number | undefined;
|
|
27227
27364
|
stadiumUrl?: string | undefined;
|
|
27228
27365
|
school?: string | undefined;
|
|
27366
|
+
city?: string | undefined;
|
|
27229
27367
|
}>;
|
|
27230
27368
|
awayTeam: z.ZodObject<{
|
|
27231
27369
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -27239,6 +27377,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27239
27377
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
27240
27378
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
27241
27379
|
school: z.ZodOptional<z.ZodString>;
|
|
27380
|
+
city: z.ZodOptional<z.ZodString>;
|
|
27242
27381
|
}, "strip", z.ZodTypeAny, {
|
|
27243
27382
|
name: string;
|
|
27244
27383
|
image: string;
|
|
@@ -27251,6 +27390,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27251
27390
|
scoreExtraTime?: number | undefined;
|
|
27252
27391
|
stadiumUrl?: string | undefined;
|
|
27253
27392
|
school?: string | undefined;
|
|
27393
|
+
city?: string | undefined;
|
|
27254
27394
|
}, {
|
|
27255
27395
|
name: string;
|
|
27256
27396
|
image: string;
|
|
@@ -27263,6 +27403,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27263
27403
|
scoreExtraTime?: number | undefined;
|
|
27264
27404
|
stadiumUrl?: string | undefined;
|
|
27265
27405
|
school?: string | undefined;
|
|
27406
|
+
city?: string | undefined;
|
|
27266
27407
|
}>;
|
|
27267
27408
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
27268
27409
|
homeTeamWins: z.ZodNumber;
|
|
@@ -29098,6 +29239,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29098
29239
|
scoreExtraTime?: number | undefined;
|
|
29099
29240
|
stadiumUrl?: string | undefined;
|
|
29100
29241
|
school?: string | undefined;
|
|
29242
|
+
city?: string | undefined;
|
|
29101
29243
|
};
|
|
29102
29244
|
awayTeam: {
|
|
29103
29245
|
name: string;
|
|
@@ -29111,6 +29253,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29111
29253
|
scoreExtraTime?: number | undefined;
|
|
29112
29254
|
stadiumUrl?: string | undefined;
|
|
29113
29255
|
school?: string | undefined;
|
|
29256
|
+
city?: string | undefined;
|
|
29114
29257
|
};
|
|
29115
29258
|
timeRemainingMinutes: number;
|
|
29116
29259
|
timeRemainingSeconds: number;
|
|
@@ -29297,6 +29440,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29297
29440
|
scoreExtraTime?: number | undefined;
|
|
29298
29441
|
stadiumUrl?: string | undefined;
|
|
29299
29442
|
school?: string | undefined;
|
|
29443
|
+
city?: string | undefined;
|
|
29300
29444
|
};
|
|
29301
29445
|
awayTeam: {
|
|
29302
29446
|
name: string;
|
|
@@ -29310,6 +29454,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29310
29454
|
scoreExtraTime?: number | undefined;
|
|
29311
29455
|
stadiumUrl?: string | undefined;
|
|
29312
29456
|
school?: string | undefined;
|
|
29457
|
+
city?: string | undefined;
|
|
29313
29458
|
};
|
|
29314
29459
|
timeRemainingMinutes: number;
|
|
29315
29460
|
timeRemainingSeconds: number;
|
|
@@ -29498,6 +29643,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29498
29643
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
29499
29644
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
29500
29645
|
school: z.ZodOptional<z.ZodString>;
|
|
29646
|
+
city: z.ZodOptional<z.ZodString>;
|
|
29501
29647
|
}, "strip", z.ZodTypeAny, {
|
|
29502
29648
|
name: string;
|
|
29503
29649
|
image: string;
|
|
@@ -29510,6 +29656,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29510
29656
|
scoreExtraTime?: number | undefined;
|
|
29511
29657
|
stadiumUrl?: string | undefined;
|
|
29512
29658
|
school?: string | undefined;
|
|
29659
|
+
city?: string | undefined;
|
|
29513
29660
|
}, {
|
|
29514
29661
|
name: string;
|
|
29515
29662
|
image: string;
|
|
@@ -29522,6 +29669,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29522
29669
|
scoreExtraTime?: number | undefined;
|
|
29523
29670
|
stadiumUrl?: string | undefined;
|
|
29524
29671
|
school?: string | undefined;
|
|
29672
|
+
city?: string | undefined;
|
|
29525
29673
|
}>;
|
|
29526
29674
|
awayTeam: z.ZodObject<{
|
|
29527
29675
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -29535,6 +29683,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29535
29683
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
29536
29684
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
29537
29685
|
school: z.ZodOptional<z.ZodString>;
|
|
29686
|
+
city: z.ZodOptional<z.ZodString>;
|
|
29538
29687
|
}, "strip", z.ZodTypeAny, {
|
|
29539
29688
|
name: string;
|
|
29540
29689
|
image: string;
|
|
@@ -29547,6 +29696,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29547
29696
|
scoreExtraTime?: number | undefined;
|
|
29548
29697
|
stadiumUrl?: string | undefined;
|
|
29549
29698
|
school?: string | undefined;
|
|
29699
|
+
city?: string | undefined;
|
|
29550
29700
|
}, {
|
|
29551
29701
|
name: string;
|
|
29552
29702
|
image: string;
|
|
@@ -29559,6 +29709,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29559
29709
|
scoreExtraTime?: number | undefined;
|
|
29560
29710
|
stadiumUrl?: string | undefined;
|
|
29561
29711
|
school?: string | undefined;
|
|
29712
|
+
city?: string | undefined;
|
|
29562
29713
|
}>;
|
|
29563
29714
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
29564
29715
|
homeTeamWins: z.ZodNumber;
|
|
@@ -31346,6 +31497,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
31346
31497
|
scoreExtraTime?: number | undefined;
|
|
31347
31498
|
stadiumUrl?: string | undefined;
|
|
31348
31499
|
school?: string | undefined;
|
|
31500
|
+
city?: string | undefined;
|
|
31349
31501
|
};
|
|
31350
31502
|
awayTeam: {
|
|
31351
31503
|
name: string;
|
|
@@ -31359,6 +31511,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
31359
31511
|
scoreExtraTime?: number | undefined;
|
|
31360
31512
|
stadiumUrl?: string | undefined;
|
|
31361
31513
|
school?: string | undefined;
|
|
31514
|
+
city?: string | undefined;
|
|
31362
31515
|
};
|
|
31363
31516
|
timeRemainingMinutes: number;
|
|
31364
31517
|
timeRemainingSeconds: number;
|
|
@@ -31525,6 +31678,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
31525
31678
|
scoreExtraTime?: number | undefined;
|
|
31526
31679
|
stadiumUrl?: string | undefined;
|
|
31527
31680
|
school?: string | undefined;
|
|
31681
|
+
city?: string | undefined;
|
|
31528
31682
|
};
|
|
31529
31683
|
awayTeam: {
|
|
31530
31684
|
name: string;
|
|
@@ -31538,6 +31692,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
31538
31692
|
scoreExtraTime?: number | undefined;
|
|
31539
31693
|
stadiumUrl?: string | undefined;
|
|
31540
31694
|
school?: string | undefined;
|
|
31695
|
+
city?: string | undefined;
|
|
31541
31696
|
};
|
|
31542
31697
|
timeRemainingMinutes: number;
|
|
31543
31698
|
timeRemainingSeconds: number;
|
|
@@ -31752,6 +31907,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
31752
31907
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
31753
31908
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
31754
31909
|
school: z.ZodOptional<z.ZodString>;
|
|
31910
|
+
city: z.ZodOptional<z.ZodString>;
|
|
31755
31911
|
}, "strip", z.ZodTypeAny, {
|
|
31756
31912
|
name: string;
|
|
31757
31913
|
image: string;
|
|
@@ -31764,6 +31920,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
31764
31920
|
scoreExtraTime?: number | undefined;
|
|
31765
31921
|
stadiumUrl?: string | undefined;
|
|
31766
31922
|
school?: string | undefined;
|
|
31923
|
+
city?: string | undefined;
|
|
31767
31924
|
}, {
|
|
31768
31925
|
name: string;
|
|
31769
31926
|
image: string;
|
|
@@ -31776,6 +31933,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
31776
31933
|
scoreExtraTime?: number | undefined;
|
|
31777
31934
|
stadiumUrl?: string | undefined;
|
|
31778
31935
|
school?: string | undefined;
|
|
31936
|
+
city?: string | undefined;
|
|
31779
31937
|
}>;
|
|
31780
31938
|
awayTeam: z.ZodObject<{
|
|
31781
31939
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -31789,6 +31947,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
31789
31947
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
31790
31948
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
31791
31949
|
school: z.ZodOptional<z.ZodString>;
|
|
31950
|
+
city: z.ZodOptional<z.ZodString>;
|
|
31792
31951
|
}, "strip", z.ZodTypeAny, {
|
|
31793
31952
|
name: string;
|
|
31794
31953
|
image: string;
|
|
@@ -31801,6 +31960,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
31801
31960
|
scoreExtraTime?: number | undefined;
|
|
31802
31961
|
stadiumUrl?: string | undefined;
|
|
31803
31962
|
school?: string | undefined;
|
|
31963
|
+
city?: string | undefined;
|
|
31804
31964
|
}, {
|
|
31805
31965
|
name: string;
|
|
31806
31966
|
image: string;
|
|
@@ -31813,6 +31973,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
31813
31973
|
scoreExtraTime?: number | undefined;
|
|
31814
31974
|
stadiumUrl?: string | undefined;
|
|
31815
31975
|
school?: string | undefined;
|
|
31976
|
+
city?: string | undefined;
|
|
31816
31977
|
}>;
|
|
31817
31978
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
31818
31979
|
homeTeamWins: z.ZodNumber;
|
|
@@ -33615,6 +33776,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
33615
33776
|
scoreExtraTime?: number | undefined;
|
|
33616
33777
|
stadiumUrl?: string | undefined;
|
|
33617
33778
|
school?: string | undefined;
|
|
33779
|
+
city?: string | undefined;
|
|
33618
33780
|
};
|
|
33619
33781
|
awayTeam: {
|
|
33620
33782
|
name: string;
|
|
@@ -33628,6 +33790,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
33628
33790
|
scoreExtraTime?: number | undefined;
|
|
33629
33791
|
stadiumUrl?: string | undefined;
|
|
33630
33792
|
school?: string | undefined;
|
|
33793
|
+
city?: string | undefined;
|
|
33631
33794
|
};
|
|
33632
33795
|
timeRemainingMinutes: number;
|
|
33633
33796
|
timeRemainingSeconds: number;
|
|
@@ -33801,6 +33964,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
33801
33964
|
scoreExtraTime?: number | undefined;
|
|
33802
33965
|
stadiumUrl?: string | undefined;
|
|
33803
33966
|
school?: string | undefined;
|
|
33967
|
+
city?: string | undefined;
|
|
33804
33968
|
};
|
|
33805
33969
|
awayTeam: {
|
|
33806
33970
|
name: string;
|
|
@@ -33814,6 +33978,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
33814
33978
|
scoreExtraTime?: number | undefined;
|
|
33815
33979
|
stadiumUrl?: string | undefined;
|
|
33816
33980
|
school?: string | undefined;
|
|
33981
|
+
city?: string | undefined;
|
|
33817
33982
|
};
|
|
33818
33983
|
timeRemainingMinutes: number;
|
|
33819
33984
|
timeRemainingSeconds: number;
|
|
@@ -33989,6 +34154,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
33989
34154
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
33990
34155
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
33991
34156
|
school: z.ZodOptional<z.ZodString>;
|
|
34157
|
+
city: z.ZodOptional<z.ZodString>;
|
|
33992
34158
|
}, "strip", z.ZodTypeAny, {
|
|
33993
34159
|
name: string;
|
|
33994
34160
|
image: string;
|
|
@@ -34001,6 +34167,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
34001
34167
|
scoreExtraTime?: number | undefined;
|
|
34002
34168
|
stadiumUrl?: string | undefined;
|
|
34003
34169
|
school?: string | undefined;
|
|
34170
|
+
city?: string | undefined;
|
|
34004
34171
|
}, {
|
|
34005
34172
|
name: string;
|
|
34006
34173
|
image: string;
|
|
@@ -34013,6 +34180,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
34013
34180
|
scoreExtraTime?: number | undefined;
|
|
34014
34181
|
stadiumUrl?: string | undefined;
|
|
34015
34182
|
school?: string | undefined;
|
|
34183
|
+
city?: string | undefined;
|
|
34016
34184
|
}>;
|
|
34017
34185
|
awayTeam: z.ZodObject<{
|
|
34018
34186
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -34026,6 +34194,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
34026
34194
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
34027
34195
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
34028
34196
|
school: z.ZodOptional<z.ZodString>;
|
|
34197
|
+
city: z.ZodOptional<z.ZodString>;
|
|
34029
34198
|
}, "strip", z.ZodTypeAny, {
|
|
34030
34199
|
name: string;
|
|
34031
34200
|
image: string;
|
|
@@ -34038,6 +34207,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
34038
34207
|
scoreExtraTime?: number | undefined;
|
|
34039
34208
|
stadiumUrl?: string | undefined;
|
|
34040
34209
|
school?: string | undefined;
|
|
34210
|
+
city?: string | undefined;
|
|
34041
34211
|
}, {
|
|
34042
34212
|
name: string;
|
|
34043
34213
|
image: string;
|
|
@@ -34050,6 +34220,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
34050
34220
|
scoreExtraTime?: number | undefined;
|
|
34051
34221
|
stadiumUrl?: string | undefined;
|
|
34052
34222
|
school?: string | undefined;
|
|
34223
|
+
city?: string | undefined;
|
|
34053
34224
|
}>;
|
|
34054
34225
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
34055
34226
|
homeTeamWins: z.ZodNumber;
|
|
@@ -35858,6 +36029,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
35858
36029
|
scoreExtraTime?: number | undefined;
|
|
35859
36030
|
stadiumUrl?: string | undefined;
|
|
35860
36031
|
school?: string | undefined;
|
|
36032
|
+
city?: string | undefined;
|
|
35861
36033
|
};
|
|
35862
36034
|
awayTeam: {
|
|
35863
36035
|
name: string;
|
|
@@ -35871,6 +36043,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
35871
36043
|
scoreExtraTime?: number | undefined;
|
|
35872
36044
|
stadiumUrl?: string | undefined;
|
|
35873
36045
|
school?: string | undefined;
|
|
36046
|
+
city?: string | undefined;
|
|
35874
36047
|
};
|
|
35875
36048
|
totalInningsRemaining: number;
|
|
35876
36049
|
innings: {
|
|
@@ -36051,6 +36224,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36051
36224
|
scoreExtraTime?: number | undefined;
|
|
36052
36225
|
stadiumUrl?: string | undefined;
|
|
36053
36226
|
school?: string | undefined;
|
|
36227
|
+
city?: string | undefined;
|
|
36054
36228
|
};
|
|
36055
36229
|
awayTeam: {
|
|
36056
36230
|
name: string;
|
|
@@ -36064,6 +36238,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36064
36238
|
scoreExtraTime?: number | undefined;
|
|
36065
36239
|
stadiumUrl?: string | undefined;
|
|
36066
36240
|
school?: string | undefined;
|
|
36241
|
+
city?: string | undefined;
|
|
36067
36242
|
};
|
|
36068
36243
|
totalInningsRemaining: number;
|
|
36069
36244
|
innings: {
|
|
@@ -36247,6 +36422,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36247
36422
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
36248
36423
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
36249
36424
|
school: z.ZodOptional<z.ZodString>;
|
|
36425
|
+
city: z.ZodOptional<z.ZodString>;
|
|
36250
36426
|
}, "strip", z.ZodTypeAny, {
|
|
36251
36427
|
name: string;
|
|
36252
36428
|
image: string;
|
|
@@ -36259,6 +36435,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36259
36435
|
scoreExtraTime?: number | undefined;
|
|
36260
36436
|
stadiumUrl?: string | undefined;
|
|
36261
36437
|
school?: string | undefined;
|
|
36438
|
+
city?: string | undefined;
|
|
36262
36439
|
}, {
|
|
36263
36440
|
name: string;
|
|
36264
36441
|
image: string;
|
|
@@ -36271,6 +36448,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36271
36448
|
scoreExtraTime?: number | undefined;
|
|
36272
36449
|
stadiumUrl?: string | undefined;
|
|
36273
36450
|
school?: string | undefined;
|
|
36451
|
+
city?: string | undefined;
|
|
36274
36452
|
}>;
|
|
36275
36453
|
awayTeam: z.ZodObject<{
|
|
36276
36454
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -36284,6 +36462,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36284
36462
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
36285
36463
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
36286
36464
|
school: z.ZodOptional<z.ZodString>;
|
|
36465
|
+
city: z.ZodOptional<z.ZodString>;
|
|
36287
36466
|
}, "strip", z.ZodTypeAny, {
|
|
36288
36467
|
name: string;
|
|
36289
36468
|
image: string;
|
|
@@ -36296,6 +36475,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36296
36475
|
scoreExtraTime?: number | undefined;
|
|
36297
36476
|
stadiumUrl?: string | undefined;
|
|
36298
36477
|
school?: string | undefined;
|
|
36478
|
+
city?: string | undefined;
|
|
36299
36479
|
}, {
|
|
36300
36480
|
name: string;
|
|
36301
36481
|
image: string;
|
|
@@ -36308,6 +36488,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36308
36488
|
scoreExtraTime?: number | undefined;
|
|
36309
36489
|
stadiumUrl?: string | undefined;
|
|
36310
36490
|
school?: string | undefined;
|
|
36491
|
+
city?: string | undefined;
|
|
36311
36492
|
}>;
|
|
36312
36493
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
36313
36494
|
homeTeamWins: z.ZodNumber;
|
|
@@ -38091,6 +38272,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38091
38272
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
38092
38273
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
38093
38274
|
school: z.ZodOptional<z.ZodString>;
|
|
38275
|
+
city: z.ZodOptional<z.ZodString>;
|
|
38094
38276
|
}, {
|
|
38095
38277
|
scorePeriod1: z.ZodNumber;
|
|
38096
38278
|
scorePeriod2: z.ZodNumber;
|
|
@@ -38112,6 +38294,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38112
38294
|
teamCode?: string | undefined;
|
|
38113
38295
|
stadiumUrl?: string | undefined;
|
|
38114
38296
|
school?: string | undefined;
|
|
38297
|
+
city?: string | undefined;
|
|
38115
38298
|
venueName?: string | undefined;
|
|
38116
38299
|
}, {
|
|
38117
38300
|
name: string;
|
|
@@ -38128,6 +38311,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38128
38311
|
teamCode?: string | undefined;
|
|
38129
38312
|
stadiumUrl?: string | undefined;
|
|
38130
38313
|
school?: string | undefined;
|
|
38314
|
+
city?: string | undefined;
|
|
38131
38315
|
venueName?: string | undefined;
|
|
38132
38316
|
}>;
|
|
38133
38317
|
awayTeam: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -38142,6 +38326,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38142
38326
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
38143
38327
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
38144
38328
|
school: z.ZodOptional<z.ZodString>;
|
|
38329
|
+
city: z.ZodOptional<z.ZodString>;
|
|
38145
38330
|
}, {
|
|
38146
38331
|
scorePeriod1: z.ZodNumber;
|
|
38147
38332
|
scorePeriod2: z.ZodNumber;
|
|
@@ -38163,6 +38348,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38163
38348
|
teamCode?: string | undefined;
|
|
38164
38349
|
stadiumUrl?: string | undefined;
|
|
38165
38350
|
school?: string | undefined;
|
|
38351
|
+
city?: string | undefined;
|
|
38166
38352
|
venueName?: string | undefined;
|
|
38167
38353
|
}, {
|
|
38168
38354
|
name: string;
|
|
@@ -38179,6 +38365,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38179
38365
|
teamCode?: string | undefined;
|
|
38180
38366
|
stadiumUrl?: string | undefined;
|
|
38181
38367
|
school?: string | undefined;
|
|
38368
|
+
city?: string | undefined;
|
|
38182
38369
|
venueName?: string | undefined;
|
|
38183
38370
|
}>;
|
|
38184
38371
|
hadExtraTime: z.ZodBoolean;
|
|
@@ -38204,6 +38391,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38204
38391
|
teamCode?: string | undefined;
|
|
38205
38392
|
stadiumUrl?: string | undefined;
|
|
38206
38393
|
school?: string | undefined;
|
|
38394
|
+
city?: string | undefined;
|
|
38207
38395
|
venueName?: string | undefined;
|
|
38208
38396
|
};
|
|
38209
38397
|
awayTeam: {
|
|
@@ -38221,6 +38409,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38221
38409
|
teamCode?: string | undefined;
|
|
38222
38410
|
stadiumUrl?: string | undefined;
|
|
38223
38411
|
school?: string | undefined;
|
|
38412
|
+
city?: string | undefined;
|
|
38224
38413
|
venueName?: string | undefined;
|
|
38225
38414
|
};
|
|
38226
38415
|
period: string;
|
|
@@ -38394,6 +38583,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38394
38583
|
teamCode?: string | undefined;
|
|
38395
38584
|
stadiumUrl?: string | undefined;
|
|
38396
38585
|
school?: string | undefined;
|
|
38586
|
+
city?: string | undefined;
|
|
38397
38587
|
venueName?: string | undefined;
|
|
38398
38588
|
};
|
|
38399
38589
|
awayTeam: {
|
|
@@ -38411,6 +38601,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38411
38601
|
teamCode?: string | undefined;
|
|
38412
38602
|
stadiumUrl?: string | undefined;
|
|
38413
38603
|
school?: string | undefined;
|
|
38604
|
+
city?: string | undefined;
|
|
38414
38605
|
venueName?: string | undefined;
|
|
38415
38606
|
};
|
|
38416
38607
|
period: string;
|
|
@@ -38583,6 +38774,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38583
38774
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
38584
38775
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
38585
38776
|
school: z.ZodOptional<z.ZodString>;
|
|
38777
|
+
city: z.ZodOptional<z.ZodString>;
|
|
38586
38778
|
}, "strip", z.ZodTypeAny, {
|
|
38587
38779
|
name: string;
|
|
38588
38780
|
image: string;
|
|
@@ -38595,6 +38787,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38595
38787
|
scoreExtraTime?: number | undefined;
|
|
38596
38788
|
stadiumUrl?: string | undefined;
|
|
38597
38789
|
school?: string | undefined;
|
|
38790
|
+
city?: string | undefined;
|
|
38598
38791
|
}, {
|
|
38599
38792
|
name: string;
|
|
38600
38793
|
image: string;
|
|
@@ -38607,6 +38800,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38607
38800
|
scoreExtraTime?: number | undefined;
|
|
38608
38801
|
stadiumUrl?: string | undefined;
|
|
38609
38802
|
school?: string | undefined;
|
|
38803
|
+
city?: string | undefined;
|
|
38610
38804
|
}>;
|
|
38611
38805
|
awayTeam: z.ZodObject<{
|
|
38612
38806
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -38620,6 +38814,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38620
38814
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
38621
38815
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
38622
38816
|
school: z.ZodOptional<z.ZodString>;
|
|
38817
|
+
city: z.ZodOptional<z.ZodString>;
|
|
38623
38818
|
}, "strip", z.ZodTypeAny, {
|
|
38624
38819
|
name: string;
|
|
38625
38820
|
image: string;
|
|
@@ -38632,6 +38827,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38632
38827
|
scoreExtraTime?: number | undefined;
|
|
38633
38828
|
stadiumUrl?: string | undefined;
|
|
38634
38829
|
school?: string | undefined;
|
|
38830
|
+
city?: string | undefined;
|
|
38635
38831
|
}, {
|
|
38636
38832
|
name: string;
|
|
38637
38833
|
image: string;
|
|
@@ -38644,6 +38840,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38644
38840
|
scoreExtraTime?: number | undefined;
|
|
38645
38841
|
stadiumUrl?: string | undefined;
|
|
38646
38842
|
school?: string | undefined;
|
|
38843
|
+
city?: string | undefined;
|
|
38647
38844
|
}>;
|
|
38648
38845
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
38649
38846
|
homeTeamWins: z.ZodNumber;
|
|
@@ -40483,6 +40680,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40483
40680
|
scoreExtraTime?: number | undefined;
|
|
40484
40681
|
stadiumUrl?: string | undefined;
|
|
40485
40682
|
school?: string | undefined;
|
|
40683
|
+
city?: string | undefined;
|
|
40486
40684
|
};
|
|
40487
40685
|
awayTeam: {
|
|
40488
40686
|
name: string;
|
|
@@ -40496,6 +40694,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40496
40694
|
scoreExtraTime?: number | undefined;
|
|
40497
40695
|
stadiumUrl?: string | undefined;
|
|
40498
40696
|
school?: string | undefined;
|
|
40697
|
+
city?: string | undefined;
|
|
40499
40698
|
};
|
|
40500
40699
|
seasonType: number;
|
|
40501
40700
|
possession: string | null;
|
|
@@ -40689,6 +40888,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40689
40888
|
scoreExtraTime?: number | undefined;
|
|
40690
40889
|
stadiumUrl?: string | undefined;
|
|
40691
40890
|
school?: string | undefined;
|
|
40891
|
+
city?: string | undefined;
|
|
40692
40892
|
};
|
|
40693
40893
|
awayTeam: {
|
|
40694
40894
|
name: string;
|
|
@@ -40702,6 +40902,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40702
40902
|
scoreExtraTime?: number | undefined;
|
|
40703
40903
|
stadiumUrl?: string | undefined;
|
|
40704
40904
|
school?: string | undefined;
|
|
40905
|
+
city?: string | undefined;
|
|
40705
40906
|
};
|
|
40706
40907
|
seasonType: number;
|
|
40707
40908
|
possession: string | null;
|
|
@@ -40897,6 +41098,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40897
41098
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
40898
41099
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
40899
41100
|
school: z.ZodOptional<z.ZodString>;
|
|
41101
|
+
city: z.ZodOptional<z.ZodString>;
|
|
40900
41102
|
}, "strip", z.ZodTypeAny, {
|
|
40901
41103
|
name: string;
|
|
40902
41104
|
image: string;
|
|
@@ -40909,6 +41111,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40909
41111
|
scoreExtraTime?: number | undefined;
|
|
40910
41112
|
stadiumUrl?: string | undefined;
|
|
40911
41113
|
school?: string | undefined;
|
|
41114
|
+
city?: string | undefined;
|
|
40912
41115
|
}, {
|
|
40913
41116
|
name: string;
|
|
40914
41117
|
image: string;
|
|
@@ -40921,6 +41124,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40921
41124
|
scoreExtraTime?: number | undefined;
|
|
40922
41125
|
stadiumUrl?: string | undefined;
|
|
40923
41126
|
school?: string | undefined;
|
|
41127
|
+
city?: string | undefined;
|
|
40924
41128
|
}>;
|
|
40925
41129
|
awayTeam: z.ZodObject<{
|
|
40926
41130
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -40934,6 +41138,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40934
41138
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
40935
41139
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
40936
41140
|
school: z.ZodOptional<z.ZodString>;
|
|
41141
|
+
city: z.ZodOptional<z.ZodString>;
|
|
40937
41142
|
}, "strip", z.ZodTypeAny, {
|
|
40938
41143
|
name: string;
|
|
40939
41144
|
image: string;
|
|
@@ -40946,6 +41151,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40946
41151
|
scoreExtraTime?: number | undefined;
|
|
40947
41152
|
stadiumUrl?: string | undefined;
|
|
40948
41153
|
school?: string | undefined;
|
|
41154
|
+
city?: string | undefined;
|
|
40949
41155
|
}, {
|
|
40950
41156
|
name: string;
|
|
40951
41157
|
image: string;
|
|
@@ -40958,6 +41164,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40958
41164
|
scoreExtraTime?: number | undefined;
|
|
40959
41165
|
stadiumUrl?: string | undefined;
|
|
40960
41166
|
school?: string | undefined;
|
|
41167
|
+
city?: string | undefined;
|
|
40961
41168
|
}>;
|
|
40962
41169
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
40963
41170
|
homeTeamWins: z.ZodNumber;
|
|
@@ -42793,6 +43000,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
42793
43000
|
scoreExtraTime?: number | undefined;
|
|
42794
43001
|
stadiumUrl?: string | undefined;
|
|
42795
43002
|
school?: string | undefined;
|
|
43003
|
+
city?: string | undefined;
|
|
42796
43004
|
};
|
|
42797
43005
|
awayTeam: {
|
|
42798
43006
|
name: string;
|
|
@@ -42806,6 +43014,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
42806
43014
|
scoreExtraTime?: number | undefined;
|
|
42807
43015
|
stadiumUrl?: string | undefined;
|
|
42808
43016
|
school?: string | undefined;
|
|
43017
|
+
city?: string | undefined;
|
|
42809
43018
|
};
|
|
42810
43019
|
timeRemainingMinutes: number;
|
|
42811
43020
|
timeRemainingSeconds: number;
|
|
@@ -42992,6 +43201,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
42992
43201
|
scoreExtraTime?: number | undefined;
|
|
42993
43202
|
stadiumUrl?: string | undefined;
|
|
42994
43203
|
school?: string | undefined;
|
|
43204
|
+
city?: string | undefined;
|
|
42995
43205
|
};
|
|
42996
43206
|
awayTeam: {
|
|
42997
43207
|
name: string;
|
|
@@ -43005,6 +43215,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43005
43215
|
scoreExtraTime?: number | undefined;
|
|
43006
43216
|
stadiumUrl?: string | undefined;
|
|
43007
43217
|
school?: string | undefined;
|
|
43218
|
+
city?: string | undefined;
|
|
43008
43219
|
};
|
|
43009
43220
|
timeRemainingMinutes: number;
|
|
43010
43221
|
timeRemainingSeconds: number;
|
|
@@ -43193,6 +43404,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43193
43404
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
43194
43405
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
43195
43406
|
school: z.ZodOptional<z.ZodString>;
|
|
43407
|
+
city: z.ZodOptional<z.ZodString>;
|
|
43196
43408
|
}, "strip", z.ZodTypeAny, {
|
|
43197
43409
|
name: string;
|
|
43198
43410
|
image: string;
|
|
@@ -43205,6 +43417,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43205
43417
|
scoreExtraTime?: number | undefined;
|
|
43206
43418
|
stadiumUrl?: string | undefined;
|
|
43207
43419
|
school?: string | undefined;
|
|
43420
|
+
city?: string | undefined;
|
|
43208
43421
|
}, {
|
|
43209
43422
|
name: string;
|
|
43210
43423
|
image: string;
|
|
@@ -43217,6 +43430,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43217
43430
|
scoreExtraTime?: number | undefined;
|
|
43218
43431
|
stadiumUrl?: string | undefined;
|
|
43219
43432
|
school?: string | undefined;
|
|
43433
|
+
city?: string | undefined;
|
|
43220
43434
|
}>;
|
|
43221
43435
|
awayTeam: z.ZodObject<{
|
|
43222
43436
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -43230,6 +43444,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43230
43444
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
43231
43445
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
43232
43446
|
school: z.ZodOptional<z.ZodString>;
|
|
43447
|
+
city: z.ZodOptional<z.ZodString>;
|
|
43233
43448
|
}, "strip", z.ZodTypeAny, {
|
|
43234
43449
|
name: string;
|
|
43235
43450
|
image: string;
|
|
@@ -43242,6 +43457,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43242
43457
|
scoreExtraTime?: number | undefined;
|
|
43243
43458
|
stadiumUrl?: string | undefined;
|
|
43244
43459
|
school?: string | undefined;
|
|
43460
|
+
city?: string | undefined;
|
|
43245
43461
|
}, {
|
|
43246
43462
|
name: string;
|
|
43247
43463
|
image: string;
|
|
@@ -43254,6 +43470,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43254
43470
|
scoreExtraTime?: number | undefined;
|
|
43255
43471
|
stadiumUrl?: string | undefined;
|
|
43256
43472
|
school?: string | undefined;
|
|
43473
|
+
city?: string | undefined;
|
|
43257
43474
|
}>;
|
|
43258
43475
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
43259
43476
|
homeTeamWins: z.ZodNumber;
|
|
@@ -45041,6 +45258,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
45041
45258
|
scoreExtraTime?: number | undefined;
|
|
45042
45259
|
stadiumUrl?: string | undefined;
|
|
45043
45260
|
school?: string | undefined;
|
|
45261
|
+
city?: string | undefined;
|
|
45044
45262
|
};
|
|
45045
45263
|
awayTeam: {
|
|
45046
45264
|
name: string;
|
|
@@ -45054,6 +45272,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
45054
45272
|
scoreExtraTime?: number | undefined;
|
|
45055
45273
|
stadiumUrl?: string | undefined;
|
|
45056
45274
|
school?: string | undefined;
|
|
45275
|
+
city?: string | undefined;
|
|
45057
45276
|
};
|
|
45058
45277
|
timeRemainingMinutes: number;
|
|
45059
45278
|
timeRemainingSeconds: number;
|
|
@@ -45220,6 +45439,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
45220
45439
|
scoreExtraTime?: number | undefined;
|
|
45221
45440
|
stadiumUrl?: string | undefined;
|
|
45222
45441
|
school?: string | undefined;
|
|
45442
|
+
city?: string | undefined;
|
|
45223
45443
|
};
|
|
45224
45444
|
awayTeam: {
|
|
45225
45445
|
name: string;
|
|
@@ -45233,6 +45453,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
45233
45453
|
scoreExtraTime?: number | undefined;
|
|
45234
45454
|
stadiumUrl?: string | undefined;
|
|
45235
45455
|
school?: string | undefined;
|
|
45456
|
+
city?: string | undefined;
|
|
45236
45457
|
};
|
|
45237
45458
|
timeRemainingMinutes: number;
|
|
45238
45459
|
timeRemainingSeconds: number;
|
|
@@ -46172,6 +46393,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46172
46393
|
scoreExtraTime?: number | undefined;
|
|
46173
46394
|
stadiumUrl?: string | undefined;
|
|
46174
46395
|
school?: string | undefined;
|
|
46396
|
+
city?: string | undefined;
|
|
46175
46397
|
};
|
|
46176
46398
|
awayTeam: {
|
|
46177
46399
|
name: string;
|
|
@@ -46185,6 +46407,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46185
46407
|
scoreExtraTime?: number | undefined;
|
|
46186
46408
|
stadiumUrl?: string | undefined;
|
|
46187
46409
|
school?: string | undefined;
|
|
46410
|
+
city?: string | undefined;
|
|
46188
46411
|
};
|
|
46189
46412
|
timeRemainingMinutes: number;
|
|
46190
46413
|
timeRemainingSeconds: number;
|
|
@@ -46357,6 +46580,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46357
46580
|
scoreExtraTime?: number | undefined;
|
|
46358
46581
|
stadiumUrl?: string | undefined;
|
|
46359
46582
|
school?: string | undefined;
|
|
46583
|
+
city?: string | undefined;
|
|
46360
46584
|
};
|
|
46361
46585
|
awayTeam: {
|
|
46362
46586
|
name: string;
|
|
@@ -46370,6 +46594,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46370
46594
|
scoreExtraTime?: number | undefined;
|
|
46371
46595
|
stadiumUrl?: string | undefined;
|
|
46372
46596
|
school?: string | undefined;
|
|
46597
|
+
city?: string | undefined;
|
|
46373
46598
|
};
|
|
46374
46599
|
totalInningsRemaining: number;
|
|
46375
46600
|
innings: {
|
|
@@ -46554,6 +46779,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46554
46779
|
teamCode?: string | undefined;
|
|
46555
46780
|
stadiumUrl?: string | undefined;
|
|
46556
46781
|
school?: string | undefined;
|
|
46782
|
+
city?: string | undefined;
|
|
46557
46783
|
venueName?: string | undefined;
|
|
46558
46784
|
};
|
|
46559
46785
|
awayTeam: {
|
|
@@ -46571,6 +46797,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46571
46797
|
teamCode?: string | undefined;
|
|
46572
46798
|
stadiumUrl?: string | undefined;
|
|
46573
46799
|
school?: string | undefined;
|
|
46800
|
+
city?: string | undefined;
|
|
46574
46801
|
venueName?: string | undefined;
|
|
46575
46802
|
};
|
|
46576
46803
|
period: string;
|
|
@@ -46741,6 +46968,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46741
46968
|
scoreExtraTime?: number | undefined;
|
|
46742
46969
|
stadiumUrl?: string | undefined;
|
|
46743
46970
|
school?: string | undefined;
|
|
46971
|
+
city?: string | undefined;
|
|
46744
46972
|
};
|
|
46745
46973
|
awayTeam: {
|
|
46746
46974
|
name: string;
|
|
@@ -46754,6 +46982,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46754
46982
|
scoreExtraTime?: number | undefined;
|
|
46755
46983
|
stadiumUrl?: string | undefined;
|
|
46756
46984
|
school?: string | undefined;
|
|
46985
|
+
city?: string | undefined;
|
|
46757
46986
|
};
|
|
46758
46987
|
seasonType: number;
|
|
46759
46988
|
possession: string | null;
|
|
@@ -46947,6 +47176,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46947
47176
|
scoreExtraTime?: number | undefined;
|
|
46948
47177
|
stadiumUrl?: string | undefined;
|
|
46949
47178
|
school?: string | undefined;
|
|
47179
|
+
city?: string | undefined;
|
|
46950
47180
|
};
|
|
46951
47181
|
awayTeam: {
|
|
46952
47182
|
name: string;
|
|
@@ -46960,6 +47190,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46960
47190
|
scoreExtraTime?: number | undefined;
|
|
46961
47191
|
stadiumUrl?: string | undefined;
|
|
46962
47192
|
school?: string | undefined;
|
|
47193
|
+
city?: string | undefined;
|
|
46963
47194
|
};
|
|
46964
47195
|
timeRemainingMinutes: number;
|
|
46965
47196
|
timeRemainingSeconds: number;
|
|
@@ -47145,6 +47376,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47145
47376
|
scoreExtraTime?: number | undefined;
|
|
47146
47377
|
stadiumUrl?: string | undefined;
|
|
47147
47378
|
school?: string | undefined;
|
|
47379
|
+
city?: string | undefined;
|
|
47148
47380
|
};
|
|
47149
47381
|
awayTeam: {
|
|
47150
47382
|
name: string;
|
|
@@ -47158,6 +47390,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47158
47390
|
scoreExtraTime?: number | undefined;
|
|
47159
47391
|
stadiumUrl?: string | undefined;
|
|
47160
47392
|
school?: string | undefined;
|
|
47393
|
+
city?: string | undefined;
|
|
47161
47394
|
};
|
|
47162
47395
|
timeRemainingMinutes: number;
|
|
47163
47396
|
timeRemainingSeconds: number;
|
|
@@ -47336,6 +47569,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47336
47569
|
scoreExtraTime?: number | undefined;
|
|
47337
47570
|
stadiumUrl?: string | undefined;
|
|
47338
47571
|
school?: string | undefined;
|
|
47572
|
+
city?: string | undefined;
|
|
47339
47573
|
};
|
|
47340
47574
|
awayTeam: {
|
|
47341
47575
|
name: string;
|
|
@@ -47349,6 +47583,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47349
47583
|
scoreExtraTime?: number | undefined;
|
|
47350
47584
|
stadiumUrl?: string | undefined;
|
|
47351
47585
|
school?: string | undefined;
|
|
47586
|
+
city?: string | undefined;
|
|
47352
47587
|
};
|
|
47353
47588
|
timeRemainingMinutes: number;
|
|
47354
47589
|
timeRemainingSeconds: number;
|
|
@@ -47521,6 +47756,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47521
47756
|
scoreExtraTime?: number | undefined;
|
|
47522
47757
|
stadiumUrl?: string | undefined;
|
|
47523
47758
|
school?: string | undefined;
|
|
47759
|
+
city?: string | undefined;
|
|
47524
47760
|
};
|
|
47525
47761
|
awayTeam: {
|
|
47526
47762
|
name: string;
|
|
@@ -47534,6 +47770,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47534
47770
|
scoreExtraTime?: number | undefined;
|
|
47535
47771
|
stadiumUrl?: string | undefined;
|
|
47536
47772
|
school?: string | undefined;
|
|
47773
|
+
city?: string | undefined;
|
|
47537
47774
|
};
|
|
47538
47775
|
totalInningsRemaining: number;
|
|
47539
47776
|
innings: {
|
|
@@ -47718,6 +47955,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47718
47955
|
teamCode?: string | undefined;
|
|
47719
47956
|
stadiumUrl?: string | undefined;
|
|
47720
47957
|
school?: string | undefined;
|
|
47958
|
+
city?: string | undefined;
|
|
47721
47959
|
venueName?: string | undefined;
|
|
47722
47960
|
};
|
|
47723
47961
|
awayTeam: {
|
|
@@ -47735,6 +47973,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47735
47973
|
teamCode?: string | undefined;
|
|
47736
47974
|
stadiumUrl?: string | undefined;
|
|
47737
47975
|
school?: string | undefined;
|
|
47976
|
+
city?: string | undefined;
|
|
47738
47977
|
venueName?: string | undefined;
|
|
47739
47978
|
};
|
|
47740
47979
|
period: string;
|
|
@@ -47905,6 +48144,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47905
48144
|
scoreExtraTime?: number | undefined;
|
|
47906
48145
|
stadiumUrl?: string | undefined;
|
|
47907
48146
|
school?: string | undefined;
|
|
48147
|
+
city?: string | undefined;
|
|
47908
48148
|
};
|
|
47909
48149
|
awayTeam: {
|
|
47910
48150
|
name: string;
|
|
@@ -47918,6 +48158,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47918
48158
|
scoreExtraTime?: number | undefined;
|
|
47919
48159
|
stadiumUrl?: string | undefined;
|
|
47920
48160
|
school?: string | undefined;
|
|
48161
|
+
city?: string | undefined;
|
|
47921
48162
|
};
|
|
47922
48163
|
seasonType: number;
|
|
47923
48164
|
possession: string | null;
|
|
@@ -48111,6 +48352,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48111
48352
|
scoreExtraTime?: number | undefined;
|
|
48112
48353
|
stadiumUrl?: string | undefined;
|
|
48113
48354
|
school?: string | undefined;
|
|
48355
|
+
city?: string | undefined;
|
|
48114
48356
|
};
|
|
48115
48357
|
awayTeam: {
|
|
48116
48358
|
name: string;
|
|
@@ -48124,6 +48366,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48124
48366
|
scoreExtraTime?: number | undefined;
|
|
48125
48367
|
stadiumUrl?: string | undefined;
|
|
48126
48368
|
school?: string | undefined;
|
|
48369
|
+
city?: string | undefined;
|
|
48127
48370
|
};
|
|
48128
48371
|
timeRemainingMinutes: number;
|
|
48129
48372
|
timeRemainingSeconds: number;
|
|
@@ -48309,6 +48552,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48309
48552
|
scoreExtraTime?: number | undefined;
|
|
48310
48553
|
stadiumUrl?: string | undefined;
|
|
48311
48554
|
school?: string | undefined;
|
|
48555
|
+
city?: string | undefined;
|
|
48312
48556
|
};
|
|
48313
48557
|
awayTeam: {
|
|
48314
48558
|
name: string;
|
|
@@ -48322,6 +48566,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48322
48566
|
scoreExtraTime?: number | undefined;
|
|
48323
48567
|
stadiumUrl?: string | undefined;
|
|
48324
48568
|
school?: string | undefined;
|
|
48569
|
+
city?: string | undefined;
|
|
48325
48570
|
};
|
|
48326
48571
|
timeRemainingMinutes: number;
|
|
48327
48572
|
timeRemainingSeconds: number;
|