rategame-shared 1.1.178 → 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 +314 -0
- package/dist/schemas/game.js +2 -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;
|
|
@@ -4019,6 +4038,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4019
4038
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
4020
4039
|
allTeams: z.ZodOptional<z.ZodString>;
|
|
4021
4040
|
allSchools: z.ZodOptional<z.ZodString>;
|
|
4041
|
+
allCities: z.ZodOptional<z.ZodString>;
|
|
4022
4042
|
}, "strip", z.ZodTypeAny, {
|
|
4023
4043
|
status: "canceled" | "live" | "scheduled" | "final" | "postponed";
|
|
4024
4044
|
league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls";
|
|
@@ -4037,6 +4057,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4037
4057
|
scoreExtraTime?: number | undefined;
|
|
4038
4058
|
stadiumUrl?: string | undefined;
|
|
4039
4059
|
school?: string | undefined;
|
|
4060
|
+
city?: string | undefined;
|
|
4040
4061
|
};
|
|
4041
4062
|
awayTeam: {
|
|
4042
4063
|
name: string;
|
|
@@ -4050,6 +4071,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4050
4071
|
scoreExtraTime?: number | undefined;
|
|
4051
4072
|
stadiumUrl?: string | undefined;
|
|
4052
4073
|
school?: string | undefined;
|
|
4074
|
+
city?: string | undefined;
|
|
4053
4075
|
};
|
|
4054
4076
|
id?: string | undefined;
|
|
4055
4077
|
ratings?: {
|
|
@@ -4191,6 +4213,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4191
4213
|
lastPlay?: string | undefined;
|
|
4192
4214
|
allTeams?: string | undefined;
|
|
4193
4215
|
allSchools?: string | undefined;
|
|
4216
|
+
allCities?: string | undefined;
|
|
4194
4217
|
}, {
|
|
4195
4218
|
status: "canceled" | "live" | "scheduled" | "final" | "postponed";
|
|
4196
4219
|
league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls";
|
|
@@ -4209,6 +4232,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4209
4232
|
scoreExtraTime?: number | undefined;
|
|
4210
4233
|
stadiumUrl?: string | undefined;
|
|
4211
4234
|
school?: string | undefined;
|
|
4235
|
+
city?: string | undefined;
|
|
4212
4236
|
};
|
|
4213
4237
|
awayTeam: {
|
|
4214
4238
|
name: string;
|
|
@@ -4222,6 +4246,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4222
4246
|
scoreExtraTime?: number | undefined;
|
|
4223
4247
|
stadiumUrl?: string | undefined;
|
|
4224
4248
|
school?: string | undefined;
|
|
4249
|
+
city?: string | undefined;
|
|
4225
4250
|
};
|
|
4226
4251
|
id?: string | undefined;
|
|
4227
4252
|
ratings?: {
|
|
@@ -4363,6 +4388,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4363
4388
|
lastPlay?: string | undefined;
|
|
4364
4389
|
allTeams?: string | undefined;
|
|
4365
4390
|
allSchools?: string | undefined;
|
|
4391
|
+
allCities?: string | undefined;
|
|
4366
4392
|
}>;
|
|
4367
4393
|
export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
4368
4394
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -4385,6 +4411,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
4385
4411
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
4386
4412
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
4387
4413
|
school: z.ZodOptional<z.ZodString>;
|
|
4414
|
+
city: z.ZodOptional<z.ZodString>;
|
|
4388
4415
|
}, "strip", z.ZodTypeAny, {
|
|
4389
4416
|
name: string;
|
|
4390
4417
|
image: string;
|
|
@@ -4397,6 +4424,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
4397
4424
|
scoreExtraTime?: number | undefined;
|
|
4398
4425
|
stadiumUrl?: string | undefined;
|
|
4399
4426
|
school?: string | undefined;
|
|
4427
|
+
city?: string | undefined;
|
|
4400
4428
|
}, {
|
|
4401
4429
|
name: string;
|
|
4402
4430
|
image: string;
|
|
@@ -4409,6 +4437,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
4409
4437
|
scoreExtraTime?: number | undefined;
|
|
4410
4438
|
stadiumUrl?: string | undefined;
|
|
4411
4439
|
school?: string | undefined;
|
|
4440
|
+
city?: string | undefined;
|
|
4412
4441
|
}>;
|
|
4413
4442
|
awayTeam: z.ZodObject<{
|
|
4414
4443
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -4422,6 +4451,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
4422
4451
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
4423
4452
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
4424
4453
|
school: z.ZodOptional<z.ZodString>;
|
|
4454
|
+
city: z.ZodOptional<z.ZodString>;
|
|
4425
4455
|
}, "strip", z.ZodTypeAny, {
|
|
4426
4456
|
name: string;
|
|
4427
4457
|
image: string;
|
|
@@ -4434,6 +4464,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
4434
4464
|
scoreExtraTime?: number | undefined;
|
|
4435
4465
|
stadiumUrl?: string | undefined;
|
|
4436
4466
|
school?: string | undefined;
|
|
4467
|
+
city?: string | undefined;
|
|
4437
4468
|
}, {
|
|
4438
4469
|
name: string;
|
|
4439
4470
|
image: string;
|
|
@@ -4446,6 +4477,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
4446
4477
|
scoreExtraTime?: number | undefined;
|
|
4447
4478
|
stadiumUrl?: string | undefined;
|
|
4448
4479
|
school?: string | undefined;
|
|
4480
|
+
city?: string | undefined;
|
|
4449
4481
|
}>;
|
|
4450
4482
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
4451
4483
|
homeTeamWins: z.ZodNumber;
|
|
@@ -6206,6 +6238,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6206
6238
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
6207
6239
|
allTeams: z.ZodOptional<z.ZodString>;
|
|
6208
6240
|
allSchools: z.ZodOptional<z.ZodString>;
|
|
6241
|
+
allCities: z.ZodOptional<z.ZodString>;
|
|
6209
6242
|
}, {
|
|
6210
6243
|
round: z.ZodNumber;
|
|
6211
6244
|
timeRemainingMinutes: z.ZodNumber;
|
|
@@ -6247,6 +6280,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6247
6280
|
scoreExtraTime?: number | undefined;
|
|
6248
6281
|
stadiumUrl?: string | undefined;
|
|
6249
6282
|
school?: string | undefined;
|
|
6283
|
+
city?: string | undefined;
|
|
6250
6284
|
};
|
|
6251
6285
|
awayTeam: {
|
|
6252
6286
|
name: string;
|
|
@@ -6260,6 +6294,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6260
6294
|
scoreExtraTime?: number | undefined;
|
|
6261
6295
|
stadiumUrl?: string | undefined;
|
|
6262
6296
|
school?: string | undefined;
|
|
6297
|
+
city?: string | undefined;
|
|
6263
6298
|
};
|
|
6264
6299
|
timeRemainingMinutes: number;
|
|
6265
6300
|
timeRemainingSeconds: number;
|
|
@@ -6411,6 +6446,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6411
6446
|
lastPlay?: string | undefined;
|
|
6412
6447
|
allTeams?: string | undefined;
|
|
6413
6448
|
allSchools?: string | undefined;
|
|
6449
|
+
allCities?: string | undefined;
|
|
6414
6450
|
totalMinutesRemaining?: number | undefined;
|
|
6415
6451
|
period?: string | undefined;
|
|
6416
6452
|
}, {
|
|
@@ -6432,6 +6468,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6432
6468
|
scoreExtraTime?: number | undefined;
|
|
6433
6469
|
stadiumUrl?: string | undefined;
|
|
6434
6470
|
school?: string | undefined;
|
|
6471
|
+
city?: string | undefined;
|
|
6435
6472
|
};
|
|
6436
6473
|
awayTeam: {
|
|
6437
6474
|
name: string;
|
|
@@ -6445,6 +6482,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6445
6482
|
scoreExtraTime?: number | undefined;
|
|
6446
6483
|
stadiumUrl?: string | undefined;
|
|
6447
6484
|
school?: string | undefined;
|
|
6485
|
+
city?: string | undefined;
|
|
6448
6486
|
};
|
|
6449
6487
|
timeRemainingMinutes: number;
|
|
6450
6488
|
timeRemainingSeconds: number;
|
|
@@ -6596,6 +6634,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6596
6634
|
lastPlay?: string | undefined;
|
|
6597
6635
|
allTeams?: string | undefined;
|
|
6598
6636
|
allSchools?: string | undefined;
|
|
6637
|
+
allCities?: string | undefined;
|
|
6599
6638
|
totalMinutesRemaining?: number | undefined;
|
|
6600
6639
|
period?: string | undefined;
|
|
6601
6640
|
}>;
|
|
@@ -6633,6 +6672,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6633
6672
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
6634
6673
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
6635
6674
|
school: z.ZodOptional<z.ZodString>;
|
|
6675
|
+
city: z.ZodOptional<z.ZodString>;
|
|
6636
6676
|
}, "strip", z.ZodTypeAny, {
|
|
6637
6677
|
name: string;
|
|
6638
6678
|
image: string;
|
|
@@ -6645,6 +6685,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6645
6685
|
scoreExtraTime?: number | undefined;
|
|
6646
6686
|
stadiumUrl?: string | undefined;
|
|
6647
6687
|
school?: string | undefined;
|
|
6688
|
+
city?: string | undefined;
|
|
6648
6689
|
}, {
|
|
6649
6690
|
name: string;
|
|
6650
6691
|
image: string;
|
|
@@ -6657,6 +6698,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6657
6698
|
scoreExtraTime?: number | undefined;
|
|
6658
6699
|
stadiumUrl?: string | undefined;
|
|
6659
6700
|
school?: string | undefined;
|
|
6701
|
+
city?: string | undefined;
|
|
6660
6702
|
}>;
|
|
6661
6703
|
awayTeam: z.ZodObject<{
|
|
6662
6704
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -6670,6 +6712,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6670
6712
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
6671
6713
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
6672
6714
|
school: z.ZodOptional<z.ZodString>;
|
|
6715
|
+
city: z.ZodOptional<z.ZodString>;
|
|
6673
6716
|
}, "strip", z.ZodTypeAny, {
|
|
6674
6717
|
name: string;
|
|
6675
6718
|
image: string;
|
|
@@ -6682,6 +6725,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6682
6725
|
scoreExtraTime?: number | undefined;
|
|
6683
6726
|
stadiumUrl?: string | undefined;
|
|
6684
6727
|
school?: string | undefined;
|
|
6728
|
+
city?: string | undefined;
|
|
6685
6729
|
}, {
|
|
6686
6730
|
name: string;
|
|
6687
6731
|
image: string;
|
|
@@ -6694,6 +6738,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6694
6738
|
scoreExtraTime?: number | undefined;
|
|
6695
6739
|
stadiumUrl?: string | undefined;
|
|
6696
6740
|
school?: string | undefined;
|
|
6741
|
+
city?: string | undefined;
|
|
6697
6742
|
}>;
|
|
6698
6743
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
6699
6744
|
homeTeamWins: z.ZodNumber;
|
|
@@ -8454,6 +8499,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8454
8499
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
8455
8500
|
allTeams: z.ZodOptional<z.ZodString>;
|
|
8456
8501
|
allSchools: z.ZodOptional<z.ZodString>;
|
|
8502
|
+
allCities: z.ZodOptional<z.ZodString>;
|
|
8457
8503
|
}, {
|
|
8458
8504
|
totalInningsRemaining: z.ZodNumber;
|
|
8459
8505
|
innings: z.ZodArray<z.ZodObject<{
|
|
@@ -8501,6 +8547,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8501
8547
|
scoreExtraTime?: number | undefined;
|
|
8502
8548
|
stadiumUrl?: string | undefined;
|
|
8503
8549
|
school?: string | undefined;
|
|
8550
|
+
city?: string | undefined;
|
|
8504
8551
|
};
|
|
8505
8552
|
awayTeam: {
|
|
8506
8553
|
name: string;
|
|
@@ -8514,6 +8561,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8514
8561
|
scoreExtraTime?: number | undefined;
|
|
8515
8562
|
stadiumUrl?: string | undefined;
|
|
8516
8563
|
school?: string | undefined;
|
|
8564
|
+
city?: string | undefined;
|
|
8517
8565
|
};
|
|
8518
8566
|
totalInningsRemaining: number;
|
|
8519
8567
|
innings: {
|
|
@@ -8669,6 +8717,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8669
8717
|
lastPlay?: string | undefined;
|
|
8670
8718
|
allTeams?: string | undefined;
|
|
8671
8719
|
allSchools?: string | undefined;
|
|
8720
|
+
allCities?: string | undefined;
|
|
8672
8721
|
inningHalf?: "T" | "B" | undefined;
|
|
8673
8722
|
savingPitcher?: string | undefined;
|
|
8674
8723
|
outs?: number | undefined;
|
|
@@ -8693,6 +8742,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8693
8742
|
scoreExtraTime?: number | undefined;
|
|
8694
8743
|
stadiumUrl?: string | undefined;
|
|
8695
8744
|
school?: string | undefined;
|
|
8745
|
+
city?: string | undefined;
|
|
8696
8746
|
};
|
|
8697
8747
|
awayTeam: {
|
|
8698
8748
|
name: string;
|
|
@@ -8706,6 +8756,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8706
8756
|
scoreExtraTime?: number | undefined;
|
|
8707
8757
|
stadiumUrl?: string | undefined;
|
|
8708
8758
|
school?: string | undefined;
|
|
8759
|
+
city?: string | undefined;
|
|
8709
8760
|
};
|
|
8710
8761
|
totalInningsRemaining: number;
|
|
8711
8762
|
innings: {
|
|
@@ -8861,6 +8912,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8861
8912
|
lastPlay?: string | undefined;
|
|
8862
8913
|
allTeams?: string | undefined;
|
|
8863
8914
|
allSchools?: string | undefined;
|
|
8915
|
+
allCities?: string | undefined;
|
|
8864
8916
|
inningHalf?: "T" | "B" | undefined;
|
|
8865
8917
|
savingPitcher?: string | undefined;
|
|
8866
8918
|
outs?: number | undefined;
|
|
@@ -8889,6 +8941,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8889
8941
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
8890
8942
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
8891
8943
|
school: z.ZodOptional<z.ZodString>;
|
|
8944
|
+
city: z.ZodOptional<z.ZodString>;
|
|
8892
8945
|
}, "strip", z.ZodTypeAny, {
|
|
8893
8946
|
name: string;
|
|
8894
8947
|
image: string;
|
|
@@ -8901,6 +8954,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8901
8954
|
scoreExtraTime?: number | undefined;
|
|
8902
8955
|
stadiumUrl?: string | undefined;
|
|
8903
8956
|
school?: string | undefined;
|
|
8957
|
+
city?: string | undefined;
|
|
8904
8958
|
}, {
|
|
8905
8959
|
name: string;
|
|
8906
8960
|
image: string;
|
|
@@ -8913,6 +8967,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8913
8967
|
scoreExtraTime?: number | undefined;
|
|
8914
8968
|
stadiumUrl?: string | undefined;
|
|
8915
8969
|
school?: string | undefined;
|
|
8970
|
+
city?: string | undefined;
|
|
8916
8971
|
}>;
|
|
8917
8972
|
awayTeam: z.ZodObject<{
|
|
8918
8973
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -8926,6 +8981,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8926
8981
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
8927
8982
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
8928
8983
|
school: z.ZodOptional<z.ZodString>;
|
|
8984
|
+
city: z.ZodOptional<z.ZodString>;
|
|
8929
8985
|
}, "strip", z.ZodTypeAny, {
|
|
8930
8986
|
name: string;
|
|
8931
8987
|
image: string;
|
|
@@ -8938,6 +8994,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8938
8994
|
scoreExtraTime?: number | undefined;
|
|
8939
8995
|
stadiumUrl?: string | undefined;
|
|
8940
8996
|
school?: string | undefined;
|
|
8997
|
+
city?: string | undefined;
|
|
8941
8998
|
}, {
|
|
8942
8999
|
name: string;
|
|
8943
9000
|
image: string;
|
|
@@ -8950,6 +9007,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8950
9007
|
scoreExtraTime?: number | undefined;
|
|
8951
9008
|
stadiumUrl?: string | undefined;
|
|
8952
9009
|
school?: string | undefined;
|
|
9010
|
+
city?: string | undefined;
|
|
8953
9011
|
}>;
|
|
8954
9012
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
8955
9013
|
homeTeamWins: z.ZodNumber;
|
|
@@ -10710,6 +10768,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10710
10768
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
10711
10769
|
allTeams: z.ZodOptional<z.ZodString>;
|
|
10712
10770
|
allSchools: z.ZodOptional<z.ZodString>;
|
|
10771
|
+
allCities: z.ZodOptional<z.ZodString>;
|
|
10713
10772
|
}, {
|
|
10714
10773
|
league: z.ZodUnion<[z.ZodLiteral<"epl">, z.ZodLiteral<"mls">]>;
|
|
10715
10774
|
week: z.ZodNumber;
|
|
@@ -10732,6 +10791,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10732
10791
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
10733
10792
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
10734
10793
|
school: z.ZodOptional<z.ZodString>;
|
|
10794
|
+
city: z.ZodOptional<z.ZodString>;
|
|
10735
10795
|
}, {
|
|
10736
10796
|
scorePeriod1: z.ZodNumber;
|
|
10737
10797
|
scorePeriod2: z.ZodNumber;
|
|
@@ -10753,6 +10813,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10753
10813
|
teamCode?: string | undefined;
|
|
10754
10814
|
stadiumUrl?: string | undefined;
|
|
10755
10815
|
school?: string | undefined;
|
|
10816
|
+
city?: string | undefined;
|
|
10756
10817
|
venueName?: string | undefined;
|
|
10757
10818
|
}, {
|
|
10758
10819
|
name: string;
|
|
@@ -10769,6 +10830,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10769
10830
|
teamCode?: string | undefined;
|
|
10770
10831
|
stadiumUrl?: string | undefined;
|
|
10771
10832
|
school?: string | undefined;
|
|
10833
|
+
city?: string | undefined;
|
|
10772
10834
|
venueName?: string | undefined;
|
|
10773
10835
|
}>;
|
|
10774
10836
|
awayTeam: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -10783,6 +10845,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10783
10845
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
10784
10846
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
10785
10847
|
school: z.ZodOptional<z.ZodString>;
|
|
10848
|
+
city: z.ZodOptional<z.ZodString>;
|
|
10786
10849
|
}, {
|
|
10787
10850
|
scorePeriod1: z.ZodNumber;
|
|
10788
10851
|
scorePeriod2: z.ZodNumber;
|
|
@@ -10804,6 +10867,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10804
10867
|
teamCode?: string | undefined;
|
|
10805
10868
|
stadiumUrl?: string | undefined;
|
|
10806
10869
|
school?: string | undefined;
|
|
10870
|
+
city?: string | undefined;
|
|
10807
10871
|
venueName?: string | undefined;
|
|
10808
10872
|
}, {
|
|
10809
10873
|
name: string;
|
|
@@ -10820,6 +10884,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10820
10884
|
teamCode?: string | undefined;
|
|
10821
10885
|
stadiumUrl?: string | undefined;
|
|
10822
10886
|
school?: string | undefined;
|
|
10887
|
+
city?: string | undefined;
|
|
10823
10888
|
venueName?: string | undefined;
|
|
10824
10889
|
}>;
|
|
10825
10890
|
hadExtraTime: z.ZodBoolean;
|
|
@@ -10845,6 +10910,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10845
10910
|
teamCode?: string | undefined;
|
|
10846
10911
|
stadiumUrl?: string | undefined;
|
|
10847
10912
|
school?: string | undefined;
|
|
10913
|
+
city?: string | undefined;
|
|
10848
10914
|
venueName?: string | undefined;
|
|
10849
10915
|
};
|
|
10850
10916
|
awayTeam: {
|
|
@@ -10862,6 +10928,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10862
10928
|
teamCode?: string | undefined;
|
|
10863
10929
|
stadiumUrl?: string | undefined;
|
|
10864
10930
|
school?: string | undefined;
|
|
10931
|
+
city?: string | undefined;
|
|
10865
10932
|
venueName?: string | undefined;
|
|
10866
10933
|
};
|
|
10867
10934
|
period: string;
|
|
@@ -11012,6 +11079,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11012
11079
|
lastPlay?: string | undefined;
|
|
11013
11080
|
allTeams?: string | undefined;
|
|
11014
11081
|
allSchools?: string | undefined;
|
|
11082
|
+
allCities?: string | undefined;
|
|
11015
11083
|
}, {
|
|
11016
11084
|
status: "canceled" | "live" | "scheduled" | "final" | "postponed";
|
|
11017
11085
|
week: number;
|
|
@@ -11034,6 +11102,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11034
11102
|
teamCode?: string | undefined;
|
|
11035
11103
|
stadiumUrl?: string | undefined;
|
|
11036
11104
|
school?: string | undefined;
|
|
11105
|
+
city?: string | undefined;
|
|
11037
11106
|
venueName?: string | undefined;
|
|
11038
11107
|
};
|
|
11039
11108
|
awayTeam: {
|
|
@@ -11051,6 +11120,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11051
11120
|
teamCode?: string | undefined;
|
|
11052
11121
|
stadiumUrl?: string | undefined;
|
|
11053
11122
|
school?: string | undefined;
|
|
11123
|
+
city?: string | undefined;
|
|
11054
11124
|
venueName?: string | undefined;
|
|
11055
11125
|
};
|
|
11056
11126
|
period: string;
|
|
@@ -11201,6 +11271,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11201
11271
|
lastPlay?: string | undefined;
|
|
11202
11272
|
allTeams?: string | undefined;
|
|
11203
11273
|
allSchools?: string | undefined;
|
|
11274
|
+
allCities?: string | undefined;
|
|
11204
11275
|
}>;
|
|
11205
11276
|
export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
11206
11277
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -11223,6 +11294,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
11223
11294
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
11224
11295
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
11225
11296
|
school: z.ZodOptional<z.ZodString>;
|
|
11297
|
+
city: z.ZodOptional<z.ZodString>;
|
|
11226
11298
|
}, "strip", z.ZodTypeAny, {
|
|
11227
11299
|
name: string;
|
|
11228
11300
|
image: string;
|
|
@@ -11235,6 +11307,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
11235
11307
|
scoreExtraTime?: number | undefined;
|
|
11236
11308
|
stadiumUrl?: string | undefined;
|
|
11237
11309
|
school?: string | undefined;
|
|
11310
|
+
city?: string | undefined;
|
|
11238
11311
|
}, {
|
|
11239
11312
|
name: string;
|
|
11240
11313
|
image: string;
|
|
@@ -11247,6 +11320,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
11247
11320
|
scoreExtraTime?: number | undefined;
|
|
11248
11321
|
stadiumUrl?: string | undefined;
|
|
11249
11322
|
school?: string | undefined;
|
|
11323
|
+
city?: string | undefined;
|
|
11250
11324
|
}>;
|
|
11251
11325
|
awayTeam: z.ZodObject<{
|
|
11252
11326
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -11260,6 +11334,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
11260
11334
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
11261
11335
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
11262
11336
|
school: z.ZodOptional<z.ZodString>;
|
|
11337
|
+
city: z.ZodOptional<z.ZodString>;
|
|
11263
11338
|
}, "strip", z.ZodTypeAny, {
|
|
11264
11339
|
name: string;
|
|
11265
11340
|
image: string;
|
|
@@ -11272,6 +11347,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
11272
11347
|
scoreExtraTime?: number | undefined;
|
|
11273
11348
|
stadiumUrl?: string | undefined;
|
|
11274
11349
|
school?: string | undefined;
|
|
11350
|
+
city?: string | undefined;
|
|
11275
11351
|
}, {
|
|
11276
11352
|
name: string;
|
|
11277
11353
|
image: string;
|
|
@@ -11284,6 +11360,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
11284
11360
|
scoreExtraTime?: number | undefined;
|
|
11285
11361
|
stadiumUrl?: string | undefined;
|
|
11286
11362
|
school?: string | undefined;
|
|
11363
|
+
city?: string | undefined;
|
|
11287
11364
|
}>;
|
|
11288
11365
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
11289
11366
|
homeTeamWins: z.ZodNumber;
|
|
@@ -13044,6 +13121,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13044
13121
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
13045
13122
|
allTeams: z.ZodOptional<z.ZodString>;
|
|
13046
13123
|
allSchools: z.ZodOptional<z.ZodString>;
|
|
13124
|
+
allCities: z.ZodOptional<z.ZodString>;
|
|
13047
13125
|
}, {
|
|
13048
13126
|
possession: z.ZodNullable<z.ZodString>;
|
|
13049
13127
|
down: z.ZodNullable<z.ZodNumber>;
|
|
@@ -13122,6 +13200,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13122
13200
|
scoreExtraTime?: number | undefined;
|
|
13123
13201
|
stadiumUrl?: string | undefined;
|
|
13124
13202
|
school?: string | undefined;
|
|
13203
|
+
city?: string | undefined;
|
|
13125
13204
|
};
|
|
13126
13205
|
awayTeam: {
|
|
13127
13206
|
name: string;
|
|
@@ -13135,6 +13214,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13135
13214
|
scoreExtraTime?: number | undefined;
|
|
13136
13215
|
stadiumUrl?: string | undefined;
|
|
13137
13216
|
school?: string | undefined;
|
|
13217
|
+
city?: string | undefined;
|
|
13138
13218
|
};
|
|
13139
13219
|
seasonType: number;
|
|
13140
13220
|
possession: string | null;
|
|
@@ -13296,6 +13376,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13296
13376
|
lastPlay?: string | undefined;
|
|
13297
13377
|
allTeams?: string | undefined;
|
|
13298
13378
|
allSchools?: string | undefined;
|
|
13379
|
+
allCities?: string | undefined;
|
|
13299
13380
|
stadium?: {
|
|
13300
13381
|
StadiumID: number;
|
|
13301
13382
|
Name: string;
|
|
@@ -13327,6 +13408,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13327
13408
|
scoreExtraTime?: number | undefined;
|
|
13328
13409
|
stadiumUrl?: string | undefined;
|
|
13329
13410
|
school?: string | undefined;
|
|
13411
|
+
city?: string | undefined;
|
|
13330
13412
|
};
|
|
13331
13413
|
awayTeam: {
|
|
13332
13414
|
name: string;
|
|
@@ -13340,6 +13422,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13340
13422
|
scoreExtraTime?: number | undefined;
|
|
13341
13423
|
stadiumUrl?: string | undefined;
|
|
13342
13424
|
school?: string | undefined;
|
|
13425
|
+
city?: string | undefined;
|
|
13343
13426
|
};
|
|
13344
13427
|
seasonType: number;
|
|
13345
13428
|
possession: string | null;
|
|
@@ -13501,6 +13584,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13501
13584
|
lastPlay?: string | undefined;
|
|
13502
13585
|
allTeams?: string | undefined;
|
|
13503
13586
|
allSchools?: string | undefined;
|
|
13587
|
+
allCities?: string | undefined;
|
|
13504
13588
|
stadium?: {
|
|
13505
13589
|
StadiumID: number;
|
|
13506
13590
|
Name: string;
|
|
@@ -13535,6 +13619,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13535
13619
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
13536
13620
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
13537
13621
|
school: z.ZodOptional<z.ZodString>;
|
|
13622
|
+
city: z.ZodOptional<z.ZodString>;
|
|
13538
13623
|
}, "strip", z.ZodTypeAny, {
|
|
13539
13624
|
name: string;
|
|
13540
13625
|
image: string;
|
|
@@ -13547,6 +13632,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13547
13632
|
scoreExtraTime?: number | undefined;
|
|
13548
13633
|
stadiumUrl?: string | undefined;
|
|
13549
13634
|
school?: string | undefined;
|
|
13635
|
+
city?: string | undefined;
|
|
13550
13636
|
}, {
|
|
13551
13637
|
name: string;
|
|
13552
13638
|
image: string;
|
|
@@ -13559,6 +13645,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13559
13645
|
scoreExtraTime?: number | undefined;
|
|
13560
13646
|
stadiumUrl?: string | undefined;
|
|
13561
13647
|
school?: string | undefined;
|
|
13648
|
+
city?: string | undefined;
|
|
13562
13649
|
}>;
|
|
13563
13650
|
awayTeam: z.ZodObject<{
|
|
13564
13651
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -13572,6 +13659,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13572
13659
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
13573
13660
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
13574
13661
|
school: z.ZodOptional<z.ZodString>;
|
|
13662
|
+
city: z.ZodOptional<z.ZodString>;
|
|
13575
13663
|
}, "strip", z.ZodTypeAny, {
|
|
13576
13664
|
name: string;
|
|
13577
13665
|
image: string;
|
|
@@ -13584,6 +13672,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13584
13672
|
scoreExtraTime?: number | undefined;
|
|
13585
13673
|
stadiumUrl?: string | undefined;
|
|
13586
13674
|
school?: string | undefined;
|
|
13675
|
+
city?: string | undefined;
|
|
13587
13676
|
}, {
|
|
13588
13677
|
name: string;
|
|
13589
13678
|
image: string;
|
|
@@ -13596,6 +13685,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13596
13685
|
scoreExtraTime?: number | undefined;
|
|
13597
13686
|
stadiumUrl?: string | undefined;
|
|
13598
13687
|
school?: string | undefined;
|
|
13688
|
+
city?: string | undefined;
|
|
13599
13689
|
}>;
|
|
13600
13690
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
13601
13691
|
homeTeamWins: z.ZodNumber;
|
|
@@ -15356,6 +15446,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
15356
15446
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
15357
15447
|
allTeams: z.ZodOptional<z.ZodString>;
|
|
15358
15448
|
allSchools: z.ZodOptional<z.ZodString>;
|
|
15449
|
+
allCities: z.ZodOptional<z.ZodString>;
|
|
15359
15450
|
}, {
|
|
15360
15451
|
possession: z.ZodNullable<z.ZodString>;
|
|
15361
15452
|
down: z.ZodNullable<z.ZodNumber>;
|
|
@@ -15430,6 +15521,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
15430
15521
|
scoreExtraTime?: number | undefined;
|
|
15431
15522
|
stadiumUrl?: string | undefined;
|
|
15432
15523
|
school?: string | undefined;
|
|
15524
|
+
city?: string | undefined;
|
|
15433
15525
|
};
|
|
15434
15526
|
awayTeam: {
|
|
15435
15527
|
name: string;
|
|
@@ -15443,6 +15535,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
15443
15535
|
scoreExtraTime?: number | undefined;
|
|
15444
15536
|
stadiumUrl?: string | undefined;
|
|
15445
15537
|
school?: string | undefined;
|
|
15538
|
+
city?: string | undefined;
|
|
15446
15539
|
};
|
|
15447
15540
|
timeRemainingMinutes: number;
|
|
15448
15541
|
timeRemainingSeconds: number;
|
|
@@ -15599,6 +15692,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
15599
15692
|
lastPlay?: string | undefined;
|
|
15600
15693
|
allTeams?: string | undefined;
|
|
15601
15694
|
allSchools?: string | undefined;
|
|
15695
|
+
allCities?: string | undefined;
|
|
15602
15696
|
stadium?: {
|
|
15603
15697
|
StadiumID: number;
|
|
15604
15698
|
Name: string;
|
|
@@ -15628,6 +15722,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
15628
15722
|
scoreExtraTime?: number | undefined;
|
|
15629
15723
|
stadiumUrl?: string | undefined;
|
|
15630
15724
|
school?: string | undefined;
|
|
15725
|
+
city?: string | undefined;
|
|
15631
15726
|
};
|
|
15632
15727
|
awayTeam: {
|
|
15633
15728
|
name: string;
|
|
@@ -15641,6 +15736,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
15641
15736
|
scoreExtraTime?: number | undefined;
|
|
15642
15737
|
stadiumUrl?: string | undefined;
|
|
15643
15738
|
school?: string | undefined;
|
|
15739
|
+
city?: string | undefined;
|
|
15644
15740
|
};
|
|
15645
15741
|
timeRemainingMinutes: number;
|
|
15646
15742
|
timeRemainingSeconds: number;
|
|
@@ -15797,6 +15893,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
15797
15893
|
lastPlay?: string | undefined;
|
|
15798
15894
|
allTeams?: string | undefined;
|
|
15799
15895
|
allSchools?: string | undefined;
|
|
15896
|
+
allCities?: string | undefined;
|
|
15800
15897
|
stadium?: {
|
|
15801
15898
|
StadiumID: number;
|
|
15802
15899
|
Name: string;
|
|
@@ -15829,6 +15926,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
15829
15926
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
15830
15927
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
15831
15928
|
school: z.ZodOptional<z.ZodString>;
|
|
15929
|
+
city: z.ZodOptional<z.ZodString>;
|
|
15832
15930
|
}, "strip", z.ZodTypeAny, {
|
|
15833
15931
|
name: string;
|
|
15834
15932
|
image: string;
|
|
@@ -15841,6 +15939,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
15841
15939
|
scoreExtraTime?: number | undefined;
|
|
15842
15940
|
stadiumUrl?: string | undefined;
|
|
15843
15941
|
school?: string | undefined;
|
|
15942
|
+
city?: string | undefined;
|
|
15844
15943
|
}, {
|
|
15845
15944
|
name: string;
|
|
15846
15945
|
image: string;
|
|
@@ -15853,6 +15952,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
15853
15952
|
scoreExtraTime?: number | undefined;
|
|
15854
15953
|
stadiumUrl?: string | undefined;
|
|
15855
15954
|
school?: string | undefined;
|
|
15955
|
+
city?: string | undefined;
|
|
15856
15956
|
}>;
|
|
15857
15957
|
awayTeam: z.ZodObject<{
|
|
15858
15958
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -15866,6 +15966,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
15866
15966
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
15867
15967
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
15868
15968
|
school: z.ZodOptional<z.ZodString>;
|
|
15969
|
+
city: z.ZodOptional<z.ZodString>;
|
|
15869
15970
|
}, "strip", z.ZodTypeAny, {
|
|
15870
15971
|
name: string;
|
|
15871
15972
|
image: string;
|
|
@@ -15878,6 +15979,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
15878
15979
|
scoreExtraTime?: number | undefined;
|
|
15879
15980
|
stadiumUrl?: string | undefined;
|
|
15880
15981
|
school?: string | undefined;
|
|
15982
|
+
city?: string | undefined;
|
|
15881
15983
|
}, {
|
|
15882
15984
|
name: string;
|
|
15883
15985
|
image: string;
|
|
@@ -15890,6 +15992,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
15890
15992
|
scoreExtraTime?: number | undefined;
|
|
15891
15993
|
stadiumUrl?: string | undefined;
|
|
15892
15994
|
school?: string | undefined;
|
|
15995
|
+
city?: string | undefined;
|
|
15893
15996
|
}>;
|
|
15894
15997
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
15895
15998
|
homeTeamWins: z.ZodNumber;
|
|
@@ -17650,6 +17753,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
17650
17753
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
17651
17754
|
allTeams: z.ZodOptional<z.ZodString>;
|
|
17652
17755
|
allSchools: z.ZodOptional<z.ZodString>;
|
|
17756
|
+
allCities: z.ZodOptional<z.ZodString>;
|
|
17653
17757
|
}, {
|
|
17654
17758
|
seasonType: z.ZodNumber;
|
|
17655
17759
|
season: z.ZodString;
|
|
@@ -17676,6 +17780,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
17676
17780
|
scoreExtraTime?: number | undefined;
|
|
17677
17781
|
stadiumUrl?: string | undefined;
|
|
17678
17782
|
school?: string | undefined;
|
|
17783
|
+
city?: string | undefined;
|
|
17679
17784
|
};
|
|
17680
17785
|
awayTeam: {
|
|
17681
17786
|
name: string;
|
|
@@ -17689,6 +17794,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
17689
17794
|
scoreExtraTime?: number | undefined;
|
|
17690
17795
|
stadiumUrl?: string | undefined;
|
|
17691
17796
|
school?: string | undefined;
|
|
17797
|
+
city?: string | undefined;
|
|
17692
17798
|
};
|
|
17693
17799
|
timeRemainingMinutes: number;
|
|
17694
17800
|
timeRemainingSeconds: number;
|
|
@@ -17836,6 +17942,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
17836
17942
|
lastPlay?: string | undefined;
|
|
17837
17943
|
allTeams?: string | undefined;
|
|
17838
17944
|
allSchools?: string | undefined;
|
|
17945
|
+
allCities?: string | undefined;
|
|
17839
17946
|
}, {
|
|
17840
17947
|
status: "canceled" | "live" | "scheduled" | "final" | "postponed";
|
|
17841
17948
|
league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls";
|
|
@@ -17854,6 +17961,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
17854
17961
|
scoreExtraTime?: number | undefined;
|
|
17855
17962
|
stadiumUrl?: string | undefined;
|
|
17856
17963
|
school?: string | undefined;
|
|
17964
|
+
city?: string | undefined;
|
|
17857
17965
|
};
|
|
17858
17966
|
awayTeam: {
|
|
17859
17967
|
name: string;
|
|
@@ -17867,6 +17975,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
17867
17975
|
scoreExtraTime?: number | undefined;
|
|
17868
17976
|
stadiumUrl?: string | undefined;
|
|
17869
17977
|
school?: string | undefined;
|
|
17978
|
+
city?: string | undefined;
|
|
17870
17979
|
};
|
|
17871
17980
|
timeRemainingMinutes: number;
|
|
17872
17981
|
timeRemainingSeconds: number;
|
|
@@ -18014,6 +18123,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
18014
18123
|
lastPlay?: string | undefined;
|
|
18015
18124
|
allTeams?: string | undefined;
|
|
18016
18125
|
allSchools?: string | undefined;
|
|
18126
|
+
allCities?: string | undefined;
|
|
18017
18127
|
}>;
|
|
18018
18128
|
export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
18019
18129
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -18036,6 +18146,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
18036
18146
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
18037
18147
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
18038
18148
|
school: z.ZodOptional<z.ZodString>;
|
|
18149
|
+
city: z.ZodOptional<z.ZodString>;
|
|
18039
18150
|
}, "strip", z.ZodTypeAny, {
|
|
18040
18151
|
name: string;
|
|
18041
18152
|
image: string;
|
|
@@ -18048,6 +18159,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
18048
18159
|
scoreExtraTime?: number | undefined;
|
|
18049
18160
|
stadiumUrl?: string | undefined;
|
|
18050
18161
|
school?: string | undefined;
|
|
18162
|
+
city?: string | undefined;
|
|
18051
18163
|
}, {
|
|
18052
18164
|
name: string;
|
|
18053
18165
|
image: string;
|
|
@@ -18060,6 +18172,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
18060
18172
|
scoreExtraTime?: number | undefined;
|
|
18061
18173
|
stadiumUrl?: string | undefined;
|
|
18062
18174
|
school?: string | undefined;
|
|
18175
|
+
city?: string | undefined;
|
|
18063
18176
|
}>;
|
|
18064
18177
|
awayTeam: z.ZodObject<{
|
|
18065
18178
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -18073,6 +18186,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
18073
18186
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
18074
18187
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
18075
18188
|
school: z.ZodOptional<z.ZodString>;
|
|
18189
|
+
city: z.ZodOptional<z.ZodString>;
|
|
18076
18190
|
}, "strip", z.ZodTypeAny, {
|
|
18077
18191
|
name: string;
|
|
18078
18192
|
image: string;
|
|
@@ -18085,6 +18199,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
18085
18199
|
scoreExtraTime?: number | undefined;
|
|
18086
18200
|
stadiumUrl?: string | undefined;
|
|
18087
18201
|
school?: string | undefined;
|
|
18202
|
+
city?: string | undefined;
|
|
18088
18203
|
}, {
|
|
18089
18204
|
name: string;
|
|
18090
18205
|
image: string;
|
|
@@ -18097,6 +18212,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
18097
18212
|
scoreExtraTime?: number | undefined;
|
|
18098
18213
|
stadiumUrl?: string | undefined;
|
|
18099
18214
|
school?: string | undefined;
|
|
18215
|
+
city?: string | undefined;
|
|
18100
18216
|
}>;
|
|
18101
18217
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
18102
18218
|
homeTeamWins: z.ZodNumber;
|
|
@@ -19857,6 +19973,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
19857
19973
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
19858
19974
|
allTeams: z.ZodOptional<z.ZodString>;
|
|
19859
19975
|
allSchools: z.ZodOptional<z.ZodString>;
|
|
19976
|
+
allCities: z.ZodOptional<z.ZodString>;
|
|
19860
19977
|
}, {
|
|
19861
19978
|
round: z.ZodNumber;
|
|
19862
19979
|
timeRemainingMinutes: z.ZodNumber;
|
|
@@ -19898,6 +20015,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
19898
20015
|
scoreExtraTime?: number | undefined;
|
|
19899
20016
|
stadiumUrl?: string | undefined;
|
|
19900
20017
|
school?: string | undefined;
|
|
20018
|
+
city?: string | undefined;
|
|
19901
20019
|
};
|
|
19902
20020
|
awayTeam: {
|
|
19903
20021
|
name: string;
|
|
@@ -19911,6 +20029,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
19911
20029
|
scoreExtraTime?: number | undefined;
|
|
19912
20030
|
stadiumUrl?: string | undefined;
|
|
19913
20031
|
school?: string | undefined;
|
|
20032
|
+
city?: string | undefined;
|
|
19914
20033
|
};
|
|
19915
20034
|
timeRemainingMinutes: number;
|
|
19916
20035
|
timeRemainingSeconds: number;
|
|
@@ -20062,6 +20181,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20062
20181
|
lastPlay?: string | undefined;
|
|
20063
20182
|
allTeams?: string | undefined;
|
|
20064
20183
|
allSchools?: string | undefined;
|
|
20184
|
+
allCities?: string | undefined;
|
|
20065
20185
|
totalMinutesRemaining?: number | undefined;
|
|
20066
20186
|
period?: string | undefined;
|
|
20067
20187
|
}, {
|
|
@@ -20083,6 +20203,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20083
20203
|
scoreExtraTime?: number | undefined;
|
|
20084
20204
|
stadiumUrl?: string | undefined;
|
|
20085
20205
|
school?: string | undefined;
|
|
20206
|
+
city?: string | undefined;
|
|
20086
20207
|
};
|
|
20087
20208
|
awayTeam: {
|
|
20088
20209
|
name: string;
|
|
@@ -20096,6 +20217,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20096
20217
|
scoreExtraTime?: number | undefined;
|
|
20097
20218
|
stadiumUrl?: string | undefined;
|
|
20098
20219
|
school?: string | undefined;
|
|
20220
|
+
city?: string | undefined;
|
|
20099
20221
|
};
|
|
20100
20222
|
timeRemainingMinutes: number;
|
|
20101
20223
|
timeRemainingSeconds: number;
|
|
@@ -20247,6 +20369,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20247
20369
|
lastPlay?: string | undefined;
|
|
20248
20370
|
allTeams?: string | undefined;
|
|
20249
20371
|
allSchools?: string | undefined;
|
|
20372
|
+
allCities?: string | undefined;
|
|
20250
20373
|
totalMinutesRemaining?: number | undefined;
|
|
20251
20374
|
period?: string | undefined;
|
|
20252
20375
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -20270,6 +20393,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20270
20393
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
20271
20394
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
20272
20395
|
school: z.ZodOptional<z.ZodString>;
|
|
20396
|
+
city: z.ZodOptional<z.ZodString>;
|
|
20273
20397
|
}, "strip", z.ZodTypeAny, {
|
|
20274
20398
|
name: string;
|
|
20275
20399
|
image: string;
|
|
@@ -20282,6 +20406,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20282
20406
|
scoreExtraTime?: number | undefined;
|
|
20283
20407
|
stadiumUrl?: string | undefined;
|
|
20284
20408
|
school?: string | undefined;
|
|
20409
|
+
city?: string | undefined;
|
|
20285
20410
|
}, {
|
|
20286
20411
|
name: string;
|
|
20287
20412
|
image: string;
|
|
@@ -20294,6 +20419,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20294
20419
|
scoreExtraTime?: number | undefined;
|
|
20295
20420
|
stadiumUrl?: string | undefined;
|
|
20296
20421
|
school?: string | undefined;
|
|
20422
|
+
city?: string | undefined;
|
|
20297
20423
|
}>;
|
|
20298
20424
|
awayTeam: z.ZodObject<{
|
|
20299
20425
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -20307,6 +20433,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20307
20433
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
20308
20434
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
20309
20435
|
school: z.ZodOptional<z.ZodString>;
|
|
20436
|
+
city: z.ZodOptional<z.ZodString>;
|
|
20310
20437
|
}, "strip", z.ZodTypeAny, {
|
|
20311
20438
|
name: string;
|
|
20312
20439
|
image: string;
|
|
@@ -20319,6 +20446,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20319
20446
|
scoreExtraTime?: number | undefined;
|
|
20320
20447
|
stadiumUrl?: string | undefined;
|
|
20321
20448
|
school?: string | undefined;
|
|
20449
|
+
city?: string | undefined;
|
|
20322
20450
|
}, {
|
|
20323
20451
|
name: string;
|
|
20324
20452
|
image: string;
|
|
@@ -20331,6 +20459,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20331
20459
|
scoreExtraTime?: number | undefined;
|
|
20332
20460
|
stadiumUrl?: string | undefined;
|
|
20333
20461
|
school?: string | undefined;
|
|
20462
|
+
city?: string | undefined;
|
|
20334
20463
|
}>;
|
|
20335
20464
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
20336
20465
|
homeTeamWins: z.ZodNumber;
|
|
@@ -22091,6 +22220,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22091
22220
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
22092
22221
|
allTeams: z.ZodOptional<z.ZodString>;
|
|
22093
22222
|
allSchools: z.ZodOptional<z.ZodString>;
|
|
22223
|
+
allCities: z.ZodOptional<z.ZodString>;
|
|
22094
22224
|
}, {
|
|
22095
22225
|
totalInningsRemaining: z.ZodNumber;
|
|
22096
22226
|
innings: z.ZodArray<z.ZodObject<{
|
|
@@ -22138,6 +22268,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22138
22268
|
scoreExtraTime?: number | undefined;
|
|
22139
22269
|
stadiumUrl?: string | undefined;
|
|
22140
22270
|
school?: string | undefined;
|
|
22271
|
+
city?: string | undefined;
|
|
22141
22272
|
};
|
|
22142
22273
|
awayTeam: {
|
|
22143
22274
|
name: string;
|
|
@@ -22151,6 +22282,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22151
22282
|
scoreExtraTime?: number | undefined;
|
|
22152
22283
|
stadiumUrl?: string | undefined;
|
|
22153
22284
|
school?: string | undefined;
|
|
22285
|
+
city?: string | undefined;
|
|
22154
22286
|
};
|
|
22155
22287
|
totalInningsRemaining: number;
|
|
22156
22288
|
innings: {
|
|
@@ -22306,6 +22438,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22306
22438
|
lastPlay?: string | undefined;
|
|
22307
22439
|
allTeams?: string | undefined;
|
|
22308
22440
|
allSchools?: string | undefined;
|
|
22441
|
+
allCities?: string | undefined;
|
|
22309
22442
|
inningHalf?: "T" | "B" | undefined;
|
|
22310
22443
|
savingPitcher?: string | undefined;
|
|
22311
22444
|
outs?: number | undefined;
|
|
@@ -22330,6 +22463,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22330
22463
|
scoreExtraTime?: number | undefined;
|
|
22331
22464
|
stadiumUrl?: string | undefined;
|
|
22332
22465
|
school?: string | undefined;
|
|
22466
|
+
city?: string | undefined;
|
|
22333
22467
|
};
|
|
22334
22468
|
awayTeam: {
|
|
22335
22469
|
name: string;
|
|
@@ -22343,6 +22477,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22343
22477
|
scoreExtraTime?: number | undefined;
|
|
22344
22478
|
stadiumUrl?: string | undefined;
|
|
22345
22479
|
school?: string | undefined;
|
|
22480
|
+
city?: string | undefined;
|
|
22346
22481
|
};
|
|
22347
22482
|
totalInningsRemaining: number;
|
|
22348
22483
|
innings: {
|
|
@@ -22498,6 +22633,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22498
22633
|
lastPlay?: string | undefined;
|
|
22499
22634
|
allTeams?: string | undefined;
|
|
22500
22635
|
allSchools?: string | undefined;
|
|
22636
|
+
allCities?: string | undefined;
|
|
22501
22637
|
inningHalf?: "T" | "B" | undefined;
|
|
22502
22638
|
savingPitcher?: string | undefined;
|
|
22503
22639
|
outs?: number | undefined;
|
|
@@ -22525,6 +22661,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22525
22661
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
22526
22662
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
22527
22663
|
school: z.ZodOptional<z.ZodString>;
|
|
22664
|
+
city: z.ZodOptional<z.ZodString>;
|
|
22528
22665
|
}, "strip", z.ZodTypeAny, {
|
|
22529
22666
|
name: string;
|
|
22530
22667
|
image: string;
|
|
@@ -22537,6 +22674,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22537
22674
|
scoreExtraTime?: number | undefined;
|
|
22538
22675
|
stadiumUrl?: string | undefined;
|
|
22539
22676
|
school?: string | undefined;
|
|
22677
|
+
city?: string | undefined;
|
|
22540
22678
|
}, {
|
|
22541
22679
|
name: string;
|
|
22542
22680
|
image: string;
|
|
@@ -22549,6 +22687,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22549
22687
|
scoreExtraTime?: number | undefined;
|
|
22550
22688
|
stadiumUrl?: string | undefined;
|
|
22551
22689
|
school?: string | undefined;
|
|
22690
|
+
city?: string | undefined;
|
|
22552
22691
|
}>;
|
|
22553
22692
|
awayTeam: z.ZodObject<{
|
|
22554
22693
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -22562,6 +22701,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22562
22701
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
22563
22702
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
22564
22703
|
school: z.ZodOptional<z.ZodString>;
|
|
22704
|
+
city: z.ZodOptional<z.ZodString>;
|
|
22565
22705
|
}, "strip", z.ZodTypeAny, {
|
|
22566
22706
|
name: string;
|
|
22567
22707
|
image: string;
|
|
@@ -22574,6 +22714,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22574
22714
|
scoreExtraTime?: number | undefined;
|
|
22575
22715
|
stadiumUrl?: string | undefined;
|
|
22576
22716
|
school?: string | undefined;
|
|
22717
|
+
city?: string | undefined;
|
|
22577
22718
|
}, {
|
|
22578
22719
|
name: string;
|
|
22579
22720
|
image: string;
|
|
@@ -22586,6 +22727,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22586
22727
|
scoreExtraTime?: number | undefined;
|
|
22587
22728
|
stadiumUrl?: string | undefined;
|
|
22588
22729
|
school?: string | undefined;
|
|
22730
|
+
city?: string | undefined;
|
|
22589
22731
|
}>;
|
|
22590
22732
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
22591
22733
|
homeTeamWins: z.ZodNumber;
|
|
@@ -24346,6 +24488,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24346
24488
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
24347
24489
|
allTeams: z.ZodOptional<z.ZodString>;
|
|
24348
24490
|
allSchools: z.ZodOptional<z.ZodString>;
|
|
24491
|
+
allCities: z.ZodOptional<z.ZodString>;
|
|
24349
24492
|
}, {
|
|
24350
24493
|
league: z.ZodUnion<[z.ZodLiteral<"epl">, z.ZodLiteral<"mls">]>;
|
|
24351
24494
|
week: z.ZodNumber;
|
|
@@ -24368,6 +24511,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24368
24511
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
24369
24512
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
24370
24513
|
school: z.ZodOptional<z.ZodString>;
|
|
24514
|
+
city: z.ZodOptional<z.ZodString>;
|
|
24371
24515
|
}, {
|
|
24372
24516
|
scorePeriod1: z.ZodNumber;
|
|
24373
24517
|
scorePeriod2: z.ZodNumber;
|
|
@@ -24389,6 +24533,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24389
24533
|
teamCode?: string | undefined;
|
|
24390
24534
|
stadiumUrl?: string | undefined;
|
|
24391
24535
|
school?: string | undefined;
|
|
24536
|
+
city?: string | undefined;
|
|
24392
24537
|
venueName?: string | undefined;
|
|
24393
24538
|
}, {
|
|
24394
24539
|
name: string;
|
|
@@ -24405,6 +24550,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24405
24550
|
teamCode?: string | undefined;
|
|
24406
24551
|
stadiumUrl?: string | undefined;
|
|
24407
24552
|
school?: string | undefined;
|
|
24553
|
+
city?: string | undefined;
|
|
24408
24554
|
venueName?: string | undefined;
|
|
24409
24555
|
}>;
|
|
24410
24556
|
awayTeam: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -24419,6 +24565,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24419
24565
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
24420
24566
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
24421
24567
|
school: z.ZodOptional<z.ZodString>;
|
|
24568
|
+
city: z.ZodOptional<z.ZodString>;
|
|
24422
24569
|
}, {
|
|
24423
24570
|
scorePeriod1: z.ZodNumber;
|
|
24424
24571
|
scorePeriod2: z.ZodNumber;
|
|
@@ -24440,6 +24587,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24440
24587
|
teamCode?: string | undefined;
|
|
24441
24588
|
stadiumUrl?: string | undefined;
|
|
24442
24589
|
school?: string | undefined;
|
|
24590
|
+
city?: string | undefined;
|
|
24443
24591
|
venueName?: string | undefined;
|
|
24444
24592
|
}, {
|
|
24445
24593
|
name: string;
|
|
@@ -24456,6 +24604,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24456
24604
|
teamCode?: string | undefined;
|
|
24457
24605
|
stadiumUrl?: string | undefined;
|
|
24458
24606
|
school?: string | undefined;
|
|
24607
|
+
city?: string | undefined;
|
|
24459
24608
|
venueName?: string | undefined;
|
|
24460
24609
|
}>;
|
|
24461
24610
|
hadExtraTime: z.ZodBoolean;
|
|
@@ -24481,6 +24630,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24481
24630
|
teamCode?: string | undefined;
|
|
24482
24631
|
stadiumUrl?: string | undefined;
|
|
24483
24632
|
school?: string | undefined;
|
|
24633
|
+
city?: string | undefined;
|
|
24484
24634
|
venueName?: string | undefined;
|
|
24485
24635
|
};
|
|
24486
24636
|
awayTeam: {
|
|
@@ -24498,6 +24648,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24498
24648
|
teamCode?: string | undefined;
|
|
24499
24649
|
stadiumUrl?: string | undefined;
|
|
24500
24650
|
school?: string | undefined;
|
|
24651
|
+
city?: string | undefined;
|
|
24501
24652
|
venueName?: string | undefined;
|
|
24502
24653
|
};
|
|
24503
24654
|
period: string;
|
|
@@ -24648,6 +24799,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24648
24799
|
lastPlay?: string | undefined;
|
|
24649
24800
|
allTeams?: string | undefined;
|
|
24650
24801
|
allSchools?: string | undefined;
|
|
24802
|
+
allCities?: string | undefined;
|
|
24651
24803
|
}, {
|
|
24652
24804
|
status: "canceled" | "live" | "scheduled" | "final" | "postponed";
|
|
24653
24805
|
week: number;
|
|
@@ -24670,6 +24822,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24670
24822
|
teamCode?: string | undefined;
|
|
24671
24823
|
stadiumUrl?: string | undefined;
|
|
24672
24824
|
school?: string | undefined;
|
|
24825
|
+
city?: string | undefined;
|
|
24673
24826
|
venueName?: string | undefined;
|
|
24674
24827
|
};
|
|
24675
24828
|
awayTeam: {
|
|
@@ -24687,6 +24840,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24687
24840
|
teamCode?: string | undefined;
|
|
24688
24841
|
stadiumUrl?: string | undefined;
|
|
24689
24842
|
school?: string | undefined;
|
|
24843
|
+
city?: string | undefined;
|
|
24690
24844
|
venueName?: string | undefined;
|
|
24691
24845
|
};
|
|
24692
24846
|
period: string;
|
|
@@ -24837,6 +24991,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24837
24991
|
lastPlay?: string | undefined;
|
|
24838
24992
|
allTeams?: string | undefined;
|
|
24839
24993
|
allSchools?: string | undefined;
|
|
24994
|
+
allCities?: string | undefined;
|
|
24840
24995
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
24841
24996
|
id: z.ZodOptional<z.ZodString>;
|
|
24842
24997
|
status: z.ZodUnion<[z.ZodLiteral<"scheduled">, z.ZodLiteral<"live">, z.ZodLiteral<"final">, z.ZodLiteral<"postponed">, z.ZodLiteral<"canceled">]>;
|
|
@@ -24858,6 +25013,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24858
25013
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
24859
25014
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
24860
25015
|
school: z.ZodOptional<z.ZodString>;
|
|
25016
|
+
city: z.ZodOptional<z.ZodString>;
|
|
24861
25017
|
}, "strip", z.ZodTypeAny, {
|
|
24862
25018
|
name: string;
|
|
24863
25019
|
image: string;
|
|
@@ -24870,6 +25026,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24870
25026
|
scoreExtraTime?: number | undefined;
|
|
24871
25027
|
stadiumUrl?: string | undefined;
|
|
24872
25028
|
school?: string | undefined;
|
|
25029
|
+
city?: string | undefined;
|
|
24873
25030
|
}, {
|
|
24874
25031
|
name: string;
|
|
24875
25032
|
image: string;
|
|
@@ -24882,6 +25039,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24882
25039
|
scoreExtraTime?: number | undefined;
|
|
24883
25040
|
stadiumUrl?: string | undefined;
|
|
24884
25041
|
school?: string | undefined;
|
|
25042
|
+
city?: string | undefined;
|
|
24885
25043
|
}>;
|
|
24886
25044
|
awayTeam: z.ZodObject<{
|
|
24887
25045
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -24895,6 +25053,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24895
25053
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
24896
25054
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
24897
25055
|
school: z.ZodOptional<z.ZodString>;
|
|
25056
|
+
city: z.ZodOptional<z.ZodString>;
|
|
24898
25057
|
}, "strip", z.ZodTypeAny, {
|
|
24899
25058
|
name: string;
|
|
24900
25059
|
image: string;
|
|
@@ -24907,6 +25066,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24907
25066
|
scoreExtraTime?: number | undefined;
|
|
24908
25067
|
stadiumUrl?: string | undefined;
|
|
24909
25068
|
school?: string | undefined;
|
|
25069
|
+
city?: string | undefined;
|
|
24910
25070
|
}, {
|
|
24911
25071
|
name: string;
|
|
24912
25072
|
image: string;
|
|
@@ -24919,6 +25079,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24919
25079
|
scoreExtraTime?: number | undefined;
|
|
24920
25080
|
stadiumUrl?: string | undefined;
|
|
24921
25081
|
school?: string | undefined;
|
|
25082
|
+
city?: string | undefined;
|
|
24922
25083
|
}>;
|
|
24923
25084
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
24924
25085
|
homeTeamWins: z.ZodNumber;
|
|
@@ -26679,6 +26840,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
26679
26840
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
26680
26841
|
allTeams: z.ZodOptional<z.ZodString>;
|
|
26681
26842
|
allSchools: z.ZodOptional<z.ZodString>;
|
|
26843
|
+
allCities: z.ZodOptional<z.ZodString>;
|
|
26682
26844
|
}, {
|
|
26683
26845
|
possession: z.ZodNullable<z.ZodString>;
|
|
26684
26846
|
down: z.ZodNullable<z.ZodNumber>;
|
|
@@ -26757,6 +26919,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
26757
26919
|
scoreExtraTime?: number | undefined;
|
|
26758
26920
|
stadiumUrl?: string | undefined;
|
|
26759
26921
|
school?: string | undefined;
|
|
26922
|
+
city?: string | undefined;
|
|
26760
26923
|
};
|
|
26761
26924
|
awayTeam: {
|
|
26762
26925
|
name: string;
|
|
@@ -26770,6 +26933,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
26770
26933
|
scoreExtraTime?: number | undefined;
|
|
26771
26934
|
stadiumUrl?: string | undefined;
|
|
26772
26935
|
school?: string | undefined;
|
|
26936
|
+
city?: string | undefined;
|
|
26773
26937
|
};
|
|
26774
26938
|
seasonType: number;
|
|
26775
26939
|
possession: string | null;
|
|
@@ -26931,6 +27095,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
26931
27095
|
lastPlay?: string | undefined;
|
|
26932
27096
|
allTeams?: string | undefined;
|
|
26933
27097
|
allSchools?: string | undefined;
|
|
27098
|
+
allCities?: string | undefined;
|
|
26934
27099
|
stadium?: {
|
|
26935
27100
|
StadiumID: number;
|
|
26936
27101
|
Name: string;
|
|
@@ -26962,6 +27127,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
26962
27127
|
scoreExtraTime?: number | undefined;
|
|
26963
27128
|
stadiumUrl?: string | undefined;
|
|
26964
27129
|
school?: string | undefined;
|
|
27130
|
+
city?: string | undefined;
|
|
26965
27131
|
};
|
|
26966
27132
|
awayTeam: {
|
|
26967
27133
|
name: string;
|
|
@@ -26975,6 +27141,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
26975
27141
|
scoreExtraTime?: number | undefined;
|
|
26976
27142
|
stadiumUrl?: string | undefined;
|
|
26977
27143
|
school?: string | undefined;
|
|
27144
|
+
city?: string | undefined;
|
|
26978
27145
|
};
|
|
26979
27146
|
seasonType: number;
|
|
26980
27147
|
possession: string | null;
|
|
@@ -27136,6 +27303,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27136
27303
|
lastPlay?: string | undefined;
|
|
27137
27304
|
allTeams?: string | undefined;
|
|
27138
27305
|
allSchools?: string | undefined;
|
|
27306
|
+
allCities?: string | undefined;
|
|
27139
27307
|
stadium?: {
|
|
27140
27308
|
StadiumID: number;
|
|
27141
27309
|
Name: string;
|
|
@@ -27169,6 +27337,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27169
27337
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
27170
27338
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
27171
27339
|
school: z.ZodOptional<z.ZodString>;
|
|
27340
|
+
city: z.ZodOptional<z.ZodString>;
|
|
27172
27341
|
}, "strip", z.ZodTypeAny, {
|
|
27173
27342
|
name: string;
|
|
27174
27343
|
image: string;
|
|
@@ -27181,6 +27350,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27181
27350
|
scoreExtraTime?: number | undefined;
|
|
27182
27351
|
stadiumUrl?: string | undefined;
|
|
27183
27352
|
school?: string | undefined;
|
|
27353
|
+
city?: string | undefined;
|
|
27184
27354
|
}, {
|
|
27185
27355
|
name: string;
|
|
27186
27356
|
image: string;
|
|
@@ -27193,6 +27363,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27193
27363
|
scoreExtraTime?: number | undefined;
|
|
27194
27364
|
stadiumUrl?: string | undefined;
|
|
27195
27365
|
school?: string | undefined;
|
|
27366
|
+
city?: string | undefined;
|
|
27196
27367
|
}>;
|
|
27197
27368
|
awayTeam: z.ZodObject<{
|
|
27198
27369
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -27206,6 +27377,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27206
27377
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
27207
27378
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
27208
27379
|
school: z.ZodOptional<z.ZodString>;
|
|
27380
|
+
city: z.ZodOptional<z.ZodString>;
|
|
27209
27381
|
}, "strip", z.ZodTypeAny, {
|
|
27210
27382
|
name: string;
|
|
27211
27383
|
image: string;
|
|
@@ -27218,6 +27390,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27218
27390
|
scoreExtraTime?: number | undefined;
|
|
27219
27391
|
stadiumUrl?: string | undefined;
|
|
27220
27392
|
school?: string | undefined;
|
|
27393
|
+
city?: string | undefined;
|
|
27221
27394
|
}, {
|
|
27222
27395
|
name: string;
|
|
27223
27396
|
image: string;
|
|
@@ -27230,6 +27403,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27230
27403
|
scoreExtraTime?: number | undefined;
|
|
27231
27404
|
stadiumUrl?: string | undefined;
|
|
27232
27405
|
school?: string | undefined;
|
|
27406
|
+
city?: string | undefined;
|
|
27233
27407
|
}>;
|
|
27234
27408
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
27235
27409
|
homeTeamWins: z.ZodNumber;
|
|
@@ -28990,6 +29164,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
28990
29164
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
28991
29165
|
allTeams: z.ZodOptional<z.ZodString>;
|
|
28992
29166
|
allSchools: z.ZodOptional<z.ZodString>;
|
|
29167
|
+
allCities: z.ZodOptional<z.ZodString>;
|
|
28993
29168
|
}, {
|
|
28994
29169
|
possession: z.ZodNullable<z.ZodString>;
|
|
28995
29170
|
down: z.ZodNullable<z.ZodNumber>;
|
|
@@ -29064,6 +29239,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29064
29239
|
scoreExtraTime?: number | undefined;
|
|
29065
29240
|
stadiumUrl?: string | undefined;
|
|
29066
29241
|
school?: string | undefined;
|
|
29242
|
+
city?: string | undefined;
|
|
29067
29243
|
};
|
|
29068
29244
|
awayTeam: {
|
|
29069
29245
|
name: string;
|
|
@@ -29077,6 +29253,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29077
29253
|
scoreExtraTime?: number | undefined;
|
|
29078
29254
|
stadiumUrl?: string | undefined;
|
|
29079
29255
|
school?: string | undefined;
|
|
29256
|
+
city?: string | undefined;
|
|
29080
29257
|
};
|
|
29081
29258
|
timeRemainingMinutes: number;
|
|
29082
29259
|
timeRemainingSeconds: number;
|
|
@@ -29233,6 +29410,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29233
29410
|
lastPlay?: string | undefined;
|
|
29234
29411
|
allTeams?: string | undefined;
|
|
29235
29412
|
allSchools?: string | undefined;
|
|
29413
|
+
allCities?: string | undefined;
|
|
29236
29414
|
stadium?: {
|
|
29237
29415
|
StadiumID: number;
|
|
29238
29416
|
Name: string;
|
|
@@ -29262,6 +29440,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29262
29440
|
scoreExtraTime?: number | undefined;
|
|
29263
29441
|
stadiumUrl?: string | undefined;
|
|
29264
29442
|
school?: string | undefined;
|
|
29443
|
+
city?: string | undefined;
|
|
29265
29444
|
};
|
|
29266
29445
|
awayTeam: {
|
|
29267
29446
|
name: string;
|
|
@@ -29275,6 +29454,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29275
29454
|
scoreExtraTime?: number | undefined;
|
|
29276
29455
|
stadiumUrl?: string | undefined;
|
|
29277
29456
|
school?: string | undefined;
|
|
29457
|
+
city?: string | undefined;
|
|
29278
29458
|
};
|
|
29279
29459
|
timeRemainingMinutes: number;
|
|
29280
29460
|
timeRemainingSeconds: number;
|
|
@@ -29431,6 +29611,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29431
29611
|
lastPlay?: string | undefined;
|
|
29432
29612
|
allTeams?: string | undefined;
|
|
29433
29613
|
allSchools?: string | undefined;
|
|
29614
|
+
allCities?: string | undefined;
|
|
29434
29615
|
stadium?: {
|
|
29435
29616
|
StadiumID: number;
|
|
29436
29617
|
Name: string;
|
|
@@ -29462,6 +29643,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29462
29643
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
29463
29644
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
29464
29645
|
school: z.ZodOptional<z.ZodString>;
|
|
29646
|
+
city: z.ZodOptional<z.ZodString>;
|
|
29465
29647
|
}, "strip", z.ZodTypeAny, {
|
|
29466
29648
|
name: string;
|
|
29467
29649
|
image: string;
|
|
@@ -29474,6 +29656,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29474
29656
|
scoreExtraTime?: number | undefined;
|
|
29475
29657
|
stadiumUrl?: string | undefined;
|
|
29476
29658
|
school?: string | undefined;
|
|
29659
|
+
city?: string | undefined;
|
|
29477
29660
|
}, {
|
|
29478
29661
|
name: string;
|
|
29479
29662
|
image: string;
|
|
@@ -29486,6 +29669,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29486
29669
|
scoreExtraTime?: number | undefined;
|
|
29487
29670
|
stadiumUrl?: string | undefined;
|
|
29488
29671
|
school?: string | undefined;
|
|
29672
|
+
city?: string | undefined;
|
|
29489
29673
|
}>;
|
|
29490
29674
|
awayTeam: z.ZodObject<{
|
|
29491
29675
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -29499,6 +29683,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29499
29683
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
29500
29684
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
29501
29685
|
school: z.ZodOptional<z.ZodString>;
|
|
29686
|
+
city: z.ZodOptional<z.ZodString>;
|
|
29502
29687
|
}, "strip", z.ZodTypeAny, {
|
|
29503
29688
|
name: string;
|
|
29504
29689
|
image: string;
|
|
@@ -29511,6 +29696,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29511
29696
|
scoreExtraTime?: number | undefined;
|
|
29512
29697
|
stadiumUrl?: string | undefined;
|
|
29513
29698
|
school?: string | undefined;
|
|
29699
|
+
city?: string | undefined;
|
|
29514
29700
|
}, {
|
|
29515
29701
|
name: string;
|
|
29516
29702
|
image: string;
|
|
@@ -29523,6 +29709,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29523
29709
|
scoreExtraTime?: number | undefined;
|
|
29524
29710
|
stadiumUrl?: string | undefined;
|
|
29525
29711
|
school?: string | undefined;
|
|
29712
|
+
city?: string | undefined;
|
|
29526
29713
|
}>;
|
|
29527
29714
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
29528
29715
|
homeTeamWins: z.ZodNumber;
|
|
@@ -31283,6 +31470,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
31283
31470
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
31284
31471
|
allTeams: z.ZodOptional<z.ZodString>;
|
|
31285
31472
|
allSchools: z.ZodOptional<z.ZodString>;
|
|
31473
|
+
allCities: z.ZodOptional<z.ZodString>;
|
|
31286
31474
|
}, {
|
|
31287
31475
|
seasonType: z.ZodNumber;
|
|
31288
31476
|
season: z.ZodString;
|
|
@@ -31309,6 +31497,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
31309
31497
|
scoreExtraTime?: number | undefined;
|
|
31310
31498
|
stadiumUrl?: string | undefined;
|
|
31311
31499
|
school?: string | undefined;
|
|
31500
|
+
city?: string | undefined;
|
|
31312
31501
|
};
|
|
31313
31502
|
awayTeam: {
|
|
31314
31503
|
name: string;
|
|
@@ -31322,6 +31511,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
31322
31511
|
scoreExtraTime?: number | undefined;
|
|
31323
31512
|
stadiumUrl?: string | undefined;
|
|
31324
31513
|
school?: string | undefined;
|
|
31514
|
+
city?: string | undefined;
|
|
31325
31515
|
};
|
|
31326
31516
|
timeRemainingMinutes: number;
|
|
31327
31517
|
timeRemainingSeconds: number;
|
|
@@ -31469,6 +31659,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
31469
31659
|
lastPlay?: string | undefined;
|
|
31470
31660
|
allTeams?: string | undefined;
|
|
31471
31661
|
allSchools?: string | undefined;
|
|
31662
|
+
allCities?: string | undefined;
|
|
31472
31663
|
}, {
|
|
31473
31664
|
status: "canceled" | "live" | "scheduled" | "final" | "postponed";
|
|
31474
31665
|
league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls";
|
|
@@ -31487,6 +31678,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
31487
31678
|
scoreExtraTime?: number | undefined;
|
|
31488
31679
|
stadiumUrl?: string | undefined;
|
|
31489
31680
|
school?: string | undefined;
|
|
31681
|
+
city?: string | undefined;
|
|
31490
31682
|
};
|
|
31491
31683
|
awayTeam: {
|
|
31492
31684
|
name: string;
|
|
@@ -31500,6 +31692,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
31500
31692
|
scoreExtraTime?: number | undefined;
|
|
31501
31693
|
stadiumUrl?: string | undefined;
|
|
31502
31694
|
school?: string | undefined;
|
|
31695
|
+
city?: string | undefined;
|
|
31503
31696
|
};
|
|
31504
31697
|
timeRemainingMinutes: number;
|
|
31505
31698
|
timeRemainingSeconds: number;
|
|
@@ -31647,6 +31840,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
31647
31840
|
lastPlay?: string | undefined;
|
|
31648
31841
|
allTeams?: string | undefined;
|
|
31649
31842
|
allSchools?: string | undefined;
|
|
31843
|
+
allCities?: string | undefined;
|
|
31650
31844
|
}>]>;
|
|
31651
31845
|
export declare const searchGameSchema: z.ZodObject<{
|
|
31652
31846
|
q: z.ZodOptional<z.ZodString>;
|
|
@@ -31713,6 +31907,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
31713
31907
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
31714
31908
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
31715
31909
|
school: z.ZodOptional<z.ZodString>;
|
|
31910
|
+
city: z.ZodOptional<z.ZodString>;
|
|
31716
31911
|
}, "strip", z.ZodTypeAny, {
|
|
31717
31912
|
name: string;
|
|
31718
31913
|
image: string;
|
|
@@ -31725,6 +31920,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
31725
31920
|
scoreExtraTime?: number | undefined;
|
|
31726
31921
|
stadiumUrl?: string | undefined;
|
|
31727
31922
|
school?: string | undefined;
|
|
31923
|
+
city?: string | undefined;
|
|
31728
31924
|
}, {
|
|
31729
31925
|
name: string;
|
|
31730
31926
|
image: string;
|
|
@@ -31737,6 +31933,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
31737
31933
|
scoreExtraTime?: number | undefined;
|
|
31738
31934
|
stadiumUrl?: string | undefined;
|
|
31739
31935
|
school?: string | undefined;
|
|
31936
|
+
city?: string | undefined;
|
|
31740
31937
|
}>;
|
|
31741
31938
|
awayTeam: z.ZodObject<{
|
|
31742
31939
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -31750,6 +31947,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
31750
31947
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
31751
31948
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
31752
31949
|
school: z.ZodOptional<z.ZodString>;
|
|
31950
|
+
city: z.ZodOptional<z.ZodString>;
|
|
31753
31951
|
}, "strip", z.ZodTypeAny, {
|
|
31754
31952
|
name: string;
|
|
31755
31953
|
image: string;
|
|
@@ -31762,6 +31960,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
31762
31960
|
scoreExtraTime?: number | undefined;
|
|
31763
31961
|
stadiumUrl?: string | undefined;
|
|
31764
31962
|
school?: string | undefined;
|
|
31963
|
+
city?: string | undefined;
|
|
31765
31964
|
}, {
|
|
31766
31965
|
name: string;
|
|
31767
31966
|
image: string;
|
|
@@ -31774,6 +31973,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
31774
31973
|
scoreExtraTime?: number | undefined;
|
|
31775
31974
|
stadiumUrl?: string | undefined;
|
|
31776
31975
|
school?: string | undefined;
|
|
31976
|
+
city?: string | undefined;
|
|
31777
31977
|
}>;
|
|
31778
31978
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
31779
31979
|
homeTeamWins: z.ZodNumber;
|
|
@@ -33534,6 +33734,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
33534
33734
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
33535
33735
|
allTeams: z.ZodOptional<z.ZodString>;
|
|
33536
33736
|
allSchools: z.ZodOptional<z.ZodString>;
|
|
33737
|
+
allCities: z.ZodOptional<z.ZodString>;
|
|
33537
33738
|
}, {
|
|
33538
33739
|
round: z.ZodNumber;
|
|
33539
33740
|
timeRemainingMinutes: z.ZodNumber;
|
|
@@ -33575,6 +33776,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
33575
33776
|
scoreExtraTime?: number | undefined;
|
|
33576
33777
|
stadiumUrl?: string | undefined;
|
|
33577
33778
|
school?: string | undefined;
|
|
33779
|
+
city?: string | undefined;
|
|
33578
33780
|
};
|
|
33579
33781
|
awayTeam: {
|
|
33580
33782
|
name: string;
|
|
@@ -33588,6 +33790,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
33588
33790
|
scoreExtraTime?: number | undefined;
|
|
33589
33791
|
stadiumUrl?: string | undefined;
|
|
33590
33792
|
school?: string | undefined;
|
|
33793
|
+
city?: string | undefined;
|
|
33591
33794
|
};
|
|
33592
33795
|
timeRemainingMinutes: number;
|
|
33593
33796
|
timeRemainingSeconds: number;
|
|
@@ -33739,6 +33942,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
33739
33942
|
lastPlay?: string | undefined;
|
|
33740
33943
|
allTeams?: string | undefined;
|
|
33741
33944
|
allSchools?: string | undefined;
|
|
33945
|
+
allCities?: string | undefined;
|
|
33742
33946
|
totalMinutesRemaining?: number | undefined;
|
|
33743
33947
|
period?: string | undefined;
|
|
33744
33948
|
}, {
|
|
@@ -33760,6 +33964,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
33760
33964
|
scoreExtraTime?: number | undefined;
|
|
33761
33965
|
stadiumUrl?: string | undefined;
|
|
33762
33966
|
school?: string | undefined;
|
|
33967
|
+
city?: string | undefined;
|
|
33763
33968
|
};
|
|
33764
33969
|
awayTeam: {
|
|
33765
33970
|
name: string;
|
|
@@ -33773,6 +33978,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
33773
33978
|
scoreExtraTime?: number | undefined;
|
|
33774
33979
|
stadiumUrl?: string | undefined;
|
|
33775
33980
|
school?: string | undefined;
|
|
33981
|
+
city?: string | undefined;
|
|
33776
33982
|
};
|
|
33777
33983
|
timeRemainingMinutes: number;
|
|
33778
33984
|
timeRemainingSeconds: number;
|
|
@@ -33924,6 +34130,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
33924
34130
|
lastPlay?: string | undefined;
|
|
33925
34131
|
allTeams?: string | undefined;
|
|
33926
34132
|
allSchools?: string | undefined;
|
|
34133
|
+
allCities?: string | undefined;
|
|
33927
34134
|
totalMinutesRemaining?: number | undefined;
|
|
33928
34135
|
period?: string | undefined;
|
|
33929
34136
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -33947,6 +34154,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
33947
34154
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
33948
34155
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
33949
34156
|
school: z.ZodOptional<z.ZodString>;
|
|
34157
|
+
city: z.ZodOptional<z.ZodString>;
|
|
33950
34158
|
}, "strip", z.ZodTypeAny, {
|
|
33951
34159
|
name: string;
|
|
33952
34160
|
image: string;
|
|
@@ -33959,6 +34167,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
33959
34167
|
scoreExtraTime?: number | undefined;
|
|
33960
34168
|
stadiumUrl?: string | undefined;
|
|
33961
34169
|
school?: string | undefined;
|
|
34170
|
+
city?: string | undefined;
|
|
33962
34171
|
}, {
|
|
33963
34172
|
name: string;
|
|
33964
34173
|
image: string;
|
|
@@ -33971,6 +34180,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
33971
34180
|
scoreExtraTime?: number | undefined;
|
|
33972
34181
|
stadiumUrl?: string | undefined;
|
|
33973
34182
|
school?: string | undefined;
|
|
34183
|
+
city?: string | undefined;
|
|
33974
34184
|
}>;
|
|
33975
34185
|
awayTeam: z.ZodObject<{
|
|
33976
34186
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -33984,6 +34194,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
33984
34194
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
33985
34195
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
33986
34196
|
school: z.ZodOptional<z.ZodString>;
|
|
34197
|
+
city: z.ZodOptional<z.ZodString>;
|
|
33987
34198
|
}, "strip", z.ZodTypeAny, {
|
|
33988
34199
|
name: string;
|
|
33989
34200
|
image: string;
|
|
@@ -33996,6 +34207,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
33996
34207
|
scoreExtraTime?: number | undefined;
|
|
33997
34208
|
stadiumUrl?: string | undefined;
|
|
33998
34209
|
school?: string | undefined;
|
|
34210
|
+
city?: string | undefined;
|
|
33999
34211
|
}, {
|
|
34000
34212
|
name: string;
|
|
34001
34213
|
image: string;
|
|
@@ -34008,6 +34220,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
34008
34220
|
scoreExtraTime?: number | undefined;
|
|
34009
34221
|
stadiumUrl?: string | undefined;
|
|
34010
34222
|
school?: string | undefined;
|
|
34223
|
+
city?: string | undefined;
|
|
34011
34224
|
}>;
|
|
34012
34225
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
34013
34226
|
homeTeamWins: z.ZodNumber;
|
|
@@ -35768,6 +35981,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
35768
35981
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
35769
35982
|
allTeams: z.ZodOptional<z.ZodString>;
|
|
35770
35983
|
allSchools: z.ZodOptional<z.ZodString>;
|
|
35984
|
+
allCities: z.ZodOptional<z.ZodString>;
|
|
35771
35985
|
}, {
|
|
35772
35986
|
totalInningsRemaining: z.ZodNumber;
|
|
35773
35987
|
innings: z.ZodArray<z.ZodObject<{
|
|
@@ -35815,6 +36029,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
35815
36029
|
scoreExtraTime?: number | undefined;
|
|
35816
36030
|
stadiumUrl?: string | undefined;
|
|
35817
36031
|
school?: string | undefined;
|
|
36032
|
+
city?: string | undefined;
|
|
35818
36033
|
};
|
|
35819
36034
|
awayTeam: {
|
|
35820
36035
|
name: string;
|
|
@@ -35828,6 +36043,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
35828
36043
|
scoreExtraTime?: number | undefined;
|
|
35829
36044
|
stadiumUrl?: string | undefined;
|
|
35830
36045
|
school?: string | undefined;
|
|
36046
|
+
city?: string | undefined;
|
|
35831
36047
|
};
|
|
35832
36048
|
totalInningsRemaining: number;
|
|
35833
36049
|
innings: {
|
|
@@ -35983,6 +36199,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
35983
36199
|
lastPlay?: string | undefined;
|
|
35984
36200
|
allTeams?: string | undefined;
|
|
35985
36201
|
allSchools?: string | undefined;
|
|
36202
|
+
allCities?: string | undefined;
|
|
35986
36203
|
inningHalf?: "T" | "B" | undefined;
|
|
35987
36204
|
savingPitcher?: string | undefined;
|
|
35988
36205
|
outs?: number | undefined;
|
|
@@ -36007,6 +36224,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36007
36224
|
scoreExtraTime?: number | undefined;
|
|
36008
36225
|
stadiumUrl?: string | undefined;
|
|
36009
36226
|
school?: string | undefined;
|
|
36227
|
+
city?: string | undefined;
|
|
36010
36228
|
};
|
|
36011
36229
|
awayTeam: {
|
|
36012
36230
|
name: string;
|
|
@@ -36020,6 +36238,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36020
36238
|
scoreExtraTime?: number | undefined;
|
|
36021
36239
|
stadiumUrl?: string | undefined;
|
|
36022
36240
|
school?: string | undefined;
|
|
36241
|
+
city?: string | undefined;
|
|
36023
36242
|
};
|
|
36024
36243
|
totalInningsRemaining: number;
|
|
36025
36244
|
innings: {
|
|
@@ -36175,6 +36394,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36175
36394
|
lastPlay?: string | undefined;
|
|
36176
36395
|
allTeams?: string | undefined;
|
|
36177
36396
|
allSchools?: string | undefined;
|
|
36397
|
+
allCities?: string | undefined;
|
|
36178
36398
|
inningHalf?: "T" | "B" | undefined;
|
|
36179
36399
|
savingPitcher?: string | undefined;
|
|
36180
36400
|
outs?: number | undefined;
|
|
@@ -36202,6 +36422,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36202
36422
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
36203
36423
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
36204
36424
|
school: z.ZodOptional<z.ZodString>;
|
|
36425
|
+
city: z.ZodOptional<z.ZodString>;
|
|
36205
36426
|
}, "strip", z.ZodTypeAny, {
|
|
36206
36427
|
name: string;
|
|
36207
36428
|
image: string;
|
|
@@ -36214,6 +36435,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36214
36435
|
scoreExtraTime?: number | undefined;
|
|
36215
36436
|
stadiumUrl?: string | undefined;
|
|
36216
36437
|
school?: string | undefined;
|
|
36438
|
+
city?: string | undefined;
|
|
36217
36439
|
}, {
|
|
36218
36440
|
name: string;
|
|
36219
36441
|
image: string;
|
|
@@ -36226,6 +36448,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36226
36448
|
scoreExtraTime?: number | undefined;
|
|
36227
36449
|
stadiumUrl?: string | undefined;
|
|
36228
36450
|
school?: string | undefined;
|
|
36451
|
+
city?: string | undefined;
|
|
36229
36452
|
}>;
|
|
36230
36453
|
awayTeam: z.ZodObject<{
|
|
36231
36454
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -36239,6 +36462,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36239
36462
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
36240
36463
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
36241
36464
|
school: z.ZodOptional<z.ZodString>;
|
|
36465
|
+
city: z.ZodOptional<z.ZodString>;
|
|
36242
36466
|
}, "strip", z.ZodTypeAny, {
|
|
36243
36467
|
name: string;
|
|
36244
36468
|
image: string;
|
|
@@ -36251,6 +36475,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36251
36475
|
scoreExtraTime?: number | undefined;
|
|
36252
36476
|
stadiumUrl?: string | undefined;
|
|
36253
36477
|
school?: string | undefined;
|
|
36478
|
+
city?: string | undefined;
|
|
36254
36479
|
}, {
|
|
36255
36480
|
name: string;
|
|
36256
36481
|
image: string;
|
|
@@ -36263,6 +36488,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36263
36488
|
scoreExtraTime?: number | undefined;
|
|
36264
36489
|
stadiumUrl?: string | undefined;
|
|
36265
36490
|
school?: string | undefined;
|
|
36491
|
+
city?: string | undefined;
|
|
36266
36492
|
}>;
|
|
36267
36493
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
36268
36494
|
homeTeamWins: z.ZodNumber;
|
|
@@ -38023,6 +38249,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38023
38249
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
38024
38250
|
allTeams: z.ZodOptional<z.ZodString>;
|
|
38025
38251
|
allSchools: z.ZodOptional<z.ZodString>;
|
|
38252
|
+
allCities: z.ZodOptional<z.ZodString>;
|
|
38026
38253
|
}, {
|
|
38027
38254
|
league: z.ZodUnion<[z.ZodLiteral<"epl">, z.ZodLiteral<"mls">]>;
|
|
38028
38255
|
week: z.ZodNumber;
|
|
@@ -38045,6 +38272,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38045
38272
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
38046
38273
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
38047
38274
|
school: z.ZodOptional<z.ZodString>;
|
|
38275
|
+
city: z.ZodOptional<z.ZodString>;
|
|
38048
38276
|
}, {
|
|
38049
38277
|
scorePeriod1: z.ZodNumber;
|
|
38050
38278
|
scorePeriod2: z.ZodNumber;
|
|
@@ -38066,6 +38294,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38066
38294
|
teamCode?: string | undefined;
|
|
38067
38295
|
stadiumUrl?: string | undefined;
|
|
38068
38296
|
school?: string | undefined;
|
|
38297
|
+
city?: string | undefined;
|
|
38069
38298
|
venueName?: string | undefined;
|
|
38070
38299
|
}, {
|
|
38071
38300
|
name: string;
|
|
@@ -38082,6 +38311,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38082
38311
|
teamCode?: string | undefined;
|
|
38083
38312
|
stadiumUrl?: string | undefined;
|
|
38084
38313
|
school?: string | undefined;
|
|
38314
|
+
city?: string | undefined;
|
|
38085
38315
|
venueName?: string | undefined;
|
|
38086
38316
|
}>;
|
|
38087
38317
|
awayTeam: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -38096,6 +38326,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38096
38326
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
38097
38327
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
38098
38328
|
school: z.ZodOptional<z.ZodString>;
|
|
38329
|
+
city: z.ZodOptional<z.ZodString>;
|
|
38099
38330
|
}, {
|
|
38100
38331
|
scorePeriod1: z.ZodNumber;
|
|
38101
38332
|
scorePeriod2: z.ZodNumber;
|
|
@@ -38117,6 +38348,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38117
38348
|
teamCode?: string | undefined;
|
|
38118
38349
|
stadiumUrl?: string | undefined;
|
|
38119
38350
|
school?: string | undefined;
|
|
38351
|
+
city?: string | undefined;
|
|
38120
38352
|
venueName?: string | undefined;
|
|
38121
38353
|
}, {
|
|
38122
38354
|
name: string;
|
|
@@ -38133,6 +38365,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38133
38365
|
teamCode?: string | undefined;
|
|
38134
38366
|
stadiumUrl?: string | undefined;
|
|
38135
38367
|
school?: string | undefined;
|
|
38368
|
+
city?: string | undefined;
|
|
38136
38369
|
venueName?: string | undefined;
|
|
38137
38370
|
}>;
|
|
38138
38371
|
hadExtraTime: z.ZodBoolean;
|
|
@@ -38158,6 +38391,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38158
38391
|
teamCode?: string | undefined;
|
|
38159
38392
|
stadiumUrl?: string | undefined;
|
|
38160
38393
|
school?: string | undefined;
|
|
38394
|
+
city?: string | undefined;
|
|
38161
38395
|
venueName?: string | undefined;
|
|
38162
38396
|
};
|
|
38163
38397
|
awayTeam: {
|
|
@@ -38175,6 +38409,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38175
38409
|
teamCode?: string | undefined;
|
|
38176
38410
|
stadiumUrl?: string | undefined;
|
|
38177
38411
|
school?: string | undefined;
|
|
38412
|
+
city?: string | undefined;
|
|
38178
38413
|
venueName?: string | undefined;
|
|
38179
38414
|
};
|
|
38180
38415
|
period: string;
|
|
@@ -38325,6 +38560,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38325
38560
|
lastPlay?: string | undefined;
|
|
38326
38561
|
allTeams?: string | undefined;
|
|
38327
38562
|
allSchools?: string | undefined;
|
|
38563
|
+
allCities?: string | undefined;
|
|
38328
38564
|
}, {
|
|
38329
38565
|
status: "canceled" | "live" | "scheduled" | "final" | "postponed";
|
|
38330
38566
|
week: number;
|
|
@@ -38347,6 +38583,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38347
38583
|
teamCode?: string | undefined;
|
|
38348
38584
|
stadiumUrl?: string | undefined;
|
|
38349
38585
|
school?: string | undefined;
|
|
38586
|
+
city?: string | undefined;
|
|
38350
38587
|
venueName?: string | undefined;
|
|
38351
38588
|
};
|
|
38352
38589
|
awayTeam: {
|
|
@@ -38364,6 +38601,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38364
38601
|
teamCode?: string | undefined;
|
|
38365
38602
|
stadiumUrl?: string | undefined;
|
|
38366
38603
|
school?: string | undefined;
|
|
38604
|
+
city?: string | undefined;
|
|
38367
38605
|
venueName?: string | undefined;
|
|
38368
38606
|
};
|
|
38369
38607
|
period: string;
|
|
@@ -38514,6 +38752,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38514
38752
|
lastPlay?: string | undefined;
|
|
38515
38753
|
allTeams?: string | undefined;
|
|
38516
38754
|
allSchools?: string | undefined;
|
|
38755
|
+
allCities?: string | undefined;
|
|
38517
38756
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
38518
38757
|
id: z.ZodOptional<z.ZodString>;
|
|
38519
38758
|
status: z.ZodUnion<[z.ZodLiteral<"scheduled">, z.ZodLiteral<"live">, z.ZodLiteral<"final">, z.ZodLiteral<"postponed">, z.ZodLiteral<"canceled">]>;
|
|
@@ -38535,6 +38774,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38535
38774
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
38536
38775
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
38537
38776
|
school: z.ZodOptional<z.ZodString>;
|
|
38777
|
+
city: z.ZodOptional<z.ZodString>;
|
|
38538
38778
|
}, "strip", z.ZodTypeAny, {
|
|
38539
38779
|
name: string;
|
|
38540
38780
|
image: string;
|
|
@@ -38547,6 +38787,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38547
38787
|
scoreExtraTime?: number | undefined;
|
|
38548
38788
|
stadiumUrl?: string | undefined;
|
|
38549
38789
|
school?: string | undefined;
|
|
38790
|
+
city?: string | undefined;
|
|
38550
38791
|
}, {
|
|
38551
38792
|
name: string;
|
|
38552
38793
|
image: string;
|
|
@@ -38559,6 +38800,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38559
38800
|
scoreExtraTime?: number | undefined;
|
|
38560
38801
|
stadiumUrl?: string | undefined;
|
|
38561
38802
|
school?: string | undefined;
|
|
38803
|
+
city?: string | undefined;
|
|
38562
38804
|
}>;
|
|
38563
38805
|
awayTeam: z.ZodObject<{
|
|
38564
38806
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -38572,6 +38814,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38572
38814
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
38573
38815
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
38574
38816
|
school: z.ZodOptional<z.ZodString>;
|
|
38817
|
+
city: z.ZodOptional<z.ZodString>;
|
|
38575
38818
|
}, "strip", z.ZodTypeAny, {
|
|
38576
38819
|
name: string;
|
|
38577
38820
|
image: string;
|
|
@@ -38584,6 +38827,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38584
38827
|
scoreExtraTime?: number | undefined;
|
|
38585
38828
|
stadiumUrl?: string | undefined;
|
|
38586
38829
|
school?: string | undefined;
|
|
38830
|
+
city?: string | undefined;
|
|
38587
38831
|
}, {
|
|
38588
38832
|
name: string;
|
|
38589
38833
|
image: string;
|
|
@@ -38596,6 +38840,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38596
38840
|
scoreExtraTime?: number | undefined;
|
|
38597
38841
|
stadiumUrl?: string | undefined;
|
|
38598
38842
|
school?: string | undefined;
|
|
38843
|
+
city?: string | undefined;
|
|
38599
38844
|
}>;
|
|
38600
38845
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
38601
38846
|
homeTeamWins: z.ZodNumber;
|
|
@@ -40356,6 +40601,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40356
40601
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
40357
40602
|
allTeams: z.ZodOptional<z.ZodString>;
|
|
40358
40603
|
allSchools: z.ZodOptional<z.ZodString>;
|
|
40604
|
+
allCities: z.ZodOptional<z.ZodString>;
|
|
40359
40605
|
}, {
|
|
40360
40606
|
possession: z.ZodNullable<z.ZodString>;
|
|
40361
40607
|
down: z.ZodNullable<z.ZodNumber>;
|
|
@@ -40434,6 +40680,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40434
40680
|
scoreExtraTime?: number | undefined;
|
|
40435
40681
|
stadiumUrl?: string | undefined;
|
|
40436
40682
|
school?: string | undefined;
|
|
40683
|
+
city?: string | undefined;
|
|
40437
40684
|
};
|
|
40438
40685
|
awayTeam: {
|
|
40439
40686
|
name: string;
|
|
@@ -40447,6 +40694,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40447
40694
|
scoreExtraTime?: number | undefined;
|
|
40448
40695
|
stadiumUrl?: string | undefined;
|
|
40449
40696
|
school?: string | undefined;
|
|
40697
|
+
city?: string | undefined;
|
|
40450
40698
|
};
|
|
40451
40699
|
seasonType: number;
|
|
40452
40700
|
possession: string | null;
|
|
@@ -40608,6 +40856,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40608
40856
|
lastPlay?: string | undefined;
|
|
40609
40857
|
allTeams?: string | undefined;
|
|
40610
40858
|
allSchools?: string | undefined;
|
|
40859
|
+
allCities?: string | undefined;
|
|
40611
40860
|
stadium?: {
|
|
40612
40861
|
StadiumID: number;
|
|
40613
40862
|
Name: string;
|
|
@@ -40639,6 +40888,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40639
40888
|
scoreExtraTime?: number | undefined;
|
|
40640
40889
|
stadiumUrl?: string | undefined;
|
|
40641
40890
|
school?: string | undefined;
|
|
40891
|
+
city?: string | undefined;
|
|
40642
40892
|
};
|
|
40643
40893
|
awayTeam: {
|
|
40644
40894
|
name: string;
|
|
@@ -40652,6 +40902,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40652
40902
|
scoreExtraTime?: number | undefined;
|
|
40653
40903
|
stadiumUrl?: string | undefined;
|
|
40654
40904
|
school?: string | undefined;
|
|
40905
|
+
city?: string | undefined;
|
|
40655
40906
|
};
|
|
40656
40907
|
seasonType: number;
|
|
40657
40908
|
possession: string | null;
|
|
@@ -40813,6 +41064,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40813
41064
|
lastPlay?: string | undefined;
|
|
40814
41065
|
allTeams?: string | undefined;
|
|
40815
41066
|
allSchools?: string | undefined;
|
|
41067
|
+
allCities?: string | undefined;
|
|
40816
41068
|
stadium?: {
|
|
40817
41069
|
StadiumID: number;
|
|
40818
41070
|
Name: string;
|
|
@@ -40846,6 +41098,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40846
41098
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
40847
41099
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
40848
41100
|
school: z.ZodOptional<z.ZodString>;
|
|
41101
|
+
city: z.ZodOptional<z.ZodString>;
|
|
40849
41102
|
}, "strip", z.ZodTypeAny, {
|
|
40850
41103
|
name: string;
|
|
40851
41104
|
image: string;
|
|
@@ -40858,6 +41111,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40858
41111
|
scoreExtraTime?: number | undefined;
|
|
40859
41112
|
stadiumUrl?: string | undefined;
|
|
40860
41113
|
school?: string | undefined;
|
|
41114
|
+
city?: string | undefined;
|
|
40861
41115
|
}, {
|
|
40862
41116
|
name: string;
|
|
40863
41117
|
image: string;
|
|
@@ -40870,6 +41124,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40870
41124
|
scoreExtraTime?: number | undefined;
|
|
40871
41125
|
stadiumUrl?: string | undefined;
|
|
40872
41126
|
school?: string | undefined;
|
|
41127
|
+
city?: string | undefined;
|
|
40873
41128
|
}>;
|
|
40874
41129
|
awayTeam: z.ZodObject<{
|
|
40875
41130
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -40883,6 +41138,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40883
41138
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
40884
41139
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
40885
41140
|
school: z.ZodOptional<z.ZodString>;
|
|
41141
|
+
city: z.ZodOptional<z.ZodString>;
|
|
40886
41142
|
}, "strip", z.ZodTypeAny, {
|
|
40887
41143
|
name: string;
|
|
40888
41144
|
image: string;
|
|
@@ -40895,6 +41151,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40895
41151
|
scoreExtraTime?: number | undefined;
|
|
40896
41152
|
stadiumUrl?: string | undefined;
|
|
40897
41153
|
school?: string | undefined;
|
|
41154
|
+
city?: string | undefined;
|
|
40898
41155
|
}, {
|
|
40899
41156
|
name: string;
|
|
40900
41157
|
image: string;
|
|
@@ -40907,6 +41164,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40907
41164
|
scoreExtraTime?: number | undefined;
|
|
40908
41165
|
stadiumUrl?: string | undefined;
|
|
40909
41166
|
school?: string | undefined;
|
|
41167
|
+
city?: string | undefined;
|
|
40910
41168
|
}>;
|
|
40911
41169
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
40912
41170
|
homeTeamWins: z.ZodNumber;
|
|
@@ -42667,6 +42925,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
42667
42925
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
42668
42926
|
allTeams: z.ZodOptional<z.ZodString>;
|
|
42669
42927
|
allSchools: z.ZodOptional<z.ZodString>;
|
|
42928
|
+
allCities: z.ZodOptional<z.ZodString>;
|
|
42670
42929
|
}, {
|
|
42671
42930
|
possession: z.ZodNullable<z.ZodString>;
|
|
42672
42931
|
down: z.ZodNullable<z.ZodNumber>;
|
|
@@ -42741,6 +43000,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
42741
43000
|
scoreExtraTime?: number | undefined;
|
|
42742
43001
|
stadiumUrl?: string | undefined;
|
|
42743
43002
|
school?: string | undefined;
|
|
43003
|
+
city?: string | undefined;
|
|
42744
43004
|
};
|
|
42745
43005
|
awayTeam: {
|
|
42746
43006
|
name: string;
|
|
@@ -42754,6 +43014,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
42754
43014
|
scoreExtraTime?: number | undefined;
|
|
42755
43015
|
stadiumUrl?: string | undefined;
|
|
42756
43016
|
school?: string | undefined;
|
|
43017
|
+
city?: string | undefined;
|
|
42757
43018
|
};
|
|
42758
43019
|
timeRemainingMinutes: number;
|
|
42759
43020
|
timeRemainingSeconds: number;
|
|
@@ -42910,6 +43171,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
42910
43171
|
lastPlay?: string | undefined;
|
|
42911
43172
|
allTeams?: string | undefined;
|
|
42912
43173
|
allSchools?: string | undefined;
|
|
43174
|
+
allCities?: string | undefined;
|
|
42913
43175
|
stadium?: {
|
|
42914
43176
|
StadiumID: number;
|
|
42915
43177
|
Name: string;
|
|
@@ -42939,6 +43201,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
42939
43201
|
scoreExtraTime?: number | undefined;
|
|
42940
43202
|
stadiumUrl?: string | undefined;
|
|
42941
43203
|
school?: string | undefined;
|
|
43204
|
+
city?: string | undefined;
|
|
42942
43205
|
};
|
|
42943
43206
|
awayTeam: {
|
|
42944
43207
|
name: string;
|
|
@@ -42952,6 +43215,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
42952
43215
|
scoreExtraTime?: number | undefined;
|
|
42953
43216
|
stadiumUrl?: string | undefined;
|
|
42954
43217
|
school?: string | undefined;
|
|
43218
|
+
city?: string | undefined;
|
|
42955
43219
|
};
|
|
42956
43220
|
timeRemainingMinutes: number;
|
|
42957
43221
|
timeRemainingSeconds: number;
|
|
@@ -43108,6 +43372,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43108
43372
|
lastPlay?: string | undefined;
|
|
43109
43373
|
allTeams?: string | undefined;
|
|
43110
43374
|
allSchools?: string | undefined;
|
|
43375
|
+
allCities?: string | undefined;
|
|
43111
43376
|
stadium?: {
|
|
43112
43377
|
StadiumID: number;
|
|
43113
43378
|
Name: string;
|
|
@@ -43139,6 +43404,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43139
43404
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
43140
43405
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
43141
43406
|
school: z.ZodOptional<z.ZodString>;
|
|
43407
|
+
city: z.ZodOptional<z.ZodString>;
|
|
43142
43408
|
}, "strip", z.ZodTypeAny, {
|
|
43143
43409
|
name: string;
|
|
43144
43410
|
image: string;
|
|
@@ -43151,6 +43417,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43151
43417
|
scoreExtraTime?: number | undefined;
|
|
43152
43418
|
stadiumUrl?: string | undefined;
|
|
43153
43419
|
school?: string | undefined;
|
|
43420
|
+
city?: string | undefined;
|
|
43154
43421
|
}, {
|
|
43155
43422
|
name: string;
|
|
43156
43423
|
image: string;
|
|
@@ -43163,6 +43430,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43163
43430
|
scoreExtraTime?: number | undefined;
|
|
43164
43431
|
stadiumUrl?: string | undefined;
|
|
43165
43432
|
school?: string | undefined;
|
|
43433
|
+
city?: string | undefined;
|
|
43166
43434
|
}>;
|
|
43167
43435
|
awayTeam: z.ZodObject<{
|
|
43168
43436
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -43176,6 +43444,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43176
43444
|
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
43177
43445
|
stadiumUrl: z.ZodOptional<z.ZodString>;
|
|
43178
43446
|
school: z.ZodOptional<z.ZodString>;
|
|
43447
|
+
city: z.ZodOptional<z.ZodString>;
|
|
43179
43448
|
}, "strip", z.ZodTypeAny, {
|
|
43180
43449
|
name: string;
|
|
43181
43450
|
image: string;
|
|
@@ -43188,6 +43457,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43188
43457
|
scoreExtraTime?: number | undefined;
|
|
43189
43458
|
stadiumUrl?: string | undefined;
|
|
43190
43459
|
school?: string | undefined;
|
|
43460
|
+
city?: string | undefined;
|
|
43191
43461
|
}, {
|
|
43192
43462
|
name: string;
|
|
43193
43463
|
image: string;
|
|
@@ -43200,6 +43470,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43200
43470
|
scoreExtraTime?: number | undefined;
|
|
43201
43471
|
stadiumUrl?: string | undefined;
|
|
43202
43472
|
school?: string | undefined;
|
|
43473
|
+
city?: string | undefined;
|
|
43203
43474
|
}>;
|
|
43204
43475
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
43205
43476
|
homeTeamWins: z.ZodNumber;
|
|
@@ -44960,6 +45231,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
44960
45231
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
44961
45232
|
allTeams: z.ZodOptional<z.ZodString>;
|
|
44962
45233
|
allSchools: z.ZodOptional<z.ZodString>;
|
|
45234
|
+
allCities: z.ZodOptional<z.ZodString>;
|
|
44963
45235
|
}, {
|
|
44964
45236
|
seasonType: z.ZodNumber;
|
|
44965
45237
|
season: z.ZodString;
|
|
@@ -44986,6 +45258,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
44986
45258
|
scoreExtraTime?: number | undefined;
|
|
44987
45259
|
stadiumUrl?: string | undefined;
|
|
44988
45260
|
school?: string | undefined;
|
|
45261
|
+
city?: string | undefined;
|
|
44989
45262
|
};
|
|
44990
45263
|
awayTeam: {
|
|
44991
45264
|
name: string;
|
|
@@ -44999,6 +45272,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
44999
45272
|
scoreExtraTime?: number | undefined;
|
|
45000
45273
|
stadiumUrl?: string | undefined;
|
|
45001
45274
|
school?: string | undefined;
|
|
45275
|
+
city?: string | undefined;
|
|
45002
45276
|
};
|
|
45003
45277
|
timeRemainingMinutes: number;
|
|
45004
45278
|
timeRemainingSeconds: number;
|
|
@@ -45146,6 +45420,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
45146
45420
|
lastPlay?: string | undefined;
|
|
45147
45421
|
allTeams?: string | undefined;
|
|
45148
45422
|
allSchools?: string | undefined;
|
|
45423
|
+
allCities?: string | undefined;
|
|
45149
45424
|
}, {
|
|
45150
45425
|
status: "canceled" | "live" | "scheduled" | "final" | "postponed";
|
|
45151
45426
|
league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls";
|
|
@@ -45164,6 +45439,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
45164
45439
|
scoreExtraTime?: number | undefined;
|
|
45165
45440
|
stadiumUrl?: string | undefined;
|
|
45166
45441
|
school?: string | undefined;
|
|
45442
|
+
city?: string | undefined;
|
|
45167
45443
|
};
|
|
45168
45444
|
awayTeam: {
|
|
45169
45445
|
name: string;
|
|
@@ -45177,6 +45453,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
45177
45453
|
scoreExtraTime?: number | undefined;
|
|
45178
45454
|
stadiumUrl?: string | undefined;
|
|
45179
45455
|
school?: string | undefined;
|
|
45456
|
+
city?: string | undefined;
|
|
45180
45457
|
};
|
|
45181
45458
|
timeRemainingMinutes: number;
|
|
45182
45459
|
timeRemainingSeconds: number;
|
|
@@ -45324,6 +45601,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
45324
45601
|
lastPlay?: string | undefined;
|
|
45325
45602
|
allTeams?: string | undefined;
|
|
45326
45603
|
allSchools?: string | undefined;
|
|
45604
|
+
allCities?: string | undefined;
|
|
45327
45605
|
}>]>;
|
|
45328
45606
|
user: z.ZodObject<Pick<{
|
|
45329
45607
|
id: z.ZodString;
|
|
@@ -46115,6 +46393,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46115
46393
|
scoreExtraTime?: number | undefined;
|
|
46116
46394
|
stadiumUrl?: string | undefined;
|
|
46117
46395
|
school?: string | undefined;
|
|
46396
|
+
city?: string | undefined;
|
|
46118
46397
|
};
|
|
46119
46398
|
awayTeam: {
|
|
46120
46399
|
name: string;
|
|
@@ -46128,6 +46407,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46128
46407
|
scoreExtraTime?: number | undefined;
|
|
46129
46408
|
stadiumUrl?: string | undefined;
|
|
46130
46409
|
school?: string | undefined;
|
|
46410
|
+
city?: string | undefined;
|
|
46131
46411
|
};
|
|
46132
46412
|
timeRemainingMinutes: number;
|
|
46133
46413
|
timeRemainingSeconds: number;
|
|
@@ -46279,6 +46559,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46279
46559
|
lastPlay?: string | undefined;
|
|
46280
46560
|
allTeams?: string | undefined;
|
|
46281
46561
|
allSchools?: string | undefined;
|
|
46562
|
+
allCities?: string | undefined;
|
|
46282
46563
|
totalMinutesRemaining?: number | undefined;
|
|
46283
46564
|
period?: string | undefined;
|
|
46284
46565
|
} | {
|
|
@@ -46299,6 +46580,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46299
46580
|
scoreExtraTime?: number | undefined;
|
|
46300
46581
|
stadiumUrl?: string | undefined;
|
|
46301
46582
|
school?: string | undefined;
|
|
46583
|
+
city?: string | undefined;
|
|
46302
46584
|
};
|
|
46303
46585
|
awayTeam: {
|
|
46304
46586
|
name: string;
|
|
@@ -46312,6 +46594,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46312
46594
|
scoreExtraTime?: number | undefined;
|
|
46313
46595
|
stadiumUrl?: string | undefined;
|
|
46314
46596
|
school?: string | undefined;
|
|
46597
|
+
city?: string | undefined;
|
|
46315
46598
|
};
|
|
46316
46599
|
totalInningsRemaining: number;
|
|
46317
46600
|
innings: {
|
|
@@ -46467,6 +46750,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46467
46750
|
lastPlay?: string | undefined;
|
|
46468
46751
|
allTeams?: string | undefined;
|
|
46469
46752
|
allSchools?: string | undefined;
|
|
46753
|
+
allCities?: string | undefined;
|
|
46470
46754
|
inningHalf?: "T" | "B" | undefined;
|
|
46471
46755
|
savingPitcher?: string | undefined;
|
|
46472
46756
|
outs?: number | undefined;
|
|
@@ -46495,6 +46779,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46495
46779
|
teamCode?: string | undefined;
|
|
46496
46780
|
stadiumUrl?: string | undefined;
|
|
46497
46781
|
school?: string | undefined;
|
|
46782
|
+
city?: string | undefined;
|
|
46498
46783
|
venueName?: string | undefined;
|
|
46499
46784
|
};
|
|
46500
46785
|
awayTeam: {
|
|
@@ -46512,6 +46797,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46512
46797
|
teamCode?: string | undefined;
|
|
46513
46798
|
stadiumUrl?: string | undefined;
|
|
46514
46799
|
school?: string | undefined;
|
|
46800
|
+
city?: string | undefined;
|
|
46515
46801
|
venueName?: string | undefined;
|
|
46516
46802
|
};
|
|
46517
46803
|
period: string;
|
|
@@ -46662,6 +46948,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46662
46948
|
lastPlay?: string | undefined;
|
|
46663
46949
|
allTeams?: string | undefined;
|
|
46664
46950
|
allSchools?: string | undefined;
|
|
46951
|
+
allCities?: string | undefined;
|
|
46665
46952
|
} | {
|
|
46666
46953
|
status: "canceled" | "live" | "scheduled" | "final" | "postponed";
|
|
46667
46954
|
quarter: string | null;
|
|
@@ -46681,6 +46968,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46681
46968
|
scoreExtraTime?: number | undefined;
|
|
46682
46969
|
stadiumUrl?: string | undefined;
|
|
46683
46970
|
school?: string | undefined;
|
|
46971
|
+
city?: string | undefined;
|
|
46684
46972
|
};
|
|
46685
46973
|
awayTeam: {
|
|
46686
46974
|
name: string;
|
|
@@ -46694,6 +46982,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46694
46982
|
scoreExtraTime?: number | undefined;
|
|
46695
46983
|
stadiumUrl?: string | undefined;
|
|
46696
46984
|
school?: string | undefined;
|
|
46985
|
+
city?: string | undefined;
|
|
46697
46986
|
};
|
|
46698
46987
|
seasonType: number;
|
|
46699
46988
|
possession: string | null;
|
|
@@ -46855,6 +47144,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46855
47144
|
lastPlay?: string | undefined;
|
|
46856
47145
|
allTeams?: string | undefined;
|
|
46857
47146
|
allSchools?: string | undefined;
|
|
47147
|
+
allCities?: string | undefined;
|
|
46858
47148
|
stadium?: {
|
|
46859
47149
|
StadiumID: number;
|
|
46860
47150
|
Name: string;
|
|
@@ -46886,6 +47176,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46886
47176
|
scoreExtraTime?: number | undefined;
|
|
46887
47177
|
stadiumUrl?: string | undefined;
|
|
46888
47178
|
school?: string | undefined;
|
|
47179
|
+
city?: string | undefined;
|
|
46889
47180
|
};
|
|
46890
47181
|
awayTeam: {
|
|
46891
47182
|
name: string;
|
|
@@ -46899,6 +47190,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46899
47190
|
scoreExtraTime?: number | undefined;
|
|
46900
47191
|
stadiumUrl?: string | undefined;
|
|
46901
47192
|
school?: string | undefined;
|
|
47193
|
+
city?: string | undefined;
|
|
46902
47194
|
};
|
|
46903
47195
|
timeRemainingMinutes: number;
|
|
46904
47196
|
timeRemainingSeconds: number;
|
|
@@ -47055,6 +47347,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47055
47347
|
lastPlay?: string | undefined;
|
|
47056
47348
|
allTeams?: string | undefined;
|
|
47057
47349
|
allSchools?: string | undefined;
|
|
47350
|
+
allCities?: string | undefined;
|
|
47058
47351
|
stadium?: {
|
|
47059
47352
|
StadiumID: number;
|
|
47060
47353
|
Name: string;
|
|
@@ -47083,6 +47376,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47083
47376
|
scoreExtraTime?: number | undefined;
|
|
47084
47377
|
stadiumUrl?: string | undefined;
|
|
47085
47378
|
school?: string | undefined;
|
|
47379
|
+
city?: string | undefined;
|
|
47086
47380
|
};
|
|
47087
47381
|
awayTeam: {
|
|
47088
47382
|
name: string;
|
|
@@ -47096,6 +47390,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47096
47390
|
scoreExtraTime?: number | undefined;
|
|
47097
47391
|
stadiumUrl?: string | undefined;
|
|
47098
47392
|
school?: string | undefined;
|
|
47393
|
+
city?: string | undefined;
|
|
47099
47394
|
};
|
|
47100
47395
|
timeRemainingMinutes: number;
|
|
47101
47396
|
timeRemainingSeconds: number;
|
|
@@ -47243,6 +47538,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47243
47538
|
lastPlay?: string | undefined;
|
|
47244
47539
|
allTeams?: string | undefined;
|
|
47245
47540
|
allSchools?: string | undefined;
|
|
47541
|
+
allCities?: string | undefined;
|
|
47246
47542
|
};
|
|
47247
47543
|
createdAt?: number | undefined;
|
|
47248
47544
|
comment?: string | undefined;
|
|
@@ -47273,6 +47569,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47273
47569
|
scoreExtraTime?: number | undefined;
|
|
47274
47570
|
stadiumUrl?: string | undefined;
|
|
47275
47571
|
school?: string | undefined;
|
|
47572
|
+
city?: string | undefined;
|
|
47276
47573
|
};
|
|
47277
47574
|
awayTeam: {
|
|
47278
47575
|
name: string;
|
|
@@ -47286,6 +47583,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47286
47583
|
scoreExtraTime?: number | undefined;
|
|
47287
47584
|
stadiumUrl?: string | undefined;
|
|
47288
47585
|
school?: string | undefined;
|
|
47586
|
+
city?: string | undefined;
|
|
47289
47587
|
};
|
|
47290
47588
|
timeRemainingMinutes: number;
|
|
47291
47589
|
timeRemainingSeconds: number;
|
|
@@ -47437,6 +47735,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47437
47735
|
lastPlay?: string | undefined;
|
|
47438
47736
|
allTeams?: string | undefined;
|
|
47439
47737
|
allSchools?: string | undefined;
|
|
47738
|
+
allCities?: string | undefined;
|
|
47440
47739
|
totalMinutesRemaining?: number | undefined;
|
|
47441
47740
|
period?: string | undefined;
|
|
47442
47741
|
} | {
|
|
@@ -47457,6 +47756,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47457
47756
|
scoreExtraTime?: number | undefined;
|
|
47458
47757
|
stadiumUrl?: string | undefined;
|
|
47459
47758
|
school?: string | undefined;
|
|
47759
|
+
city?: string | undefined;
|
|
47460
47760
|
};
|
|
47461
47761
|
awayTeam: {
|
|
47462
47762
|
name: string;
|
|
@@ -47470,6 +47770,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47470
47770
|
scoreExtraTime?: number | undefined;
|
|
47471
47771
|
stadiumUrl?: string | undefined;
|
|
47472
47772
|
school?: string | undefined;
|
|
47773
|
+
city?: string | undefined;
|
|
47473
47774
|
};
|
|
47474
47775
|
totalInningsRemaining: number;
|
|
47475
47776
|
innings: {
|
|
@@ -47625,6 +47926,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47625
47926
|
lastPlay?: string | undefined;
|
|
47626
47927
|
allTeams?: string | undefined;
|
|
47627
47928
|
allSchools?: string | undefined;
|
|
47929
|
+
allCities?: string | undefined;
|
|
47628
47930
|
inningHalf?: "T" | "B" | undefined;
|
|
47629
47931
|
savingPitcher?: string | undefined;
|
|
47630
47932
|
outs?: number | undefined;
|
|
@@ -47653,6 +47955,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47653
47955
|
teamCode?: string | undefined;
|
|
47654
47956
|
stadiumUrl?: string | undefined;
|
|
47655
47957
|
school?: string | undefined;
|
|
47958
|
+
city?: string | undefined;
|
|
47656
47959
|
venueName?: string | undefined;
|
|
47657
47960
|
};
|
|
47658
47961
|
awayTeam: {
|
|
@@ -47670,6 +47973,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47670
47973
|
teamCode?: string | undefined;
|
|
47671
47974
|
stadiumUrl?: string | undefined;
|
|
47672
47975
|
school?: string | undefined;
|
|
47976
|
+
city?: string | undefined;
|
|
47673
47977
|
venueName?: string | undefined;
|
|
47674
47978
|
};
|
|
47675
47979
|
period: string;
|
|
@@ -47820,6 +48124,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47820
48124
|
lastPlay?: string | undefined;
|
|
47821
48125
|
allTeams?: string | undefined;
|
|
47822
48126
|
allSchools?: string | undefined;
|
|
48127
|
+
allCities?: string | undefined;
|
|
47823
48128
|
} | {
|
|
47824
48129
|
status: "canceled" | "live" | "scheduled" | "final" | "postponed";
|
|
47825
48130
|
quarter: string | null;
|
|
@@ -47839,6 +48144,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47839
48144
|
scoreExtraTime?: number | undefined;
|
|
47840
48145
|
stadiumUrl?: string | undefined;
|
|
47841
48146
|
school?: string | undefined;
|
|
48147
|
+
city?: string | undefined;
|
|
47842
48148
|
};
|
|
47843
48149
|
awayTeam: {
|
|
47844
48150
|
name: string;
|
|
@@ -47852,6 +48158,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47852
48158
|
scoreExtraTime?: number | undefined;
|
|
47853
48159
|
stadiumUrl?: string | undefined;
|
|
47854
48160
|
school?: string | undefined;
|
|
48161
|
+
city?: string | undefined;
|
|
47855
48162
|
};
|
|
47856
48163
|
seasonType: number;
|
|
47857
48164
|
possession: string | null;
|
|
@@ -48013,6 +48320,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48013
48320
|
lastPlay?: string | undefined;
|
|
48014
48321
|
allTeams?: string | undefined;
|
|
48015
48322
|
allSchools?: string | undefined;
|
|
48323
|
+
allCities?: string | undefined;
|
|
48016
48324
|
stadium?: {
|
|
48017
48325
|
StadiumID: number;
|
|
48018
48326
|
Name: string;
|
|
@@ -48044,6 +48352,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48044
48352
|
scoreExtraTime?: number | undefined;
|
|
48045
48353
|
stadiumUrl?: string | undefined;
|
|
48046
48354
|
school?: string | undefined;
|
|
48355
|
+
city?: string | undefined;
|
|
48047
48356
|
};
|
|
48048
48357
|
awayTeam: {
|
|
48049
48358
|
name: string;
|
|
@@ -48057,6 +48366,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48057
48366
|
scoreExtraTime?: number | undefined;
|
|
48058
48367
|
stadiumUrl?: string | undefined;
|
|
48059
48368
|
school?: string | undefined;
|
|
48369
|
+
city?: string | undefined;
|
|
48060
48370
|
};
|
|
48061
48371
|
timeRemainingMinutes: number;
|
|
48062
48372
|
timeRemainingSeconds: number;
|
|
@@ -48213,6 +48523,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48213
48523
|
lastPlay?: string | undefined;
|
|
48214
48524
|
allTeams?: string | undefined;
|
|
48215
48525
|
allSchools?: string | undefined;
|
|
48526
|
+
allCities?: string | undefined;
|
|
48216
48527
|
stadium?: {
|
|
48217
48528
|
StadiumID: number;
|
|
48218
48529
|
Name: string;
|
|
@@ -48241,6 +48552,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48241
48552
|
scoreExtraTime?: number | undefined;
|
|
48242
48553
|
stadiumUrl?: string | undefined;
|
|
48243
48554
|
school?: string | undefined;
|
|
48555
|
+
city?: string | undefined;
|
|
48244
48556
|
};
|
|
48245
48557
|
awayTeam: {
|
|
48246
48558
|
name: string;
|
|
@@ -48254,6 +48566,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48254
48566
|
scoreExtraTime?: number | undefined;
|
|
48255
48567
|
stadiumUrl?: string | undefined;
|
|
48256
48568
|
school?: string | undefined;
|
|
48569
|
+
city?: string | undefined;
|
|
48257
48570
|
};
|
|
48258
48571
|
timeRemainingMinutes: number;
|
|
48259
48572
|
timeRemainingSeconds: number;
|
|
@@ -48401,6 +48714,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48401
48714
|
lastPlay?: string | undefined;
|
|
48402
48715
|
allTeams?: string | undefined;
|
|
48403
48716
|
allSchools?: string | undefined;
|
|
48717
|
+
allCities?: string | undefined;
|
|
48404
48718
|
};
|
|
48405
48719
|
createdAt?: number | undefined;
|
|
48406
48720
|
comment?: string | undefined;
|