rategame-shared 1.1.176 → 1.1.178
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/helpers/index.js +1 -1
- package/dist/models/player.d.ts +3 -0
- package/dist/models/player.js +2 -0
- package/dist/schemas/game.d.ts +138 -0
- package/dist/schemas/game.js +2 -0
- package/dist/schemas/player.d.ts +32 -0
- package/dist/schemas/player.js +15 -0
- package/package.json +1 -1
package/dist/helpers/index.js
CHANGED
|
@@ -59,7 +59,7 @@ exports.achievementsMap = {
|
|
|
59
59
|
loyal_till_the_end: {
|
|
60
60
|
id: "loyal_till_the_end",
|
|
61
61
|
name: "Loyal Till the End",
|
|
62
|
-
description: "Rate games where your favorite team
|
|
62
|
+
description: "Rate games where your favorite team loses.",
|
|
63
63
|
tiers: {
|
|
64
64
|
bronze: { threshold: 10 },
|
|
65
65
|
silver: { threshold: 25 },
|
package/dist/schemas/game.d.ts
CHANGED
|
@@ -4017,6 +4017,8 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4017
4017
|
}>>;
|
|
4018
4018
|
chatEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
4019
4019
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
4020
|
+
allTeams: z.ZodOptional<z.ZodString>;
|
|
4021
|
+
allSchools: z.ZodOptional<z.ZodString>;
|
|
4020
4022
|
}, "strip", z.ZodTypeAny, {
|
|
4021
4023
|
status: "canceled" | "live" | "scheduled" | "final" | "postponed";
|
|
4022
4024
|
league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls";
|
|
@@ -4187,6 +4189,8 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4187
4189
|
} | undefined;
|
|
4188
4190
|
chatEnabled?: boolean | undefined;
|
|
4189
4191
|
lastPlay?: string | undefined;
|
|
4192
|
+
allTeams?: string | undefined;
|
|
4193
|
+
allSchools?: string | undefined;
|
|
4190
4194
|
}, {
|
|
4191
4195
|
status: "canceled" | "live" | "scheduled" | "final" | "postponed";
|
|
4192
4196
|
league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls";
|
|
@@ -4357,6 +4361,8 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4357
4361
|
} | undefined;
|
|
4358
4362
|
chatEnabled?: boolean | undefined;
|
|
4359
4363
|
lastPlay?: string | undefined;
|
|
4364
|
+
allTeams?: string | undefined;
|
|
4365
|
+
allSchools?: string | undefined;
|
|
4360
4366
|
}>;
|
|
4361
4367
|
export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
4362
4368
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -6198,6 +6204,8 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6198
6204
|
}>>;
|
|
6199
6205
|
chatEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
6200
6206
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
6207
|
+
allTeams: z.ZodOptional<z.ZodString>;
|
|
6208
|
+
allSchools: z.ZodOptional<z.ZodString>;
|
|
6201
6209
|
}, {
|
|
6202
6210
|
round: z.ZodNumber;
|
|
6203
6211
|
timeRemainingMinutes: z.ZodNumber;
|
|
@@ -6401,6 +6409,8 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6401
6409
|
} | undefined;
|
|
6402
6410
|
chatEnabled?: boolean | undefined;
|
|
6403
6411
|
lastPlay?: string | undefined;
|
|
6412
|
+
allTeams?: string | undefined;
|
|
6413
|
+
allSchools?: string | undefined;
|
|
6404
6414
|
totalMinutesRemaining?: number | undefined;
|
|
6405
6415
|
period?: string | undefined;
|
|
6406
6416
|
}, {
|
|
@@ -6584,6 +6594,8 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6584
6594
|
} | undefined;
|
|
6585
6595
|
chatEnabled?: boolean | undefined;
|
|
6586
6596
|
lastPlay?: string | undefined;
|
|
6597
|
+
allTeams?: string | undefined;
|
|
6598
|
+
allSchools?: string | undefined;
|
|
6587
6599
|
totalMinutesRemaining?: number | undefined;
|
|
6588
6600
|
period?: string | undefined;
|
|
6589
6601
|
}>;
|
|
@@ -8440,6 +8452,8 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8440
8452
|
}>>;
|
|
8441
8453
|
chatEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
8442
8454
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
8455
|
+
allTeams: z.ZodOptional<z.ZodString>;
|
|
8456
|
+
allSchools: z.ZodOptional<z.ZodString>;
|
|
8443
8457
|
}, {
|
|
8444
8458
|
totalInningsRemaining: z.ZodNumber;
|
|
8445
8459
|
innings: z.ZodArray<z.ZodObject<{
|
|
@@ -8653,6 +8667,8 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8653
8667
|
} | undefined;
|
|
8654
8668
|
chatEnabled?: boolean | undefined;
|
|
8655
8669
|
lastPlay?: string | undefined;
|
|
8670
|
+
allTeams?: string | undefined;
|
|
8671
|
+
allSchools?: string | undefined;
|
|
8656
8672
|
inningHalf?: "T" | "B" | undefined;
|
|
8657
8673
|
savingPitcher?: string | undefined;
|
|
8658
8674
|
outs?: number | undefined;
|
|
@@ -8843,6 +8859,8 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8843
8859
|
} | undefined;
|
|
8844
8860
|
chatEnabled?: boolean | undefined;
|
|
8845
8861
|
lastPlay?: string | undefined;
|
|
8862
|
+
allTeams?: string | undefined;
|
|
8863
|
+
allSchools?: string | undefined;
|
|
8846
8864
|
inningHalf?: "T" | "B" | undefined;
|
|
8847
8865
|
savingPitcher?: string | undefined;
|
|
8848
8866
|
outs?: number | undefined;
|
|
@@ -10690,6 +10708,8 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10690
10708
|
}>>;
|
|
10691
10709
|
chatEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
10692
10710
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
10711
|
+
allTeams: z.ZodOptional<z.ZodString>;
|
|
10712
|
+
allSchools: z.ZodOptional<z.ZodString>;
|
|
10693
10713
|
}, {
|
|
10694
10714
|
league: z.ZodUnion<[z.ZodLiteral<"epl">, z.ZodLiteral<"mls">]>;
|
|
10695
10715
|
week: z.ZodNumber;
|
|
@@ -10990,6 +11010,8 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10990
11010
|
} | undefined;
|
|
10991
11011
|
chatEnabled?: boolean | undefined;
|
|
10992
11012
|
lastPlay?: string | undefined;
|
|
11013
|
+
allTeams?: string | undefined;
|
|
11014
|
+
allSchools?: string | undefined;
|
|
10993
11015
|
}, {
|
|
10994
11016
|
status: "canceled" | "live" | "scheduled" | "final" | "postponed";
|
|
10995
11017
|
week: number;
|
|
@@ -11177,6 +11199,8 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11177
11199
|
} | undefined;
|
|
11178
11200
|
chatEnabled?: boolean | undefined;
|
|
11179
11201
|
lastPlay?: string | undefined;
|
|
11202
|
+
allTeams?: string | undefined;
|
|
11203
|
+
allSchools?: string | undefined;
|
|
11180
11204
|
}>;
|
|
11181
11205
|
export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
11182
11206
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -13018,6 +13042,8 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13018
13042
|
}>>;
|
|
13019
13043
|
chatEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
13020
13044
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
13045
|
+
allTeams: z.ZodOptional<z.ZodString>;
|
|
13046
|
+
allSchools: z.ZodOptional<z.ZodString>;
|
|
13021
13047
|
}, {
|
|
13022
13048
|
possession: z.ZodNullable<z.ZodString>;
|
|
13023
13049
|
down: z.ZodNullable<z.ZodNumber>;
|
|
@@ -13268,6 +13294,8 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13268
13294
|
} | undefined;
|
|
13269
13295
|
chatEnabled?: boolean | undefined;
|
|
13270
13296
|
lastPlay?: string | undefined;
|
|
13297
|
+
allTeams?: string | undefined;
|
|
13298
|
+
allSchools?: string | undefined;
|
|
13271
13299
|
stadium?: {
|
|
13272
13300
|
StadiumID: number;
|
|
13273
13301
|
Name: string;
|
|
@@ -13471,6 +13499,8 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13471
13499
|
} | undefined;
|
|
13472
13500
|
chatEnabled?: boolean | undefined;
|
|
13473
13501
|
lastPlay?: string | undefined;
|
|
13502
|
+
allTeams?: string | undefined;
|
|
13503
|
+
allSchools?: string | undefined;
|
|
13474
13504
|
stadium?: {
|
|
13475
13505
|
StadiumID: number;
|
|
13476
13506
|
Name: string;
|
|
@@ -15324,6 +15354,8 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
15324
15354
|
}>>;
|
|
15325
15355
|
chatEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
15326
15356
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
15357
|
+
allTeams: z.ZodOptional<z.ZodString>;
|
|
15358
|
+
allSchools: z.ZodOptional<z.ZodString>;
|
|
15327
15359
|
}, {
|
|
15328
15360
|
possession: z.ZodNullable<z.ZodString>;
|
|
15329
15361
|
down: z.ZodNullable<z.ZodNumber>;
|
|
@@ -15565,6 +15597,8 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
15565
15597
|
} | undefined;
|
|
15566
15598
|
chatEnabled?: boolean | undefined;
|
|
15567
15599
|
lastPlay?: string | undefined;
|
|
15600
|
+
allTeams?: string | undefined;
|
|
15601
|
+
allSchools?: string | undefined;
|
|
15568
15602
|
stadium?: {
|
|
15569
15603
|
StadiumID: number;
|
|
15570
15604
|
Name: string;
|
|
@@ -15761,6 +15795,8 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
15761
15795
|
} | undefined;
|
|
15762
15796
|
chatEnabled?: boolean | undefined;
|
|
15763
15797
|
lastPlay?: string | undefined;
|
|
15798
|
+
allTeams?: string | undefined;
|
|
15799
|
+
allSchools?: string | undefined;
|
|
15764
15800
|
stadium?: {
|
|
15765
15801
|
StadiumID: number;
|
|
15766
15802
|
Name: string;
|
|
@@ -17612,6 +17648,8 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
17612
17648
|
}>>;
|
|
17613
17649
|
chatEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
17614
17650
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
17651
|
+
allTeams: z.ZodOptional<z.ZodString>;
|
|
17652
|
+
allSchools: z.ZodOptional<z.ZodString>;
|
|
17615
17653
|
}, {
|
|
17616
17654
|
seasonType: z.ZodNumber;
|
|
17617
17655
|
season: z.ZodString;
|
|
@@ -17796,6 +17834,8 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
17796
17834
|
} | undefined;
|
|
17797
17835
|
chatEnabled?: boolean | undefined;
|
|
17798
17836
|
lastPlay?: string | undefined;
|
|
17837
|
+
allTeams?: string | undefined;
|
|
17838
|
+
allSchools?: string | undefined;
|
|
17799
17839
|
}, {
|
|
17800
17840
|
status: "canceled" | "live" | "scheduled" | "final" | "postponed";
|
|
17801
17841
|
league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls";
|
|
@@ -17972,6 +18012,8 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
17972
18012
|
} | undefined;
|
|
17973
18013
|
chatEnabled?: boolean | undefined;
|
|
17974
18014
|
lastPlay?: string | undefined;
|
|
18015
|
+
allTeams?: string | undefined;
|
|
18016
|
+
allSchools?: string | undefined;
|
|
17975
18017
|
}>;
|
|
17976
18018
|
export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
17977
18019
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -19813,6 +19855,8 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
19813
19855
|
}>>;
|
|
19814
19856
|
chatEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
19815
19857
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
19858
|
+
allTeams: z.ZodOptional<z.ZodString>;
|
|
19859
|
+
allSchools: z.ZodOptional<z.ZodString>;
|
|
19816
19860
|
}, {
|
|
19817
19861
|
round: z.ZodNumber;
|
|
19818
19862
|
timeRemainingMinutes: z.ZodNumber;
|
|
@@ -20016,6 +20060,8 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20016
20060
|
} | undefined;
|
|
20017
20061
|
chatEnabled?: boolean | undefined;
|
|
20018
20062
|
lastPlay?: string | undefined;
|
|
20063
|
+
allTeams?: string | undefined;
|
|
20064
|
+
allSchools?: string | undefined;
|
|
20019
20065
|
totalMinutesRemaining?: number | undefined;
|
|
20020
20066
|
period?: string | undefined;
|
|
20021
20067
|
}, {
|
|
@@ -20199,6 +20245,8 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20199
20245
|
} | undefined;
|
|
20200
20246
|
chatEnabled?: boolean | undefined;
|
|
20201
20247
|
lastPlay?: string | undefined;
|
|
20248
|
+
allTeams?: string | undefined;
|
|
20249
|
+
allSchools?: string | undefined;
|
|
20202
20250
|
totalMinutesRemaining?: number | undefined;
|
|
20203
20251
|
period?: string | undefined;
|
|
20204
20252
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -22041,6 +22089,8 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22041
22089
|
}>>;
|
|
22042
22090
|
chatEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
22043
22091
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
22092
|
+
allTeams: z.ZodOptional<z.ZodString>;
|
|
22093
|
+
allSchools: z.ZodOptional<z.ZodString>;
|
|
22044
22094
|
}, {
|
|
22045
22095
|
totalInningsRemaining: z.ZodNumber;
|
|
22046
22096
|
innings: z.ZodArray<z.ZodObject<{
|
|
@@ -22254,6 +22304,8 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22254
22304
|
} | undefined;
|
|
22255
22305
|
chatEnabled?: boolean | undefined;
|
|
22256
22306
|
lastPlay?: string | undefined;
|
|
22307
|
+
allTeams?: string | undefined;
|
|
22308
|
+
allSchools?: string | undefined;
|
|
22257
22309
|
inningHalf?: "T" | "B" | undefined;
|
|
22258
22310
|
savingPitcher?: string | undefined;
|
|
22259
22311
|
outs?: number | undefined;
|
|
@@ -22444,6 +22496,8 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22444
22496
|
} | undefined;
|
|
22445
22497
|
chatEnabled?: boolean | undefined;
|
|
22446
22498
|
lastPlay?: string | undefined;
|
|
22499
|
+
allTeams?: string | undefined;
|
|
22500
|
+
allSchools?: string | undefined;
|
|
22447
22501
|
inningHalf?: "T" | "B" | undefined;
|
|
22448
22502
|
savingPitcher?: string | undefined;
|
|
22449
22503
|
outs?: number | undefined;
|
|
@@ -24290,6 +24344,8 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24290
24344
|
}>>;
|
|
24291
24345
|
chatEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
24292
24346
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
24347
|
+
allTeams: z.ZodOptional<z.ZodString>;
|
|
24348
|
+
allSchools: z.ZodOptional<z.ZodString>;
|
|
24293
24349
|
}, {
|
|
24294
24350
|
league: z.ZodUnion<[z.ZodLiteral<"epl">, z.ZodLiteral<"mls">]>;
|
|
24295
24351
|
week: z.ZodNumber;
|
|
@@ -24590,6 +24646,8 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24590
24646
|
} | undefined;
|
|
24591
24647
|
chatEnabled?: boolean | undefined;
|
|
24592
24648
|
lastPlay?: string | undefined;
|
|
24649
|
+
allTeams?: string | undefined;
|
|
24650
|
+
allSchools?: string | undefined;
|
|
24593
24651
|
}, {
|
|
24594
24652
|
status: "canceled" | "live" | "scheduled" | "final" | "postponed";
|
|
24595
24653
|
week: number;
|
|
@@ -24777,6 +24835,8 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24777
24835
|
} | undefined;
|
|
24778
24836
|
chatEnabled?: boolean | undefined;
|
|
24779
24837
|
lastPlay?: string | undefined;
|
|
24838
|
+
allTeams?: string | undefined;
|
|
24839
|
+
allSchools?: string | undefined;
|
|
24780
24840
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
24781
24841
|
id: z.ZodOptional<z.ZodString>;
|
|
24782
24842
|
status: z.ZodUnion<[z.ZodLiteral<"scheduled">, z.ZodLiteral<"live">, z.ZodLiteral<"final">, z.ZodLiteral<"postponed">, z.ZodLiteral<"canceled">]>;
|
|
@@ -26617,6 +26677,8 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
26617
26677
|
}>>;
|
|
26618
26678
|
chatEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
26619
26679
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
26680
|
+
allTeams: z.ZodOptional<z.ZodString>;
|
|
26681
|
+
allSchools: z.ZodOptional<z.ZodString>;
|
|
26620
26682
|
}, {
|
|
26621
26683
|
possession: z.ZodNullable<z.ZodString>;
|
|
26622
26684
|
down: z.ZodNullable<z.ZodNumber>;
|
|
@@ -26867,6 +26929,8 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
26867
26929
|
} | undefined;
|
|
26868
26930
|
chatEnabled?: boolean | undefined;
|
|
26869
26931
|
lastPlay?: string | undefined;
|
|
26932
|
+
allTeams?: string | undefined;
|
|
26933
|
+
allSchools?: string | undefined;
|
|
26870
26934
|
stadium?: {
|
|
26871
26935
|
StadiumID: number;
|
|
26872
26936
|
Name: string;
|
|
@@ -27070,6 +27134,8 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27070
27134
|
} | undefined;
|
|
27071
27135
|
chatEnabled?: boolean | undefined;
|
|
27072
27136
|
lastPlay?: string | undefined;
|
|
27137
|
+
allTeams?: string | undefined;
|
|
27138
|
+
allSchools?: string | undefined;
|
|
27073
27139
|
stadium?: {
|
|
27074
27140
|
StadiumID: number;
|
|
27075
27141
|
Name: string;
|
|
@@ -28922,6 +28988,8 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
28922
28988
|
}>>;
|
|
28923
28989
|
chatEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
28924
28990
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
28991
|
+
allTeams: z.ZodOptional<z.ZodString>;
|
|
28992
|
+
allSchools: z.ZodOptional<z.ZodString>;
|
|
28925
28993
|
}, {
|
|
28926
28994
|
possession: z.ZodNullable<z.ZodString>;
|
|
28927
28995
|
down: z.ZodNullable<z.ZodNumber>;
|
|
@@ -29163,6 +29231,8 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29163
29231
|
} | undefined;
|
|
29164
29232
|
chatEnabled?: boolean | undefined;
|
|
29165
29233
|
lastPlay?: string | undefined;
|
|
29234
|
+
allTeams?: string | undefined;
|
|
29235
|
+
allSchools?: string | undefined;
|
|
29166
29236
|
stadium?: {
|
|
29167
29237
|
StadiumID: number;
|
|
29168
29238
|
Name: string;
|
|
@@ -29359,6 +29429,8 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29359
29429
|
} | undefined;
|
|
29360
29430
|
chatEnabled?: boolean | undefined;
|
|
29361
29431
|
lastPlay?: string | undefined;
|
|
29432
|
+
allTeams?: string | undefined;
|
|
29433
|
+
allSchools?: string | undefined;
|
|
29362
29434
|
stadium?: {
|
|
29363
29435
|
StadiumID: number;
|
|
29364
29436
|
Name: string;
|
|
@@ -31209,6 +31281,8 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
31209
31281
|
}>>;
|
|
31210
31282
|
chatEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
31211
31283
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
31284
|
+
allTeams: z.ZodOptional<z.ZodString>;
|
|
31285
|
+
allSchools: z.ZodOptional<z.ZodString>;
|
|
31212
31286
|
}, {
|
|
31213
31287
|
seasonType: z.ZodNumber;
|
|
31214
31288
|
season: z.ZodString;
|
|
@@ -31393,6 +31467,8 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
31393
31467
|
} | undefined;
|
|
31394
31468
|
chatEnabled?: boolean | undefined;
|
|
31395
31469
|
lastPlay?: string | undefined;
|
|
31470
|
+
allTeams?: string | undefined;
|
|
31471
|
+
allSchools?: string | undefined;
|
|
31396
31472
|
}, {
|
|
31397
31473
|
status: "canceled" | "live" | "scheduled" | "final" | "postponed";
|
|
31398
31474
|
league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls";
|
|
@@ -31569,6 +31645,8 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
31569
31645
|
} | undefined;
|
|
31570
31646
|
chatEnabled?: boolean | undefined;
|
|
31571
31647
|
lastPlay?: string | undefined;
|
|
31648
|
+
allTeams?: string | undefined;
|
|
31649
|
+
allSchools?: string | undefined;
|
|
31572
31650
|
}>]>;
|
|
31573
31651
|
export declare const searchGameSchema: z.ZodObject<{
|
|
31574
31652
|
q: z.ZodOptional<z.ZodString>;
|
|
@@ -33454,6 +33532,8 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
33454
33532
|
}>>;
|
|
33455
33533
|
chatEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
33456
33534
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
33535
|
+
allTeams: z.ZodOptional<z.ZodString>;
|
|
33536
|
+
allSchools: z.ZodOptional<z.ZodString>;
|
|
33457
33537
|
}, {
|
|
33458
33538
|
round: z.ZodNumber;
|
|
33459
33539
|
timeRemainingMinutes: z.ZodNumber;
|
|
@@ -33657,6 +33737,8 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
33657
33737
|
} | undefined;
|
|
33658
33738
|
chatEnabled?: boolean | undefined;
|
|
33659
33739
|
lastPlay?: string | undefined;
|
|
33740
|
+
allTeams?: string | undefined;
|
|
33741
|
+
allSchools?: string | undefined;
|
|
33660
33742
|
totalMinutesRemaining?: number | undefined;
|
|
33661
33743
|
period?: string | undefined;
|
|
33662
33744
|
}, {
|
|
@@ -33840,6 +33922,8 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
33840
33922
|
} | undefined;
|
|
33841
33923
|
chatEnabled?: boolean | undefined;
|
|
33842
33924
|
lastPlay?: string | undefined;
|
|
33925
|
+
allTeams?: string | undefined;
|
|
33926
|
+
allSchools?: string | undefined;
|
|
33843
33927
|
totalMinutesRemaining?: number | undefined;
|
|
33844
33928
|
period?: string | undefined;
|
|
33845
33929
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -35682,6 +35766,8 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
35682
35766
|
}>>;
|
|
35683
35767
|
chatEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
35684
35768
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
35769
|
+
allTeams: z.ZodOptional<z.ZodString>;
|
|
35770
|
+
allSchools: z.ZodOptional<z.ZodString>;
|
|
35685
35771
|
}, {
|
|
35686
35772
|
totalInningsRemaining: z.ZodNumber;
|
|
35687
35773
|
innings: z.ZodArray<z.ZodObject<{
|
|
@@ -35895,6 +35981,8 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
35895
35981
|
} | undefined;
|
|
35896
35982
|
chatEnabled?: boolean | undefined;
|
|
35897
35983
|
lastPlay?: string | undefined;
|
|
35984
|
+
allTeams?: string | undefined;
|
|
35985
|
+
allSchools?: string | undefined;
|
|
35898
35986
|
inningHalf?: "T" | "B" | undefined;
|
|
35899
35987
|
savingPitcher?: string | undefined;
|
|
35900
35988
|
outs?: number | undefined;
|
|
@@ -36085,6 +36173,8 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36085
36173
|
} | undefined;
|
|
36086
36174
|
chatEnabled?: boolean | undefined;
|
|
36087
36175
|
lastPlay?: string | undefined;
|
|
36176
|
+
allTeams?: string | undefined;
|
|
36177
|
+
allSchools?: string | undefined;
|
|
36088
36178
|
inningHalf?: "T" | "B" | undefined;
|
|
36089
36179
|
savingPitcher?: string | undefined;
|
|
36090
36180
|
outs?: number | undefined;
|
|
@@ -37931,6 +38021,8 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
37931
38021
|
}>>;
|
|
37932
38022
|
chatEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
37933
38023
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
38024
|
+
allTeams: z.ZodOptional<z.ZodString>;
|
|
38025
|
+
allSchools: z.ZodOptional<z.ZodString>;
|
|
37934
38026
|
}, {
|
|
37935
38027
|
league: z.ZodUnion<[z.ZodLiteral<"epl">, z.ZodLiteral<"mls">]>;
|
|
37936
38028
|
week: z.ZodNumber;
|
|
@@ -38231,6 +38323,8 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38231
38323
|
} | undefined;
|
|
38232
38324
|
chatEnabled?: boolean | undefined;
|
|
38233
38325
|
lastPlay?: string | undefined;
|
|
38326
|
+
allTeams?: string | undefined;
|
|
38327
|
+
allSchools?: string | undefined;
|
|
38234
38328
|
}, {
|
|
38235
38329
|
status: "canceled" | "live" | "scheduled" | "final" | "postponed";
|
|
38236
38330
|
week: number;
|
|
@@ -38418,6 +38512,8 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38418
38512
|
} | undefined;
|
|
38419
38513
|
chatEnabled?: boolean | undefined;
|
|
38420
38514
|
lastPlay?: string | undefined;
|
|
38515
|
+
allTeams?: string | undefined;
|
|
38516
|
+
allSchools?: string | undefined;
|
|
38421
38517
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
38422
38518
|
id: z.ZodOptional<z.ZodString>;
|
|
38423
38519
|
status: z.ZodUnion<[z.ZodLiteral<"scheduled">, z.ZodLiteral<"live">, z.ZodLiteral<"final">, z.ZodLiteral<"postponed">, z.ZodLiteral<"canceled">]>;
|
|
@@ -40258,6 +40354,8 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40258
40354
|
}>>;
|
|
40259
40355
|
chatEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
40260
40356
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
40357
|
+
allTeams: z.ZodOptional<z.ZodString>;
|
|
40358
|
+
allSchools: z.ZodOptional<z.ZodString>;
|
|
40261
40359
|
}, {
|
|
40262
40360
|
possession: z.ZodNullable<z.ZodString>;
|
|
40263
40361
|
down: z.ZodNullable<z.ZodNumber>;
|
|
@@ -40508,6 +40606,8 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40508
40606
|
} | undefined;
|
|
40509
40607
|
chatEnabled?: boolean | undefined;
|
|
40510
40608
|
lastPlay?: string | undefined;
|
|
40609
|
+
allTeams?: string | undefined;
|
|
40610
|
+
allSchools?: string | undefined;
|
|
40511
40611
|
stadium?: {
|
|
40512
40612
|
StadiumID: number;
|
|
40513
40613
|
Name: string;
|
|
@@ -40711,6 +40811,8 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40711
40811
|
} | undefined;
|
|
40712
40812
|
chatEnabled?: boolean | undefined;
|
|
40713
40813
|
lastPlay?: string | undefined;
|
|
40814
|
+
allTeams?: string | undefined;
|
|
40815
|
+
allSchools?: string | undefined;
|
|
40714
40816
|
stadium?: {
|
|
40715
40817
|
StadiumID: number;
|
|
40716
40818
|
Name: string;
|
|
@@ -42563,6 +42665,8 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
42563
42665
|
}>>;
|
|
42564
42666
|
chatEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
42565
42667
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
42668
|
+
allTeams: z.ZodOptional<z.ZodString>;
|
|
42669
|
+
allSchools: z.ZodOptional<z.ZodString>;
|
|
42566
42670
|
}, {
|
|
42567
42671
|
possession: z.ZodNullable<z.ZodString>;
|
|
42568
42672
|
down: z.ZodNullable<z.ZodNumber>;
|
|
@@ -42804,6 +42908,8 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
42804
42908
|
} | undefined;
|
|
42805
42909
|
chatEnabled?: boolean | undefined;
|
|
42806
42910
|
lastPlay?: string | undefined;
|
|
42911
|
+
allTeams?: string | undefined;
|
|
42912
|
+
allSchools?: string | undefined;
|
|
42807
42913
|
stadium?: {
|
|
42808
42914
|
StadiumID: number;
|
|
42809
42915
|
Name: string;
|
|
@@ -43000,6 +43106,8 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43000
43106
|
} | undefined;
|
|
43001
43107
|
chatEnabled?: boolean | undefined;
|
|
43002
43108
|
lastPlay?: string | undefined;
|
|
43109
|
+
allTeams?: string | undefined;
|
|
43110
|
+
allSchools?: string | undefined;
|
|
43003
43111
|
stadium?: {
|
|
43004
43112
|
StadiumID: number;
|
|
43005
43113
|
Name: string;
|
|
@@ -44850,6 +44958,8 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
44850
44958
|
}>>;
|
|
44851
44959
|
chatEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
44852
44960
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
44961
|
+
allTeams: z.ZodOptional<z.ZodString>;
|
|
44962
|
+
allSchools: z.ZodOptional<z.ZodString>;
|
|
44853
44963
|
}, {
|
|
44854
44964
|
seasonType: z.ZodNumber;
|
|
44855
44965
|
season: z.ZodString;
|
|
@@ -45034,6 +45144,8 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
45034
45144
|
} | undefined;
|
|
45035
45145
|
chatEnabled?: boolean | undefined;
|
|
45036
45146
|
lastPlay?: string | undefined;
|
|
45147
|
+
allTeams?: string | undefined;
|
|
45148
|
+
allSchools?: string | undefined;
|
|
45037
45149
|
}, {
|
|
45038
45150
|
status: "canceled" | "live" | "scheduled" | "final" | "postponed";
|
|
45039
45151
|
league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls";
|
|
@@ -45210,6 +45322,8 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
45210
45322
|
} | undefined;
|
|
45211
45323
|
chatEnabled?: boolean | undefined;
|
|
45212
45324
|
lastPlay?: string | undefined;
|
|
45325
|
+
allTeams?: string | undefined;
|
|
45326
|
+
allSchools?: string | undefined;
|
|
45213
45327
|
}>]>;
|
|
45214
45328
|
user: z.ZodObject<Pick<{
|
|
45215
45329
|
id: z.ZodString;
|
|
@@ -46163,6 +46277,8 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46163
46277
|
} | undefined;
|
|
46164
46278
|
chatEnabled?: boolean | undefined;
|
|
46165
46279
|
lastPlay?: string | undefined;
|
|
46280
|
+
allTeams?: string | undefined;
|
|
46281
|
+
allSchools?: string | undefined;
|
|
46166
46282
|
totalMinutesRemaining?: number | undefined;
|
|
46167
46283
|
period?: string | undefined;
|
|
46168
46284
|
} | {
|
|
@@ -46349,6 +46465,8 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46349
46465
|
} | undefined;
|
|
46350
46466
|
chatEnabled?: boolean | undefined;
|
|
46351
46467
|
lastPlay?: string | undefined;
|
|
46468
|
+
allTeams?: string | undefined;
|
|
46469
|
+
allSchools?: string | undefined;
|
|
46352
46470
|
inningHalf?: "T" | "B" | undefined;
|
|
46353
46471
|
savingPitcher?: string | undefined;
|
|
46354
46472
|
outs?: number | undefined;
|
|
@@ -46542,6 +46660,8 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46542
46660
|
} | undefined;
|
|
46543
46661
|
chatEnabled?: boolean | undefined;
|
|
46544
46662
|
lastPlay?: string | undefined;
|
|
46663
|
+
allTeams?: string | undefined;
|
|
46664
|
+
allSchools?: string | undefined;
|
|
46545
46665
|
} | {
|
|
46546
46666
|
status: "canceled" | "live" | "scheduled" | "final" | "postponed";
|
|
46547
46667
|
quarter: string | null;
|
|
@@ -46733,6 +46853,8 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46733
46853
|
} | undefined;
|
|
46734
46854
|
chatEnabled?: boolean | undefined;
|
|
46735
46855
|
lastPlay?: string | undefined;
|
|
46856
|
+
allTeams?: string | undefined;
|
|
46857
|
+
allSchools?: string | undefined;
|
|
46736
46858
|
stadium?: {
|
|
46737
46859
|
StadiumID: number;
|
|
46738
46860
|
Name: string;
|
|
@@ -46931,6 +47053,8 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46931
47053
|
} | undefined;
|
|
46932
47054
|
chatEnabled?: boolean | undefined;
|
|
46933
47055
|
lastPlay?: string | undefined;
|
|
47056
|
+
allTeams?: string | undefined;
|
|
47057
|
+
allSchools?: string | undefined;
|
|
46934
47058
|
stadium?: {
|
|
46935
47059
|
StadiumID: number;
|
|
46936
47060
|
Name: string;
|
|
@@ -47117,6 +47241,8 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47117
47241
|
} | undefined;
|
|
47118
47242
|
chatEnabled?: boolean | undefined;
|
|
47119
47243
|
lastPlay?: string | undefined;
|
|
47244
|
+
allTeams?: string | undefined;
|
|
47245
|
+
allSchools?: string | undefined;
|
|
47120
47246
|
};
|
|
47121
47247
|
createdAt?: number | undefined;
|
|
47122
47248
|
comment?: string | undefined;
|
|
@@ -47309,6 +47435,8 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47309
47435
|
} | undefined;
|
|
47310
47436
|
chatEnabled?: boolean | undefined;
|
|
47311
47437
|
lastPlay?: string | undefined;
|
|
47438
|
+
allTeams?: string | undefined;
|
|
47439
|
+
allSchools?: string | undefined;
|
|
47312
47440
|
totalMinutesRemaining?: number | undefined;
|
|
47313
47441
|
period?: string | undefined;
|
|
47314
47442
|
} | {
|
|
@@ -47495,6 +47623,8 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47495
47623
|
} | undefined;
|
|
47496
47624
|
chatEnabled?: boolean | undefined;
|
|
47497
47625
|
lastPlay?: string | undefined;
|
|
47626
|
+
allTeams?: string | undefined;
|
|
47627
|
+
allSchools?: string | undefined;
|
|
47498
47628
|
inningHalf?: "T" | "B" | undefined;
|
|
47499
47629
|
savingPitcher?: string | undefined;
|
|
47500
47630
|
outs?: number | undefined;
|
|
@@ -47688,6 +47818,8 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47688
47818
|
} | undefined;
|
|
47689
47819
|
chatEnabled?: boolean | undefined;
|
|
47690
47820
|
lastPlay?: string | undefined;
|
|
47821
|
+
allTeams?: string | undefined;
|
|
47822
|
+
allSchools?: string | undefined;
|
|
47691
47823
|
} | {
|
|
47692
47824
|
status: "canceled" | "live" | "scheduled" | "final" | "postponed";
|
|
47693
47825
|
quarter: string | null;
|
|
@@ -47879,6 +48011,8 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47879
48011
|
} | undefined;
|
|
47880
48012
|
chatEnabled?: boolean | undefined;
|
|
47881
48013
|
lastPlay?: string | undefined;
|
|
48014
|
+
allTeams?: string | undefined;
|
|
48015
|
+
allSchools?: string | undefined;
|
|
47882
48016
|
stadium?: {
|
|
47883
48017
|
StadiumID: number;
|
|
47884
48018
|
Name: string;
|
|
@@ -48077,6 +48211,8 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48077
48211
|
} | undefined;
|
|
48078
48212
|
chatEnabled?: boolean | undefined;
|
|
48079
48213
|
lastPlay?: string | undefined;
|
|
48214
|
+
allTeams?: string | undefined;
|
|
48215
|
+
allSchools?: string | undefined;
|
|
48080
48216
|
stadium?: {
|
|
48081
48217
|
StadiumID: number;
|
|
48082
48218
|
Name: string;
|
|
@@ -48263,6 +48399,8 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48263
48399
|
} | undefined;
|
|
48264
48400
|
chatEnabled?: boolean | undefined;
|
|
48265
48401
|
lastPlay?: string | undefined;
|
|
48402
|
+
allTeams?: string | undefined;
|
|
48403
|
+
allSchools?: string | undefined;
|
|
48266
48404
|
};
|
|
48267
48405
|
createdAt?: number | undefined;
|
|
48268
48406
|
comment?: string | undefined;
|
package/dist/schemas/game.js
CHANGED
|
@@ -135,6 +135,8 @@ exports.commonGameSchema = zod_1.z.object({
|
|
|
135
135
|
}).optional(),
|
|
136
136
|
chatEnabled: zod_1.z.boolean().optional(),
|
|
137
137
|
lastPlay: zod_1.z.string().optional(),
|
|
138
|
+
allTeams: zod_1.z.string().optional(),
|
|
139
|
+
allSchools: zod_1.z.string().optional(),
|
|
138
140
|
});
|
|
139
141
|
exports.basketballGameSchema = exports.commonGameSchema.extend({
|
|
140
142
|
round: zod_1.z.number(),
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
export declare const mlbPlayerSchema: z.ZodObject<{
|
|
3
|
+
id: z.ZodOptional<z.ZodString>;
|
|
4
|
+
name: z.ZodString;
|
|
5
|
+
wins: z.ZodNumber;
|
|
6
|
+
losses: z.ZodNumber;
|
|
7
|
+
saves: z.ZodNumber;
|
|
8
|
+
games: z.ZodNumber;
|
|
9
|
+
isWinningPitcher: z.ZodOptional<z.ZodBoolean>;
|
|
10
|
+
isLosingPitcher: z.ZodOptional<z.ZodBoolean>;
|
|
11
|
+
isSavingPitcher: z.ZodOptional<z.ZodBoolean>;
|
|
12
|
+
}, "strip", z.ZodTypeAny, {
|
|
13
|
+
name: string;
|
|
14
|
+
wins: number;
|
|
15
|
+
losses: number;
|
|
16
|
+
saves: number;
|
|
17
|
+
games: number;
|
|
18
|
+
id?: string | undefined;
|
|
19
|
+
isWinningPitcher?: boolean | undefined;
|
|
20
|
+
isLosingPitcher?: boolean | undefined;
|
|
21
|
+
isSavingPitcher?: boolean | undefined;
|
|
22
|
+
}, {
|
|
23
|
+
name: string;
|
|
24
|
+
wins: number;
|
|
25
|
+
losses: number;
|
|
26
|
+
saves: number;
|
|
27
|
+
games: number;
|
|
28
|
+
id?: string | undefined;
|
|
29
|
+
isWinningPitcher?: boolean | undefined;
|
|
30
|
+
isLosingPitcher?: boolean | undefined;
|
|
31
|
+
isSavingPitcher?: boolean | undefined;
|
|
32
|
+
}>;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.mlbPlayerSchema = void 0;
|
|
4
|
+
const zod_1 = require("zod");
|
|
5
|
+
exports.mlbPlayerSchema = zod_1.z.object({
|
|
6
|
+
id: zod_1.z.string().optional(),
|
|
7
|
+
name: zod_1.z.string(),
|
|
8
|
+
wins: zod_1.z.number(),
|
|
9
|
+
losses: zod_1.z.number(),
|
|
10
|
+
saves: zod_1.z.number(),
|
|
11
|
+
games: zod_1.z.number(),
|
|
12
|
+
isWinningPitcher: zod_1.z.boolean().optional(),
|
|
13
|
+
isLosingPitcher: zod_1.z.boolean().optional(),
|
|
14
|
+
isSavingPitcher: zod_1.z.boolean().optional(),
|
|
15
|
+
});
|