rategame-shared 1.0.98 → 1.1.0

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.
@@ -525,6 +525,7 @@ export declare const mlbGameSchema: z.ZodObject<{
525
525
  isLosingPitcher?: boolean | undefined;
526
526
  isSavingPitcher?: boolean | undefined;
527
527
  }>>;
528
+ outs: z.ZodOptional<z.ZodNumber>;
528
529
  }, "strip", z.ZodTypeAny, {
529
530
  status: "live" | "scheduled" | "final";
530
531
  startedAt: number;
@@ -607,6 +608,7 @@ export declare const mlbGameSchema: z.ZodObject<{
607
608
  isLosingPitcher?: boolean | undefined;
608
609
  isSavingPitcher?: boolean | undefined;
609
610
  } | undefined;
611
+ outs?: number | undefined;
610
612
  }, {
611
613
  status: "live" | "scheduled" | "final";
612
614
  startedAt: number;
@@ -689,6 +691,7 @@ export declare const mlbGameSchema: z.ZodObject<{
689
691
  isLosingPitcher?: boolean | undefined;
690
692
  isSavingPitcher?: boolean | undefined;
691
693
  } | undefined;
694
+ outs?: number | undefined;
692
695
  }>;
693
696
  export declare const searchGameSchema: z.ZodObject<{
694
697
  q: z.ZodOptional<z.ZodString>;
@@ -93,6 +93,7 @@ exports.mlbGameSchema = zod_1.z.object({
93
93
  losingPitcher: player_1.mlbPlayerSchema.optional(),
94
94
  winningPitcher: player_1.mlbPlayerSchema.optional(),
95
95
  savingPitcher: player_1.mlbPlayerSchema.optional(),
96
+ outs: zod_1.z.number().optional(),
96
97
  });
97
98
  exports.searchGameSchema = zod_1.z.object({
98
99
  q: zod_1.z.string().optional(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rategame-shared",
3
- "version": "1.0.98",
3
+ "version": "1.1.0",
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",