rategame-shared 1.1.177 → 1.1.179
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 +207 -0
- package/dist/schemas/game.js +3 -0
- package/package.json +1 -1
package/dist/schemas/game.d.ts
CHANGED
|
@@ -4017,6 +4017,9 @@ 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>;
|
|
4022
|
+
allCities: z.ZodOptional<z.ZodString>;
|
|
4020
4023
|
}, "strip", z.ZodTypeAny, {
|
|
4021
4024
|
status: "canceled" | "live" | "scheduled" | "final" | "postponed";
|
|
4022
4025
|
league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls";
|
|
@@ -4187,6 +4190,9 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4187
4190
|
} | undefined;
|
|
4188
4191
|
chatEnabled?: boolean | undefined;
|
|
4189
4192
|
lastPlay?: string | undefined;
|
|
4193
|
+
allTeams?: string | undefined;
|
|
4194
|
+
allSchools?: string | undefined;
|
|
4195
|
+
allCities?: string | undefined;
|
|
4190
4196
|
}, {
|
|
4191
4197
|
status: "canceled" | "live" | "scheduled" | "final" | "postponed";
|
|
4192
4198
|
league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls";
|
|
@@ -4357,6 +4363,9 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4357
4363
|
} | undefined;
|
|
4358
4364
|
chatEnabled?: boolean | undefined;
|
|
4359
4365
|
lastPlay?: string | undefined;
|
|
4366
|
+
allTeams?: string | undefined;
|
|
4367
|
+
allSchools?: string | undefined;
|
|
4368
|
+
allCities?: string | undefined;
|
|
4360
4369
|
}>;
|
|
4361
4370
|
export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
4362
4371
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -6198,6 +6207,9 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6198
6207
|
}>>;
|
|
6199
6208
|
chatEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
6200
6209
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
6210
|
+
allTeams: z.ZodOptional<z.ZodString>;
|
|
6211
|
+
allSchools: z.ZodOptional<z.ZodString>;
|
|
6212
|
+
allCities: z.ZodOptional<z.ZodString>;
|
|
6201
6213
|
}, {
|
|
6202
6214
|
round: z.ZodNumber;
|
|
6203
6215
|
timeRemainingMinutes: z.ZodNumber;
|
|
@@ -6401,6 +6413,9 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6401
6413
|
} | undefined;
|
|
6402
6414
|
chatEnabled?: boolean | undefined;
|
|
6403
6415
|
lastPlay?: string | undefined;
|
|
6416
|
+
allTeams?: string | undefined;
|
|
6417
|
+
allSchools?: string | undefined;
|
|
6418
|
+
allCities?: string | undefined;
|
|
6404
6419
|
totalMinutesRemaining?: number | undefined;
|
|
6405
6420
|
period?: string | undefined;
|
|
6406
6421
|
}, {
|
|
@@ -6584,6 +6599,9 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6584
6599
|
} | undefined;
|
|
6585
6600
|
chatEnabled?: boolean | undefined;
|
|
6586
6601
|
lastPlay?: string | undefined;
|
|
6602
|
+
allTeams?: string | undefined;
|
|
6603
|
+
allSchools?: string | undefined;
|
|
6604
|
+
allCities?: string | undefined;
|
|
6587
6605
|
totalMinutesRemaining?: number | undefined;
|
|
6588
6606
|
period?: string | undefined;
|
|
6589
6607
|
}>;
|
|
@@ -8440,6 +8458,9 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8440
8458
|
}>>;
|
|
8441
8459
|
chatEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
8442
8460
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
8461
|
+
allTeams: z.ZodOptional<z.ZodString>;
|
|
8462
|
+
allSchools: z.ZodOptional<z.ZodString>;
|
|
8463
|
+
allCities: z.ZodOptional<z.ZodString>;
|
|
8443
8464
|
}, {
|
|
8444
8465
|
totalInningsRemaining: z.ZodNumber;
|
|
8445
8466
|
innings: z.ZodArray<z.ZodObject<{
|
|
@@ -8653,6 +8674,9 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8653
8674
|
} | undefined;
|
|
8654
8675
|
chatEnabled?: boolean | undefined;
|
|
8655
8676
|
lastPlay?: string | undefined;
|
|
8677
|
+
allTeams?: string | undefined;
|
|
8678
|
+
allSchools?: string | undefined;
|
|
8679
|
+
allCities?: string | undefined;
|
|
8656
8680
|
inningHalf?: "T" | "B" | undefined;
|
|
8657
8681
|
savingPitcher?: string | undefined;
|
|
8658
8682
|
outs?: number | undefined;
|
|
@@ -8843,6 +8867,9 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8843
8867
|
} | undefined;
|
|
8844
8868
|
chatEnabled?: boolean | undefined;
|
|
8845
8869
|
lastPlay?: string | undefined;
|
|
8870
|
+
allTeams?: string | undefined;
|
|
8871
|
+
allSchools?: string | undefined;
|
|
8872
|
+
allCities?: string | undefined;
|
|
8846
8873
|
inningHalf?: "T" | "B" | undefined;
|
|
8847
8874
|
savingPitcher?: string | undefined;
|
|
8848
8875
|
outs?: number | undefined;
|
|
@@ -10690,6 +10717,9 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10690
10717
|
}>>;
|
|
10691
10718
|
chatEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
10692
10719
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
10720
|
+
allTeams: z.ZodOptional<z.ZodString>;
|
|
10721
|
+
allSchools: z.ZodOptional<z.ZodString>;
|
|
10722
|
+
allCities: z.ZodOptional<z.ZodString>;
|
|
10693
10723
|
}, {
|
|
10694
10724
|
league: z.ZodUnion<[z.ZodLiteral<"epl">, z.ZodLiteral<"mls">]>;
|
|
10695
10725
|
week: z.ZodNumber;
|
|
@@ -10990,6 +11020,9 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10990
11020
|
} | undefined;
|
|
10991
11021
|
chatEnabled?: boolean | undefined;
|
|
10992
11022
|
lastPlay?: string | undefined;
|
|
11023
|
+
allTeams?: string | undefined;
|
|
11024
|
+
allSchools?: string | undefined;
|
|
11025
|
+
allCities?: string | undefined;
|
|
10993
11026
|
}, {
|
|
10994
11027
|
status: "canceled" | "live" | "scheduled" | "final" | "postponed";
|
|
10995
11028
|
week: number;
|
|
@@ -11177,6 +11210,9 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11177
11210
|
} | undefined;
|
|
11178
11211
|
chatEnabled?: boolean | undefined;
|
|
11179
11212
|
lastPlay?: string | undefined;
|
|
11213
|
+
allTeams?: string | undefined;
|
|
11214
|
+
allSchools?: string | undefined;
|
|
11215
|
+
allCities?: string | undefined;
|
|
11180
11216
|
}>;
|
|
11181
11217
|
export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
11182
11218
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -13018,6 +13054,9 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13018
13054
|
}>>;
|
|
13019
13055
|
chatEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
13020
13056
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
13057
|
+
allTeams: z.ZodOptional<z.ZodString>;
|
|
13058
|
+
allSchools: z.ZodOptional<z.ZodString>;
|
|
13059
|
+
allCities: z.ZodOptional<z.ZodString>;
|
|
13021
13060
|
}, {
|
|
13022
13061
|
possession: z.ZodNullable<z.ZodString>;
|
|
13023
13062
|
down: z.ZodNullable<z.ZodNumber>;
|
|
@@ -13268,6 +13307,9 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13268
13307
|
} | undefined;
|
|
13269
13308
|
chatEnabled?: boolean | undefined;
|
|
13270
13309
|
lastPlay?: string | undefined;
|
|
13310
|
+
allTeams?: string | undefined;
|
|
13311
|
+
allSchools?: string | undefined;
|
|
13312
|
+
allCities?: string | undefined;
|
|
13271
13313
|
stadium?: {
|
|
13272
13314
|
StadiumID: number;
|
|
13273
13315
|
Name: string;
|
|
@@ -13471,6 +13513,9 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13471
13513
|
} | undefined;
|
|
13472
13514
|
chatEnabled?: boolean | undefined;
|
|
13473
13515
|
lastPlay?: string | undefined;
|
|
13516
|
+
allTeams?: string | undefined;
|
|
13517
|
+
allSchools?: string | undefined;
|
|
13518
|
+
allCities?: string | undefined;
|
|
13474
13519
|
stadium?: {
|
|
13475
13520
|
StadiumID: number;
|
|
13476
13521
|
Name: string;
|
|
@@ -15324,6 +15369,9 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
15324
15369
|
}>>;
|
|
15325
15370
|
chatEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
15326
15371
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
15372
|
+
allTeams: z.ZodOptional<z.ZodString>;
|
|
15373
|
+
allSchools: z.ZodOptional<z.ZodString>;
|
|
15374
|
+
allCities: z.ZodOptional<z.ZodString>;
|
|
15327
15375
|
}, {
|
|
15328
15376
|
possession: z.ZodNullable<z.ZodString>;
|
|
15329
15377
|
down: z.ZodNullable<z.ZodNumber>;
|
|
@@ -15565,6 +15613,9 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
15565
15613
|
} | undefined;
|
|
15566
15614
|
chatEnabled?: boolean | undefined;
|
|
15567
15615
|
lastPlay?: string | undefined;
|
|
15616
|
+
allTeams?: string | undefined;
|
|
15617
|
+
allSchools?: string | undefined;
|
|
15618
|
+
allCities?: string | undefined;
|
|
15568
15619
|
stadium?: {
|
|
15569
15620
|
StadiumID: number;
|
|
15570
15621
|
Name: string;
|
|
@@ -15761,6 +15812,9 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
15761
15812
|
} | undefined;
|
|
15762
15813
|
chatEnabled?: boolean | undefined;
|
|
15763
15814
|
lastPlay?: string | undefined;
|
|
15815
|
+
allTeams?: string | undefined;
|
|
15816
|
+
allSchools?: string | undefined;
|
|
15817
|
+
allCities?: string | undefined;
|
|
15764
15818
|
stadium?: {
|
|
15765
15819
|
StadiumID: number;
|
|
15766
15820
|
Name: string;
|
|
@@ -17612,6 +17666,9 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
17612
17666
|
}>>;
|
|
17613
17667
|
chatEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
17614
17668
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
17669
|
+
allTeams: z.ZodOptional<z.ZodString>;
|
|
17670
|
+
allSchools: z.ZodOptional<z.ZodString>;
|
|
17671
|
+
allCities: z.ZodOptional<z.ZodString>;
|
|
17615
17672
|
}, {
|
|
17616
17673
|
seasonType: z.ZodNumber;
|
|
17617
17674
|
season: z.ZodString;
|
|
@@ -17796,6 +17853,9 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
17796
17853
|
} | undefined;
|
|
17797
17854
|
chatEnabled?: boolean | undefined;
|
|
17798
17855
|
lastPlay?: string | undefined;
|
|
17856
|
+
allTeams?: string | undefined;
|
|
17857
|
+
allSchools?: string | undefined;
|
|
17858
|
+
allCities?: string | undefined;
|
|
17799
17859
|
}, {
|
|
17800
17860
|
status: "canceled" | "live" | "scheduled" | "final" | "postponed";
|
|
17801
17861
|
league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls";
|
|
@@ -17972,6 +18032,9 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
17972
18032
|
} | undefined;
|
|
17973
18033
|
chatEnabled?: boolean | undefined;
|
|
17974
18034
|
lastPlay?: string | undefined;
|
|
18035
|
+
allTeams?: string | undefined;
|
|
18036
|
+
allSchools?: string | undefined;
|
|
18037
|
+
allCities?: string | undefined;
|
|
17975
18038
|
}>;
|
|
17976
18039
|
export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
17977
18040
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -19813,6 +19876,9 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
19813
19876
|
}>>;
|
|
19814
19877
|
chatEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
19815
19878
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
19879
|
+
allTeams: z.ZodOptional<z.ZodString>;
|
|
19880
|
+
allSchools: z.ZodOptional<z.ZodString>;
|
|
19881
|
+
allCities: z.ZodOptional<z.ZodString>;
|
|
19816
19882
|
}, {
|
|
19817
19883
|
round: z.ZodNumber;
|
|
19818
19884
|
timeRemainingMinutes: z.ZodNumber;
|
|
@@ -20016,6 +20082,9 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20016
20082
|
} | undefined;
|
|
20017
20083
|
chatEnabled?: boolean | undefined;
|
|
20018
20084
|
lastPlay?: string | undefined;
|
|
20085
|
+
allTeams?: string | undefined;
|
|
20086
|
+
allSchools?: string | undefined;
|
|
20087
|
+
allCities?: string | undefined;
|
|
20019
20088
|
totalMinutesRemaining?: number | undefined;
|
|
20020
20089
|
period?: string | undefined;
|
|
20021
20090
|
}, {
|
|
@@ -20199,6 +20268,9 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
20199
20268
|
} | undefined;
|
|
20200
20269
|
chatEnabled?: boolean | undefined;
|
|
20201
20270
|
lastPlay?: string | undefined;
|
|
20271
|
+
allTeams?: string | undefined;
|
|
20272
|
+
allSchools?: string | undefined;
|
|
20273
|
+
allCities?: string | undefined;
|
|
20202
20274
|
totalMinutesRemaining?: number | undefined;
|
|
20203
20275
|
period?: string | undefined;
|
|
20204
20276
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -22041,6 +22113,9 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22041
22113
|
}>>;
|
|
22042
22114
|
chatEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
22043
22115
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
22116
|
+
allTeams: z.ZodOptional<z.ZodString>;
|
|
22117
|
+
allSchools: z.ZodOptional<z.ZodString>;
|
|
22118
|
+
allCities: z.ZodOptional<z.ZodString>;
|
|
22044
22119
|
}, {
|
|
22045
22120
|
totalInningsRemaining: z.ZodNumber;
|
|
22046
22121
|
innings: z.ZodArray<z.ZodObject<{
|
|
@@ -22254,6 +22329,9 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22254
22329
|
} | undefined;
|
|
22255
22330
|
chatEnabled?: boolean | undefined;
|
|
22256
22331
|
lastPlay?: string | undefined;
|
|
22332
|
+
allTeams?: string | undefined;
|
|
22333
|
+
allSchools?: string | undefined;
|
|
22334
|
+
allCities?: string | undefined;
|
|
22257
22335
|
inningHalf?: "T" | "B" | undefined;
|
|
22258
22336
|
savingPitcher?: string | undefined;
|
|
22259
22337
|
outs?: number | undefined;
|
|
@@ -22444,6 +22522,9 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
22444
22522
|
} | undefined;
|
|
22445
22523
|
chatEnabled?: boolean | undefined;
|
|
22446
22524
|
lastPlay?: string | undefined;
|
|
22525
|
+
allTeams?: string | undefined;
|
|
22526
|
+
allSchools?: string | undefined;
|
|
22527
|
+
allCities?: string | undefined;
|
|
22447
22528
|
inningHalf?: "T" | "B" | undefined;
|
|
22448
22529
|
savingPitcher?: string | undefined;
|
|
22449
22530
|
outs?: number | undefined;
|
|
@@ -24290,6 +24371,9 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24290
24371
|
}>>;
|
|
24291
24372
|
chatEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
24292
24373
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
24374
|
+
allTeams: z.ZodOptional<z.ZodString>;
|
|
24375
|
+
allSchools: z.ZodOptional<z.ZodString>;
|
|
24376
|
+
allCities: z.ZodOptional<z.ZodString>;
|
|
24293
24377
|
}, {
|
|
24294
24378
|
league: z.ZodUnion<[z.ZodLiteral<"epl">, z.ZodLiteral<"mls">]>;
|
|
24295
24379
|
week: z.ZodNumber;
|
|
@@ -24590,6 +24674,9 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24590
24674
|
} | undefined;
|
|
24591
24675
|
chatEnabled?: boolean | undefined;
|
|
24592
24676
|
lastPlay?: string | undefined;
|
|
24677
|
+
allTeams?: string | undefined;
|
|
24678
|
+
allSchools?: string | undefined;
|
|
24679
|
+
allCities?: string | undefined;
|
|
24593
24680
|
}, {
|
|
24594
24681
|
status: "canceled" | "live" | "scheduled" | "final" | "postponed";
|
|
24595
24682
|
week: number;
|
|
@@ -24777,6 +24864,9 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24777
24864
|
} | undefined;
|
|
24778
24865
|
chatEnabled?: boolean | undefined;
|
|
24779
24866
|
lastPlay?: string | undefined;
|
|
24867
|
+
allTeams?: string | undefined;
|
|
24868
|
+
allSchools?: string | undefined;
|
|
24869
|
+
allCities?: string | undefined;
|
|
24780
24870
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
24781
24871
|
id: z.ZodOptional<z.ZodString>;
|
|
24782
24872
|
status: z.ZodUnion<[z.ZodLiteral<"scheduled">, z.ZodLiteral<"live">, z.ZodLiteral<"final">, z.ZodLiteral<"postponed">, z.ZodLiteral<"canceled">]>;
|
|
@@ -26617,6 +26707,9 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
26617
26707
|
}>>;
|
|
26618
26708
|
chatEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
26619
26709
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
26710
|
+
allTeams: z.ZodOptional<z.ZodString>;
|
|
26711
|
+
allSchools: z.ZodOptional<z.ZodString>;
|
|
26712
|
+
allCities: z.ZodOptional<z.ZodString>;
|
|
26620
26713
|
}, {
|
|
26621
26714
|
possession: z.ZodNullable<z.ZodString>;
|
|
26622
26715
|
down: z.ZodNullable<z.ZodNumber>;
|
|
@@ -26867,6 +26960,9 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
26867
26960
|
} | undefined;
|
|
26868
26961
|
chatEnabled?: boolean | undefined;
|
|
26869
26962
|
lastPlay?: string | undefined;
|
|
26963
|
+
allTeams?: string | undefined;
|
|
26964
|
+
allSchools?: string | undefined;
|
|
26965
|
+
allCities?: string | undefined;
|
|
26870
26966
|
stadium?: {
|
|
26871
26967
|
StadiumID: number;
|
|
26872
26968
|
Name: string;
|
|
@@ -27070,6 +27166,9 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
27070
27166
|
} | undefined;
|
|
27071
27167
|
chatEnabled?: boolean | undefined;
|
|
27072
27168
|
lastPlay?: string | undefined;
|
|
27169
|
+
allTeams?: string | undefined;
|
|
27170
|
+
allSchools?: string | undefined;
|
|
27171
|
+
allCities?: string | undefined;
|
|
27073
27172
|
stadium?: {
|
|
27074
27173
|
StadiumID: number;
|
|
27075
27174
|
Name: string;
|
|
@@ -28922,6 +29021,9 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
28922
29021
|
}>>;
|
|
28923
29022
|
chatEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
28924
29023
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
29024
|
+
allTeams: z.ZodOptional<z.ZodString>;
|
|
29025
|
+
allSchools: z.ZodOptional<z.ZodString>;
|
|
29026
|
+
allCities: z.ZodOptional<z.ZodString>;
|
|
28925
29027
|
}, {
|
|
28926
29028
|
possession: z.ZodNullable<z.ZodString>;
|
|
28927
29029
|
down: z.ZodNullable<z.ZodNumber>;
|
|
@@ -29163,6 +29265,9 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29163
29265
|
} | undefined;
|
|
29164
29266
|
chatEnabled?: boolean | undefined;
|
|
29165
29267
|
lastPlay?: string | undefined;
|
|
29268
|
+
allTeams?: string | undefined;
|
|
29269
|
+
allSchools?: string | undefined;
|
|
29270
|
+
allCities?: string | undefined;
|
|
29166
29271
|
stadium?: {
|
|
29167
29272
|
StadiumID: number;
|
|
29168
29273
|
Name: string;
|
|
@@ -29359,6 +29464,9 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29359
29464
|
} | undefined;
|
|
29360
29465
|
chatEnabled?: boolean | undefined;
|
|
29361
29466
|
lastPlay?: string | undefined;
|
|
29467
|
+
allTeams?: string | undefined;
|
|
29468
|
+
allSchools?: string | undefined;
|
|
29469
|
+
allCities?: string | undefined;
|
|
29362
29470
|
stadium?: {
|
|
29363
29471
|
StadiumID: number;
|
|
29364
29472
|
Name: string;
|
|
@@ -31209,6 +31317,9 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
31209
31317
|
}>>;
|
|
31210
31318
|
chatEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
31211
31319
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
31320
|
+
allTeams: z.ZodOptional<z.ZodString>;
|
|
31321
|
+
allSchools: z.ZodOptional<z.ZodString>;
|
|
31322
|
+
allCities: z.ZodOptional<z.ZodString>;
|
|
31212
31323
|
}, {
|
|
31213
31324
|
seasonType: z.ZodNumber;
|
|
31214
31325
|
season: z.ZodString;
|
|
@@ -31393,6 +31504,9 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
31393
31504
|
} | undefined;
|
|
31394
31505
|
chatEnabled?: boolean | undefined;
|
|
31395
31506
|
lastPlay?: string | undefined;
|
|
31507
|
+
allTeams?: string | undefined;
|
|
31508
|
+
allSchools?: string | undefined;
|
|
31509
|
+
allCities?: string | undefined;
|
|
31396
31510
|
}, {
|
|
31397
31511
|
status: "canceled" | "live" | "scheduled" | "final" | "postponed";
|
|
31398
31512
|
league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls";
|
|
@@ -31569,6 +31683,9 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
31569
31683
|
} | undefined;
|
|
31570
31684
|
chatEnabled?: boolean | undefined;
|
|
31571
31685
|
lastPlay?: string | undefined;
|
|
31686
|
+
allTeams?: string | undefined;
|
|
31687
|
+
allSchools?: string | undefined;
|
|
31688
|
+
allCities?: string | undefined;
|
|
31572
31689
|
}>]>;
|
|
31573
31690
|
export declare const searchGameSchema: z.ZodObject<{
|
|
31574
31691
|
q: z.ZodOptional<z.ZodString>;
|
|
@@ -33454,6 +33571,9 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
33454
33571
|
}>>;
|
|
33455
33572
|
chatEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
33456
33573
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
33574
|
+
allTeams: z.ZodOptional<z.ZodString>;
|
|
33575
|
+
allSchools: z.ZodOptional<z.ZodString>;
|
|
33576
|
+
allCities: z.ZodOptional<z.ZodString>;
|
|
33457
33577
|
}, {
|
|
33458
33578
|
round: z.ZodNumber;
|
|
33459
33579
|
timeRemainingMinutes: z.ZodNumber;
|
|
@@ -33657,6 +33777,9 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
33657
33777
|
} | undefined;
|
|
33658
33778
|
chatEnabled?: boolean | undefined;
|
|
33659
33779
|
lastPlay?: string | undefined;
|
|
33780
|
+
allTeams?: string | undefined;
|
|
33781
|
+
allSchools?: string | undefined;
|
|
33782
|
+
allCities?: string | undefined;
|
|
33660
33783
|
totalMinutesRemaining?: number | undefined;
|
|
33661
33784
|
period?: string | undefined;
|
|
33662
33785
|
}, {
|
|
@@ -33840,6 +33963,9 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
33840
33963
|
} | undefined;
|
|
33841
33964
|
chatEnabled?: boolean | undefined;
|
|
33842
33965
|
lastPlay?: string | undefined;
|
|
33966
|
+
allTeams?: string | undefined;
|
|
33967
|
+
allSchools?: string | undefined;
|
|
33968
|
+
allCities?: string | undefined;
|
|
33843
33969
|
totalMinutesRemaining?: number | undefined;
|
|
33844
33970
|
period?: string | undefined;
|
|
33845
33971
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -35682,6 +35808,9 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
35682
35808
|
}>>;
|
|
35683
35809
|
chatEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
35684
35810
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
35811
|
+
allTeams: z.ZodOptional<z.ZodString>;
|
|
35812
|
+
allSchools: z.ZodOptional<z.ZodString>;
|
|
35813
|
+
allCities: z.ZodOptional<z.ZodString>;
|
|
35685
35814
|
}, {
|
|
35686
35815
|
totalInningsRemaining: z.ZodNumber;
|
|
35687
35816
|
innings: z.ZodArray<z.ZodObject<{
|
|
@@ -35895,6 +36024,9 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
35895
36024
|
} | undefined;
|
|
35896
36025
|
chatEnabled?: boolean | undefined;
|
|
35897
36026
|
lastPlay?: string | undefined;
|
|
36027
|
+
allTeams?: string | undefined;
|
|
36028
|
+
allSchools?: string | undefined;
|
|
36029
|
+
allCities?: string | undefined;
|
|
35898
36030
|
inningHalf?: "T" | "B" | undefined;
|
|
35899
36031
|
savingPitcher?: string | undefined;
|
|
35900
36032
|
outs?: number | undefined;
|
|
@@ -36085,6 +36217,9 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36085
36217
|
} | undefined;
|
|
36086
36218
|
chatEnabled?: boolean | undefined;
|
|
36087
36219
|
lastPlay?: string | undefined;
|
|
36220
|
+
allTeams?: string | undefined;
|
|
36221
|
+
allSchools?: string | undefined;
|
|
36222
|
+
allCities?: string | undefined;
|
|
36088
36223
|
inningHalf?: "T" | "B" | undefined;
|
|
36089
36224
|
savingPitcher?: string | undefined;
|
|
36090
36225
|
outs?: number | undefined;
|
|
@@ -37931,6 +38066,9 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
37931
38066
|
}>>;
|
|
37932
38067
|
chatEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
37933
38068
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
38069
|
+
allTeams: z.ZodOptional<z.ZodString>;
|
|
38070
|
+
allSchools: z.ZodOptional<z.ZodString>;
|
|
38071
|
+
allCities: z.ZodOptional<z.ZodString>;
|
|
37934
38072
|
}, {
|
|
37935
38073
|
league: z.ZodUnion<[z.ZodLiteral<"epl">, z.ZodLiteral<"mls">]>;
|
|
37936
38074
|
week: z.ZodNumber;
|
|
@@ -38231,6 +38369,9 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38231
38369
|
} | undefined;
|
|
38232
38370
|
chatEnabled?: boolean | undefined;
|
|
38233
38371
|
lastPlay?: string | undefined;
|
|
38372
|
+
allTeams?: string | undefined;
|
|
38373
|
+
allSchools?: string | undefined;
|
|
38374
|
+
allCities?: string | undefined;
|
|
38234
38375
|
}, {
|
|
38235
38376
|
status: "canceled" | "live" | "scheduled" | "final" | "postponed";
|
|
38236
38377
|
week: number;
|
|
@@ -38418,6 +38559,9 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38418
38559
|
} | undefined;
|
|
38419
38560
|
chatEnabled?: boolean | undefined;
|
|
38420
38561
|
lastPlay?: string | undefined;
|
|
38562
|
+
allTeams?: string | undefined;
|
|
38563
|
+
allSchools?: string | undefined;
|
|
38564
|
+
allCities?: string | undefined;
|
|
38421
38565
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
38422
38566
|
id: z.ZodOptional<z.ZodString>;
|
|
38423
38567
|
status: z.ZodUnion<[z.ZodLiteral<"scheduled">, z.ZodLiteral<"live">, z.ZodLiteral<"final">, z.ZodLiteral<"postponed">, z.ZodLiteral<"canceled">]>;
|
|
@@ -40258,6 +40402,9 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40258
40402
|
}>>;
|
|
40259
40403
|
chatEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
40260
40404
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
40405
|
+
allTeams: z.ZodOptional<z.ZodString>;
|
|
40406
|
+
allSchools: z.ZodOptional<z.ZodString>;
|
|
40407
|
+
allCities: z.ZodOptional<z.ZodString>;
|
|
40261
40408
|
}, {
|
|
40262
40409
|
possession: z.ZodNullable<z.ZodString>;
|
|
40263
40410
|
down: z.ZodNullable<z.ZodNumber>;
|
|
@@ -40508,6 +40655,9 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40508
40655
|
} | undefined;
|
|
40509
40656
|
chatEnabled?: boolean | undefined;
|
|
40510
40657
|
lastPlay?: string | undefined;
|
|
40658
|
+
allTeams?: string | undefined;
|
|
40659
|
+
allSchools?: string | undefined;
|
|
40660
|
+
allCities?: string | undefined;
|
|
40511
40661
|
stadium?: {
|
|
40512
40662
|
StadiumID: number;
|
|
40513
40663
|
Name: string;
|
|
@@ -40711,6 +40861,9 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40711
40861
|
} | undefined;
|
|
40712
40862
|
chatEnabled?: boolean | undefined;
|
|
40713
40863
|
lastPlay?: string | undefined;
|
|
40864
|
+
allTeams?: string | undefined;
|
|
40865
|
+
allSchools?: string | undefined;
|
|
40866
|
+
allCities?: string | undefined;
|
|
40714
40867
|
stadium?: {
|
|
40715
40868
|
StadiumID: number;
|
|
40716
40869
|
Name: string;
|
|
@@ -42563,6 +42716,9 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
42563
42716
|
}>>;
|
|
42564
42717
|
chatEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
42565
42718
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
42719
|
+
allTeams: z.ZodOptional<z.ZodString>;
|
|
42720
|
+
allSchools: z.ZodOptional<z.ZodString>;
|
|
42721
|
+
allCities: z.ZodOptional<z.ZodString>;
|
|
42566
42722
|
}, {
|
|
42567
42723
|
possession: z.ZodNullable<z.ZodString>;
|
|
42568
42724
|
down: z.ZodNullable<z.ZodNumber>;
|
|
@@ -42804,6 +42960,9 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
42804
42960
|
} | undefined;
|
|
42805
42961
|
chatEnabled?: boolean | undefined;
|
|
42806
42962
|
lastPlay?: string | undefined;
|
|
42963
|
+
allTeams?: string | undefined;
|
|
42964
|
+
allSchools?: string | undefined;
|
|
42965
|
+
allCities?: string | undefined;
|
|
42807
42966
|
stadium?: {
|
|
42808
42967
|
StadiumID: number;
|
|
42809
42968
|
Name: string;
|
|
@@ -43000,6 +43159,9 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43000
43159
|
} | undefined;
|
|
43001
43160
|
chatEnabled?: boolean | undefined;
|
|
43002
43161
|
lastPlay?: string | undefined;
|
|
43162
|
+
allTeams?: string | undefined;
|
|
43163
|
+
allSchools?: string | undefined;
|
|
43164
|
+
allCities?: string | undefined;
|
|
43003
43165
|
stadium?: {
|
|
43004
43166
|
StadiumID: number;
|
|
43005
43167
|
Name: string;
|
|
@@ -44850,6 +45012,9 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
44850
45012
|
}>>;
|
|
44851
45013
|
chatEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
44852
45014
|
lastPlay: z.ZodOptional<z.ZodString>;
|
|
45015
|
+
allTeams: z.ZodOptional<z.ZodString>;
|
|
45016
|
+
allSchools: z.ZodOptional<z.ZodString>;
|
|
45017
|
+
allCities: z.ZodOptional<z.ZodString>;
|
|
44853
45018
|
}, {
|
|
44854
45019
|
seasonType: z.ZodNumber;
|
|
44855
45020
|
season: z.ZodString;
|
|
@@ -45034,6 +45199,9 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
45034
45199
|
} | undefined;
|
|
45035
45200
|
chatEnabled?: boolean | undefined;
|
|
45036
45201
|
lastPlay?: string | undefined;
|
|
45202
|
+
allTeams?: string | undefined;
|
|
45203
|
+
allSchools?: string | undefined;
|
|
45204
|
+
allCities?: string | undefined;
|
|
45037
45205
|
}, {
|
|
45038
45206
|
status: "canceled" | "live" | "scheduled" | "final" | "postponed";
|
|
45039
45207
|
league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls";
|
|
@@ -45210,6 +45378,9 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
45210
45378
|
} | undefined;
|
|
45211
45379
|
chatEnabled?: boolean | undefined;
|
|
45212
45380
|
lastPlay?: string | undefined;
|
|
45381
|
+
allTeams?: string | undefined;
|
|
45382
|
+
allSchools?: string | undefined;
|
|
45383
|
+
allCities?: string | undefined;
|
|
45213
45384
|
}>]>;
|
|
45214
45385
|
user: z.ZodObject<Pick<{
|
|
45215
45386
|
id: z.ZodString;
|
|
@@ -46163,6 +46334,9 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46163
46334
|
} | undefined;
|
|
46164
46335
|
chatEnabled?: boolean | undefined;
|
|
46165
46336
|
lastPlay?: string | undefined;
|
|
46337
|
+
allTeams?: string | undefined;
|
|
46338
|
+
allSchools?: string | undefined;
|
|
46339
|
+
allCities?: string | undefined;
|
|
46166
46340
|
totalMinutesRemaining?: number | undefined;
|
|
46167
46341
|
period?: string | undefined;
|
|
46168
46342
|
} | {
|
|
@@ -46349,6 +46523,9 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46349
46523
|
} | undefined;
|
|
46350
46524
|
chatEnabled?: boolean | undefined;
|
|
46351
46525
|
lastPlay?: string | undefined;
|
|
46526
|
+
allTeams?: string | undefined;
|
|
46527
|
+
allSchools?: string | undefined;
|
|
46528
|
+
allCities?: string | undefined;
|
|
46352
46529
|
inningHalf?: "T" | "B" | undefined;
|
|
46353
46530
|
savingPitcher?: string | undefined;
|
|
46354
46531
|
outs?: number | undefined;
|
|
@@ -46542,6 +46719,9 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46542
46719
|
} | undefined;
|
|
46543
46720
|
chatEnabled?: boolean | undefined;
|
|
46544
46721
|
lastPlay?: string | undefined;
|
|
46722
|
+
allTeams?: string | undefined;
|
|
46723
|
+
allSchools?: string | undefined;
|
|
46724
|
+
allCities?: string | undefined;
|
|
46545
46725
|
} | {
|
|
46546
46726
|
status: "canceled" | "live" | "scheduled" | "final" | "postponed";
|
|
46547
46727
|
quarter: string | null;
|
|
@@ -46733,6 +46913,9 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46733
46913
|
} | undefined;
|
|
46734
46914
|
chatEnabled?: boolean | undefined;
|
|
46735
46915
|
lastPlay?: string | undefined;
|
|
46916
|
+
allTeams?: string | undefined;
|
|
46917
|
+
allSchools?: string | undefined;
|
|
46918
|
+
allCities?: string | undefined;
|
|
46736
46919
|
stadium?: {
|
|
46737
46920
|
StadiumID: number;
|
|
46738
46921
|
Name: string;
|
|
@@ -46931,6 +47114,9 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
46931
47114
|
} | undefined;
|
|
46932
47115
|
chatEnabled?: boolean | undefined;
|
|
46933
47116
|
lastPlay?: string | undefined;
|
|
47117
|
+
allTeams?: string | undefined;
|
|
47118
|
+
allSchools?: string | undefined;
|
|
47119
|
+
allCities?: string | undefined;
|
|
46934
47120
|
stadium?: {
|
|
46935
47121
|
StadiumID: number;
|
|
46936
47122
|
Name: string;
|
|
@@ -47117,6 +47303,9 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47117
47303
|
} | undefined;
|
|
47118
47304
|
chatEnabled?: boolean | undefined;
|
|
47119
47305
|
lastPlay?: string | undefined;
|
|
47306
|
+
allTeams?: string | undefined;
|
|
47307
|
+
allSchools?: string | undefined;
|
|
47308
|
+
allCities?: string | undefined;
|
|
47120
47309
|
};
|
|
47121
47310
|
createdAt?: number | undefined;
|
|
47122
47311
|
comment?: string | undefined;
|
|
@@ -47309,6 +47498,9 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47309
47498
|
} | undefined;
|
|
47310
47499
|
chatEnabled?: boolean | undefined;
|
|
47311
47500
|
lastPlay?: string | undefined;
|
|
47501
|
+
allTeams?: string | undefined;
|
|
47502
|
+
allSchools?: string | undefined;
|
|
47503
|
+
allCities?: string | undefined;
|
|
47312
47504
|
totalMinutesRemaining?: number | undefined;
|
|
47313
47505
|
period?: string | undefined;
|
|
47314
47506
|
} | {
|
|
@@ -47495,6 +47687,9 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47495
47687
|
} | undefined;
|
|
47496
47688
|
chatEnabled?: boolean | undefined;
|
|
47497
47689
|
lastPlay?: string | undefined;
|
|
47690
|
+
allTeams?: string | undefined;
|
|
47691
|
+
allSchools?: string | undefined;
|
|
47692
|
+
allCities?: string | undefined;
|
|
47498
47693
|
inningHalf?: "T" | "B" | undefined;
|
|
47499
47694
|
savingPitcher?: string | undefined;
|
|
47500
47695
|
outs?: number | undefined;
|
|
@@ -47688,6 +47883,9 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47688
47883
|
} | undefined;
|
|
47689
47884
|
chatEnabled?: boolean | undefined;
|
|
47690
47885
|
lastPlay?: string | undefined;
|
|
47886
|
+
allTeams?: string | undefined;
|
|
47887
|
+
allSchools?: string | undefined;
|
|
47888
|
+
allCities?: string | undefined;
|
|
47691
47889
|
} | {
|
|
47692
47890
|
status: "canceled" | "live" | "scheduled" | "final" | "postponed";
|
|
47693
47891
|
quarter: string | null;
|
|
@@ -47879,6 +48077,9 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47879
48077
|
} | undefined;
|
|
47880
48078
|
chatEnabled?: boolean | undefined;
|
|
47881
48079
|
lastPlay?: string | undefined;
|
|
48080
|
+
allTeams?: string | undefined;
|
|
48081
|
+
allSchools?: string | undefined;
|
|
48082
|
+
allCities?: string | undefined;
|
|
47882
48083
|
stadium?: {
|
|
47883
48084
|
StadiumID: number;
|
|
47884
48085
|
Name: string;
|
|
@@ -48077,6 +48278,9 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48077
48278
|
} | undefined;
|
|
48078
48279
|
chatEnabled?: boolean | undefined;
|
|
48079
48280
|
lastPlay?: string | undefined;
|
|
48281
|
+
allTeams?: string | undefined;
|
|
48282
|
+
allSchools?: string | undefined;
|
|
48283
|
+
allCities?: string | undefined;
|
|
48080
48284
|
stadium?: {
|
|
48081
48285
|
StadiumID: number;
|
|
48082
48286
|
Name: string;
|
|
@@ -48263,6 +48467,9 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48263
48467
|
} | undefined;
|
|
48264
48468
|
chatEnabled?: boolean | undefined;
|
|
48265
48469
|
lastPlay?: string | undefined;
|
|
48470
|
+
allTeams?: string | undefined;
|
|
48471
|
+
allSchools?: string | undefined;
|
|
48472
|
+
allCities?: string | undefined;
|
|
48266
48473
|
};
|
|
48267
48474
|
createdAt?: number | undefined;
|
|
48268
48475
|
comment?: string | undefined;
|
package/dist/schemas/game.js
CHANGED
|
@@ -135,6 +135,9 @@ 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(),
|
|
140
|
+
allCities: zod_1.z.string().optional(),
|
|
138
141
|
});
|
|
139
142
|
exports.basketballGameSchema = exports.commonGameSchema.extend({
|
|
140
143
|
round: zod_1.z.number(),
|