rategame-shared 1.1.52 → 1.1.54
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/team.d.ts +2 -1
- package/dist/schemas/game.d.ts +253 -50
- package/dist/schemas/game.js +1 -0
- package/dist/schemas/notification.d.ts +30 -12
- package/dist/schemas/rating.d.ts +210 -18
- package/dist/schemas/team.d.ts +42 -13
- package/dist/schemas/team.js +5 -1
- package/dist/schemas/user.d.ts +8 -8
- package/package.json +1 -1
package/dist/models/team.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
-
import { teamSchema, mlbTeamSchema, divisionSchema, leagueSchema, eplTeamSchema } from "../schemas/team";
|
|
2
|
+
import { teamSchema, mlbTeamSchema, divisionSchema, leagueSchema, eplTeamSchema, nflTeamSchema } 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>;
|
|
6
6
|
export type MLBLeague = z.infer<typeof leagueSchema>;
|
|
7
7
|
export type EPLTeam = z.infer<typeof eplTeamSchema>;
|
|
8
|
+
export type NFLTeam = z.infer<typeof nflTeamSchema>;
|