rategame-shared 1.1.321 → 1.1.322
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/schemas/game.d.ts +245 -0
- package/dist/schemas/game.js +2 -0
- package/dist/schemas/notification.d.ts +27 -0
- package/dist/schemas/pick.d.ts +321 -0
- package/dist/schemas/rating.d.ts +49 -0
- package/dist/schemas/stadium.d.ts +28 -0
- package/dist/schemas/voting.d.ts +90 -0
- package/package.json +1 -1
package/dist/schemas/game.d.ts
CHANGED
|
@@ -13,6 +13,7 @@ export declare const gameTeamSchema: z.ZodObject<{
|
|
|
13
13
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
14
14
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
15
15
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
16
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
16
17
|
}, "strip", z.ZodTypeAny, {
|
|
17
18
|
name: string | null;
|
|
18
19
|
image: string | null;
|
|
@@ -27,6 +28,7 @@ export declare const gameTeamSchema: z.ZodObject<{
|
|
|
27
28
|
school?: string | null | undefined;
|
|
28
29
|
city?: string | null | undefined;
|
|
29
30
|
venueName?: string | null | undefined;
|
|
31
|
+
pickCount?: number | undefined;
|
|
30
32
|
}, {
|
|
31
33
|
name: string | null;
|
|
32
34
|
image: string | null;
|
|
@@ -41,6 +43,7 @@ export declare const gameTeamSchema: z.ZodObject<{
|
|
|
41
43
|
school?: string | null | undefined;
|
|
42
44
|
city?: string | null | undefined;
|
|
43
45
|
venueName?: string | null | undefined;
|
|
46
|
+
pickCount?: number | undefined;
|
|
44
47
|
}>;
|
|
45
48
|
export declare const gameRatingAggregateSchema: z.ZodObject<{
|
|
46
49
|
avg: z.ZodNumber;
|
|
@@ -799,6 +802,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
799
802
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
800
803
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
801
804
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
805
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
802
806
|
}, "strip", z.ZodTypeAny, {
|
|
803
807
|
name: string | null;
|
|
804
808
|
image: string | null;
|
|
@@ -813,6 +817,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
813
817
|
school?: string | null | undefined;
|
|
814
818
|
city?: string | null | undefined;
|
|
815
819
|
venueName?: string | null | undefined;
|
|
820
|
+
pickCount?: number | undefined;
|
|
816
821
|
}, {
|
|
817
822
|
name: string | null;
|
|
818
823
|
image: string | null;
|
|
@@ -827,6 +832,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
827
832
|
school?: string | null | undefined;
|
|
828
833
|
city?: string | null | undefined;
|
|
829
834
|
venueName?: string | null | undefined;
|
|
835
|
+
pickCount?: number | undefined;
|
|
830
836
|
}>;
|
|
831
837
|
awayTeam: z.ZodObject<{
|
|
832
838
|
id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -842,6 +848,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
842
848
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
843
849
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
844
850
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
851
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
845
852
|
}, "strip", z.ZodTypeAny, {
|
|
846
853
|
name: string | null;
|
|
847
854
|
image: string | null;
|
|
@@ -856,6 +863,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
856
863
|
school?: string | null | undefined;
|
|
857
864
|
city?: string | null | undefined;
|
|
858
865
|
venueName?: string | null | undefined;
|
|
866
|
+
pickCount?: number | undefined;
|
|
859
867
|
}, {
|
|
860
868
|
name: string | null;
|
|
861
869
|
image: string | null;
|
|
@@ -870,6 +878,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
870
878
|
school?: string | null | undefined;
|
|
871
879
|
city?: string | null | undefined;
|
|
872
880
|
venueName?: string | null | undefined;
|
|
881
|
+
pickCount?: number | undefined;
|
|
873
882
|
}>;
|
|
874
883
|
timeRemainingMinutes: z.ZodNumber;
|
|
875
884
|
timeRemainingSeconds: z.ZodNumber;
|
|
@@ -1881,6 +1890,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
1881
1890
|
school?: string | null | undefined;
|
|
1882
1891
|
city?: string | null | undefined;
|
|
1883
1892
|
venueName?: string | null | undefined;
|
|
1893
|
+
pickCount?: number | undefined;
|
|
1884
1894
|
};
|
|
1885
1895
|
awayTeam: {
|
|
1886
1896
|
name: string | null;
|
|
@@ -1896,6 +1906,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
1896
1906
|
school?: string | null | undefined;
|
|
1897
1907
|
city?: string | null | undefined;
|
|
1898
1908
|
venueName?: string | null | undefined;
|
|
1909
|
+
pickCount?: number | undefined;
|
|
1899
1910
|
};
|
|
1900
1911
|
timeRemainingMinutes: number;
|
|
1901
1912
|
timeRemainingSeconds: number;
|
|
@@ -2052,6 +2063,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
2052
2063
|
school?: string | null | undefined;
|
|
2053
2064
|
city?: string | null | undefined;
|
|
2054
2065
|
venueName?: string | null | undefined;
|
|
2066
|
+
pickCount?: number | undefined;
|
|
2055
2067
|
};
|
|
2056
2068
|
awayTeam: {
|
|
2057
2069
|
name: string | null;
|
|
@@ -2067,6 +2079,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
2067
2079
|
school?: string | null | undefined;
|
|
2068
2080
|
city?: string | null | undefined;
|
|
2069
2081
|
venueName?: string | null | undefined;
|
|
2082
|
+
pickCount?: number | undefined;
|
|
2070
2083
|
};
|
|
2071
2084
|
timeRemainingMinutes: number;
|
|
2072
2085
|
timeRemainingSeconds: number;
|
|
@@ -2226,6 +2239,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
2226
2239
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2227
2240
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2228
2241
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2242
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
2229
2243
|
}, "strip", z.ZodTypeAny, {
|
|
2230
2244
|
name: string | null;
|
|
2231
2245
|
image: string | null;
|
|
@@ -2240,6 +2254,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
2240
2254
|
school?: string | null | undefined;
|
|
2241
2255
|
city?: string | null | undefined;
|
|
2242
2256
|
venueName?: string | null | undefined;
|
|
2257
|
+
pickCount?: number | undefined;
|
|
2243
2258
|
}, {
|
|
2244
2259
|
name: string | null;
|
|
2245
2260
|
image: string | null;
|
|
@@ -2254,6 +2269,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
2254
2269
|
school?: string | null | undefined;
|
|
2255
2270
|
city?: string | null | undefined;
|
|
2256
2271
|
venueName?: string | null | undefined;
|
|
2272
|
+
pickCount?: number | undefined;
|
|
2257
2273
|
}>;
|
|
2258
2274
|
awayTeam: z.ZodObject<{
|
|
2259
2275
|
id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -2269,6 +2285,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
2269
2285
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2270
2286
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2271
2287
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2288
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
2272
2289
|
}, "strip", z.ZodTypeAny, {
|
|
2273
2290
|
name: string | null;
|
|
2274
2291
|
image: string | null;
|
|
@@ -2283,6 +2300,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
2283
2300
|
school?: string | null | undefined;
|
|
2284
2301
|
city?: string | null | undefined;
|
|
2285
2302
|
venueName?: string | null | undefined;
|
|
2303
|
+
pickCount?: number | undefined;
|
|
2286
2304
|
}, {
|
|
2287
2305
|
name: string | null;
|
|
2288
2306
|
image: string | null;
|
|
@@ -2297,6 +2315,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
2297
2315
|
school?: string | null | undefined;
|
|
2298
2316
|
city?: string | null | undefined;
|
|
2299
2317
|
venueName?: string | null | undefined;
|
|
2318
|
+
pickCount?: number | undefined;
|
|
2300
2319
|
}>;
|
|
2301
2320
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
2302
2321
|
homeTeamWins: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -4418,6 +4437,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4418
4437
|
school?: string | null | undefined;
|
|
4419
4438
|
city?: string | null | undefined;
|
|
4420
4439
|
venueName?: string | null | undefined;
|
|
4440
|
+
pickCount?: number | undefined;
|
|
4421
4441
|
};
|
|
4422
4442
|
awayTeam: {
|
|
4423
4443
|
name: string | null;
|
|
@@ -4433,6 +4453,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4433
4453
|
school?: string | null | undefined;
|
|
4434
4454
|
city?: string | null | undefined;
|
|
4435
4455
|
venueName?: string | null | undefined;
|
|
4456
|
+
pickCount?: number | undefined;
|
|
4436
4457
|
};
|
|
4437
4458
|
id?: string | undefined;
|
|
4438
4459
|
ratings?: {
|
|
@@ -4598,6 +4619,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4598
4619
|
school?: string | null | undefined;
|
|
4599
4620
|
city?: string | null | undefined;
|
|
4600
4621
|
venueName?: string | null | undefined;
|
|
4622
|
+
pickCount?: number | undefined;
|
|
4601
4623
|
};
|
|
4602
4624
|
awayTeam: {
|
|
4603
4625
|
name: string | null;
|
|
@@ -4613,6 +4635,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4613
4635
|
school?: string | null | undefined;
|
|
4614
4636
|
city?: string | null | undefined;
|
|
4615
4637
|
venueName?: string | null | undefined;
|
|
4638
|
+
pickCount?: number | undefined;
|
|
4616
4639
|
};
|
|
4617
4640
|
id?: string | undefined;
|
|
4618
4641
|
ratings?: {
|
|
@@ -4782,6 +4805,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
4782
4805
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4783
4806
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4784
4807
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4808
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
4785
4809
|
}, "strip", z.ZodTypeAny, {
|
|
4786
4810
|
name: string | null;
|
|
4787
4811
|
image: string | null;
|
|
@@ -4796,6 +4820,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
4796
4820
|
school?: string | null | undefined;
|
|
4797
4821
|
city?: string | null | undefined;
|
|
4798
4822
|
venueName?: string | null | undefined;
|
|
4823
|
+
pickCount?: number | undefined;
|
|
4799
4824
|
}, {
|
|
4800
4825
|
name: string | null;
|
|
4801
4826
|
image: string | null;
|
|
@@ -4810,6 +4835,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
4810
4835
|
school?: string | null | undefined;
|
|
4811
4836
|
city?: string | null | undefined;
|
|
4812
4837
|
venueName?: string | null | undefined;
|
|
4838
|
+
pickCount?: number | undefined;
|
|
4813
4839
|
}>;
|
|
4814
4840
|
awayTeam: z.ZodObject<{
|
|
4815
4841
|
id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -4825,6 +4851,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
4825
4851
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4826
4852
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4827
4853
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4854
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
4828
4855
|
}, "strip", z.ZodTypeAny, {
|
|
4829
4856
|
name: string | null;
|
|
4830
4857
|
image: string | null;
|
|
@@ -4839,6 +4866,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
4839
4866
|
school?: string | null | undefined;
|
|
4840
4867
|
city?: string | null | undefined;
|
|
4841
4868
|
venueName?: string | null | undefined;
|
|
4869
|
+
pickCount?: number | undefined;
|
|
4842
4870
|
}, {
|
|
4843
4871
|
name: string | null;
|
|
4844
4872
|
image: string | null;
|
|
@@ -4853,6 +4881,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
4853
4881
|
school?: string | null | undefined;
|
|
4854
4882
|
city?: string | null | undefined;
|
|
4855
4883
|
venueName?: string | null | undefined;
|
|
4884
|
+
pickCount?: number | undefined;
|
|
4856
4885
|
}>;
|
|
4857
4886
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
4858
4887
|
homeTeamWins: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -6997,6 +7026,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6997
7026
|
school?: string | null | undefined;
|
|
6998
7027
|
city?: string | null | undefined;
|
|
6999
7028
|
venueName?: string | null | undefined;
|
|
7029
|
+
pickCount?: number | undefined;
|
|
7000
7030
|
};
|
|
7001
7031
|
awayTeam: {
|
|
7002
7032
|
name: string | null;
|
|
@@ -7012,6 +7042,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7012
7042
|
school?: string | null | undefined;
|
|
7013
7043
|
city?: string | null | undefined;
|
|
7014
7044
|
venueName?: string | null | undefined;
|
|
7045
|
+
pickCount?: number | undefined;
|
|
7015
7046
|
};
|
|
7016
7047
|
timeRemainingMinutes: number;
|
|
7017
7048
|
timeRemainingSeconds: number;
|
|
@@ -7190,6 +7221,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7190
7221
|
school?: string | null | undefined;
|
|
7191
7222
|
city?: string | null | undefined;
|
|
7192
7223
|
venueName?: string | null | undefined;
|
|
7224
|
+
pickCount?: number | undefined;
|
|
7193
7225
|
};
|
|
7194
7226
|
awayTeam: {
|
|
7195
7227
|
name: string | null;
|
|
@@ -7205,6 +7237,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
7205
7237
|
school?: string | null | undefined;
|
|
7206
7238
|
city?: string | null | undefined;
|
|
7207
7239
|
venueName?: string | null | undefined;
|
|
7240
|
+
pickCount?: number | undefined;
|
|
7208
7241
|
};
|
|
7209
7242
|
timeRemainingMinutes: number;
|
|
7210
7243
|
timeRemainingSeconds: number;
|
|
@@ -7399,6 +7432,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
7399
7432
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7400
7433
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7401
7434
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7435
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
7402
7436
|
}, "strip", z.ZodTypeAny, {
|
|
7403
7437
|
name: string | null;
|
|
7404
7438
|
image: string | null;
|
|
@@ -7413,6 +7447,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
7413
7447
|
school?: string | null | undefined;
|
|
7414
7448
|
city?: string | null | undefined;
|
|
7415
7449
|
venueName?: string | null | undefined;
|
|
7450
|
+
pickCount?: number | undefined;
|
|
7416
7451
|
}, {
|
|
7417
7452
|
name: string | null;
|
|
7418
7453
|
image: string | null;
|
|
@@ -7427,6 +7462,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
7427
7462
|
school?: string | null | undefined;
|
|
7428
7463
|
city?: string | null | undefined;
|
|
7429
7464
|
venueName?: string | null | undefined;
|
|
7465
|
+
pickCount?: number | undefined;
|
|
7430
7466
|
}>;
|
|
7431
7467
|
awayTeam: z.ZodObject<{
|
|
7432
7468
|
id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -7442,6 +7478,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
7442
7478
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7443
7479
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7444
7480
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7481
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
7445
7482
|
}, "strip", z.ZodTypeAny, {
|
|
7446
7483
|
name: string | null;
|
|
7447
7484
|
image: string | null;
|
|
@@ -7456,6 +7493,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
7456
7493
|
school?: string | null | undefined;
|
|
7457
7494
|
city?: string | null | undefined;
|
|
7458
7495
|
venueName?: string | null | undefined;
|
|
7496
|
+
pickCount?: number | undefined;
|
|
7459
7497
|
}, {
|
|
7460
7498
|
name: string | null;
|
|
7461
7499
|
image: string | null;
|
|
@@ -7470,6 +7508,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
7470
7508
|
school?: string | null | undefined;
|
|
7471
7509
|
city?: string | null | undefined;
|
|
7472
7510
|
venueName?: string | null | undefined;
|
|
7511
|
+
pickCount?: number | undefined;
|
|
7473
7512
|
}>;
|
|
7474
7513
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
7475
7514
|
homeTeamWins: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -9620,6 +9659,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9620
9659
|
school?: string | null | undefined;
|
|
9621
9660
|
city?: string | null | undefined;
|
|
9622
9661
|
venueName?: string | null | undefined;
|
|
9662
|
+
pickCount?: number | undefined;
|
|
9623
9663
|
};
|
|
9624
9664
|
awayTeam: {
|
|
9625
9665
|
name: string | null;
|
|
@@ -9635,6 +9675,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9635
9675
|
school?: string | null | undefined;
|
|
9636
9676
|
city?: string | null | undefined;
|
|
9637
9677
|
venueName?: string | null | undefined;
|
|
9678
|
+
pickCount?: number | undefined;
|
|
9638
9679
|
};
|
|
9639
9680
|
totalInningsRemaining: number;
|
|
9640
9681
|
innings: {
|
|
@@ -9820,6 +9861,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9820
9861
|
school?: string | null | undefined;
|
|
9821
9862
|
city?: string | null | undefined;
|
|
9822
9863
|
venueName?: string | null | undefined;
|
|
9864
|
+
pickCount?: number | undefined;
|
|
9823
9865
|
};
|
|
9824
9866
|
awayTeam: {
|
|
9825
9867
|
name: string | null;
|
|
@@ -9835,6 +9877,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9835
9877
|
school?: string | null | undefined;
|
|
9836
9878
|
city?: string | null | undefined;
|
|
9837
9879
|
venueName?: string | null | undefined;
|
|
9880
|
+
pickCount?: number | undefined;
|
|
9838
9881
|
};
|
|
9839
9882
|
totalInningsRemaining: number;
|
|
9840
9883
|
innings: {
|
|
@@ -10024,6 +10067,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10024
10067
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10025
10068
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10026
10069
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10070
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
10027
10071
|
}, "strip", z.ZodTypeAny, {
|
|
10028
10072
|
name: string | null;
|
|
10029
10073
|
image: string | null;
|
|
@@ -10038,6 +10082,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10038
10082
|
school?: string | null | undefined;
|
|
10039
10083
|
city?: string | null | undefined;
|
|
10040
10084
|
venueName?: string | null | undefined;
|
|
10085
|
+
pickCount?: number | undefined;
|
|
10041
10086
|
}, {
|
|
10042
10087
|
name: string | null;
|
|
10043
10088
|
image: string | null;
|
|
@@ -10052,6 +10097,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10052
10097
|
school?: string | null | undefined;
|
|
10053
10098
|
city?: string | null | undefined;
|
|
10054
10099
|
venueName?: string | null | undefined;
|
|
10100
|
+
pickCount?: number | undefined;
|
|
10055
10101
|
}>;
|
|
10056
10102
|
awayTeam: z.ZodObject<{
|
|
10057
10103
|
id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -10067,6 +10113,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10067
10113
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10068
10114
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10069
10115
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10116
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
10070
10117
|
}, "strip", z.ZodTypeAny, {
|
|
10071
10118
|
name: string | null;
|
|
10072
10119
|
image: string | null;
|
|
@@ -10081,6 +10128,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10081
10128
|
school?: string | null | undefined;
|
|
10082
10129
|
city?: string | null | undefined;
|
|
10083
10130
|
venueName?: string | null | undefined;
|
|
10131
|
+
pickCount?: number | undefined;
|
|
10084
10132
|
}, {
|
|
10085
10133
|
name: string | null;
|
|
10086
10134
|
image: string | null;
|
|
@@ -10095,6 +10143,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10095
10143
|
school?: string | null | undefined;
|
|
10096
10144
|
city?: string | null | undefined;
|
|
10097
10145
|
venueName?: string | null | undefined;
|
|
10146
|
+
pickCount?: number | undefined;
|
|
10098
10147
|
}>;
|
|
10099
10148
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
10100
10149
|
homeTeamWins: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -12220,6 +12269,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
12220
12269
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12221
12270
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12222
12271
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12272
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
12223
12273
|
}, {
|
|
12224
12274
|
scorePeriod1: z.ZodNumber;
|
|
12225
12275
|
scorePeriod2: z.ZodNumber;
|
|
@@ -12243,6 +12293,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
12243
12293
|
school?: string | null | undefined;
|
|
12244
12294
|
city?: string | null | undefined;
|
|
12245
12295
|
venueName?: string | undefined;
|
|
12296
|
+
pickCount?: number | undefined;
|
|
12246
12297
|
}, {
|
|
12247
12298
|
name: string | null;
|
|
12248
12299
|
image: string | null;
|
|
@@ -12260,6 +12311,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
12260
12311
|
school?: string | null | undefined;
|
|
12261
12312
|
city?: string | null | undefined;
|
|
12262
12313
|
venueName?: string | undefined;
|
|
12314
|
+
pickCount?: number | undefined;
|
|
12263
12315
|
}>;
|
|
12264
12316
|
awayTeam: z.ZodObject<z.objectUtil.extendShape<{
|
|
12265
12317
|
id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -12275,6 +12327,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
12275
12327
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12276
12328
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12277
12329
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12330
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
12278
12331
|
}, {
|
|
12279
12332
|
scorePeriod1: z.ZodNumber;
|
|
12280
12333
|
scorePeriod2: z.ZodNumber;
|
|
@@ -12298,6 +12351,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
12298
12351
|
school?: string | null | undefined;
|
|
12299
12352
|
city?: string | null | undefined;
|
|
12300
12353
|
venueName?: string | undefined;
|
|
12354
|
+
pickCount?: number | undefined;
|
|
12301
12355
|
}, {
|
|
12302
12356
|
name: string | null;
|
|
12303
12357
|
image: string | null;
|
|
@@ -12315,6 +12369,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
12315
12369
|
school?: string | null | undefined;
|
|
12316
12370
|
city?: string | null | undefined;
|
|
12317
12371
|
venueName?: string | undefined;
|
|
12372
|
+
pickCount?: number | undefined;
|
|
12318
12373
|
}>;
|
|
12319
12374
|
hadExtraTime: z.ZodBoolean;
|
|
12320
12375
|
halfTimeBreak: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -12342,6 +12397,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
12342
12397
|
school?: string | null | undefined;
|
|
12343
12398
|
city?: string | null | undefined;
|
|
12344
12399
|
venueName?: string | undefined;
|
|
12400
|
+
pickCount?: number | undefined;
|
|
12345
12401
|
};
|
|
12346
12402
|
awayTeam: {
|
|
12347
12403
|
name: string | null;
|
|
@@ -12360,6 +12416,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
12360
12416
|
school?: string | null | undefined;
|
|
12361
12417
|
city?: string | null | undefined;
|
|
12362
12418
|
venueName?: string | undefined;
|
|
12419
|
+
pickCount?: number | undefined;
|
|
12363
12420
|
};
|
|
12364
12421
|
period: string;
|
|
12365
12422
|
clock: string;
|
|
@@ -12538,6 +12595,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
12538
12595
|
school?: string | null | undefined;
|
|
12539
12596
|
city?: string | null | undefined;
|
|
12540
12597
|
venueName?: string | undefined;
|
|
12598
|
+
pickCount?: number | undefined;
|
|
12541
12599
|
};
|
|
12542
12600
|
awayTeam: {
|
|
12543
12601
|
name: string | null;
|
|
@@ -12556,6 +12614,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
12556
12614
|
school?: string | null | undefined;
|
|
12557
12615
|
city?: string | null | undefined;
|
|
12558
12616
|
venueName?: string | undefined;
|
|
12617
|
+
pickCount?: number | undefined;
|
|
12559
12618
|
};
|
|
12560
12619
|
period: string;
|
|
12561
12620
|
clock: string;
|
|
@@ -12734,6 +12793,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
12734
12793
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12735
12794
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12736
12795
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12796
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
12737
12797
|
}, "strip", z.ZodTypeAny, {
|
|
12738
12798
|
name: string | null;
|
|
12739
12799
|
image: string | null;
|
|
@@ -12748,6 +12808,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
12748
12808
|
school?: string | null | undefined;
|
|
12749
12809
|
city?: string | null | undefined;
|
|
12750
12810
|
venueName?: string | null | undefined;
|
|
12811
|
+
pickCount?: number | undefined;
|
|
12751
12812
|
}, {
|
|
12752
12813
|
name: string | null;
|
|
12753
12814
|
image: string | null;
|
|
@@ -12762,6 +12823,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
12762
12823
|
school?: string | null | undefined;
|
|
12763
12824
|
city?: string | null | undefined;
|
|
12764
12825
|
venueName?: string | null | undefined;
|
|
12826
|
+
pickCount?: number | undefined;
|
|
12765
12827
|
}>;
|
|
12766
12828
|
awayTeam: z.ZodObject<{
|
|
12767
12829
|
id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -12777,6 +12839,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
12777
12839
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12778
12840
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12779
12841
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12842
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
12780
12843
|
}, "strip", z.ZodTypeAny, {
|
|
12781
12844
|
name: string | null;
|
|
12782
12845
|
image: string | null;
|
|
@@ -12791,6 +12854,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
12791
12854
|
school?: string | null | undefined;
|
|
12792
12855
|
city?: string | null | undefined;
|
|
12793
12856
|
venueName?: string | null | undefined;
|
|
12857
|
+
pickCount?: number | undefined;
|
|
12794
12858
|
}, {
|
|
12795
12859
|
name: string | null;
|
|
12796
12860
|
image: string | null;
|
|
@@ -12805,6 +12869,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
12805
12869
|
school?: string | null | undefined;
|
|
12806
12870
|
city?: string | null | undefined;
|
|
12807
12871
|
venueName?: string | null | undefined;
|
|
12872
|
+
pickCount?: number | undefined;
|
|
12808
12873
|
}>;
|
|
12809
12874
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
12810
12875
|
homeTeamWins: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -14986,6 +15051,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
14986
15051
|
school?: string | null | undefined;
|
|
14987
15052
|
city?: string | null | undefined;
|
|
14988
15053
|
venueName?: string | null | undefined;
|
|
15054
|
+
pickCount?: number | undefined;
|
|
14989
15055
|
};
|
|
14990
15056
|
awayTeam: {
|
|
14991
15057
|
name: string | null;
|
|
@@ -15001,6 +15067,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
15001
15067
|
school?: string | null | undefined;
|
|
15002
15068
|
city?: string | null | undefined;
|
|
15003
15069
|
venueName?: string | null | undefined;
|
|
15070
|
+
pickCount?: number | undefined;
|
|
15004
15071
|
};
|
|
15005
15072
|
seasonType: number;
|
|
15006
15073
|
possession: string | null;
|
|
@@ -15199,6 +15266,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
15199
15266
|
school?: string | null | undefined;
|
|
15200
15267
|
city?: string | null | undefined;
|
|
15201
15268
|
venueName?: string | null | undefined;
|
|
15269
|
+
pickCount?: number | undefined;
|
|
15202
15270
|
};
|
|
15203
15271
|
awayTeam: {
|
|
15204
15272
|
name: string | null;
|
|
@@ -15214,6 +15282,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
15214
15282
|
school?: string | null | undefined;
|
|
15215
15283
|
city?: string | null | undefined;
|
|
15216
15284
|
venueName?: string | null | undefined;
|
|
15285
|
+
pickCount?: number | undefined;
|
|
15217
15286
|
};
|
|
15218
15287
|
seasonType: number;
|
|
15219
15288
|
possession: string | null;
|
|
@@ -15415,6 +15484,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
15415
15484
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
15416
15485
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
15417
15486
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
15487
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
15418
15488
|
}, "strip", z.ZodTypeAny, {
|
|
15419
15489
|
name: string | null;
|
|
15420
15490
|
image: string | null;
|
|
@@ -15429,6 +15499,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
15429
15499
|
school?: string | null | undefined;
|
|
15430
15500
|
city?: string | null | undefined;
|
|
15431
15501
|
venueName?: string | null | undefined;
|
|
15502
|
+
pickCount?: number | undefined;
|
|
15432
15503
|
}, {
|
|
15433
15504
|
name: string | null;
|
|
15434
15505
|
image: string | null;
|
|
@@ -15443,6 +15514,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
15443
15514
|
school?: string | null | undefined;
|
|
15444
15515
|
city?: string | null | undefined;
|
|
15445
15516
|
venueName?: string | null | undefined;
|
|
15517
|
+
pickCount?: number | undefined;
|
|
15446
15518
|
}>;
|
|
15447
15519
|
awayTeam: z.ZodObject<{
|
|
15448
15520
|
id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -15458,6 +15530,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
15458
15530
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
15459
15531
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
15460
15532
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
15533
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
15461
15534
|
}, "strip", z.ZodTypeAny, {
|
|
15462
15535
|
name: string | null;
|
|
15463
15536
|
image: string | null;
|
|
@@ -15472,6 +15545,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
15472
15545
|
school?: string | null | undefined;
|
|
15473
15546
|
city?: string | null | undefined;
|
|
15474
15547
|
venueName?: string | null | undefined;
|
|
15548
|
+
pickCount?: number | undefined;
|
|
15475
15549
|
}, {
|
|
15476
15550
|
name: string | null;
|
|
15477
15551
|
image: string | null;
|
|
@@ -15486,6 +15560,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
15486
15560
|
school?: string | null | undefined;
|
|
15487
15561
|
city?: string | null | undefined;
|
|
15488
15562
|
venueName?: string | null | undefined;
|
|
15563
|
+
pickCount?: number | undefined;
|
|
15489
15564
|
}>;
|
|
15490
15565
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
15491
15566
|
homeTeamWins: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -17663,6 +17738,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
17663
17738
|
school?: string | null | undefined;
|
|
17664
17739
|
city?: string | null | undefined;
|
|
17665
17740
|
venueName?: string | null | undefined;
|
|
17741
|
+
pickCount?: number | undefined;
|
|
17666
17742
|
};
|
|
17667
17743
|
awayTeam: {
|
|
17668
17744
|
name: string | null;
|
|
@@ -17678,6 +17754,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
17678
17754
|
school?: string | null | undefined;
|
|
17679
17755
|
city?: string | null | undefined;
|
|
17680
17756
|
venueName?: string | null | undefined;
|
|
17757
|
+
pickCount?: number | undefined;
|
|
17681
17758
|
};
|
|
17682
17759
|
timeRemainingMinutes: number;
|
|
17683
17760
|
timeRemainingSeconds: number;
|
|
@@ -17869,6 +17946,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
17869
17946
|
school?: string | null | undefined;
|
|
17870
17947
|
city?: string | null | undefined;
|
|
17871
17948
|
venueName?: string | null | undefined;
|
|
17949
|
+
pickCount?: number | undefined;
|
|
17872
17950
|
};
|
|
17873
17951
|
awayTeam: {
|
|
17874
17952
|
name: string | null;
|
|
@@ -17884,6 +17962,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
17884
17962
|
school?: string | null | undefined;
|
|
17885
17963
|
city?: string | null | undefined;
|
|
17886
17964
|
venueName?: string | null | undefined;
|
|
17965
|
+
pickCount?: number | undefined;
|
|
17887
17966
|
};
|
|
17888
17967
|
timeRemainingMinutes: number;
|
|
17889
17968
|
timeRemainingSeconds: number;
|
|
@@ -18078,6 +18157,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
18078
18157
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
18079
18158
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
18080
18159
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
18160
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
18081
18161
|
}, "strip", z.ZodTypeAny, {
|
|
18082
18162
|
name: string | null;
|
|
18083
18163
|
image: string | null;
|
|
@@ -18092,6 +18172,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
18092
18172
|
school?: string | null | undefined;
|
|
18093
18173
|
city?: string | null | undefined;
|
|
18094
18174
|
venueName?: string | null | undefined;
|
|
18175
|
+
pickCount?: number | undefined;
|
|
18095
18176
|
}, {
|
|
18096
18177
|
name: string | null;
|
|
18097
18178
|
image: string | null;
|
|
@@ -18106,6 +18187,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
18106
18187
|
school?: string | null | undefined;
|
|
18107
18188
|
city?: string | null | undefined;
|
|
18108
18189
|
venueName?: string | null | undefined;
|
|
18190
|
+
pickCount?: number | undefined;
|
|
18109
18191
|
}>;
|
|
18110
18192
|
awayTeam: z.ZodObject<{
|
|
18111
18193
|
id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -18121,6 +18203,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
18121
18203
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
18122
18204
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
18123
18205
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
18206
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
18124
18207
|
}, "strip", z.ZodTypeAny, {
|
|
18125
18208
|
name: string | null;
|
|
18126
18209
|
image: string | null;
|
|
@@ -18135,6 +18218,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
18135
18218
|
school?: string | null | undefined;
|
|
18136
18219
|
city?: string | null | undefined;
|
|
18137
18220
|
venueName?: string | null | undefined;
|
|
18221
|
+
pickCount?: number | undefined;
|
|
18138
18222
|
}, {
|
|
18139
18223
|
name: string | null;
|
|
18140
18224
|
image: string | null;
|
|
@@ -18149,6 +18233,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
18149
18233
|
school?: string | null | undefined;
|
|
18150
18234
|
city?: string | null | undefined;
|
|
18151
18235
|
venueName?: string | null | undefined;
|
|
18236
|
+
pickCount?: number | undefined;
|
|
18152
18237
|
}>;
|
|
18153
18238
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
18154
18239
|
homeTeamWins: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -20278,6 +20363,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
20278
20363
|
school?: string | null | undefined;
|
|
20279
20364
|
city?: string | null | undefined;
|
|
20280
20365
|
venueName?: string | null | undefined;
|
|
20366
|
+
pickCount?: number | undefined;
|
|
20281
20367
|
};
|
|
20282
20368
|
awayTeam: {
|
|
20283
20369
|
name: string | null;
|
|
@@ -20293,6 +20379,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
20293
20379
|
school?: string | null | undefined;
|
|
20294
20380
|
city?: string | null | undefined;
|
|
20295
20381
|
venueName?: string | null | undefined;
|
|
20382
|
+
pickCount?: number | undefined;
|
|
20296
20383
|
};
|
|
20297
20384
|
timeRemainingMinutes: number;
|
|
20298
20385
|
timeRemainingSeconds: number;
|
|
@@ -20464,6 +20551,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
20464
20551
|
school?: string | null | undefined;
|
|
20465
20552
|
city?: string | null | undefined;
|
|
20466
20553
|
venueName?: string | null | undefined;
|
|
20554
|
+
pickCount?: number | undefined;
|
|
20467
20555
|
};
|
|
20468
20556
|
awayTeam: {
|
|
20469
20557
|
name: string | null;
|
|
@@ -20479,6 +20567,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
20479
20567
|
school?: string | null | undefined;
|
|
20480
20568
|
city?: string | null | undefined;
|
|
20481
20569
|
venueName?: string | null | undefined;
|
|
20570
|
+
pickCount?: number | undefined;
|
|
20482
20571
|
};
|
|
20483
20572
|
timeRemainingMinutes: number;
|
|
20484
20573
|
timeRemainingSeconds: number;
|
|
@@ -20654,6 +20743,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20654
20743
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
20655
20744
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
20656
20745
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
20746
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
20657
20747
|
}, "strip", z.ZodTypeAny, {
|
|
20658
20748
|
name: string | null;
|
|
20659
20749
|
image: string | null;
|
|
@@ -20668,6 +20758,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20668
20758
|
school?: string | null | undefined;
|
|
20669
20759
|
city?: string | null | undefined;
|
|
20670
20760
|
venueName?: string | null | undefined;
|
|
20761
|
+
pickCount?: number | undefined;
|
|
20671
20762
|
}, {
|
|
20672
20763
|
name: string | null;
|
|
20673
20764
|
image: string | null;
|
|
@@ -20682,6 +20773,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20682
20773
|
school?: string | null | undefined;
|
|
20683
20774
|
city?: string | null | undefined;
|
|
20684
20775
|
venueName?: string | null | undefined;
|
|
20776
|
+
pickCount?: number | undefined;
|
|
20685
20777
|
}>;
|
|
20686
20778
|
awayTeam: z.ZodObject<{
|
|
20687
20779
|
id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -20697,6 +20789,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20697
20789
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
20698
20790
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
20699
20791
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
20792
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
20700
20793
|
}, "strip", z.ZodTypeAny, {
|
|
20701
20794
|
name: string | null;
|
|
20702
20795
|
image: string | null;
|
|
@@ -20711,6 +20804,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20711
20804
|
school?: string | null | undefined;
|
|
20712
20805
|
city?: string | null | undefined;
|
|
20713
20806
|
venueName?: string | null | undefined;
|
|
20807
|
+
pickCount?: number | undefined;
|
|
20714
20808
|
}, {
|
|
20715
20809
|
name: string | null;
|
|
20716
20810
|
image: string | null;
|
|
@@ -20725,6 +20819,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20725
20819
|
school?: string | null | undefined;
|
|
20726
20820
|
city?: string | null | undefined;
|
|
20727
20821
|
venueName?: string | null | undefined;
|
|
20822
|
+
pickCount?: number | undefined;
|
|
20728
20823
|
}>;
|
|
20729
20824
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
20730
20825
|
homeTeamWins: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -22869,6 +22964,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22869
22964
|
school?: string | null | undefined;
|
|
22870
22965
|
city?: string | null | undefined;
|
|
22871
22966
|
venueName?: string | null | undefined;
|
|
22967
|
+
pickCount?: number | undefined;
|
|
22872
22968
|
};
|
|
22873
22969
|
awayTeam: {
|
|
22874
22970
|
name: string | null;
|
|
@@ -22884,6 +22980,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22884
22980
|
school?: string | null | undefined;
|
|
22885
22981
|
city?: string | null | undefined;
|
|
22886
22982
|
venueName?: string | null | undefined;
|
|
22983
|
+
pickCount?: number | undefined;
|
|
22887
22984
|
};
|
|
22888
22985
|
timeRemainingMinutes: number;
|
|
22889
22986
|
timeRemainingSeconds: number;
|
|
@@ -23062,6 +23159,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
23062
23159
|
school?: string | null | undefined;
|
|
23063
23160
|
city?: string | null | undefined;
|
|
23064
23161
|
venueName?: string | null | undefined;
|
|
23162
|
+
pickCount?: number | undefined;
|
|
23065
23163
|
};
|
|
23066
23164
|
awayTeam: {
|
|
23067
23165
|
name: string | null;
|
|
@@ -23077,6 +23175,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
23077
23175
|
school?: string | null | undefined;
|
|
23078
23176
|
city?: string | null | undefined;
|
|
23079
23177
|
venueName?: string | null | undefined;
|
|
23178
|
+
pickCount?: number | undefined;
|
|
23080
23179
|
};
|
|
23081
23180
|
timeRemainingMinutes: number;
|
|
23082
23181
|
timeRemainingSeconds: number;
|
|
@@ -23257,6 +23356,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
23257
23356
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
23258
23357
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
23259
23358
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
23359
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
23260
23360
|
}, "strip", z.ZodTypeAny, {
|
|
23261
23361
|
name: string | null;
|
|
23262
23362
|
image: string | null;
|
|
@@ -23271,6 +23371,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
23271
23371
|
school?: string | null | undefined;
|
|
23272
23372
|
city?: string | null | undefined;
|
|
23273
23373
|
venueName?: string | null | undefined;
|
|
23374
|
+
pickCount?: number | undefined;
|
|
23274
23375
|
}, {
|
|
23275
23376
|
name: string | null;
|
|
23276
23377
|
image: string | null;
|
|
@@ -23285,6 +23386,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
23285
23386
|
school?: string | null | undefined;
|
|
23286
23387
|
city?: string | null | undefined;
|
|
23287
23388
|
venueName?: string | null | undefined;
|
|
23389
|
+
pickCount?: number | undefined;
|
|
23288
23390
|
}>;
|
|
23289
23391
|
awayTeam: z.ZodObject<{
|
|
23290
23392
|
id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -23300,6 +23402,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
23300
23402
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
23301
23403
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
23302
23404
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
23405
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
23303
23406
|
}, "strip", z.ZodTypeAny, {
|
|
23304
23407
|
name: string | null;
|
|
23305
23408
|
image: string | null;
|
|
@@ -23314,6 +23417,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
23314
23417
|
school?: string | null | undefined;
|
|
23315
23418
|
city?: string | null | undefined;
|
|
23316
23419
|
venueName?: string | null | undefined;
|
|
23420
|
+
pickCount?: number | undefined;
|
|
23317
23421
|
}, {
|
|
23318
23422
|
name: string | null;
|
|
23319
23423
|
image: string | null;
|
|
@@ -23328,6 +23432,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
23328
23432
|
school?: string | null | undefined;
|
|
23329
23433
|
city?: string | null | undefined;
|
|
23330
23434
|
venueName?: string | null | undefined;
|
|
23435
|
+
pickCount?: number | undefined;
|
|
23331
23436
|
}>;
|
|
23332
23437
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
23333
23438
|
homeTeamWins: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -25478,6 +25583,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
25478
25583
|
school?: string | null | undefined;
|
|
25479
25584
|
city?: string | null | undefined;
|
|
25480
25585
|
venueName?: string | null | undefined;
|
|
25586
|
+
pickCount?: number | undefined;
|
|
25481
25587
|
};
|
|
25482
25588
|
awayTeam: {
|
|
25483
25589
|
name: string | null;
|
|
@@ -25493,6 +25599,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
25493
25599
|
school?: string | null | undefined;
|
|
25494
25600
|
city?: string | null | undefined;
|
|
25495
25601
|
venueName?: string | null | undefined;
|
|
25602
|
+
pickCount?: number | undefined;
|
|
25496
25603
|
};
|
|
25497
25604
|
totalInningsRemaining: number;
|
|
25498
25605
|
innings: {
|
|
@@ -25678,6 +25785,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
25678
25785
|
school?: string | null | undefined;
|
|
25679
25786
|
city?: string | null | undefined;
|
|
25680
25787
|
venueName?: string | null | undefined;
|
|
25788
|
+
pickCount?: number | undefined;
|
|
25681
25789
|
};
|
|
25682
25790
|
awayTeam: {
|
|
25683
25791
|
name: string | null;
|
|
@@ -25693,6 +25801,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
25693
25801
|
school?: string | null | undefined;
|
|
25694
25802
|
city?: string | null | undefined;
|
|
25695
25803
|
venueName?: string | null | undefined;
|
|
25804
|
+
pickCount?: number | undefined;
|
|
25696
25805
|
};
|
|
25697
25806
|
totalInningsRemaining: number;
|
|
25698
25807
|
innings: {
|
|
@@ -25881,6 +25990,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
25881
25990
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
25882
25991
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
25883
25992
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
25993
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
25884
25994
|
}, "strip", z.ZodTypeAny, {
|
|
25885
25995
|
name: string | null;
|
|
25886
25996
|
image: string | null;
|
|
@@ -25895,6 +26005,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
25895
26005
|
school?: string | null | undefined;
|
|
25896
26006
|
city?: string | null | undefined;
|
|
25897
26007
|
venueName?: string | null | undefined;
|
|
26008
|
+
pickCount?: number | undefined;
|
|
25898
26009
|
}, {
|
|
25899
26010
|
name: string | null;
|
|
25900
26011
|
image: string | null;
|
|
@@ -25909,6 +26020,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
25909
26020
|
school?: string | null | undefined;
|
|
25910
26021
|
city?: string | null | undefined;
|
|
25911
26022
|
venueName?: string | null | undefined;
|
|
26023
|
+
pickCount?: number | undefined;
|
|
25912
26024
|
}>;
|
|
25913
26025
|
awayTeam: z.ZodObject<{
|
|
25914
26026
|
id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -25924,6 +26036,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
25924
26036
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
25925
26037
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
25926
26038
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
26039
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
25927
26040
|
}, "strip", z.ZodTypeAny, {
|
|
25928
26041
|
name: string | null;
|
|
25929
26042
|
image: string | null;
|
|
@@ -25938,6 +26051,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
25938
26051
|
school?: string | null | undefined;
|
|
25939
26052
|
city?: string | null | undefined;
|
|
25940
26053
|
venueName?: string | null | undefined;
|
|
26054
|
+
pickCount?: number | undefined;
|
|
25941
26055
|
}, {
|
|
25942
26056
|
name: string | null;
|
|
25943
26057
|
image: string | null;
|
|
@@ -25952,6 +26066,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
25952
26066
|
school?: string | null | undefined;
|
|
25953
26067
|
city?: string | null | undefined;
|
|
25954
26068
|
venueName?: string | null | undefined;
|
|
26069
|
+
pickCount?: number | undefined;
|
|
25955
26070
|
}>;
|
|
25956
26071
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
25957
26072
|
homeTeamWins: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -28077,6 +28192,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
28077
28192
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
28078
28193
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
28079
28194
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
28195
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
28080
28196
|
}, {
|
|
28081
28197
|
scorePeriod1: z.ZodNumber;
|
|
28082
28198
|
scorePeriod2: z.ZodNumber;
|
|
@@ -28100,6 +28216,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
28100
28216
|
school?: string | null | undefined;
|
|
28101
28217
|
city?: string | null | undefined;
|
|
28102
28218
|
venueName?: string | undefined;
|
|
28219
|
+
pickCount?: number | undefined;
|
|
28103
28220
|
}, {
|
|
28104
28221
|
name: string | null;
|
|
28105
28222
|
image: string | null;
|
|
@@ -28117,6 +28234,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
28117
28234
|
school?: string | null | undefined;
|
|
28118
28235
|
city?: string | null | undefined;
|
|
28119
28236
|
venueName?: string | undefined;
|
|
28237
|
+
pickCount?: number | undefined;
|
|
28120
28238
|
}>;
|
|
28121
28239
|
awayTeam: z.ZodObject<z.objectUtil.extendShape<{
|
|
28122
28240
|
id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -28132,6 +28250,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
28132
28250
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
28133
28251
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
28134
28252
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
28253
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
28135
28254
|
}, {
|
|
28136
28255
|
scorePeriod1: z.ZodNumber;
|
|
28137
28256
|
scorePeriod2: z.ZodNumber;
|
|
@@ -28155,6 +28274,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
28155
28274
|
school?: string | null | undefined;
|
|
28156
28275
|
city?: string | null | undefined;
|
|
28157
28276
|
venueName?: string | undefined;
|
|
28277
|
+
pickCount?: number | undefined;
|
|
28158
28278
|
}, {
|
|
28159
28279
|
name: string | null;
|
|
28160
28280
|
image: string | null;
|
|
@@ -28172,6 +28292,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
28172
28292
|
school?: string | null | undefined;
|
|
28173
28293
|
city?: string | null | undefined;
|
|
28174
28294
|
venueName?: string | undefined;
|
|
28295
|
+
pickCount?: number | undefined;
|
|
28175
28296
|
}>;
|
|
28176
28297
|
hadExtraTime: z.ZodBoolean;
|
|
28177
28298
|
halfTimeBreak: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -28199,6 +28320,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
28199
28320
|
school?: string | null | undefined;
|
|
28200
28321
|
city?: string | null | undefined;
|
|
28201
28322
|
venueName?: string | undefined;
|
|
28323
|
+
pickCount?: number | undefined;
|
|
28202
28324
|
};
|
|
28203
28325
|
awayTeam: {
|
|
28204
28326
|
name: string | null;
|
|
@@ -28217,6 +28339,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
28217
28339
|
school?: string | null | undefined;
|
|
28218
28340
|
city?: string | null | undefined;
|
|
28219
28341
|
venueName?: string | undefined;
|
|
28342
|
+
pickCount?: number | undefined;
|
|
28220
28343
|
};
|
|
28221
28344
|
period: string;
|
|
28222
28345
|
clock: string;
|
|
@@ -28395,6 +28518,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
28395
28518
|
school?: string | null | undefined;
|
|
28396
28519
|
city?: string | null | undefined;
|
|
28397
28520
|
venueName?: string | undefined;
|
|
28521
|
+
pickCount?: number | undefined;
|
|
28398
28522
|
};
|
|
28399
28523
|
awayTeam: {
|
|
28400
28524
|
name: string | null;
|
|
@@ -28413,6 +28537,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
28413
28537
|
school?: string | null | undefined;
|
|
28414
28538
|
city?: string | null | undefined;
|
|
28415
28539
|
venueName?: string | undefined;
|
|
28540
|
+
pickCount?: number | undefined;
|
|
28416
28541
|
};
|
|
28417
28542
|
period: string;
|
|
28418
28543
|
clock: string;
|
|
@@ -28590,6 +28715,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
28590
28715
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
28591
28716
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
28592
28717
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
28718
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
28593
28719
|
}, "strip", z.ZodTypeAny, {
|
|
28594
28720
|
name: string | null;
|
|
28595
28721
|
image: string | null;
|
|
@@ -28604,6 +28730,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
28604
28730
|
school?: string | null | undefined;
|
|
28605
28731
|
city?: string | null | undefined;
|
|
28606
28732
|
venueName?: string | null | undefined;
|
|
28733
|
+
pickCount?: number | undefined;
|
|
28607
28734
|
}, {
|
|
28608
28735
|
name: string | null;
|
|
28609
28736
|
image: string | null;
|
|
@@ -28618,6 +28745,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
28618
28745
|
school?: string | null | undefined;
|
|
28619
28746
|
city?: string | null | undefined;
|
|
28620
28747
|
venueName?: string | null | undefined;
|
|
28748
|
+
pickCount?: number | undefined;
|
|
28621
28749
|
}>;
|
|
28622
28750
|
awayTeam: z.ZodObject<{
|
|
28623
28751
|
id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -28633,6 +28761,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
28633
28761
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
28634
28762
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
28635
28763
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
28764
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
28636
28765
|
}, "strip", z.ZodTypeAny, {
|
|
28637
28766
|
name: string | null;
|
|
28638
28767
|
image: string | null;
|
|
@@ -28647,6 +28776,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
28647
28776
|
school?: string | null | undefined;
|
|
28648
28777
|
city?: string | null | undefined;
|
|
28649
28778
|
venueName?: string | null | undefined;
|
|
28779
|
+
pickCount?: number | undefined;
|
|
28650
28780
|
}, {
|
|
28651
28781
|
name: string | null;
|
|
28652
28782
|
image: string | null;
|
|
@@ -28661,6 +28791,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
28661
28791
|
school?: string | null | undefined;
|
|
28662
28792
|
city?: string | null | undefined;
|
|
28663
28793
|
venueName?: string | null | undefined;
|
|
28794
|
+
pickCount?: number | undefined;
|
|
28664
28795
|
}>;
|
|
28665
28796
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
28666
28797
|
homeTeamWins: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -30842,6 +30973,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
30842
30973
|
school?: string | null | undefined;
|
|
30843
30974
|
city?: string | null | undefined;
|
|
30844
30975
|
venueName?: string | null | undefined;
|
|
30976
|
+
pickCount?: number | undefined;
|
|
30845
30977
|
};
|
|
30846
30978
|
awayTeam: {
|
|
30847
30979
|
name: string | null;
|
|
@@ -30857,6 +30989,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
30857
30989
|
school?: string | null | undefined;
|
|
30858
30990
|
city?: string | null | undefined;
|
|
30859
30991
|
venueName?: string | null | undefined;
|
|
30992
|
+
pickCount?: number | undefined;
|
|
30860
30993
|
};
|
|
30861
30994
|
seasonType: number;
|
|
30862
30995
|
possession: string | null;
|
|
@@ -31055,6 +31188,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
31055
31188
|
school?: string | null | undefined;
|
|
31056
31189
|
city?: string | null | undefined;
|
|
31057
31190
|
venueName?: string | null | undefined;
|
|
31191
|
+
pickCount?: number | undefined;
|
|
31058
31192
|
};
|
|
31059
31193
|
awayTeam: {
|
|
31060
31194
|
name: string | null;
|
|
@@ -31070,6 +31204,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
31070
31204
|
school?: string | null | undefined;
|
|
31071
31205
|
city?: string | null | undefined;
|
|
31072
31206
|
venueName?: string | null | undefined;
|
|
31207
|
+
pickCount?: number | undefined;
|
|
31073
31208
|
};
|
|
31074
31209
|
seasonType: number;
|
|
31075
31210
|
possession: string | null;
|
|
@@ -31270,6 +31405,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
31270
31405
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
31271
31406
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
31272
31407
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
31408
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
31273
31409
|
}, "strip", z.ZodTypeAny, {
|
|
31274
31410
|
name: string | null;
|
|
31275
31411
|
image: string | null;
|
|
@@ -31284,6 +31420,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
31284
31420
|
school?: string | null | undefined;
|
|
31285
31421
|
city?: string | null | undefined;
|
|
31286
31422
|
venueName?: string | null | undefined;
|
|
31423
|
+
pickCount?: number | undefined;
|
|
31287
31424
|
}, {
|
|
31288
31425
|
name: string | null;
|
|
31289
31426
|
image: string | null;
|
|
@@ -31298,6 +31435,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
31298
31435
|
school?: string | null | undefined;
|
|
31299
31436
|
city?: string | null | undefined;
|
|
31300
31437
|
venueName?: string | null | undefined;
|
|
31438
|
+
pickCount?: number | undefined;
|
|
31301
31439
|
}>;
|
|
31302
31440
|
awayTeam: z.ZodObject<{
|
|
31303
31441
|
id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -31313,6 +31451,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
31313
31451
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
31314
31452
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
31315
31453
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
31454
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
31316
31455
|
}, "strip", z.ZodTypeAny, {
|
|
31317
31456
|
name: string | null;
|
|
31318
31457
|
image: string | null;
|
|
@@ -31327,6 +31466,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
31327
31466
|
school?: string | null | undefined;
|
|
31328
31467
|
city?: string | null | undefined;
|
|
31329
31468
|
venueName?: string | null | undefined;
|
|
31469
|
+
pickCount?: number | undefined;
|
|
31330
31470
|
}, {
|
|
31331
31471
|
name: string | null;
|
|
31332
31472
|
image: string | null;
|
|
@@ -31341,6 +31481,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
31341
31481
|
school?: string | null | undefined;
|
|
31342
31482
|
city?: string | null | undefined;
|
|
31343
31483
|
venueName?: string | null | undefined;
|
|
31484
|
+
pickCount?: number | undefined;
|
|
31344
31485
|
}>;
|
|
31345
31486
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
31346
31487
|
homeTeamWins: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -33518,6 +33659,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
33518
33659
|
school?: string | null | undefined;
|
|
33519
33660
|
city?: string | null | undefined;
|
|
33520
33661
|
venueName?: string | null | undefined;
|
|
33662
|
+
pickCount?: number | undefined;
|
|
33521
33663
|
};
|
|
33522
33664
|
awayTeam: {
|
|
33523
33665
|
name: string | null;
|
|
@@ -33533,6 +33675,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
33533
33675
|
school?: string | null | undefined;
|
|
33534
33676
|
city?: string | null | undefined;
|
|
33535
33677
|
venueName?: string | null | undefined;
|
|
33678
|
+
pickCount?: number | undefined;
|
|
33536
33679
|
};
|
|
33537
33680
|
timeRemainingMinutes: number;
|
|
33538
33681
|
timeRemainingSeconds: number;
|
|
@@ -33724,6 +33867,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
33724
33867
|
school?: string | null | undefined;
|
|
33725
33868
|
city?: string | null | undefined;
|
|
33726
33869
|
venueName?: string | null | undefined;
|
|
33870
|
+
pickCount?: number | undefined;
|
|
33727
33871
|
};
|
|
33728
33872
|
awayTeam: {
|
|
33729
33873
|
name: string | null;
|
|
@@ -33739,6 +33883,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
33739
33883
|
school?: string | null | undefined;
|
|
33740
33884
|
city?: string | null | undefined;
|
|
33741
33885
|
venueName?: string | null | undefined;
|
|
33886
|
+
pickCount?: number | undefined;
|
|
33742
33887
|
};
|
|
33743
33888
|
timeRemainingMinutes: number;
|
|
33744
33889
|
timeRemainingSeconds: number;
|
|
@@ -33932,6 +34077,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
33932
34077
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
33933
34078
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
33934
34079
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
34080
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
33935
34081
|
}, "strip", z.ZodTypeAny, {
|
|
33936
34082
|
name: string | null;
|
|
33937
34083
|
image: string | null;
|
|
@@ -33946,6 +34092,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
33946
34092
|
school?: string | null | undefined;
|
|
33947
34093
|
city?: string | null | undefined;
|
|
33948
34094
|
venueName?: string | null | undefined;
|
|
34095
|
+
pickCount?: number | undefined;
|
|
33949
34096
|
}, {
|
|
33950
34097
|
name: string | null;
|
|
33951
34098
|
image: string | null;
|
|
@@ -33960,6 +34107,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
33960
34107
|
school?: string | null | undefined;
|
|
33961
34108
|
city?: string | null | undefined;
|
|
33962
34109
|
venueName?: string | null | undefined;
|
|
34110
|
+
pickCount?: number | undefined;
|
|
33963
34111
|
}>;
|
|
33964
34112
|
awayTeam: z.ZodObject<{
|
|
33965
34113
|
id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -33975,6 +34123,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
33975
34123
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
33976
34124
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
33977
34125
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
34126
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
33978
34127
|
}, "strip", z.ZodTypeAny, {
|
|
33979
34128
|
name: string | null;
|
|
33980
34129
|
image: string | null;
|
|
@@ -33989,6 +34138,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
33989
34138
|
school?: string | null | undefined;
|
|
33990
34139
|
city?: string | null | undefined;
|
|
33991
34140
|
venueName?: string | null | undefined;
|
|
34141
|
+
pickCount?: number | undefined;
|
|
33992
34142
|
}, {
|
|
33993
34143
|
name: string | null;
|
|
33994
34144
|
image: string | null;
|
|
@@ -34003,6 +34153,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
34003
34153
|
school?: string | null | undefined;
|
|
34004
34154
|
city?: string | null | undefined;
|
|
34005
34155
|
venueName?: string | null | undefined;
|
|
34156
|
+
pickCount?: number | undefined;
|
|
34006
34157
|
}>;
|
|
34007
34158
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
34008
34159
|
homeTeamWins: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -36132,6 +36283,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
36132
36283
|
school?: string | null | undefined;
|
|
36133
36284
|
city?: string | null | undefined;
|
|
36134
36285
|
venueName?: string | null | undefined;
|
|
36286
|
+
pickCount?: number | undefined;
|
|
36135
36287
|
};
|
|
36136
36288
|
awayTeam: {
|
|
36137
36289
|
name: string | null;
|
|
@@ -36147,6 +36299,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
36147
36299
|
school?: string | null | undefined;
|
|
36148
36300
|
city?: string | null | undefined;
|
|
36149
36301
|
venueName?: string | null | undefined;
|
|
36302
|
+
pickCount?: number | undefined;
|
|
36150
36303
|
};
|
|
36151
36304
|
timeRemainingMinutes: number;
|
|
36152
36305
|
timeRemainingSeconds: number;
|
|
@@ -36318,6 +36471,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
36318
36471
|
school?: string | null | undefined;
|
|
36319
36472
|
city?: string | null | undefined;
|
|
36320
36473
|
venueName?: string | null | undefined;
|
|
36474
|
+
pickCount?: number | undefined;
|
|
36321
36475
|
};
|
|
36322
36476
|
awayTeam: {
|
|
36323
36477
|
name: string | null;
|
|
@@ -36333,6 +36487,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
36333
36487
|
school?: string | null | undefined;
|
|
36334
36488
|
city?: string | null | undefined;
|
|
36335
36489
|
venueName?: string | null | undefined;
|
|
36490
|
+
pickCount?: number | undefined;
|
|
36336
36491
|
};
|
|
36337
36492
|
timeRemainingMinutes: number;
|
|
36338
36493
|
timeRemainingSeconds: number;
|
|
@@ -36558,6 +36713,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36558
36713
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
36559
36714
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
36560
36715
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
36716
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
36561
36717
|
}, "strip", z.ZodTypeAny, {
|
|
36562
36718
|
name: string | null;
|
|
36563
36719
|
image: string | null;
|
|
@@ -36572,6 +36728,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36572
36728
|
school?: string | null | undefined;
|
|
36573
36729
|
city?: string | null | undefined;
|
|
36574
36730
|
venueName?: string | null | undefined;
|
|
36731
|
+
pickCount?: number | undefined;
|
|
36575
36732
|
}, {
|
|
36576
36733
|
name: string | null;
|
|
36577
36734
|
image: string | null;
|
|
@@ -36586,6 +36743,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36586
36743
|
school?: string | null | undefined;
|
|
36587
36744
|
city?: string | null | undefined;
|
|
36588
36745
|
venueName?: string | null | undefined;
|
|
36746
|
+
pickCount?: number | undefined;
|
|
36589
36747
|
}>;
|
|
36590
36748
|
awayTeam: z.ZodObject<{
|
|
36591
36749
|
id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -36601,6 +36759,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36601
36759
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
36602
36760
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
36603
36761
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
36762
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
36604
36763
|
}, "strip", z.ZodTypeAny, {
|
|
36605
36764
|
name: string | null;
|
|
36606
36765
|
image: string | null;
|
|
@@ -36615,6 +36774,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36615
36774
|
school?: string | null | undefined;
|
|
36616
36775
|
city?: string | null | undefined;
|
|
36617
36776
|
venueName?: string | null | undefined;
|
|
36777
|
+
pickCount?: number | undefined;
|
|
36618
36778
|
}, {
|
|
36619
36779
|
name: string | null;
|
|
36620
36780
|
image: string | null;
|
|
@@ -36629,6 +36789,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36629
36789
|
school?: string | null | undefined;
|
|
36630
36790
|
city?: string | null | undefined;
|
|
36631
36791
|
venueName?: string | null | undefined;
|
|
36792
|
+
pickCount?: number | undefined;
|
|
36632
36793
|
}>;
|
|
36633
36794
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
36634
36795
|
homeTeamWins: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -38773,6 +38934,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38773
38934
|
school?: string | null | undefined;
|
|
38774
38935
|
city?: string | null | undefined;
|
|
38775
38936
|
venueName?: string | null | undefined;
|
|
38937
|
+
pickCount?: number | undefined;
|
|
38776
38938
|
};
|
|
38777
38939
|
awayTeam: {
|
|
38778
38940
|
name: string | null;
|
|
@@ -38788,6 +38950,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38788
38950
|
school?: string | null | undefined;
|
|
38789
38951
|
city?: string | null | undefined;
|
|
38790
38952
|
venueName?: string | null | undefined;
|
|
38953
|
+
pickCount?: number | undefined;
|
|
38791
38954
|
};
|
|
38792
38955
|
timeRemainingMinutes: number;
|
|
38793
38956
|
timeRemainingSeconds: number;
|
|
@@ -38966,6 +39129,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38966
39129
|
school?: string | null | undefined;
|
|
38967
39130
|
city?: string | null | undefined;
|
|
38968
39131
|
venueName?: string | null | undefined;
|
|
39132
|
+
pickCount?: number | undefined;
|
|
38969
39133
|
};
|
|
38970
39134
|
awayTeam: {
|
|
38971
39135
|
name: string | null;
|
|
@@ -38981,6 +39145,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38981
39145
|
school?: string | null | undefined;
|
|
38982
39146
|
city?: string | null | undefined;
|
|
38983
39147
|
venueName?: string | null | undefined;
|
|
39148
|
+
pickCount?: number | undefined;
|
|
38984
39149
|
};
|
|
38985
39150
|
timeRemainingMinutes: number;
|
|
38986
39151
|
timeRemainingSeconds: number;
|
|
@@ -39161,6 +39326,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
39161
39326
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
39162
39327
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
39163
39328
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
39329
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
39164
39330
|
}, "strip", z.ZodTypeAny, {
|
|
39165
39331
|
name: string | null;
|
|
39166
39332
|
image: string | null;
|
|
@@ -39175,6 +39341,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
39175
39341
|
school?: string | null | undefined;
|
|
39176
39342
|
city?: string | null | undefined;
|
|
39177
39343
|
venueName?: string | null | undefined;
|
|
39344
|
+
pickCount?: number | undefined;
|
|
39178
39345
|
}, {
|
|
39179
39346
|
name: string | null;
|
|
39180
39347
|
image: string | null;
|
|
@@ -39189,6 +39356,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
39189
39356
|
school?: string | null | undefined;
|
|
39190
39357
|
city?: string | null | undefined;
|
|
39191
39358
|
venueName?: string | null | undefined;
|
|
39359
|
+
pickCount?: number | undefined;
|
|
39192
39360
|
}>;
|
|
39193
39361
|
awayTeam: z.ZodObject<{
|
|
39194
39362
|
id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -39204,6 +39372,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
39204
39372
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
39205
39373
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
39206
39374
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
39375
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
39207
39376
|
}, "strip", z.ZodTypeAny, {
|
|
39208
39377
|
name: string | null;
|
|
39209
39378
|
image: string | null;
|
|
@@ -39218,6 +39387,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
39218
39387
|
school?: string | null | undefined;
|
|
39219
39388
|
city?: string | null | undefined;
|
|
39220
39389
|
venueName?: string | null | undefined;
|
|
39390
|
+
pickCount?: number | undefined;
|
|
39221
39391
|
}, {
|
|
39222
39392
|
name: string | null;
|
|
39223
39393
|
image: string | null;
|
|
@@ -39232,6 +39402,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
39232
39402
|
school?: string | null | undefined;
|
|
39233
39403
|
city?: string | null | undefined;
|
|
39234
39404
|
venueName?: string | null | undefined;
|
|
39405
|
+
pickCount?: number | undefined;
|
|
39235
39406
|
}>;
|
|
39236
39407
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
39237
39408
|
homeTeamWins: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -41382,6 +41553,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
41382
41553
|
school?: string | null | undefined;
|
|
41383
41554
|
city?: string | null | undefined;
|
|
41384
41555
|
venueName?: string | null | undefined;
|
|
41556
|
+
pickCount?: number | undefined;
|
|
41385
41557
|
};
|
|
41386
41558
|
awayTeam: {
|
|
41387
41559
|
name: string | null;
|
|
@@ -41397,6 +41569,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
41397
41569
|
school?: string | null | undefined;
|
|
41398
41570
|
city?: string | null | undefined;
|
|
41399
41571
|
venueName?: string | null | undefined;
|
|
41572
|
+
pickCount?: number | undefined;
|
|
41400
41573
|
};
|
|
41401
41574
|
totalInningsRemaining: number;
|
|
41402
41575
|
innings: {
|
|
@@ -41582,6 +41755,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
41582
41755
|
school?: string | null | undefined;
|
|
41583
41756
|
city?: string | null | undefined;
|
|
41584
41757
|
venueName?: string | null | undefined;
|
|
41758
|
+
pickCount?: number | undefined;
|
|
41585
41759
|
};
|
|
41586
41760
|
awayTeam: {
|
|
41587
41761
|
name: string | null;
|
|
@@ -41597,6 +41771,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
41597
41771
|
school?: string | null | undefined;
|
|
41598
41772
|
city?: string | null | undefined;
|
|
41599
41773
|
venueName?: string | null | undefined;
|
|
41774
|
+
pickCount?: number | undefined;
|
|
41600
41775
|
};
|
|
41601
41776
|
totalInningsRemaining: number;
|
|
41602
41777
|
innings: {
|
|
@@ -41785,6 +41960,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
41785
41960
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
41786
41961
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
41787
41962
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
41963
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
41788
41964
|
}, "strip", z.ZodTypeAny, {
|
|
41789
41965
|
name: string | null;
|
|
41790
41966
|
image: string | null;
|
|
@@ -41799,6 +41975,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
41799
41975
|
school?: string | null | undefined;
|
|
41800
41976
|
city?: string | null | undefined;
|
|
41801
41977
|
venueName?: string | null | undefined;
|
|
41978
|
+
pickCount?: number | undefined;
|
|
41802
41979
|
}, {
|
|
41803
41980
|
name: string | null;
|
|
41804
41981
|
image: string | null;
|
|
@@ -41813,6 +41990,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
41813
41990
|
school?: string | null | undefined;
|
|
41814
41991
|
city?: string | null | undefined;
|
|
41815
41992
|
venueName?: string | null | undefined;
|
|
41993
|
+
pickCount?: number | undefined;
|
|
41816
41994
|
}>;
|
|
41817
41995
|
awayTeam: z.ZodObject<{
|
|
41818
41996
|
id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -41828,6 +42006,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
41828
42006
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
41829
42007
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
41830
42008
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
42009
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
41831
42010
|
}, "strip", z.ZodTypeAny, {
|
|
41832
42011
|
name: string | null;
|
|
41833
42012
|
image: string | null;
|
|
@@ -41842,6 +42021,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
41842
42021
|
school?: string | null | undefined;
|
|
41843
42022
|
city?: string | null | undefined;
|
|
41844
42023
|
venueName?: string | null | undefined;
|
|
42024
|
+
pickCount?: number | undefined;
|
|
41845
42025
|
}, {
|
|
41846
42026
|
name: string | null;
|
|
41847
42027
|
image: string | null;
|
|
@@ -41856,6 +42036,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
41856
42036
|
school?: string | null | undefined;
|
|
41857
42037
|
city?: string | null | undefined;
|
|
41858
42038
|
venueName?: string | null | undefined;
|
|
42039
|
+
pickCount?: number | undefined;
|
|
41859
42040
|
}>;
|
|
41860
42041
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
41861
42042
|
homeTeamWins: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -43981,6 +44162,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43981
44162
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
43982
44163
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
43983
44164
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
44165
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
43984
44166
|
}, {
|
|
43985
44167
|
scorePeriod1: z.ZodNumber;
|
|
43986
44168
|
scorePeriod2: z.ZodNumber;
|
|
@@ -44004,6 +44186,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
44004
44186
|
school?: string | null | undefined;
|
|
44005
44187
|
city?: string | null | undefined;
|
|
44006
44188
|
venueName?: string | undefined;
|
|
44189
|
+
pickCount?: number | undefined;
|
|
44007
44190
|
}, {
|
|
44008
44191
|
name: string | null;
|
|
44009
44192
|
image: string | null;
|
|
@@ -44021,6 +44204,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
44021
44204
|
school?: string | null | undefined;
|
|
44022
44205
|
city?: string | null | undefined;
|
|
44023
44206
|
venueName?: string | undefined;
|
|
44207
|
+
pickCount?: number | undefined;
|
|
44024
44208
|
}>;
|
|
44025
44209
|
awayTeam: z.ZodObject<z.objectUtil.extendShape<{
|
|
44026
44210
|
id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -44036,6 +44220,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
44036
44220
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
44037
44221
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
44038
44222
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
44223
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
44039
44224
|
}, {
|
|
44040
44225
|
scorePeriod1: z.ZodNumber;
|
|
44041
44226
|
scorePeriod2: z.ZodNumber;
|
|
@@ -44059,6 +44244,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
44059
44244
|
school?: string | null | undefined;
|
|
44060
44245
|
city?: string | null | undefined;
|
|
44061
44246
|
venueName?: string | undefined;
|
|
44247
|
+
pickCount?: number | undefined;
|
|
44062
44248
|
}, {
|
|
44063
44249
|
name: string | null;
|
|
44064
44250
|
image: string | null;
|
|
@@ -44076,6 +44262,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
44076
44262
|
school?: string | null | undefined;
|
|
44077
44263
|
city?: string | null | undefined;
|
|
44078
44264
|
venueName?: string | undefined;
|
|
44265
|
+
pickCount?: number | undefined;
|
|
44079
44266
|
}>;
|
|
44080
44267
|
hadExtraTime: z.ZodBoolean;
|
|
44081
44268
|
halfTimeBreak: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -44103,6 +44290,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
44103
44290
|
school?: string | null | undefined;
|
|
44104
44291
|
city?: string | null | undefined;
|
|
44105
44292
|
venueName?: string | undefined;
|
|
44293
|
+
pickCount?: number | undefined;
|
|
44106
44294
|
};
|
|
44107
44295
|
awayTeam: {
|
|
44108
44296
|
name: string | null;
|
|
@@ -44121,6 +44309,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
44121
44309
|
school?: string | null | undefined;
|
|
44122
44310
|
city?: string | null | undefined;
|
|
44123
44311
|
venueName?: string | undefined;
|
|
44312
|
+
pickCount?: number | undefined;
|
|
44124
44313
|
};
|
|
44125
44314
|
period: string;
|
|
44126
44315
|
clock: string;
|
|
@@ -44299,6 +44488,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
44299
44488
|
school?: string | null | undefined;
|
|
44300
44489
|
city?: string | null | undefined;
|
|
44301
44490
|
venueName?: string | undefined;
|
|
44491
|
+
pickCount?: number | undefined;
|
|
44302
44492
|
};
|
|
44303
44493
|
awayTeam: {
|
|
44304
44494
|
name: string | null;
|
|
@@ -44317,6 +44507,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
44317
44507
|
school?: string | null | undefined;
|
|
44318
44508
|
city?: string | null | undefined;
|
|
44319
44509
|
venueName?: string | undefined;
|
|
44510
|
+
pickCount?: number | undefined;
|
|
44320
44511
|
};
|
|
44321
44512
|
period: string;
|
|
44322
44513
|
clock: string;
|
|
@@ -44494,6 +44685,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
44494
44685
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
44495
44686
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
44496
44687
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
44688
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
44497
44689
|
}, "strip", z.ZodTypeAny, {
|
|
44498
44690
|
name: string | null;
|
|
44499
44691
|
image: string | null;
|
|
@@ -44508,6 +44700,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
44508
44700
|
school?: string | null | undefined;
|
|
44509
44701
|
city?: string | null | undefined;
|
|
44510
44702
|
venueName?: string | null | undefined;
|
|
44703
|
+
pickCount?: number | undefined;
|
|
44511
44704
|
}, {
|
|
44512
44705
|
name: string | null;
|
|
44513
44706
|
image: string | null;
|
|
@@ -44522,6 +44715,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
44522
44715
|
school?: string | null | undefined;
|
|
44523
44716
|
city?: string | null | undefined;
|
|
44524
44717
|
venueName?: string | null | undefined;
|
|
44718
|
+
pickCount?: number | undefined;
|
|
44525
44719
|
}>;
|
|
44526
44720
|
awayTeam: z.ZodObject<{
|
|
44527
44721
|
id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -44537,6 +44731,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
44537
44731
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
44538
44732
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
44539
44733
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
44734
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
44540
44735
|
}, "strip", z.ZodTypeAny, {
|
|
44541
44736
|
name: string | null;
|
|
44542
44737
|
image: string | null;
|
|
@@ -44551,6 +44746,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
44551
44746
|
school?: string | null | undefined;
|
|
44552
44747
|
city?: string | null | undefined;
|
|
44553
44748
|
venueName?: string | null | undefined;
|
|
44749
|
+
pickCount?: number | undefined;
|
|
44554
44750
|
}, {
|
|
44555
44751
|
name: string | null;
|
|
44556
44752
|
image: string | null;
|
|
@@ -44565,6 +44761,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
44565
44761
|
school?: string | null | undefined;
|
|
44566
44762
|
city?: string | null | undefined;
|
|
44567
44763
|
venueName?: string | null | undefined;
|
|
44764
|
+
pickCount?: number | undefined;
|
|
44568
44765
|
}>;
|
|
44569
44766
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
44570
44767
|
homeTeamWins: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -46746,6 +46943,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46746
46943
|
school?: string | null | undefined;
|
|
46747
46944
|
city?: string | null | undefined;
|
|
46748
46945
|
venueName?: string | null | undefined;
|
|
46946
|
+
pickCount?: number | undefined;
|
|
46749
46947
|
};
|
|
46750
46948
|
awayTeam: {
|
|
46751
46949
|
name: string | null;
|
|
@@ -46761,6 +46959,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46761
46959
|
school?: string | null | undefined;
|
|
46762
46960
|
city?: string | null | undefined;
|
|
46763
46961
|
venueName?: string | null | undefined;
|
|
46962
|
+
pickCount?: number | undefined;
|
|
46764
46963
|
};
|
|
46765
46964
|
seasonType: number;
|
|
46766
46965
|
possession: string | null;
|
|
@@ -46959,6 +47158,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46959
47158
|
school?: string | null | undefined;
|
|
46960
47159
|
city?: string | null | undefined;
|
|
46961
47160
|
venueName?: string | null | undefined;
|
|
47161
|
+
pickCount?: number | undefined;
|
|
46962
47162
|
};
|
|
46963
47163
|
awayTeam: {
|
|
46964
47164
|
name: string | null;
|
|
@@ -46974,6 +47174,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46974
47174
|
school?: string | null | undefined;
|
|
46975
47175
|
city?: string | null | undefined;
|
|
46976
47176
|
venueName?: string | null | undefined;
|
|
47177
|
+
pickCount?: number | undefined;
|
|
46977
47178
|
};
|
|
46978
47179
|
seasonType: number;
|
|
46979
47180
|
possession: string | null;
|
|
@@ -47174,6 +47375,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47174
47375
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
47175
47376
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
47176
47377
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
47378
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
47177
47379
|
}, "strip", z.ZodTypeAny, {
|
|
47178
47380
|
name: string | null;
|
|
47179
47381
|
image: string | null;
|
|
@@ -47188,6 +47390,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47188
47390
|
school?: string | null | undefined;
|
|
47189
47391
|
city?: string | null | undefined;
|
|
47190
47392
|
venueName?: string | null | undefined;
|
|
47393
|
+
pickCount?: number | undefined;
|
|
47191
47394
|
}, {
|
|
47192
47395
|
name: string | null;
|
|
47193
47396
|
image: string | null;
|
|
@@ -47202,6 +47405,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47202
47405
|
school?: string | null | undefined;
|
|
47203
47406
|
city?: string | null | undefined;
|
|
47204
47407
|
venueName?: string | null | undefined;
|
|
47408
|
+
pickCount?: number | undefined;
|
|
47205
47409
|
}>;
|
|
47206
47410
|
awayTeam: z.ZodObject<{
|
|
47207
47411
|
id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -47217,6 +47421,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47217
47421
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
47218
47422
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
47219
47423
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
47424
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
47220
47425
|
}, "strip", z.ZodTypeAny, {
|
|
47221
47426
|
name: string | null;
|
|
47222
47427
|
image: string | null;
|
|
@@ -47231,6 +47436,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47231
47436
|
school?: string | null | undefined;
|
|
47232
47437
|
city?: string | null | undefined;
|
|
47233
47438
|
venueName?: string | null | undefined;
|
|
47439
|
+
pickCount?: number | undefined;
|
|
47234
47440
|
}, {
|
|
47235
47441
|
name: string | null;
|
|
47236
47442
|
image: string | null;
|
|
@@ -47245,6 +47451,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47245
47451
|
school?: string | null | undefined;
|
|
47246
47452
|
city?: string | null | undefined;
|
|
47247
47453
|
venueName?: string | null | undefined;
|
|
47454
|
+
pickCount?: number | undefined;
|
|
47248
47455
|
}>;
|
|
47249
47456
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
47250
47457
|
homeTeamWins: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -49422,6 +49629,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
49422
49629
|
school?: string | null | undefined;
|
|
49423
49630
|
city?: string | null | undefined;
|
|
49424
49631
|
venueName?: string | null | undefined;
|
|
49632
|
+
pickCount?: number | undefined;
|
|
49425
49633
|
};
|
|
49426
49634
|
awayTeam: {
|
|
49427
49635
|
name: string | null;
|
|
@@ -49437,6 +49645,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
49437
49645
|
school?: string | null | undefined;
|
|
49438
49646
|
city?: string | null | undefined;
|
|
49439
49647
|
venueName?: string | null | undefined;
|
|
49648
|
+
pickCount?: number | undefined;
|
|
49440
49649
|
};
|
|
49441
49650
|
timeRemainingMinutes: number;
|
|
49442
49651
|
timeRemainingSeconds: number;
|
|
@@ -49628,6 +49837,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
49628
49837
|
school?: string | null | undefined;
|
|
49629
49838
|
city?: string | null | undefined;
|
|
49630
49839
|
venueName?: string | null | undefined;
|
|
49840
|
+
pickCount?: number | undefined;
|
|
49631
49841
|
};
|
|
49632
49842
|
awayTeam: {
|
|
49633
49843
|
name: string | null;
|
|
@@ -49643,6 +49853,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
49643
49853
|
school?: string | null | undefined;
|
|
49644
49854
|
city?: string | null | undefined;
|
|
49645
49855
|
venueName?: string | null | undefined;
|
|
49856
|
+
pickCount?: number | undefined;
|
|
49646
49857
|
};
|
|
49647
49858
|
timeRemainingMinutes: number;
|
|
49648
49859
|
timeRemainingSeconds: number;
|
|
@@ -49836,6 +50047,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
49836
50047
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
49837
50048
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
49838
50049
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
50050
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
49839
50051
|
}, "strip", z.ZodTypeAny, {
|
|
49840
50052
|
name: string | null;
|
|
49841
50053
|
image: string | null;
|
|
@@ -49850,6 +50062,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
49850
50062
|
school?: string | null | undefined;
|
|
49851
50063
|
city?: string | null | undefined;
|
|
49852
50064
|
venueName?: string | null | undefined;
|
|
50065
|
+
pickCount?: number | undefined;
|
|
49853
50066
|
}, {
|
|
49854
50067
|
name: string | null;
|
|
49855
50068
|
image: string | null;
|
|
@@ -49864,6 +50077,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
49864
50077
|
school?: string | null | undefined;
|
|
49865
50078
|
city?: string | null | undefined;
|
|
49866
50079
|
venueName?: string | null | undefined;
|
|
50080
|
+
pickCount?: number | undefined;
|
|
49867
50081
|
}>;
|
|
49868
50082
|
awayTeam: z.ZodObject<{
|
|
49869
50083
|
id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -49879,6 +50093,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
49879
50093
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
49880
50094
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
49881
50095
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
50096
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
49882
50097
|
}, "strip", z.ZodTypeAny, {
|
|
49883
50098
|
name: string | null;
|
|
49884
50099
|
image: string | null;
|
|
@@ -49893,6 +50108,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
49893
50108
|
school?: string | null | undefined;
|
|
49894
50109
|
city?: string | null | undefined;
|
|
49895
50110
|
venueName?: string | null | undefined;
|
|
50111
|
+
pickCount?: number | undefined;
|
|
49896
50112
|
}, {
|
|
49897
50113
|
name: string | null;
|
|
49898
50114
|
image: string | null;
|
|
@@ -49907,6 +50123,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
49907
50123
|
school?: string | null | undefined;
|
|
49908
50124
|
city?: string | null | undefined;
|
|
49909
50125
|
venueName?: string | null | undefined;
|
|
50126
|
+
pickCount?: number | undefined;
|
|
49910
50127
|
}>;
|
|
49911
50128
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
49912
50129
|
homeTeamWins: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -52036,6 +52253,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
52036
52253
|
school?: string | null | undefined;
|
|
52037
52254
|
city?: string | null | undefined;
|
|
52038
52255
|
venueName?: string | null | undefined;
|
|
52256
|
+
pickCount?: number | undefined;
|
|
52039
52257
|
};
|
|
52040
52258
|
awayTeam: {
|
|
52041
52259
|
name: string | null;
|
|
@@ -52051,6 +52269,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
52051
52269
|
school?: string | null | undefined;
|
|
52052
52270
|
city?: string | null | undefined;
|
|
52053
52271
|
venueName?: string | null | undefined;
|
|
52272
|
+
pickCount?: number | undefined;
|
|
52054
52273
|
};
|
|
52055
52274
|
timeRemainingMinutes: number;
|
|
52056
52275
|
timeRemainingSeconds: number;
|
|
@@ -52222,6 +52441,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
52222
52441
|
school?: string | null | undefined;
|
|
52223
52442
|
city?: string | null | undefined;
|
|
52224
52443
|
venueName?: string | null | undefined;
|
|
52444
|
+
pickCount?: number | undefined;
|
|
52225
52445
|
};
|
|
52226
52446
|
awayTeam: {
|
|
52227
52447
|
name: string | null;
|
|
@@ -52237,6 +52457,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
52237
52457
|
school?: string | null | undefined;
|
|
52238
52458
|
city?: string | null | undefined;
|
|
52239
52459
|
venueName?: string | null | undefined;
|
|
52460
|
+
pickCount?: number | undefined;
|
|
52240
52461
|
};
|
|
52241
52462
|
timeRemainingMinutes: number;
|
|
52242
52463
|
timeRemainingSeconds: number;
|
|
@@ -53518,6 +53739,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
53518
53739
|
school?: string | null | undefined;
|
|
53519
53740
|
city?: string | null | undefined;
|
|
53520
53741
|
venueName?: string | null | undefined;
|
|
53742
|
+
pickCount?: number | undefined;
|
|
53521
53743
|
};
|
|
53522
53744
|
awayTeam: {
|
|
53523
53745
|
name: string | null;
|
|
@@ -53533,6 +53755,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
53533
53755
|
school?: string | null | undefined;
|
|
53534
53756
|
city?: string | null | undefined;
|
|
53535
53757
|
venueName?: string | null | undefined;
|
|
53758
|
+
pickCount?: number | undefined;
|
|
53536
53759
|
};
|
|
53537
53760
|
timeRemainingMinutes: number;
|
|
53538
53761
|
timeRemainingSeconds: number;
|
|
@@ -53710,6 +53933,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
53710
53933
|
school?: string | null | undefined;
|
|
53711
53934
|
city?: string | null | undefined;
|
|
53712
53935
|
venueName?: string | null | undefined;
|
|
53936
|
+
pickCount?: number | undefined;
|
|
53713
53937
|
};
|
|
53714
53938
|
awayTeam: {
|
|
53715
53939
|
name: string | null;
|
|
@@ -53725,6 +53949,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
53725
53949
|
school?: string | null | undefined;
|
|
53726
53950
|
city?: string | null | undefined;
|
|
53727
53951
|
venueName?: string | null | undefined;
|
|
53952
|
+
pickCount?: number | undefined;
|
|
53728
53953
|
};
|
|
53729
53954
|
totalInningsRemaining: number;
|
|
53730
53955
|
innings: {
|
|
@@ -53914,6 +54139,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
53914
54139
|
school?: string | null | undefined;
|
|
53915
54140
|
city?: string | null | undefined;
|
|
53916
54141
|
venueName?: string | undefined;
|
|
54142
|
+
pickCount?: number | undefined;
|
|
53917
54143
|
};
|
|
53918
54144
|
awayTeam: {
|
|
53919
54145
|
name: string | null;
|
|
@@ -53932,6 +54158,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
53932
54158
|
school?: string | null | undefined;
|
|
53933
54159
|
city?: string | null | undefined;
|
|
53934
54160
|
venueName?: string | undefined;
|
|
54161
|
+
pickCount?: number | undefined;
|
|
53935
54162
|
};
|
|
53936
54163
|
period: string;
|
|
53937
54164
|
clock: string;
|
|
@@ -54107,6 +54334,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
54107
54334
|
school?: string | null | undefined;
|
|
54108
54335
|
city?: string | null | undefined;
|
|
54109
54336
|
venueName?: string | null | undefined;
|
|
54337
|
+
pickCount?: number | undefined;
|
|
54110
54338
|
};
|
|
54111
54339
|
awayTeam: {
|
|
54112
54340
|
name: string | null;
|
|
@@ -54122,6 +54350,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
54122
54350
|
school?: string | null | undefined;
|
|
54123
54351
|
city?: string | null | undefined;
|
|
54124
54352
|
venueName?: string | null | undefined;
|
|
54353
|
+
pickCount?: number | undefined;
|
|
54125
54354
|
};
|
|
54126
54355
|
seasonType: number;
|
|
54127
54356
|
possession: string | null;
|
|
@@ -54320,6 +54549,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
54320
54549
|
school?: string | null | undefined;
|
|
54321
54550
|
city?: string | null | undefined;
|
|
54322
54551
|
venueName?: string | null | undefined;
|
|
54552
|
+
pickCount?: number | undefined;
|
|
54323
54553
|
};
|
|
54324
54554
|
awayTeam: {
|
|
54325
54555
|
name: string | null;
|
|
@@ -54335,6 +54565,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
54335
54565
|
school?: string | null | undefined;
|
|
54336
54566
|
city?: string | null | undefined;
|
|
54337
54567
|
venueName?: string | null | undefined;
|
|
54568
|
+
pickCount?: number | undefined;
|
|
54338
54569
|
};
|
|
54339
54570
|
timeRemainingMinutes: number;
|
|
54340
54571
|
timeRemainingSeconds: number;
|
|
@@ -54525,6 +54756,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
54525
54756
|
school?: string | null | undefined;
|
|
54526
54757
|
city?: string | null | undefined;
|
|
54527
54758
|
venueName?: string | null | undefined;
|
|
54759
|
+
pickCount?: number | undefined;
|
|
54528
54760
|
};
|
|
54529
54761
|
awayTeam: {
|
|
54530
54762
|
name: string | null;
|
|
@@ -54540,6 +54772,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
54540
54772
|
school?: string | null | undefined;
|
|
54541
54773
|
city?: string | null | undefined;
|
|
54542
54774
|
venueName?: string | null | undefined;
|
|
54775
|
+
pickCount?: number | undefined;
|
|
54543
54776
|
};
|
|
54544
54777
|
timeRemainingMinutes: number;
|
|
54545
54778
|
timeRemainingSeconds: number;
|
|
@@ -54723,6 +54956,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
54723
54956
|
school?: string | null | undefined;
|
|
54724
54957
|
city?: string | null | undefined;
|
|
54725
54958
|
venueName?: string | null | undefined;
|
|
54959
|
+
pickCount?: number | undefined;
|
|
54726
54960
|
};
|
|
54727
54961
|
awayTeam: {
|
|
54728
54962
|
name: string | null;
|
|
@@ -54738,6 +54972,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
54738
54972
|
school?: string | null | undefined;
|
|
54739
54973
|
city?: string | null | undefined;
|
|
54740
54974
|
venueName?: string | null | undefined;
|
|
54975
|
+
pickCount?: number | undefined;
|
|
54741
54976
|
};
|
|
54742
54977
|
timeRemainingMinutes: number;
|
|
54743
54978
|
timeRemainingSeconds: number;
|
|
@@ -54915,6 +55150,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
54915
55150
|
school?: string | null | undefined;
|
|
54916
55151
|
city?: string | null | undefined;
|
|
54917
55152
|
venueName?: string | null | undefined;
|
|
55153
|
+
pickCount?: number | undefined;
|
|
54918
55154
|
};
|
|
54919
55155
|
awayTeam: {
|
|
54920
55156
|
name: string | null;
|
|
@@ -54930,6 +55166,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
54930
55166
|
school?: string | null | undefined;
|
|
54931
55167
|
city?: string | null | undefined;
|
|
54932
55168
|
venueName?: string | null | undefined;
|
|
55169
|
+
pickCount?: number | undefined;
|
|
54933
55170
|
};
|
|
54934
55171
|
totalInningsRemaining: number;
|
|
54935
55172
|
innings: {
|
|
@@ -55119,6 +55356,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
55119
55356
|
school?: string | null | undefined;
|
|
55120
55357
|
city?: string | null | undefined;
|
|
55121
55358
|
venueName?: string | undefined;
|
|
55359
|
+
pickCount?: number | undefined;
|
|
55122
55360
|
};
|
|
55123
55361
|
awayTeam: {
|
|
55124
55362
|
name: string | null;
|
|
@@ -55137,6 +55375,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
55137
55375
|
school?: string | null | undefined;
|
|
55138
55376
|
city?: string | null | undefined;
|
|
55139
55377
|
venueName?: string | undefined;
|
|
55378
|
+
pickCount?: number | undefined;
|
|
55140
55379
|
};
|
|
55141
55380
|
period: string;
|
|
55142
55381
|
clock: string;
|
|
@@ -55312,6 +55551,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
55312
55551
|
school?: string | null | undefined;
|
|
55313
55552
|
city?: string | null | undefined;
|
|
55314
55553
|
venueName?: string | null | undefined;
|
|
55554
|
+
pickCount?: number | undefined;
|
|
55315
55555
|
};
|
|
55316
55556
|
awayTeam: {
|
|
55317
55557
|
name: string | null;
|
|
@@ -55327,6 +55567,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
55327
55567
|
school?: string | null | undefined;
|
|
55328
55568
|
city?: string | null | undefined;
|
|
55329
55569
|
venueName?: string | null | undefined;
|
|
55570
|
+
pickCount?: number | undefined;
|
|
55330
55571
|
};
|
|
55331
55572
|
seasonType: number;
|
|
55332
55573
|
possession: string | null;
|
|
@@ -55525,6 +55766,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
55525
55766
|
school?: string | null | undefined;
|
|
55526
55767
|
city?: string | null | undefined;
|
|
55527
55768
|
venueName?: string | null | undefined;
|
|
55769
|
+
pickCount?: number | undefined;
|
|
55528
55770
|
};
|
|
55529
55771
|
awayTeam: {
|
|
55530
55772
|
name: string | null;
|
|
@@ -55540,6 +55782,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
55540
55782
|
school?: string | null | undefined;
|
|
55541
55783
|
city?: string | null | undefined;
|
|
55542
55784
|
venueName?: string | null | undefined;
|
|
55785
|
+
pickCount?: number | undefined;
|
|
55543
55786
|
};
|
|
55544
55787
|
timeRemainingMinutes: number;
|
|
55545
55788
|
timeRemainingSeconds: number;
|
|
@@ -55730,6 +55973,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
55730
55973
|
school?: string | null | undefined;
|
|
55731
55974
|
city?: string | null | undefined;
|
|
55732
55975
|
venueName?: string | null | undefined;
|
|
55976
|
+
pickCount?: number | undefined;
|
|
55733
55977
|
};
|
|
55734
55978
|
awayTeam: {
|
|
55735
55979
|
name: string | null;
|
|
@@ -55745,6 +55989,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
55745
55989
|
school?: string | null | undefined;
|
|
55746
55990
|
city?: string | null | undefined;
|
|
55747
55991
|
venueName?: string | null | undefined;
|
|
55992
|
+
pickCount?: number | undefined;
|
|
55748
55993
|
};
|
|
55749
55994
|
timeRemainingMinutes: number;
|
|
55750
55995
|
timeRemainingSeconds: number;
|