rategame-shared 1.1.134 → 1.1.136

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, eplGameSchema, gameRatingAggregateSchema, gameSchema, gameTeamSchema, mlbGameSchema, nflGameSchema, nhlGameSchema, searchGameSchema, unionGameSchema, weightedRatingAggregateOptionsSchema, weightedRatingAggregateSchema } from "../schemas/game";
2
+ import { basketballGameSchema, cfbGameSchema, creatorPickSchema, footballGameSchema, gameRatingAggregateSchema, gameSchema, gameTeamSchema, 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>;
@@ -7,7 +7,7 @@ export type GameRatingAggregate = z.infer<typeof gameRatingAggregateSchema>;
7
7
  export type GameTeam = z.infer<typeof gameTeamSchema>;
8
8
  export type SearchGame = z.infer<typeof searchGameSchema>;
9
9
  export type UnionGame = z.infer<typeof unionGameSchema>;
10
- export type EPLGame = z.infer<typeof eplGameSchema>;
10
+ export type FootballGame = z.infer<typeof footballGameSchema>;
11
11
  export type NFLGame = z.infer<typeof nflGameSchema>;
12
12
  export type CFBGame = z.infer<typeof cfbGameSchema>;
13
13
  export type NHLGame = z.infer<typeof nhlGameSchema>;