rategame-shared 1.1.183 → 1.1.185
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 +217 -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 +19 -0
- package/dist/schemas/team.js +1 -0
- package/package.json +1 -1
package/dist/schemas/game.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ export declare const gameTeamSchema: z.ZodObject<{
|
|
|
12
12
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
13
13
|
school: z.ZodOptional<z.ZodString>;
|
|
14
14
|
city: z.ZodOptional<z.ZodString>;
|
|
15
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
15
16
|
}, "strip", z.ZodTypeAny, {
|
|
16
17
|
name: string;
|
|
17
18
|
image: string;
|
|
@@ -25,6 +26,7 @@ export declare const gameTeamSchema: z.ZodObject<{
|
|
|
25
26
|
stadiumUrl?: string | undefined;
|
|
26
27
|
school?: string | undefined;
|
|
27
28
|
city?: string | undefined;
|
|
29
|
+
venueName?: string | undefined;
|
|
28
30
|
}, {
|
|
29
31
|
name: string;
|
|
30
32
|
image: string;
|
|
@@ -38,6 +40,7 @@ export declare const gameTeamSchema: z.ZodObject<{
|
|
|
38
40
|
stadiumUrl?: string | undefined;
|
|
39
41
|
school?: string | undefined;
|
|
40
42
|
city?: string | undefined;
|
|
43
|
+
venueName?: string | undefined;
|
|
41
44
|
}>;
|
|
42
45
|
export declare const gameRatingAggregateSchema: z.ZodObject<{
|
|
43
46
|
avg: z.ZodNumber;
|
|
@@ -795,6 +798,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
795
798
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
796
799
|
school: z.ZodOptional<z.ZodString>;
|
|
797
800
|
city: z.ZodOptional<z.ZodString>;
|
|
801
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
798
802
|
}, "strip", z.ZodTypeAny, {
|
|
799
803
|
name: string;
|
|
800
804
|
image: string;
|
|
@@ -808,6 +812,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
808
812
|
stadiumUrl?: string | undefined;
|
|
809
813
|
school?: string | undefined;
|
|
810
814
|
city?: string | undefined;
|
|
815
|
+
venueName?: string | undefined;
|
|
811
816
|
}, {
|
|
812
817
|
name: string;
|
|
813
818
|
image: string;
|
|
@@ -821,6 +826,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
821
826
|
stadiumUrl?: string | undefined;
|
|
822
827
|
school?: string | undefined;
|
|
823
828
|
city?: string | undefined;
|
|
829
|
+
venueName?: string | undefined;
|
|
824
830
|
}>;
|
|
825
831
|
awayTeam: z.ZodObject<{
|
|
826
832
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -835,6 +841,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
835
841
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
836
842
|
school: z.ZodOptional<z.ZodString>;
|
|
837
843
|
city: z.ZodOptional<z.ZodString>;
|
|
844
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
838
845
|
}, "strip", z.ZodTypeAny, {
|
|
839
846
|
name: string;
|
|
840
847
|
image: string;
|
|
@@ -848,6 +855,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
848
855
|
stadiumUrl?: string | undefined;
|
|
849
856
|
school?: string | undefined;
|
|
850
857
|
city?: string | undefined;
|
|
858
|
+
venueName?: string | undefined;
|
|
851
859
|
}, {
|
|
852
860
|
name: string;
|
|
853
861
|
image: string;
|
|
@@ -861,6 +869,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
861
869
|
stadiumUrl?: string | undefined;
|
|
862
870
|
school?: string | undefined;
|
|
863
871
|
city?: string | undefined;
|
|
872
|
+
venueName?: string | undefined;
|
|
864
873
|
}>;
|
|
865
874
|
timeRemainingMinutes: z.ZodNumber;
|
|
866
875
|
timeRemainingSeconds: z.ZodNumber;
|
|
@@ -1871,6 +1880,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
1871
1880
|
stadiumUrl?: string | undefined;
|
|
1872
1881
|
school?: string | undefined;
|
|
1873
1882
|
city?: string | undefined;
|
|
1883
|
+
venueName?: string | undefined;
|
|
1874
1884
|
};
|
|
1875
1885
|
awayTeam: {
|
|
1876
1886
|
name: string;
|
|
@@ -1885,6 +1895,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
1885
1895
|
stadiumUrl?: string | undefined;
|
|
1886
1896
|
school?: string | undefined;
|
|
1887
1897
|
city?: string | undefined;
|
|
1898
|
+
venueName?: string | undefined;
|
|
1888
1899
|
};
|
|
1889
1900
|
timeRemainingMinutes: number;
|
|
1890
1901
|
timeRemainingSeconds: number;
|
|
@@ -2040,6 +2051,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
2040
2051
|
stadiumUrl?: string | undefined;
|
|
2041
2052
|
school?: string | undefined;
|
|
2042
2053
|
city?: string | undefined;
|
|
2054
|
+
venueName?: string | undefined;
|
|
2043
2055
|
};
|
|
2044
2056
|
awayTeam: {
|
|
2045
2057
|
name: string;
|
|
@@ -2054,6 +2066,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
2054
2066
|
stadiumUrl?: string | undefined;
|
|
2055
2067
|
school?: string | undefined;
|
|
2056
2068
|
city?: string | undefined;
|
|
2069
|
+
venueName?: string | undefined;
|
|
2057
2070
|
};
|
|
2058
2071
|
timeRemainingMinutes: number;
|
|
2059
2072
|
timeRemainingSeconds: number;
|
|
@@ -2212,6 +2225,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
2212
2225
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
2213
2226
|
school: z.ZodOptional<z.ZodString>;
|
|
2214
2227
|
city: z.ZodOptional<z.ZodString>;
|
|
2228
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
2215
2229
|
}, "strip", z.ZodTypeAny, {
|
|
2216
2230
|
name: string;
|
|
2217
2231
|
image: string;
|
|
@@ -2225,6 +2239,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
2225
2239
|
stadiumUrl?: string | undefined;
|
|
2226
2240
|
school?: string | undefined;
|
|
2227
2241
|
city?: string | undefined;
|
|
2242
|
+
venueName?: string | undefined;
|
|
2228
2243
|
}, {
|
|
2229
2244
|
name: string;
|
|
2230
2245
|
image: string;
|
|
@@ -2238,6 +2253,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
2238
2253
|
stadiumUrl?: string | undefined;
|
|
2239
2254
|
school?: string | undefined;
|
|
2240
2255
|
city?: string | undefined;
|
|
2256
|
+
venueName?: string | undefined;
|
|
2241
2257
|
}>;
|
|
2242
2258
|
awayTeam: z.ZodObject<{
|
|
2243
2259
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -2252,6 +2268,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
2252
2268
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
2253
2269
|
school: z.ZodOptional<z.ZodString>;
|
|
2254
2270
|
city: z.ZodOptional<z.ZodString>;
|
|
2271
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
2255
2272
|
}, "strip", z.ZodTypeAny, {
|
|
2256
2273
|
name: string;
|
|
2257
2274
|
image: string;
|
|
@@ -2265,6 +2282,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
2265
2282
|
stadiumUrl?: string | undefined;
|
|
2266
2283
|
school?: string | undefined;
|
|
2267
2284
|
city?: string | undefined;
|
|
2285
|
+
venueName?: string | undefined;
|
|
2268
2286
|
}, {
|
|
2269
2287
|
name: string;
|
|
2270
2288
|
image: string;
|
|
@@ -2278,6 +2296,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
2278
2296
|
stadiumUrl?: string | undefined;
|
|
2279
2297
|
school?: string | undefined;
|
|
2280
2298
|
city?: string | undefined;
|
|
2299
|
+
venueName?: string | undefined;
|
|
2281
2300
|
}>;
|
|
2282
2301
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
2283
2302
|
homeTeamWins: z.ZodNumber;
|
|
@@ -4058,6 +4077,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4058
4077
|
stadiumUrl?: string | undefined;
|
|
4059
4078
|
school?: string | undefined;
|
|
4060
4079
|
city?: string | undefined;
|
|
4080
|
+
venueName?: string | undefined;
|
|
4061
4081
|
};
|
|
4062
4082
|
awayTeam: {
|
|
4063
4083
|
name: string;
|
|
@@ -4072,6 +4092,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4072
4092
|
stadiumUrl?: string | undefined;
|
|
4073
4093
|
school?: string | undefined;
|
|
4074
4094
|
city?: string | undefined;
|
|
4095
|
+
venueName?: string | undefined;
|
|
4075
4096
|
};
|
|
4076
4097
|
id?: string | undefined;
|
|
4077
4098
|
ratings?: {
|
|
@@ -4233,6 +4254,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4233
4254
|
stadiumUrl?: string | undefined;
|
|
4234
4255
|
school?: string | undefined;
|
|
4235
4256
|
city?: string | undefined;
|
|
4257
|
+
venueName?: string | undefined;
|
|
4236
4258
|
};
|
|
4237
4259
|
awayTeam: {
|
|
4238
4260
|
name: string;
|
|
@@ -4247,6 +4269,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4247
4269
|
stadiumUrl?: string | undefined;
|
|
4248
4270
|
school?: string | undefined;
|
|
4249
4271
|
city?: string | undefined;
|
|
4272
|
+
venueName?: string | undefined;
|
|
4250
4273
|
};
|
|
4251
4274
|
id?: string | undefined;
|
|
4252
4275
|
ratings?: {
|
|
@@ -4412,6 +4435,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
4412
4435
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
4413
4436
|
school: z.ZodOptional<z.ZodString>;
|
|
4414
4437
|
city: z.ZodOptional<z.ZodString>;
|
|
4438
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
4415
4439
|
}, "strip", z.ZodTypeAny, {
|
|
4416
4440
|
name: string;
|
|
4417
4441
|
image: string;
|
|
@@ -4425,6 +4449,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
4425
4449
|
stadiumUrl?: string | undefined;
|
|
4426
4450
|
school?: string | undefined;
|
|
4427
4451
|
city?: string | undefined;
|
|
4452
|
+
venueName?: string | undefined;
|
|
4428
4453
|
}, {
|
|
4429
4454
|
name: string;
|
|
4430
4455
|
image: string;
|
|
@@ -4438,6 +4463,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
4438
4463
|
stadiumUrl?: string | undefined;
|
|
4439
4464
|
school?: string | undefined;
|
|
4440
4465
|
city?: string | undefined;
|
|
4466
|
+
venueName?: string | undefined;
|
|
4441
4467
|
}>;
|
|
4442
4468
|
awayTeam: z.ZodObject<{
|
|
4443
4469
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -4452,6 +4478,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
4452
4478
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
4453
4479
|
school: z.ZodOptional<z.ZodString>;
|
|
4454
4480
|
city: z.ZodOptional<z.ZodString>;
|
|
4481
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
4455
4482
|
}, "strip", z.ZodTypeAny, {
|
|
4456
4483
|
name: string;
|
|
4457
4484
|
image: string;
|
|
@@ -4465,6 +4492,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
4465
4492
|
stadiumUrl?: string | undefined;
|
|
4466
4493
|
school?: string | undefined;
|
|
4467
4494
|
city?: string | undefined;
|
|
4495
|
+
venueName?: string | undefined;
|
|
4468
4496
|
}, {
|
|
4469
4497
|
name: string;
|
|
4470
4498
|
image: string;
|
|
@@ -4478,6 +4506,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
4478
4506
|
stadiumUrl?: string | undefined;
|
|
4479
4507
|
school?: string | undefined;
|
|
4480
4508
|
city?: string | undefined;
|
|
4509
|
+
venueName?: string | undefined;
|
|
4481
4510
|
}>;
|
|
4482
4511
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
4483
4512
|
homeTeamWins: z.ZodNumber;
|
|
@@ -6281,6 +6310,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6281
6310
|
stadiumUrl?: string | undefined;
|
|
6282
6311
|
school?: string | undefined;
|
|
6283
6312
|
city?: string | undefined;
|
|
6313
|
+
venueName?: string | undefined;
|
|
6284
6314
|
};
|
|
6285
6315
|
awayTeam: {
|
|
6286
6316
|
name: string;
|
|
@@ -6295,6 +6325,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6295
6325
|
stadiumUrl?: string | undefined;
|
|
6296
6326
|
school?: string | undefined;
|
|
6297
6327
|
city?: string | undefined;
|
|
6328
|
+
venueName?: string | undefined;
|
|
6298
6329
|
};
|
|
6299
6330
|
timeRemainingMinutes: number;
|
|
6300
6331
|
timeRemainingSeconds: number;
|
|
@@ -6469,6 +6500,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6469
6500
|
stadiumUrl?: string | undefined;
|
|
6470
6501
|
school?: string | undefined;
|
|
6471
6502
|
city?: string | undefined;
|
|
6503
|
+
venueName?: string | undefined;
|
|
6472
6504
|
};
|
|
6473
6505
|
awayTeam: {
|
|
6474
6506
|
name: string;
|
|
@@ -6483,6 +6515,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6483
6515
|
stadiumUrl?: string | undefined;
|
|
6484
6516
|
school?: string | undefined;
|
|
6485
6517
|
city?: string | undefined;
|
|
6518
|
+
venueName?: string | undefined;
|
|
6486
6519
|
};
|
|
6487
6520
|
timeRemainingMinutes: number;
|
|
6488
6521
|
timeRemainingSeconds: number;
|
|
@@ -6673,6 +6706,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6673
6706
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
6674
6707
|
school: z.ZodOptional<z.ZodString>;
|
|
6675
6708
|
city: z.ZodOptional<z.ZodString>;
|
|
6709
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
6676
6710
|
}, "strip", z.ZodTypeAny, {
|
|
6677
6711
|
name: string;
|
|
6678
6712
|
image: string;
|
|
@@ -6686,6 +6720,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6686
6720
|
stadiumUrl?: string | undefined;
|
|
6687
6721
|
school?: string | undefined;
|
|
6688
6722
|
city?: string | undefined;
|
|
6723
|
+
venueName?: string | undefined;
|
|
6689
6724
|
}, {
|
|
6690
6725
|
name: string;
|
|
6691
6726
|
image: string;
|
|
@@ -6699,6 +6734,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6699
6734
|
stadiumUrl?: string | undefined;
|
|
6700
6735
|
school?: string | undefined;
|
|
6701
6736
|
city?: string | undefined;
|
|
6737
|
+
venueName?: string | undefined;
|
|
6702
6738
|
}>;
|
|
6703
6739
|
awayTeam: z.ZodObject<{
|
|
6704
6740
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -6713,6 +6749,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6713
6749
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
6714
6750
|
school: z.ZodOptional<z.ZodString>;
|
|
6715
6751
|
city: z.ZodOptional<z.ZodString>;
|
|
6752
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
6716
6753
|
}, "strip", z.ZodTypeAny, {
|
|
6717
6754
|
name: string;
|
|
6718
6755
|
image: string;
|
|
@@ -6726,6 +6763,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6726
6763
|
stadiumUrl?: string | undefined;
|
|
6727
6764
|
school?: string | undefined;
|
|
6728
6765
|
city?: string | undefined;
|
|
6766
|
+
venueName?: string | undefined;
|
|
6729
6767
|
}, {
|
|
6730
6768
|
name: string;
|
|
6731
6769
|
image: string;
|
|
@@ -6739,6 +6777,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6739
6777
|
stadiumUrl?: string | undefined;
|
|
6740
6778
|
school?: string | undefined;
|
|
6741
6779
|
city?: string | undefined;
|
|
6780
|
+
venueName?: string | undefined;
|
|
6742
6781
|
}>;
|
|
6743
6782
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
6744
6783
|
homeTeamWins: z.ZodNumber;
|
|
@@ -8548,6 +8587,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8548
8587
|
stadiumUrl?: string | undefined;
|
|
8549
8588
|
school?: string | undefined;
|
|
8550
8589
|
city?: string | undefined;
|
|
8590
|
+
venueName?: string | undefined;
|
|
8551
8591
|
};
|
|
8552
8592
|
awayTeam: {
|
|
8553
8593
|
name: string;
|
|
@@ -8562,6 +8602,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8562
8602
|
stadiumUrl?: string | undefined;
|
|
8563
8603
|
school?: string | undefined;
|
|
8564
8604
|
city?: string | undefined;
|
|
8605
|
+
venueName?: string | undefined;
|
|
8565
8606
|
};
|
|
8566
8607
|
totalInningsRemaining: number;
|
|
8567
8608
|
innings: {
|
|
@@ -8743,6 +8784,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8743
8784
|
stadiumUrl?: string | undefined;
|
|
8744
8785
|
school?: string | undefined;
|
|
8745
8786
|
city?: string | undefined;
|
|
8787
|
+
venueName?: string | undefined;
|
|
8746
8788
|
};
|
|
8747
8789
|
awayTeam: {
|
|
8748
8790
|
name: string;
|
|
@@ -8757,6 +8799,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8757
8799
|
stadiumUrl?: string | undefined;
|
|
8758
8800
|
school?: string | undefined;
|
|
8759
8801
|
city?: string | undefined;
|
|
8802
|
+
venueName?: string | undefined;
|
|
8760
8803
|
};
|
|
8761
8804
|
totalInningsRemaining: number;
|
|
8762
8805
|
innings: {
|
|
@@ -8942,6 +8985,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8942
8985
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
8943
8986
|
school: z.ZodOptional<z.ZodString>;
|
|
8944
8987
|
city: z.ZodOptional<z.ZodString>;
|
|
8988
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
8945
8989
|
}, "strip", z.ZodTypeAny, {
|
|
8946
8990
|
name: string;
|
|
8947
8991
|
image: string;
|
|
@@ -8955,6 +8999,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8955
8999
|
stadiumUrl?: string | undefined;
|
|
8956
9000
|
school?: string | undefined;
|
|
8957
9001
|
city?: string | undefined;
|
|
9002
|
+
venueName?: string | undefined;
|
|
8958
9003
|
}, {
|
|
8959
9004
|
name: string;
|
|
8960
9005
|
image: string;
|
|
@@ -8968,6 +9013,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8968
9013
|
stadiumUrl?: string | undefined;
|
|
8969
9014
|
school?: string | undefined;
|
|
8970
9015
|
city?: string | undefined;
|
|
9016
|
+
venueName?: string | undefined;
|
|
8971
9017
|
}>;
|
|
8972
9018
|
awayTeam: z.ZodObject<{
|
|
8973
9019
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -8982,6 +9028,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8982
9028
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
8983
9029
|
school: z.ZodOptional<z.ZodString>;
|
|
8984
9030
|
city: z.ZodOptional<z.ZodString>;
|
|
9031
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
8985
9032
|
}, "strip", z.ZodTypeAny, {
|
|
8986
9033
|
name: string;
|
|
8987
9034
|
image: string;
|
|
@@ -8995,6 +9042,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8995
9042
|
stadiumUrl?: string | undefined;
|
|
8996
9043
|
school?: string | undefined;
|
|
8997
9044
|
city?: string | undefined;
|
|
9045
|
+
venueName?: string | undefined;
|
|
8998
9046
|
}, {
|
|
8999
9047
|
name: string;
|
|
9000
9048
|
image: string;
|
|
@@ -9008,6 +9056,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9008
9056
|
stadiumUrl?: string | undefined;
|
|
9009
9057
|
school?: string | undefined;
|
|
9010
9058
|
city?: string | undefined;
|
|
9059
|
+
venueName?: string | undefined;
|
|
9011
9060
|
}>;
|
|
9012
9061
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
9013
9062
|
homeTeamWins: z.ZodNumber;
|
|
@@ -10792,6 +10841,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10792
10841
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
10793
10842
|
school: z.ZodOptional<z.ZodString>;
|
|
10794
10843
|
city: z.ZodOptional<z.ZodString>;
|
|
10844
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
10795
10845
|
}, {
|
|
10796
10846
|
scorePeriod1: z.ZodNumber;
|
|
10797
10847
|
scorePeriod2: z.ZodNumber;
|
|
@@ -10846,6 +10896,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10846
10896
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
10847
10897
|
school: z.ZodOptional<z.ZodString>;
|
|
10848
10898
|
city: z.ZodOptional<z.ZodString>;
|
|
10899
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
10849
10900
|
}, {
|
|
10850
10901
|
scorePeriod1: z.ZodNumber;
|
|
10851
10902
|
scorePeriod2: z.ZodNumber;
|
|
@@ -11295,6 +11346,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
11295
11346
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
11296
11347
|
school: z.ZodOptional<z.ZodString>;
|
|
11297
11348
|
city: z.ZodOptional<z.ZodString>;
|
|
11349
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
11298
11350
|
}, "strip", z.ZodTypeAny, {
|
|
11299
11351
|
name: string;
|
|
11300
11352
|
image: string;
|
|
@@ -11308,6 +11360,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
11308
11360
|
stadiumUrl?: string | undefined;
|
|
11309
11361
|
school?: string | undefined;
|
|
11310
11362
|
city?: string | undefined;
|
|
11363
|
+
venueName?: string | undefined;
|
|
11311
11364
|
}, {
|
|
11312
11365
|
name: string;
|
|
11313
11366
|
image: string;
|
|
@@ -11321,6 +11374,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
11321
11374
|
stadiumUrl?: string | undefined;
|
|
11322
11375
|
school?: string | undefined;
|
|
11323
11376
|
city?: string | undefined;
|
|
11377
|
+
venueName?: string | undefined;
|
|
11324
11378
|
}>;
|
|
11325
11379
|
awayTeam: z.ZodObject<{
|
|
11326
11380
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -11335,6 +11389,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
11335
11389
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
11336
11390
|
school: z.ZodOptional<z.ZodString>;
|
|
11337
11391
|
city: z.ZodOptional<z.ZodString>;
|
|
11392
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
11338
11393
|
}, "strip", z.ZodTypeAny, {
|
|
11339
11394
|
name: string;
|
|
11340
11395
|
image: string;
|
|
@@ -11348,6 +11403,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
11348
11403
|
stadiumUrl?: string | undefined;
|
|
11349
11404
|
school?: string | undefined;
|
|
11350
11405
|
city?: string | undefined;
|
|
11406
|
+
venueName?: string | undefined;
|
|
11351
11407
|
}, {
|
|
11352
11408
|
name: string;
|
|
11353
11409
|
image: string;
|
|
@@ -11361,6 +11417,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
11361
11417
|
stadiumUrl?: string | undefined;
|
|
11362
11418
|
school?: string | undefined;
|
|
11363
11419
|
city?: string | undefined;
|
|
11420
|
+
venueName?: string | undefined;
|
|
11364
11421
|
}>;
|
|
11365
11422
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
11366
11423
|
homeTeamWins: z.ZodNumber;
|
|
@@ -13201,6 +13258,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13201
13258
|
stadiumUrl?: string | undefined;
|
|
13202
13259
|
school?: string | undefined;
|
|
13203
13260
|
city?: string | undefined;
|
|
13261
|
+
venueName?: string | undefined;
|
|
13204
13262
|
};
|
|
13205
13263
|
awayTeam: {
|
|
13206
13264
|
name: string;
|
|
@@ -13215,6 +13273,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13215
13273
|
stadiumUrl?: string | undefined;
|
|
13216
13274
|
school?: string | undefined;
|
|
13217
13275
|
city?: string | undefined;
|
|
13276
|
+
venueName?: string | undefined;
|
|
13218
13277
|
};
|
|
13219
13278
|
seasonType: number;
|
|
13220
13279
|
possession: string | null;
|
|
@@ -13409,6 +13468,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13409
13468
|
stadiumUrl?: string | undefined;
|
|
13410
13469
|
school?: string | undefined;
|
|
13411
13470
|
city?: string | undefined;
|
|
13471
|
+
venueName?: string | undefined;
|
|
13412
13472
|
};
|
|
13413
13473
|
awayTeam: {
|
|
13414
13474
|
name: string;
|
|
@@ -13423,6 +13483,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13423
13483
|
stadiumUrl?: string | undefined;
|
|
13424
13484
|
school?: string | undefined;
|
|
13425
13485
|
city?: string | undefined;
|
|
13486
|
+
venueName?: string | undefined;
|
|
13426
13487
|
};
|
|
13427
13488
|
seasonType: number;
|
|
13428
13489
|
possession: string | null;
|
|
@@ -13620,6 +13681,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13620
13681
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
13621
13682
|
school: z.ZodOptional<z.ZodString>;
|
|
13622
13683
|
city: z.ZodOptional<z.ZodString>;
|
|
13684
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
13623
13685
|
}, "strip", z.ZodTypeAny, {
|
|
13624
13686
|
name: string;
|
|
13625
13687
|
image: string;
|
|
@@ -13633,6 +13695,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13633
13695
|
stadiumUrl?: string | undefined;
|
|
13634
13696
|
school?: string | undefined;
|
|
13635
13697
|
city?: string | undefined;
|
|
13698
|
+
venueName?: string | undefined;
|
|
13636
13699
|
}, {
|
|
13637
13700
|
name: string;
|
|
13638
13701
|
image: string;
|
|
@@ -13646,6 +13709,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13646
13709
|
stadiumUrl?: string | undefined;
|
|
13647
13710
|
school?: string | undefined;
|
|
13648
13711
|
city?: string | undefined;
|
|
13712
|
+
venueName?: string | undefined;
|
|
13649
13713
|
}>;
|
|
13650
13714
|
awayTeam: z.ZodObject<{
|
|
13651
13715
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -13660,6 +13724,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13660
13724
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
13661
13725
|
school: z.ZodOptional<z.ZodString>;
|
|
13662
13726
|
city: z.ZodOptional<z.ZodString>;
|
|
13727
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
13663
13728
|
}, "strip", z.ZodTypeAny, {
|
|
13664
13729
|
name: string;
|
|
13665
13730
|
image: string;
|
|
@@ -13673,6 +13738,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13673
13738
|
stadiumUrl?: string | undefined;
|
|
13674
13739
|
school?: string | undefined;
|
|
13675
13740
|
city?: string | undefined;
|
|
13741
|
+
venueName?: string | undefined;
|
|
13676
13742
|
}, {
|
|
13677
13743
|
name: string;
|
|
13678
13744
|
image: string;
|
|
@@ -13686,6 +13752,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13686
13752
|
stadiumUrl?: string | undefined;
|
|
13687
13753
|
school?: string | undefined;
|
|
13688
13754
|
city?: string | undefined;
|
|
13755
|
+
venueName?: string | undefined;
|
|
13689
13756
|
}>;
|
|
13690
13757
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
13691
13758
|
homeTeamWins: z.ZodNumber;
|
|
@@ -15522,6 +15589,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
15522
15589
|
stadiumUrl?: string | undefined;
|
|
15523
15590
|
school?: string | undefined;
|
|
15524
15591
|
city?: string | undefined;
|
|
15592
|
+
venueName?: string | undefined;
|
|
15525
15593
|
};
|
|
15526
15594
|
awayTeam: {
|
|
15527
15595
|
name: string;
|
|
@@ -15536,6 +15604,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
15536
15604
|
stadiumUrl?: string | undefined;
|
|
15537
15605
|
school?: string | undefined;
|
|
15538
15606
|
city?: string | undefined;
|
|
15607
|
+
venueName?: string | undefined;
|
|
15539
15608
|
};
|
|
15540
15609
|
timeRemainingMinutes: number;
|
|
15541
15610
|
timeRemainingSeconds: number;
|
|
@@ -15723,6 +15792,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
15723
15792
|
stadiumUrl?: string | undefined;
|
|
15724
15793
|
school?: string | undefined;
|
|
15725
15794
|
city?: string | undefined;
|
|
15795
|
+
venueName?: string | undefined;
|
|
15726
15796
|
};
|
|
15727
15797
|
awayTeam: {
|
|
15728
15798
|
name: string;
|
|
@@ -15737,6 +15807,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
15737
15807
|
stadiumUrl?: string | undefined;
|
|
15738
15808
|
school?: string | undefined;
|
|
15739
15809
|
city?: string | undefined;
|
|
15810
|
+
venueName?: string | undefined;
|
|
15740
15811
|
};
|
|
15741
15812
|
timeRemainingMinutes: number;
|
|
15742
15813
|
timeRemainingSeconds: number;
|
|
@@ -15927,6 +15998,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
15927
15998
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
15928
15999
|
school: z.ZodOptional<z.ZodString>;
|
|
15929
16000
|
city: z.ZodOptional<z.ZodString>;
|
|
16001
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
15930
16002
|
}, "strip", z.ZodTypeAny, {
|
|
15931
16003
|
name: string;
|
|
15932
16004
|
image: string;
|
|
@@ -15940,6 +16012,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
15940
16012
|
stadiumUrl?: string | undefined;
|
|
15941
16013
|
school?: string | undefined;
|
|
15942
16014
|
city?: string | undefined;
|
|
16015
|
+
venueName?: string | undefined;
|
|
15943
16016
|
}, {
|
|
15944
16017
|
name: string;
|
|
15945
16018
|
image: string;
|
|
@@ -15953,6 +16026,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
15953
16026
|
stadiumUrl?: string | undefined;
|
|
15954
16027
|
school?: string | undefined;
|
|
15955
16028
|
city?: string | undefined;
|
|
16029
|
+
venueName?: string | undefined;
|
|
15956
16030
|
}>;
|
|
15957
16031
|
awayTeam: z.ZodObject<{
|
|
15958
16032
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -15967,6 +16041,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
15967
16041
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
15968
16042
|
school: z.ZodOptional<z.ZodString>;
|
|
15969
16043
|
city: z.ZodOptional<z.ZodString>;
|
|
16044
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
15970
16045
|
}, "strip", z.ZodTypeAny, {
|
|
15971
16046
|
name: string;
|
|
15972
16047
|
image: string;
|
|
@@ -15980,6 +16055,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
15980
16055
|
stadiumUrl?: string | undefined;
|
|
15981
16056
|
school?: string | undefined;
|
|
15982
16057
|
city?: string | undefined;
|
|
16058
|
+
venueName?: string | undefined;
|
|
15983
16059
|
}, {
|
|
15984
16060
|
name: string;
|
|
15985
16061
|
image: string;
|
|
@@ -15993,6 +16069,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
15993
16069
|
stadiumUrl?: string | undefined;
|
|
15994
16070
|
school?: string | undefined;
|
|
15995
16071
|
city?: string | undefined;
|
|
16072
|
+
venueName?: string | undefined;
|
|
15996
16073
|
}>;
|
|
15997
16074
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
15998
16075
|
homeTeamWins: z.ZodNumber;
|
|
@@ -17781,6 +17858,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
17781
17858
|
stadiumUrl?: string | undefined;
|
|
17782
17859
|
school?: string | undefined;
|
|
17783
17860
|
city?: string | undefined;
|
|
17861
|
+
venueName?: string | undefined;
|
|
17784
17862
|
};
|
|
17785
17863
|
awayTeam: {
|
|
17786
17864
|
name: string;
|
|
@@ -17795,6 +17873,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
17795
17873
|
stadiumUrl?: string | undefined;
|
|
17796
17874
|
school?: string | undefined;
|
|
17797
17875
|
city?: string | undefined;
|
|
17876
|
+
venueName?: string | undefined;
|
|
17798
17877
|
};
|
|
17799
17878
|
timeRemainingMinutes: number;
|
|
17800
17879
|
timeRemainingSeconds: number;
|
|
@@ -17962,6 +18041,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
17962
18041
|
stadiumUrl?: string | undefined;
|
|
17963
18042
|
school?: string | undefined;
|
|
17964
18043
|
city?: string | undefined;
|
|
18044
|
+
venueName?: string | undefined;
|
|
17965
18045
|
};
|
|
17966
18046
|
awayTeam: {
|
|
17967
18047
|
name: string;
|
|
@@ -17976,6 +18056,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
17976
18056
|
stadiumUrl?: string | undefined;
|
|
17977
18057
|
school?: string | undefined;
|
|
17978
18058
|
city?: string | undefined;
|
|
18059
|
+
venueName?: string | undefined;
|
|
17979
18060
|
};
|
|
17980
18061
|
timeRemainingMinutes: number;
|
|
17981
18062
|
timeRemainingSeconds: number;
|
|
@@ -18147,6 +18228,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
18147
18228
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
18148
18229
|
school: z.ZodOptional<z.ZodString>;
|
|
18149
18230
|
city: z.ZodOptional<z.ZodString>;
|
|
18231
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
18150
18232
|
}, "strip", z.ZodTypeAny, {
|
|
18151
18233
|
name: string;
|
|
18152
18234
|
image: string;
|
|
@@ -18160,6 +18242,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
18160
18242
|
stadiumUrl?: string | undefined;
|
|
18161
18243
|
school?: string | undefined;
|
|
18162
18244
|
city?: string | undefined;
|
|
18245
|
+
venueName?: string | undefined;
|
|
18163
18246
|
}, {
|
|
18164
18247
|
name: string;
|
|
18165
18248
|
image: string;
|
|
@@ -18173,6 +18256,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
18173
18256
|
stadiumUrl?: string | undefined;
|
|
18174
18257
|
school?: string | undefined;
|
|
18175
18258
|
city?: string | undefined;
|
|
18259
|
+
venueName?: string | undefined;
|
|
18176
18260
|
}>;
|
|
18177
18261
|
awayTeam: z.ZodObject<{
|
|
18178
18262
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -18187,6 +18271,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
18187
18271
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
18188
18272
|
school: z.ZodOptional<z.ZodString>;
|
|
18189
18273
|
city: z.ZodOptional<z.ZodString>;
|
|
18274
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
18190
18275
|
}, "strip", z.ZodTypeAny, {
|
|
18191
18276
|
name: string;
|
|
18192
18277
|
image: string;
|
|
@@ -18200,6 +18285,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
18200
18285
|
stadiumUrl?: string | undefined;
|
|
18201
18286
|
school?: string | undefined;
|
|
18202
18287
|
city?: string | undefined;
|
|
18288
|
+
venueName?: string | undefined;
|
|
18203
18289
|
}, {
|
|
18204
18290
|
name: string;
|
|
18205
18291
|
image: string;
|
|
@@ -18213,6 +18299,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
18213
18299
|
stadiumUrl?: string | undefined;
|
|
18214
18300
|
school?: string | undefined;
|
|
18215
18301
|
city?: string | undefined;
|
|
18302
|
+
venueName?: string | undefined;
|
|
18216
18303
|
}>;
|
|
18217
18304
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
18218
18305
|
homeTeamWins: z.ZodNumber;
|
|
@@ -20016,6 +20103,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20016
20103
|
stadiumUrl?: string | undefined;
|
|
20017
20104
|
school?: string | undefined;
|
|
20018
20105
|
city?: string | undefined;
|
|
20106
|
+
venueName?: string | undefined;
|
|
20019
20107
|
};
|
|
20020
20108
|
awayTeam: {
|
|
20021
20109
|
name: string;
|
|
@@ -20030,6 +20118,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20030
20118
|
stadiumUrl?: string | undefined;
|
|
20031
20119
|
school?: string | undefined;
|
|
20032
20120
|
city?: string | undefined;
|
|
20121
|
+
venueName?: string | undefined;
|
|
20033
20122
|
};
|
|
20034
20123
|
timeRemainingMinutes: number;
|
|
20035
20124
|
timeRemainingSeconds: number;
|
|
@@ -20204,6 +20293,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20204
20293
|
stadiumUrl?: string | undefined;
|
|
20205
20294
|
school?: string | undefined;
|
|
20206
20295
|
city?: string | undefined;
|
|
20296
|
+
venueName?: string | undefined;
|
|
20207
20297
|
};
|
|
20208
20298
|
awayTeam: {
|
|
20209
20299
|
name: string;
|
|
@@ -20218,6 +20308,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20218
20308
|
stadiumUrl?: string | undefined;
|
|
20219
20309
|
school?: string | undefined;
|
|
20220
20310
|
city?: string | undefined;
|
|
20311
|
+
venueName?: string | undefined;
|
|
20221
20312
|
};
|
|
20222
20313
|
timeRemainingMinutes: number;
|
|
20223
20314
|
timeRemainingSeconds: number;
|
|
@@ -20394,6 +20485,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20394
20485
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
20395
20486
|
school: z.ZodOptional<z.ZodString>;
|
|
20396
20487
|
city: z.ZodOptional<z.ZodString>;
|
|
20488
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
20397
20489
|
}, "strip", z.ZodTypeAny, {
|
|
20398
20490
|
name: string;
|
|
20399
20491
|
image: string;
|
|
@@ -20407,6 +20499,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20407
20499
|
stadiumUrl?: string | undefined;
|
|
20408
20500
|
school?: string | undefined;
|
|
20409
20501
|
city?: string | undefined;
|
|
20502
|
+
venueName?: string | undefined;
|
|
20410
20503
|
}, {
|
|
20411
20504
|
name: string;
|
|
20412
20505
|
image: string;
|
|
@@ -20420,6 +20513,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20420
20513
|
stadiumUrl?: string | undefined;
|
|
20421
20514
|
school?: string | undefined;
|
|
20422
20515
|
city?: string | undefined;
|
|
20516
|
+
venueName?: string | undefined;
|
|
20423
20517
|
}>;
|
|
20424
20518
|
awayTeam: z.ZodObject<{
|
|
20425
20519
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -20434,6 +20528,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20434
20528
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
20435
20529
|
school: z.ZodOptional<z.ZodString>;
|
|
20436
20530
|
city: z.ZodOptional<z.ZodString>;
|
|
20531
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
20437
20532
|
}, "strip", z.ZodTypeAny, {
|
|
20438
20533
|
name: string;
|
|
20439
20534
|
image: string;
|
|
@@ -20447,6 +20542,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20447
20542
|
stadiumUrl?: string | undefined;
|
|
20448
20543
|
school?: string | undefined;
|
|
20449
20544
|
city?: string | undefined;
|
|
20545
|
+
venueName?: string | undefined;
|
|
20450
20546
|
}, {
|
|
20451
20547
|
name: string;
|
|
20452
20548
|
image: string;
|
|
@@ -20460,6 +20556,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20460
20556
|
stadiumUrl?: string | undefined;
|
|
20461
20557
|
school?: string | undefined;
|
|
20462
20558
|
city?: string | undefined;
|
|
20559
|
+
venueName?: string | undefined;
|
|
20463
20560
|
}>;
|
|
20464
20561
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
20465
20562
|
homeTeamWins: z.ZodNumber;
|
|
@@ -22269,6 +22366,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22269
22366
|
stadiumUrl?: string | undefined;
|
|
22270
22367
|
school?: string | undefined;
|
|
22271
22368
|
city?: string | undefined;
|
|
22369
|
+
venueName?: string | undefined;
|
|
22272
22370
|
};
|
|
22273
22371
|
awayTeam: {
|
|
22274
22372
|
name: string;
|
|
@@ -22283,6 +22381,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22283
22381
|
stadiumUrl?: string | undefined;
|
|
22284
22382
|
school?: string | undefined;
|
|
22285
22383
|
city?: string | undefined;
|
|
22384
|
+
venueName?: string | undefined;
|
|
22286
22385
|
};
|
|
22287
22386
|
totalInningsRemaining: number;
|
|
22288
22387
|
innings: {
|
|
@@ -22464,6 +22563,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22464
22563
|
stadiumUrl?: string | undefined;
|
|
22465
22564
|
school?: string | undefined;
|
|
22466
22565
|
city?: string | undefined;
|
|
22566
|
+
venueName?: string | undefined;
|
|
22467
22567
|
};
|
|
22468
22568
|
awayTeam: {
|
|
22469
22569
|
name: string;
|
|
@@ -22478,6 +22578,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22478
22578
|
stadiumUrl?: string | undefined;
|
|
22479
22579
|
school?: string | undefined;
|
|
22480
22580
|
city?: string | undefined;
|
|
22581
|
+
venueName?: string | undefined;
|
|
22481
22582
|
};
|
|
22482
22583
|
totalInningsRemaining: number;
|
|
22483
22584
|
innings: {
|
|
@@ -22662,6 +22763,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22662
22763
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
22663
22764
|
school: z.ZodOptional<z.ZodString>;
|
|
22664
22765
|
city: z.ZodOptional<z.ZodString>;
|
|
22766
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
22665
22767
|
}, "strip", z.ZodTypeAny, {
|
|
22666
22768
|
name: string;
|
|
22667
22769
|
image: string;
|
|
@@ -22675,6 +22777,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22675
22777
|
stadiumUrl?: string | undefined;
|
|
22676
22778
|
school?: string | undefined;
|
|
22677
22779
|
city?: string | undefined;
|
|
22780
|
+
venueName?: string | undefined;
|
|
22678
22781
|
}, {
|
|
22679
22782
|
name: string;
|
|
22680
22783
|
image: string;
|
|
@@ -22688,6 +22791,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22688
22791
|
stadiumUrl?: string | undefined;
|
|
22689
22792
|
school?: string | undefined;
|
|
22690
22793
|
city?: string | undefined;
|
|
22794
|
+
venueName?: string | undefined;
|
|
22691
22795
|
}>;
|
|
22692
22796
|
awayTeam: z.ZodObject<{
|
|
22693
22797
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -22702,6 +22806,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22702
22806
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
22703
22807
|
school: z.ZodOptional<z.ZodString>;
|
|
22704
22808
|
city: z.ZodOptional<z.ZodString>;
|
|
22809
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
22705
22810
|
}, "strip", z.ZodTypeAny, {
|
|
22706
22811
|
name: string;
|
|
22707
22812
|
image: string;
|
|
@@ -22715,6 +22820,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22715
22820
|
stadiumUrl?: string | undefined;
|
|
22716
22821
|
school?: string | undefined;
|
|
22717
22822
|
city?: string | undefined;
|
|
22823
|
+
venueName?: string | undefined;
|
|
22718
22824
|
}, {
|
|
22719
22825
|
name: string;
|
|
22720
22826
|
image: string;
|
|
@@ -22728,6 +22834,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22728
22834
|
stadiumUrl?: string | undefined;
|
|
22729
22835
|
school?: string | undefined;
|
|
22730
22836
|
city?: string | undefined;
|
|
22837
|
+
venueName?: string | undefined;
|
|
22731
22838
|
}>;
|
|
22732
22839
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
22733
22840
|
homeTeamWins: z.ZodNumber;
|
|
@@ -24512,6 +24619,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24512
24619
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
24513
24620
|
school: z.ZodOptional<z.ZodString>;
|
|
24514
24621
|
city: z.ZodOptional<z.ZodString>;
|
|
24622
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
24515
24623
|
}, {
|
|
24516
24624
|
scorePeriod1: z.ZodNumber;
|
|
24517
24625
|
scorePeriod2: z.ZodNumber;
|
|
@@ -24566,6 +24674,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24566
24674
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
24567
24675
|
school: z.ZodOptional<z.ZodString>;
|
|
24568
24676
|
city: z.ZodOptional<z.ZodString>;
|
|
24677
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
24569
24678
|
}, {
|
|
24570
24679
|
scorePeriod1: z.ZodNumber;
|
|
24571
24680
|
scorePeriod2: z.ZodNumber;
|
|
@@ -25014,6 +25123,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
25014
25123
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
25015
25124
|
school: z.ZodOptional<z.ZodString>;
|
|
25016
25125
|
city: z.ZodOptional<z.ZodString>;
|
|
25126
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
25017
25127
|
}, "strip", z.ZodTypeAny, {
|
|
25018
25128
|
name: string;
|
|
25019
25129
|
image: string;
|
|
@@ -25027,6 +25137,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
25027
25137
|
stadiumUrl?: string | undefined;
|
|
25028
25138
|
school?: string | undefined;
|
|
25029
25139
|
city?: string | undefined;
|
|
25140
|
+
venueName?: string | undefined;
|
|
25030
25141
|
}, {
|
|
25031
25142
|
name: string;
|
|
25032
25143
|
image: string;
|
|
@@ -25040,6 +25151,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
25040
25151
|
stadiumUrl?: string | undefined;
|
|
25041
25152
|
school?: string | undefined;
|
|
25042
25153
|
city?: string | undefined;
|
|
25154
|
+
venueName?: string | undefined;
|
|
25043
25155
|
}>;
|
|
25044
25156
|
awayTeam: z.ZodObject<{
|
|
25045
25157
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -25054,6 +25166,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
25054
25166
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
25055
25167
|
school: z.ZodOptional<z.ZodString>;
|
|
25056
25168
|
city: z.ZodOptional<z.ZodString>;
|
|
25169
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
25057
25170
|
}, "strip", z.ZodTypeAny, {
|
|
25058
25171
|
name: string;
|
|
25059
25172
|
image: string;
|
|
@@ -25067,6 +25180,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
25067
25180
|
stadiumUrl?: string | undefined;
|
|
25068
25181
|
school?: string | undefined;
|
|
25069
25182
|
city?: string | undefined;
|
|
25183
|
+
venueName?: string | undefined;
|
|
25070
25184
|
}, {
|
|
25071
25185
|
name: string;
|
|
25072
25186
|
image: string;
|
|
@@ -25080,6 +25194,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
25080
25194
|
stadiumUrl?: string | undefined;
|
|
25081
25195
|
school?: string | undefined;
|
|
25082
25196
|
city?: string | undefined;
|
|
25197
|
+
venueName?: string | undefined;
|
|
25083
25198
|
}>;
|
|
25084
25199
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
25085
25200
|
homeTeamWins: z.ZodNumber;
|
|
@@ -26920,6 +27035,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
26920
27035
|
stadiumUrl?: string | undefined;
|
|
26921
27036
|
school?: string | undefined;
|
|
26922
27037
|
city?: string | undefined;
|
|
27038
|
+
venueName?: string | undefined;
|
|
26923
27039
|
};
|
|
26924
27040
|
awayTeam: {
|
|
26925
27041
|
name: string;
|
|
@@ -26934,6 +27050,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
26934
27050
|
stadiumUrl?: string | undefined;
|
|
26935
27051
|
school?: string | undefined;
|
|
26936
27052
|
city?: string | undefined;
|
|
27053
|
+
venueName?: string | undefined;
|
|
26937
27054
|
};
|
|
26938
27055
|
seasonType: number;
|
|
26939
27056
|
possession: string | null;
|
|
@@ -27128,6 +27245,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27128
27245
|
stadiumUrl?: string | undefined;
|
|
27129
27246
|
school?: string | undefined;
|
|
27130
27247
|
city?: string | undefined;
|
|
27248
|
+
venueName?: string | undefined;
|
|
27131
27249
|
};
|
|
27132
27250
|
awayTeam: {
|
|
27133
27251
|
name: string;
|
|
@@ -27142,6 +27260,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27142
27260
|
stadiumUrl?: string | undefined;
|
|
27143
27261
|
school?: string | undefined;
|
|
27144
27262
|
city?: string | undefined;
|
|
27263
|
+
venueName?: string | undefined;
|
|
27145
27264
|
};
|
|
27146
27265
|
seasonType: number;
|
|
27147
27266
|
possession: string | null;
|
|
@@ -27338,6 +27457,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27338
27457
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
27339
27458
|
school: z.ZodOptional<z.ZodString>;
|
|
27340
27459
|
city: z.ZodOptional<z.ZodString>;
|
|
27460
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
27341
27461
|
}, "strip", z.ZodTypeAny, {
|
|
27342
27462
|
name: string;
|
|
27343
27463
|
image: string;
|
|
@@ -27351,6 +27471,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27351
27471
|
stadiumUrl?: string | undefined;
|
|
27352
27472
|
school?: string | undefined;
|
|
27353
27473
|
city?: string | undefined;
|
|
27474
|
+
venueName?: string | undefined;
|
|
27354
27475
|
}, {
|
|
27355
27476
|
name: string;
|
|
27356
27477
|
image: string;
|
|
@@ -27364,6 +27485,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27364
27485
|
stadiumUrl?: string | undefined;
|
|
27365
27486
|
school?: string | undefined;
|
|
27366
27487
|
city?: string | undefined;
|
|
27488
|
+
venueName?: string | undefined;
|
|
27367
27489
|
}>;
|
|
27368
27490
|
awayTeam: z.ZodObject<{
|
|
27369
27491
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -27378,6 +27500,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27378
27500
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
27379
27501
|
school: z.ZodOptional<z.ZodString>;
|
|
27380
27502
|
city: z.ZodOptional<z.ZodString>;
|
|
27503
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
27381
27504
|
}, "strip", z.ZodTypeAny, {
|
|
27382
27505
|
name: string;
|
|
27383
27506
|
image: string;
|
|
@@ -27391,6 +27514,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27391
27514
|
stadiumUrl?: string | undefined;
|
|
27392
27515
|
school?: string | undefined;
|
|
27393
27516
|
city?: string | undefined;
|
|
27517
|
+
venueName?: string | undefined;
|
|
27394
27518
|
}, {
|
|
27395
27519
|
name: string;
|
|
27396
27520
|
image: string;
|
|
@@ -27404,6 +27528,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27404
27528
|
stadiumUrl?: string | undefined;
|
|
27405
27529
|
school?: string | undefined;
|
|
27406
27530
|
city?: string | undefined;
|
|
27531
|
+
venueName?: string | undefined;
|
|
27407
27532
|
}>;
|
|
27408
27533
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
27409
27534
|
homeTeamWins: z.ZodNumber;
|
|
@@ -29240,6 +29365,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29240
29365
|
stadiumUrl?: string | undefined;
|
|
29241
29366
|
school?: string | undefined;
|
|
29242
29367
|
city?: string | undefined;
|
|
29368
|
+
venueName?: string | undefined;
|
|
29243
29369
|
};
|
|
29244
29370
|
awayTeam: {
|
|
29245
29371
|
name: string;
|
|
@@ -29254,6 +29380,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29254
29380
|
stadiumUrl?: string | undefined;
|
|
29255
29381
|
school?: string | undefined;
|
|
29256
29382
|
city?: string | undefined;
|
|
29383
|
+
venueName?: string | undefined;
|
|
29257
29384
|
};
|
|
29258
29385
|
timeRemainingMinutes: number;
|
|
29259
29386
|
timeRemainingSeconds: number;
|
|
@@ -29441,6 +29568,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29441
29568
|
stadiumUrl?: string | undefined;
|
|
29442
29569
|
school?: string | undefined;
|
|
29443
29570
|
city?: string | undefined;
|
|
29571
|
+
venueName?: string | undefined;
|
|
29444
29572
|
};
|
|
29445
29573
|
awayTeam: {
|
|
29446
29574
|
name: string;
|
|
@@ -29455,6 +29583,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29455
29583
|
stadiumUrl?: string | undefined;
|
|
29456
29584
|
school?: string | undefined;
|
|
29457
29585
|
city?: string | undefined;
|
|
29586
|
+
venueName?: string | undefined;
|
|
29458
29587
|
};
|
|
29459
29588
|
timeRemainingMinutes: number;
|
|
29460
29589
|
timeRemainingSeconds: number;
|
|
@@ -29644,6 +29773,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29644
29773
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
29645
29774
|
school: z.ZodOptional<z.ZodString>;
|
|
29646
29775
|
city: z.ZodOptional<z.ZodString>;
|
|
29776
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
29647
29777
|
}, "strip", z.ZodTypeAny, {
|
|
29648
29778
|
name: string;
|
|
29649
29779
|
image: string;
|
|
@@ -29657,6 +29787,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29657
29787
|
stadiumUrl?: string | undefined;
|
|
29658
29788
|
school?: string | undefined;
|
|
29659
29789
|
city?: string | undefined;
|
|
29790
|
+
venueName?: string | undefined;
|
|
29660
29791
|
}, {
|
|
29661
29792
|
name: string;
|
|
29662
29793
|
image: string;
|
|
@@ -29670,6 +29801,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29670
29801
|
stadiumUrl?: string | undefined;
|
|
29671
29802
|
school?: string | undefined;
|
|
29672
29803
|
city?: string | undefined;
|
|
29804
|
+
venueName?: string | undefined;
|
|
29673
29805
|
}>;
|
|
29674
29806
|
awayTeam: z.ZodObject<{
|
|
29675
29807
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -29684,6 +29816,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29684
29816
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
29685
29817
|
school: z.ZodOptional<z.ZodString>;
|
|
29686
29818
|
city: z.ZodOptional<z.ZodString>;
|
|
29819
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
29687
29820
|
}, "strip", z.ZodTypeAny, {
|
|
29688
29821
|
name: string;
|
|
29689
29822
|
image: string;
|
|
@@ -29697,6 +29830,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29697
29830
|
stadiumUrl?: string | undefined;
|
|
29698
29831
|
school?: string | undefined;
|
|
29699
29832
|
city?: string | undefined;
|
|
29833
|
+
venueName?: string | undefined;
|
|
29700
29834
|
}, {
|
|
29701
29835
|
name: string;
|
|
29702
29836
|
image: string;
|
|
@@ -29710,6 +29844,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29710
29844
|
stadiumUrl?: string | undefined;
|
|
29711
29845
|
school?: string | undefined;
|
|
29712
29846
|
city?: string | undefined;
|
|
29847
|
+
venueName?: string | undefined;
|
|
29713
29848
|
}>;
|
|
29714
29849
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
29715
29850
|
homeTeamWins: z.ZodNumber;
|
|
@@ -31498,6 +31633,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
31498
31633
|
stadiumUrl?: string | undefined;
|
|
31499
31634
|
school?: string | undefined;
|
|
31500
31635
|
city?: string | undefined;
|
|
31636
|
+
venueName?: string | undefined;
|
|
31501
31637
|
};
|
|
31502
31638
|
awayTeam: {
|
|
31503
31639
|
name: string;
|
|
@@ -31512,6 +31648,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
31512
31648
|
stadiumUrl?: string | undefined;
|
|
31513
31649
|
school?: string | undefined;
|
|
31514
31650
|
city?: string | undefined;
|
|
31651
|
+
venueName?: string | undefined;
|
|
31515
31652
|
};
|
|
31516
31653
|
timeRemainingMinutes: number;
|
|
31517
31654
|
timeRemainingSeconds: number;
|
|
@@ -31679,6 +31816,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
31679
31816
|
stadiumUrl?: string | undefined;
|
|
31680
31817
|
school?: string | undefined;
|
|
31681
31818
|
city?: string | undefined;
|
|
31819
|
+
venueName?: string | undefined;
|
|
31682
31820
|
};
|
|
31683
31821
|
awayTeam: {
|
|
31684
31822
|
name: string;
|
|
@@ -31693,6 +31831,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
31693
31831
|
stadiumUrl?: string | undefined;
|
|
31694
31832
|
school?: string | undefined;
|
|
31695
31833
|
city?: string | undefined;
|
|
31834
|
+
venueName?: string | undefined;
|
|
31696
31835
|
};
|
|
31697
31836
|
timeRemainingMinutes: number;
|
|
31698
31837
|
timeRemainingSeconds: number;
|
|
@@ -31908,6 +32047,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
31908
32047
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
31909
32048
|
school: z.ZodOptional<z.ZodString>;
|
|
31910
32049
|
city: z.ZodOptional<z.ZodString>;
|
|
32050
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
31911
32051
|
}, "strip", z.ZodTypeAny, {
|
|
31912
32052
|
name: string;
|
|
31913
32053
|
image: string;
|
|
@@ -31921,6 +32061,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
31921
32061
|
stadiumUrl?: string | undefined;
|
|
31922
32062
|
school?: string | undefined;
|
|
31923
32063
|
city?: string | undefined;
|
|
32064
|
+
venueName?: string | undefined;
|
|
31924
32065
|
}, {
|
|
31925
32066
|
name: string;
|
|
31926
32067
|
image: string;
|
|
@@ -31934,6 +32075,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
31934
32075
|
stadiumUrl?: string | undefined;
|
|
31935
32076
|
school?: string | undefined;
|
|
31936
32077
|
city?: string | undefined;
|
|
32078
|
+
venueName?: string | undefined;
|
|
31937
32079
|
}>;
|
|
31938
32080
|
awayTeam: z.ZodObject<{
|
|
31939
32081
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -31948,6 +32090,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
31948
32090
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
31949
32091
|
school: z.ZodOptional<z.ZodString>;
|
|
31950
32092
|
city: z.ZodOptional<z.ZodString>;
|
|
32093
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
31951
32094
|
}, "strip", z.ZodTypeAny, {
|
|
31952
32095
|
name: string;
|
|
31953
32096
|
image: string;
|
|
@@ -31961,6 +32104,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
31961
32104
|
stadiumUrl?: string | undefined;
|
|
31962
32105
|
school?: string | undefined;
|
|
31963
32106
|
city?: string | undefined;
|
|
32107
|
+
venueName?: string | undefined;
|
|
31964
32108
|
}, {
|
|
31965
32109
|
name: string;
|
|
31966
32110
|
image: string;
|
|
@@ -31974,6 +32118,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
31974
32118
|
stadiumUrl?: string | undefined;
|
|
31975
32119
|
school?: string | undefined;
|
|
31976
32120
|
city?: string | undefined;
|
|
32121
|
+
venueName?: string | undefined;
|
|
31977
32122
|
}>;
|
|
31978
32123
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
31979
32124
|
homeTeamWins: z.ZodNumber;
|
|
@@ -33777,6 +33922,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
33777
33922
|
stadiumUrl?: string | undefined;
|
|
33778
33923
|
school?: string | undefined;
|
|
33779
33924
|
city?: string | undefined;
|
|
33925
|
+
venueName?: string | undefined;
|
|
33780
33926
|
};
|
|
33781
33927
|
awayTeam: {
|
|
33782
33928
|
name: string;
|
|
@@ -33791,6 +33937,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
33791
33937
|
stadiumUrl?: string | undefined;
|
|
33792
33938
|
school?: string | undefined;
|
|
33793
33939
|
city?: string | undefined;
|
|
33940
|
+
venueName?: string | undefined;
|
|
33794
33941
|
};
|
|
33795
33942
|
timeRemainingMinutes: number;
|
|
33796
33943
|
timeRemainingSeconds: number;
|
|
@@ -33965,6 +34112,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
33965
34112
|
stadiumUrl?: string | undefined;
|
|
33966
34113
|
school?: string | undefined;
|
|
33967
34114
|
city?: string | undefined;
|
|
34115
|
+
venueName?: string | undefined;
|
|
33968
34116
|
};
|
|
33969
34117
|
awayTeam: {
|
|
33970
34118
|
name: string;
|
|
@@ -33979,6 +34127,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
33979
34127
|
stadiumUrl?: string | undefined;
|
|
33980
34128
|
school?: string | undefined;
|
|
33981
34129
|
city?: string | undefined;
|
|
34130
|
+
venueName?: string | undefined;
|
|
33982
34131
|
};
|
|
33983
34132
|
timeRemainingMinutes: number;
|
|
33984
34133
|
timeRemainingSeconds: number;
|
|
@@ -34155,6 +34304,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
34155
34304
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
34156
34305
|
school: z.ZodOptional<z.ZodString>;
|
|
34157
34306
|
city: z.ZodOptional<z.ZodString>;
|
|
34307
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
34158
34308
|
}, "strip", z.ZodTypeAny, {
|
|
34159
34309
|
name: string;
|
|
34160
34310
|
image: string;
|
|
@@ -34168,6 +34318,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
34168
34318
|
stadiumUrl?: string | undefined;
|
|
34169
34319
|
school?: string | undefined;
|
|
34170
34320
|
city?: string | undefined;
|
|
34321
|
+
venueName?: string | undefined;
|
|
34171
34322
|
}, {
|
|
34172
34323
|
name: string;
|
|
34173
34324
|
image: string;
|
|
@@ -34181,6 +34332,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
34181
34332
|
stadiumUrl?: string | undefined;
|
|
34182
34333
|
school?: string | undefined;
|
|
34183
34334
|
city?: string | undefined;
|
|
34335
|
+
venueName?: string | undefined;
|
|
34184
34336
|
}>;
|
|
34185
34337
|
awayTeam: z.ZodObject<{
|
|
34186
34338
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -34195,6 +34347,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
34195
34347
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
34196
34348
|
school: z.ZodOptional<z.ZodString>;
|
|
34197
34349
|
city: z.ZodOptional<z.ZodString>;
|
|
34350
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
34198
34351
|
}, "strip", z.ZodTypeAny, {
|
|
34199
34352
|
name: string;
|
|
34200
34353
|
image: string;
|
|
@@ -34208,6 +34361,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
34208
34361
|
stadiumUrl?: string | undefined;
|
|
34209
34362
|
school?: string | undefined;
|
|
34210
34363
|
city?: string | undefined;
|
|
34364
|
+
venueName?: string | undefined;
|
|
34211
34365
|
}, {
|
|
34212
34366
|
name: string;
|
|
34213
34367
|
image: string;
|
|
@@ -34221,6 +34375,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
34221
34375
|
stadiumUrl?: string | undefined;
|
|
34222
34376
|
school?: string | undefined;
|
|
34223
34377
|
city?: string | undefined;
|
|
34378
|
+
venueName?: string | undefined;
|
|
34224
34379
|
}>;
|
|
34225
34380
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
34226
34381
|
homeTeamWins: z.ZodNumber;
|
|
@@ -36030,6 +36185,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36030
36185
|
stadiumUrl?: string | undefined;
|
|
36031
36186
|
school?: string | undefined;
|
|
36032
36187
|
city?: string | undefined;
|
|
36188
|
+
venueName?: string | undefined;
|
|
36033
36189
|
};
|
|
36034
36190
|
awayTeam: {
|
|
36035
36191
|
name: string;
|
|
@@ -36044,6 +36200,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36044
36200
|
stadiumUrl?: string | undefined;
|
|
36045
36201
|
school?: string | undefined;
|
|
36046
36202
|
city?: string | undefined;
|
|
36203
|
+
venueName?: string | undefined;
|
|
36047
36204
|
};
|
|
36048
36205
|
totalInningsRemaining: number;
|
|
36049
36206
|
innings: {
|
|
@@ -36225,6 +36382,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36225
36382
|
stadiumUrl?: string | undefined;
|
|
36226
36383
|
school?: string | undefined;
|
|
36227
36384
|
city?: string | undefined;
|
|
36385
|
+
venueName?: string | undefined;
|
|
36228
36386
|
};
|
|
36229
36387
|
awayTeam: {
|
|
36230
36388
|
name: string;
|
|
@@ -36239,6 +36397,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36239
36397
|
stadiumUrl?: string | undefined;
|
|
36240
36398
|
school?: string | undefined;
|
|
36241
36399
|
city?: string | undefined;
|
|
36400
|
+
venueName?: string | undefined;
|
|
36242
36401
|
};
|
|
36243
36402
|
totalInningsRemaining: number;
|
|
36244
36403
|
innings: {
|
|
@@ -36423,6 +36582,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36423
36582
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
36424
36583
|
school: z.ZodOptional<z.ZodString>;
|
|
36425
36584
|
city: z.ZodOptional<z.ZodString>;
|
|
36585
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
36426
36586
|
}, "strip", z.ZodTypeAny, {
|
|
36427
36587
|
name: string;
|
|
36428
36588
|
image: string;
|
|
@@ -36436,6 +36596,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36436
36596
|
stadiumUrl?: string | undefined;
|
|
36437
36597
|
school?: string | undefined;
|
|
36438
36598
|
city?: string | undefined;
|
|
36599
|
+
venueName?: string | undefined;
|
|
36439
36600
|
}, {
|
|
36440
36601
|
name: string;
|
|
36441
36602
|
image: string;
|
|
@@ -36449,6 +36610,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36449
36610
|
stadiumUrl?: string | undefined;
|
|
36450
36611
|
school?: string | undefined;
|
|
36451
36612
|
city?: string | undefined;
|
|
36613
|
+
venueName?: string | undefined;
|
|
36452
36614
|
}>;
|
|
36453
36615
|
awayTeam: z.ZodObject<{
|
|
36454
36616
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -36463,6 +36625,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36463
36625
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
36464
36626
|
school: z.ZodOptional<z.ZodString>;
|
|
36465
36627
|
city: z.ZodOptional<z.ZodString>;
|
|
36628
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
36466
36629
|
}, "strip", z.ZodTypeAny, {
|
|
36467
36630
|
name: string;
|
|
36468
36631
|
image: string;
|
|
@@ -36476,6 +36639,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36476
36639
|
stadiumUrl?: string | undefined;
|
|
36477
36640
|
school?: string | undefined;
|
|
36478
36641
|
city?: string | undefined;
|
|
36642
|
+
venueName?: string | undefined;
|
|
36479
36643
|
}, {
|
|
36480
36644
|
name: string;
|
|
36481
36645
|
image: string;
|
|
@@ -36489,6 +36653,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36489
36653
|
stadiumUrl?: string | undefined;
|
|
36490
36654
|
school?: string | undefined;
|
|
36491
36655
|
city?: string | undefined;
|
|
36656
|
+
venueName?: string | undefined;
|
|
36492
36657
|
}>;
|
|
36493
36658
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
36494
36659
|
homeTeamWins: z.ZodNumber;
|
|
@@ -38273,6 +38438,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38273
38438
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
38274
38439
|
school: z.ZodOptional<z.ZodString>;
|
|
38275
38440
|
city: z.ZodOptional<z.ZodString>;
|
|
38441
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
38276
38442
|
}, {
|
|
38277
38443
|
scorePeriod1: z.ZodNumber;
|
|
38278
38444
|
scorePeriod2: z.ZodNumber;
|
|
@@ -38327,6 +38493,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38327
38493
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
38328
38494
|
school: z.ZodOptional<z.ZodString>;
|
|
38329
38495
|
city: z.ZodOptional<z.ZodString>;
|
|
38496
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
38330
38497
|
}, {
|
|
38331
38498
|
scorePeriod1: z.ZodNumber;
|
|
38332
38499
|
scorePeriod2: z.ZodNumber;
|
|
@@ -38775,6 +38942,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38775
38942
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
38776
38943
|
school: z.ZodOptional<z.ZodString>;
|
|
38777
38944
|
city: z.ZodOptional<z.ZodString>;
|
|
38945
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
38778
38946
|
}, "strip", z.ZodTypeAny, {
|
|
38779
38947
|
name: string;
|
|
38780
38948
|
image: string;
|
|
@@ -38788,6 +38956,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38788
38956
|
stadiumUrl?: string | undefined;
|
|
38789
38957
|
school?: string | undefined;
|
|
38790
38958
|
city?: string | undefined;
|
|
38959
|
+
venueName?: string | undefined;
|
|
38791
38960
|
}, {
|
|
38792
38961
|
name: string;
|
|
38793
38962
|
image: string;
|
|
@@ -38801,6 +38970,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38801
38970
|
stadiumUrl?: string | undefined;
|
|
38802
38971
|
school?: string | undefined;
|
|
38803
38972
|
city?: string | undefined;
|
|
38973
|
+
venueName?: string | undefined;
|
|
38804
38974
|
}>;
|
|
38805
38975
|
awayTeam: z.ZodObject<{
|
|
38806
38976
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -38815,6 +38985,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38815
38985
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
38816
38986
|
school: z.ZodOptional<z.ZodString>;
|
|
38817
38987
|
city: z.ZodOptional<z.ZodString>;
|
|
38988
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
38818
38989
|
}, "strip", z.ZodTypeAny, {
|
|
38819
38990
|
name: string;
|
|
38820
38991
|
image: string;
|
|
@@ -38828,6 +38999,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38828
38999
|
stadiumUrl?: string | undefined;
|
|
38829
39000
|
school?: string | undefined;
|
|
38830
39001
|
city?: string | undefined;
|
|
39002
|
+
venueName?: string | undefined;
|
|
38831
39003
|
}, {
|
|
38832
39004
|
name: string;
|
|
38833
39005
|
image: string;
|
|
@@ -38841,6 +39013,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38841
39013
|
stadiumUrl?: string | undefined;
|
|
38842
39014
|
school?: string | undefined;
|
|
38843
39015
|
city?: string | undefined;
|
|
39016
|
+
venueName?: string | undefined;
|
|
38844
39017
|
}>;
|
|
38845
39018
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
38846
39019
|
homeTeamWins: z.ZodNumber;
|
|
@@ -40681,6 +40854,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40681
40854
|
stadiumUrl?: string | undefined;
|
|
40682
40855
|
school?: string | undefined;
|
|
40683
40856
|
city?: string | undefined;
|
|
40857
|
+
venueName?: string | undefined;
|
|
40684
40858
|
};
|
|
40685
40859
|
awayTeam: {
|
|
40686
40860
|
name: string;
|
|
@@ -40695,6 +40869,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40695
40869
|
stadiumUrl?: string | undefined;
|
|
40696
40870
|
school?: string | undefined;
|
|
40697
40871
|
city?: string | undefined;
|
|
40872
|
+
venueName?: string | undefined;
|
|
40698
40873
|
};
|
|
40699
40874
|
seasonType: number;
|
|
40700
40875
|
possession: string | null;
|
|
@@ -40889,6 +41064,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40889
41064
|
stadiumUrl?: string | undefined;
|
|
40890
41065
|
school?: string | undefined;
|
|
40891
41066
|
city?: string | undefined;
|
|
41067
|
+
venueName?: string | undefined;
|
|
40892
41068
|
};
|
|
40893
41069
|
awayTeam: {
|
|
40894
41070
|
name: string;
|
|
@@ -40903,6 +41079,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40903
41079
|
stadiumUrl?: string | undefined;
|
|
40904
41080
|
school?: string | undefined;
|
|
40905
41081
|
city?: string | undefined;
|
|
41082
|
+
venueName?: string | undefined;
|
|
40906
41083
|
};
|
|
40907
41084
|
seasonType: number;
|
|
40908
41085
|
possession: string | null;
|
|
@@ -41099,6 +41276,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
41099
41276
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
41100
41277
|
school: z.ZodOptional<z.ZodString>;
|
|
41101
41278
|
city: z.ZodOptional<z.ZodString>;
|
|
41279
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
41102
41280
|
}, "strip", z.ZodTypeAny, {
|
|
41103
41281
|
name: string;
|
|
41104
41282
|
image: string;
|
|
@@ -41112,6 +41290,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
41112
41290
|
stadiumUrl?: string | undefined;
|
|
41113
41291
|
school?: string | undefined;
|
|
41114
41292
|
city?: string | undefined;
|
|
41293
|
+
venueName?: string | undefined;
|
|
41115
41294
|
}, {
|
|
41116
41295
|
name: string;
|
|
41117
41296
|
image: string;
|
|
@@ -41125,6 +41304,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
41125
41304
|
stadiumUrl?: string | undefined;
|
|
41126
41305
|
school?: string | undefined;
|
|
41127
41306
|
city?: string | undefined;
|
|
41307
|
+
venueName?: string | undefined;
|
|
41128
41308
|
}>;
|
|
41129
41309
|
awayTeam: z.ZodObject<{
|
|
41130
41310
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -41139,6 +41319,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
41139
41319
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
41140
41320
|
school: z.ZodOptional<z.ZodString>;
|
|
41141
41321
|
city: z.ZodOptional<z.ZodString>;
|
|
41322
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
41142
41323
|
}, "strip", z.ZodTypeAny, {
|
|
41143
41324
|
name: string;
|
|
41144
41325
|
image: string;
|
|
@@ -41152,6 +41333,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
41152
41333
|
stadiumUrl?: string | undefined;
|
|
41153
41334
|
school?: string | undefined;
|
|
41154
41335
|
city?: string | undefined;
|
|
41336
|
+
venueName?: string | undefined;
|
|
41155
41337
|
}, {
|
|
41156
41338
|
name: string;
|
|
41157
41339
|
image: string;
|
|
@@ -41165,6 +41347,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
41165
41347
|
stadiumUrl?: string | undefined;
|
|
41166
41348
|
school?: string | undefined;
|
|
41167
41349
|
city?: string | undefined;
|
|
41350
|
+
venueName?: string | undefined;
|
|
41168
41351
|
}>;
|
|
41169
41352
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
41170
41353
|
homeTeamWins: z.ZodNumber;
|
|
@@ -43001,6 +43184,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43001
43184
|
stadiumUrl?: string | undefined;
|
|
43002
43185
|
school?: string | undefined;
|
|
43003
43186
|
city?: string | undefined;
|
|
43187
|
+
venueName?: string | undefined;
|
|
43004
43188
|
};
|
|
43005
43189
|
awayTeam: {
|
|
43006
43190
|
name: string;
|
|
@@ -43015,6 +43199,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43015
43199
|
stadiumUrl?: string | undefined;
|
|
43016
43200
|
school?: string | undefined;
|
|
43017
43201
|
city?: string | undefined;
|
|
43202
|
+
venueName?: string | undefined;
|
|
43018
43203
|
};
|
|
43019
43204
|
timeRemainingMinutes: number;
|
|
43020
43205
|
timeRemainingSeconds: number;
|
|
@@ -43202,6 +43387,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43202
43387
|
stadiumUrl?: string | undefined;
|
|
43203
43388
|
school?: string | undefined;
|
|
43204
43389
|
city?: string | undefined;
|
|
43390
|
+
venueName?: string | undefined;
|
|
43205
43391
|
};
|
|
43206
43392
|
awayTeam: {
|
|
43207
43393
|
name: string;
|
|
@@ -43216,6 +43402,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43216
43402
|
stadiumUrl?: string | undefined;
|
|
43217
43403
|
school?: string | undefined;
|
|
43218
43404
|
city?: string | undefined;
|
|
43405
|
+
venueName?: string | undefined;
|
|
43219
43406
|
};
|
|
43220
43407
|
timeRemainingMinutes: number;
|
|
43221
43408
|
timeRemainingSeconds: number;
|
|
@@ -43405,6 +43592,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43405
43592
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
43406
43593
|
school: z.ZodOptional<z.ZodString>;
|
|
43407
43594
|
city: z.ZodOptional<z.ZodString>;
|
|
43595
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
43408
43596
|
}, "strip", z.ZodTypeAny, {
|
|
43409
43597
|
name: string;
|
|
43410
43598
|
image: string;
|
|
@@ -43418,6 +43606,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43418
43606
|
stadiumUrl?: string | undefined;
|
|
43419
43607
|
school?: string | undefined;
|
|
43420
43608
|
city?: string | undefined;
|
|
43609
|
+
venueName?: string | undefined;
|
|
43421
43610
|
}, {
|
|
43422
43611
|
name: string;
|
|
43423
43612
|
image: string;
|
|
@@ -43431,6 +43620,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43431
43620
|
stadiumUrl?: string | undefined;
|
|
43432
43621
|
school?: string | undefined;
|
|
43433
43622
|
city?: string | undefined;
|
|
43623
|
+
venueName?: string | undefined;
|
|
43434
43624
|
}>;
|
|
43435
43625
|
awayTeam: z.ZodObject<{
|
|
43436
43626
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -43445,6 +43635,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43445
43635
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
43446
43636
|
school: z.ZodOptional<z.ZodString>;
|
|
43447
43637
|
city: z.ZodOptional<z.ZodString>;
|
|
43638
|
+
venueName: z.ZodOptional<z.ZodString>;
|
|
43448
43639
|
}, "strip", z.ZodTypeAny, {
|
|
43449
43640
|
name: string;
|
|
43450
43641
|
image: string;
|
|
@@ -43458,6 +43649,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43458
43649
|
stadiumUrl?: string | undefined;
|
|
43459
43650
|
school?: string | undefined;
|
|
43460
43651
|
city?: string | undefined;
|
|
43652
|
+
venueName?: string | undefined;
|
|
43461
43653
|
}, {
|
|
43462
43654
|
name: string;
|
|
43463
43655
|
image: string;
|
|
@@ -43471,6 +43663,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43471
43663
|
stadiumUrl?: string | undefined;
|
|
43472
43664
|
school?: string | undefined;
|
|
43473
43665
|
city?: string | undefined;
|
|
43666
|
+
venueName?: string | undefined;
|
|
43474
43667
|
}>;
|
|
43475
43668
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
43476
43669
|
homeTeamWins: z.ZodNumber;
|
|
@@ -45259,6 +45452,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
45259
45452
|
stadiumUrl?: string | undefined;
|
|
45260
45453
|
school?: string | undefined;
|
|
45261
45454
|
city?: string | undefined;
|
|
45455
|
+
venueName?: string | undefined;
|
|
45262
45456
|
};
|
|
45263
45457
|
awayTeam: {
|
|
45264
45458
|
name: string;
|
|
@@ -45273,6 +45467,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
45273
45467
|
stadiumUrl?: string | undefined;
|
|
45274
45468
|
school?: string | undefined;
|
|
45275
45469
|
city?: string | undefined;
|
|
45470
|
+
venueName?: string | undefined;
|
|
45276
45471
|
};
|
|
45277
45472
|
timeRemainingMinutes: number;
|
|
45278
45473
|
timeRemainingSeconds: number;
|
|
@@ -45440,6 +45635,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
45440
45635
|
stadiumUrl?: string | undefined;
|
|
45441
45636
|
school?: string | undefined;
|
|
45442
45637
|
city?: string | undefined;
|
|
45638
|
+
venueName?: string | undefined;
|
|
45443
45639
|
};
|
|
45444
45640
|
awayTeam: {
|
|
45445
45641
|
name: string;
|
|
@@ -45454,6 +45650,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
45454
45650
|
stadiumUrl?: string | undefined;
|
|
45455
45651
|
school?: string | undefined;
|
|
45456
45652
|
city?: string | undefined;
|
|
45653
|
+
venueName?: string | undefined;
|
|
45457
45654
|
};
|
|
45458
45655
|
timeRemainingMinutes: number;
|
|
45459
45656
|
timeRemainingSeconds: number;
|
|
@@ -46394,6 +46591,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46394
46591
|
stadiumUrl?: string | undefined;
|
|
46395
46592
|
school?: string | undefined;
|
|
46396
46593
|
city?: string | undefined;
|
|
46594
|
+
venueName?: string | undefined;
|
|
46397
46595
|
};
|
|
46398
46596
|
awayTeam: {
|
|
46399
46597
|
name: string;
|
|
@@ -46408,6 +46606,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46408
46606
|
stadiumUrl?: string | undefined;
|
|
46409
46607
|
school?: string | undefined;
|
|
46410
46608
|
city?: string | undefined;
|
|
46609
|
+
venueName?: string | undefined;
|
|
46411
46610
|
};
|
|
46412
46611
|
timeRemainingMinutes: number;
|
|
46413
46612
|
timeRemainingSeconds: number;
|
|
@@ -46581,6 +46780,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46581
46780
|
stadiumUrl?: string | undefined;
|
|
46582
46781
|
school?: string | undefined;
|
|
46583
46782
|
city?: string | undefined;
|
|
46783
|
+
venueName?: string | undefined;
|
|
46584
46784
|
};
|
|
46585
46785
|
awayTeam: {
|
|
46586
46786
|
name: string;
|
|
@@ -46595,6 +46795,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46595
46795
|
stadiumUrl?: string | undefined;
|
|
46596
46796
|
school?: string | undefined;
|
|
46597
46797
|
city?: string | undefined;
|
|
46798
|
+
venueName?: string | undefined;
|
|
46598
46799
|
};
|
|
46599
46800
|
totalInningsRemaining: number;
|
|
46600
46801
|
innings: {
|
|
@@ -46969,6 +47170,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46969
47170
|
stadiumUrl?: string | undefined;
|
|
46970
47171
|
school?: string | undefined;
|
|
46971
47172
|
city?: string | undefined;
|
|
47173
|
+
venueName?: string | undefined;
|
|
46972
47174
|
};
|
|
46973
47175
|
awayTeam: {
|
|
46974
47176
|
name: string;
|
|
@@ -46983,6 +47185,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46983
47185
|
stadiumUrl?: string | undefined;
|
|
46984
47186
|
school?: string | undefined;
|
|
46985
47187
|
city?: string | undefined;
|
|
47188
|
+
venueName?: string | undefined;
|
|
46986
47189
|
};
|
|
46987
47190
|
seasonType: number;
|
|
46988
47191
|
possession: string | null;
|
|
@@ -47177,6 +47380,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47177
47380
|
stadiumUrl?: string | undefined;
|
|
47178
47381
|
school?: string | undefined;
|
|
47179
47382
|
city?: string | undefined;
|
|
47383
|
+
venueName?: string | undefined;
|
|
47180
47384
|
};
|
|
47181
47385
|
awayTeam: {
|
|
47182
47386
|
name: string;
|
|
@@ -47191,6 +47395,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47191
47395
|
stadiumUrl?: string | undefined;
|
|
47192
47396
|
school?: string | undefined;
|
|
47193
47397
|
city?: string | undefined;
|
|
47398
|
+
venueName?: string | undefined;
|
|
47194
47399
|
};
|
|
47195
47400
|
timeRemainingMinutes: number;
|
|
47196
47401
|
timeRemainingSeconds: number;
|
|
@@ -47377,6 +47582,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47377
47582
|
stadiumUrl?: string | undefined;
|
|
47378
47583
|
school?: string | undefined;
|
|
47379
47584
|
city?: string | undefined;
|
|
47585
|
+
venueName?: string | undefined;
|
|
47380
47586
|
};
|
|
47381
47587
|
awayTeam: {
|
|
47382
47588
|
name: string;
|
|
@@ -47391,6 +47597,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47391
47597
|
stadiumUrl?: string | undefined;
|
|
47392
47598
|
school?: string | undefined;
|
|
47393
47599
|
city?: string | undefined;
|
|
47600
|
+
venueName?: string | undefined;
|
|
47394
47601
|
};
|
|
47395
47602
|
timeRemainingMinutes: number;
|
|
47396
47603
|
timeRemainingSeconds: number;
|
|
@@ -47570,6 +47777,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47570
47777
|
stadiumUrl?: string | undefined;
|
|
47571
47778
|
school?: string | undefined;
|
|
47572
47779
|
city?: string | undefined;
|
|
47780
|
+
venueName?: string | undefined;
|
|
47573
47781
|
};
|
|
47574
47782
|
awayTeam: {
|
|
47575
47783
|
name: string;
|
|
@@ -47584,6 +47792,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47584
47792
|
stadiumUrl?: string | undefined;
|
|
47585
47793
|
school?: string | undefined;
|
|
47586
47794
|
city?: string | undefined;
|
|
47795
|
+
venueName?: string | undefined;
|
|
47587
47796
|
};
|
|
47588
47797
|
timeRemainingMinutes: number;
|
|
47589
47798
|
timeRemainingSeconds: number;
|
|
@@ -47757,6 +47966,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47757
47966
|
stadiumUrl?: string | undefined;
|
|
47758
47967
|
school?: string | undefined;
|
|
47759
47968
|
city?: string | undefined;
|
|
47969
|
+
venueName?: string | undefined;
|
|
47760
47970
|
};
|
|
47761
47971
|
awayTeam: {
|
|
47762
47972
|
name: string;
|
|
@@ -47771,6 +47981,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47771
47981
|
stadiumUrl?: string | undefined;
|
|
47772
47982
|
school?: string | undefined;
|
|
47773
47983
|
city?: string | undefined;
|
|
47984
|
+
venueName?: string | undefined;
|
|
47774
47985
|
};
|
|
47775
47986
|
totalInningsRemaining: number;
|
|
47776
47987
|
innings: {
|
|
@@ -48145,6 +48356,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48145
48356
|
stadiumUrl?: string | undefined;
|
|
48146
48357
|
school?: string | undefined;
|
|
48147
48358
|
city?: string | undefined;
|
|
48359
|
+
venueName?: string | undefined;
|
|
48148
48360
|
};
|
|
48149
48361
|
awayTeam: {
|
|
48150
48362
|
name: string;
|
|
@@ -48159,6 +48371,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48159
48371
|
stadiumUrl?: string | undefined;
|
|
48160
48372
|
school?: string | undefined;
|
|
48161
48373
|
city?: string | undefined;
|
|
48374
|
+
venueName?: string | undefined;
|
|
48162
48375
|
};
|
|
48163
48376
|
seasonType: number;
|
|
48164
48377
|
possession: string | null;
|
|
@@ -48353,6 +48566,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48353
48566
|
stadiumUrl?: string | undefined;
|
|
48354
48567
|
school?: string | undefined;
|
|
48355
48568
|
city?: string | undefined;
|
|
48569
|
+
venueName?: string | undefined;
|
|
48356
48570
|
};
|
|
48357
48571
|
awayTeam: {
|
|
48358
48572
|
name: string;
|
|
@@ -48367,6 +48581,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48367
48581
|
stadiumUrl?: string | undefined;
|
|
48368
48582
|
school?: string | undefined;
|
|
48369
48583
|
city?: string | undefined;
|
|
48584
|
+
venueName?: string | undefined;
|
|
48370
48585
|
};
|
|
48371
48586
|
timeRemainingMinutes: number;
|
|
48372
48587
|
timeRemainingSeconds: number;
|
|
@@ -48553,6 +48768,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48553
48768
|
stadiumUrl?: string | undefined;
|
|
48554
48769
|
school?: string | undefined;
|
|
48555
48770
|
city?: string | undefined;
|
|
48771
|
+
venueName?: string | undefined;
|
|
48556
48772
|
};
|
|
48557
48773
|
awayTeam: {
|
|
48558
48774
|
name: string;
|
|
@@ -48567,6 +48783,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48567
48783
|
stadiumUrl?: string | undefined;
|
|
48568
48784
|
school?: string | undefined;
|
|
48569
48785
|
city?: string | undefined;
|
|
48786
|
+
venueName?: string | undefined;
|
|
48570
48787
|
};
|
|
48571
48788
|
timeRemainingMinutes: number;
|
|
48572
48789
|
timeRemainingSeconds: number;
|