rategame-shared 1.1.65 → 1.1.66

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.
@@ -1,5 +1,5 @@
1
1
  import { z } from "zod";
2
- import { cfbGameSchema, eplGameSchema, gameRatingAggregateSchema, gameSchema, gameTeamSchema, mlbGameSchema, nflGameSchema, searchGameSchema, unionGameSchema } from "../schemas/game";
2
+ import { cfbGameSchema, eplGameSchema, gameRatingAggregateSchema, gameSchema, gameTeamSchema, mlbGameSchema, nflGameSchema, searchGameSchema, unionGameSchema, weightedRatingAggregateSchema } from "../schemas/game";
3
3
  export type Game = z.infer<typeof gameSchema>;
4
4
  export type MLBGame = z.infer<typeof mlbGameSchema>;
5
5
  export type GameRatingAggregate = z.infer<typeof gameRatingAggregateSchema>;
@@ -9,3 +9,4 @@ export type UnionGame = z.infer<typeof unionGameSchema>;
9
9
  export type EPLGame = z.infer<typeof eplGameSchema>;
10
10
  export type NFLGame = z.infer<typeof nflGameSchema>;
11
11
  export type CFBGame = z.infer<typeof cfbGameSchema>;
12
+ export type WeightedRatingAggregate = z.infer<typeof weightedRatingAggregateSchema>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rategame-shared",
3
- "version": "1.1.65",
3
+ "version": "1.1.66",
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",