rategame-shared 1.1.172 → 1.1.174

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 { basketballGameSchema, cfbGameSchema, creatorPickSchema, footballGameSchema, gameRatingAggregateSchema, gameSchema, gameTeamSchema, mlbGameSchema, nflGameSchema, nhlGameSchema, searchGameSchema, unionGameSchema, weightedRatingAggregateOptionsSchema, weightedRatingAggregateSchema } from "../schemas/game";
2
+ import { basketballGameSchema, cfbGameSchema, creatorPickSchema, footballGameSchema, gameRatingAggregateSchema, gameSchema, gameTeamSchema, groupedRatingAggregateSchema, mlbGameSchema, nflGameSchema, nhlGameSchema, searchGameSchema, unionGameSchema, weightedRatingAggregateOptionsSchema, weightedRatingAggregateSchema } from "../schemas/game";
3
3
  export type Game = z.infer<typeof gameSchema>;
4
4
  export type BasketballGame = z.infer<typeof basketballGameSchema>;
5
5
  export type MLBGame = z.infer<typeof mlbGameSchema>;
@@ -14,3 +14,4 @@ export type NHLGame = z.infer<typeof nhlGameSchema>;
14
14
  export type CreatorPick = z.infer<typeof creatorPickSchema>;
15
15
  export type WeightedRatingAggregate = z.infer<typeof weightedRatingAggregateSchema>;
16
16
  export type WeightedRatingAggregateOptions = z.infer<typeof weightedRatingAggregateOptionsSchema>;
17
+ export type GroupedRatingsAggregate = z.infer<typeof groupedRatingAggregateSchema>;