rategame-shared 1.0.38 → 1.0.39

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.
@@ -108,6 +108,8 @@ export declare const gameSchema: z.ZodObject<{
108
108
  id?: string | undefined;
109
109
  isWinner?: boolean | undefined;
110
110
  }>;
111
+ timeRemainingMinutes: z.ZodNumber;
112
+ timeRemainingSeconds: z.ZodNumber;
111
113
  periods: z.ZodArray<z.ZodObject<{
112
114
  awayScore: z.ZodNumber;
113
115
  homeScore: z.ZodNumber;
@@ -172,6 +174,8 @@ export declare const gameSchema: z.ZodObject<{
172
174
  id?: string | undefined;
173
175
  isWinner?: boolean | undefined;
174
176
  };
177
+ timeRemainingMinutes: number;
178
+ timeRemainingSeconds: number;
175
179
  periods: {
176
180
  awayScore: number;
177
181
  homeScore: number;
@@ -211,6 +215,8 @@ export declare const gameSchema: z.ZodObject<{
211
215
  id?: string | undefined;
212
216
  isWinner?: boolean | undefined;
213
217
  };
218
+ timeRemainingMinutes: number;
219
+ timeRemainingSeconds: number;
214
220
  periods: {
215
221
  awayScore: number;
216
222
  homeScore: number;
@@ -29,6 +29,8 @@ exports.gameSchema = zod_1.z.object({
29
29
  apiGameId: zod_1.z.number(),
30
30
  homeTeam: exports.gameTeamSchema,
31
31
  awayTeam: exports.gameTeamSchema,
32
+ timeRemainingMinutes: zod_1.z.number(),
33
+ timeRemainingSeconds: zod_1.z.number(),
32
34
  periods: zod_1.z.array(zod_1.z.object({
33
35
  awayScore: zod_1.z.number(),
34
36
  homeScore: zod_1.z.number(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rategame-shared",
3
- "version": "1.0.38",
3
+ "version": "1.0.39",
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",