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.
@@ -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;
@@ -73,6 +73,7 @@ exports.mlbGameSchema = zod_1.z.object({
73
73
  zod_1.z.literal("live"),
74
74
  zod_1.z.literal("final"),
75
75
  ]),
76
+ league: zod_1.z.string(),
76
77
  isClosed: zod_1.z.boolean().optional(),
77
78
  startedAt: zod_1.z.number(),
78
79
  finishedAt: zod_1.z.number(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rategame-shared",
3
- "version": "1.0.96",
3
+ "version": "1.0.97",
4
4
  "description": "This package contains shared resources for the Rate Game project.",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "./dist/index.js",