rategame-shared 1.0.98 → 1.0.99
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
|
@@ -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>;
|
package/dist/schemas/game.js
CHANGED
|
@@ -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(),
|