rategame-shared 1.0.96 → 1.0.97
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 +3 -0
- package/dist/schemas/game.js +1 -0
- package/package.json +1 -1
package/dist/schemas/game.d.ts
CHANGED
|
@@ -312,6 +312,7 @@ export declare const inningSchema: z.ZodObject<{
|
|
|
312
312
|
export declare const mlbGameSchema: z.ZodObject<{
|
|
313
313
|
id: z.ZodOptional<z.ZodString>;
|
|
314
314
|
status: z.ZodUnion<[z.ZodLiteral<"scheduled">, z.ZodLiteral<"live">, z.ZodLiteral<"final">]>;
|
|
315
|
+
league: z.ZodString;
|
|
315
316
|
isClosed: z.ZodOptional<z.ZodBoolean>;
|
|
316
317
|
startedAt: z.ZodNumber;
|
|
317
318
|
finishedAt: z.ZodNumber;
|
|
@@ -525,6 +526,7 @@ export declare const mlbGameSchema: z.ZodObject<{
|
|
|
525
526
|
startedAt: number;
|
|
526
527
|
finishedAt: number;
|
|
527
528
|
apiGameId: number;
|
|
529
|
+
league: string;
|
|
528
530
|
homeTeam: {
|
|
529
531
|
name: string;
|
|
530
532
|
image: string;
|
|
@@ -608,6 +610,7 @@ export declare const mlbGameSchema: z.ZodObject<{
|
|
|
608
610
|
startedAt: number;
|
|
609
611
|
finishedAt: number;
|
|
610
612
|
apiGameId: number;
|
|
613
|
+
league: string;
|
|
611
614
|
homeTeam: {
|
|
612
615
|
name: string;
|
|
613
616
|
image: string;
|
package/dist/schemas/game.js
CHANGED