rategame-shared 1.1.73 → 1.1.75
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/models/game.d.ts +2 -1
- package/dist/models/team.d.ts +2 -1
- package/dist/schemas/game.d.ts +1373 -396
- package/dist/schemas/game.js +10 -1
- package/dist/schemas/team.d.ts +47 -0
- package/dist/schemas/team.js +7 -1
- package/package.json +1 -1
package/dist/models/game.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
-
import { cfbGameSchema, eplGameSchema, gameRatingAggregateSchema, gameSchema, gameTeamSchema, mlbGameSchema, nflGameSchema, searchGameSchema, unionGameSchema, weightedRatingAggregateOptionsSchema, weightedRatingAggregateSchema } from "../schemas/game";
|
|
2
|
+
import { cfbGameSchema, eplGameSchema, 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 MLBGame = z.infer<typeof mlbGameSchema>;
|
|
5
5
|
export type GameRatingAggregate = z.infer<typeof gameRatingAggregateSchema>;
|
|
@@ -9,5 +9,6 @@ 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 NHLGame = z.infer<typeof nhlGameSchema>;
|
|
12
13
|
export type WeightedRatingAggregate = z.infer<typeof weightedRatingAggregateSchema>;
|
|
13
14
|
export type WeightedRatingAggregateOptions = z.infer<typeof weightedRatingAggregateOptionsSchema>;
|
package/dist/models/team.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
-
import { teamSchema, mlbTeamSchema, divisionSchema, leagueSchema, eplTeamSchema, nflTeamSchema, cfbTeamSchema } from "../schemas/team";
|
|
2
|
+
import { teamSchema, mlbTeamSchema, divisionSchema, leagueSchema, eplTeamSchema, nflTeamSchema, cfbTeamSchema, nhlTeamSchema } from "../schemas/team";
|
|
3
3
|
export type Team = z.infer<typeof teamSchema>;
|
|
4
4
|
export type MLBTeam = z.infer<typeof mlbTeamSchema>;
|
|
5
5
|
export type MLBDivision = z.infer<typeof divisionSchema>;
|
|
@@ -7,3 +7,4 @@ export type MLBLeague = z.infer<typeof leagueSchema>;
|
|
|
7
7
|
export type EPLTeam = z.infer<typeof eplTeamSchema>;
|
|
8
8
|
export type NFLTeam = z.infer<typeof nflTeamSchema>;
|
|
9
9
|
export type CFBTeam = z.infer<typeof cfbTeamSchema>;
|
|
10
|
+
export type NHLTeam = z.infer<typeof nhlTeamSchema>;
|