rategame-shared 1.1.322 → 1.1.324

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,10 +1,11 @@
1
1
  import { z } from "zod";
2
- import { pickSchema, miniPickSchema, pickSubmissionDtoSchema, pickSubmissionResponseDtoSchema, pickUpdateDtoSchema, gamePickStatsResponseDtoSchema, userPickResponseDtoSchema, userPicksLeagueStatsSchema, userPicksStatsResponseDtoSchema, userPicksTeamStatsSchema, userPicksByTeamResponseDtoSchema, gamePickUsersResponseDtoSchema, gamePickUsersPaginatedResponseDtoSchema } from "../schemas/pick";
2
+ import { pickSchema, miniPickSchema, pickSubmissionDtoSchema, pickSubmissionResponseDtoSchema, pickUpdateDtoSchema, pickDeleteDtoSchema, pickDeleteResponseDtoSchema, gamePickStatsResponseDtoSchema, userPickResponseDtoSchema, userPicksLeagueStatsSchema, userPicksStatsResponseDtoSchema, userPicksTeamStatsSchema, userPicksByTeamResponseDtoSchema, gamePickUsersResponseDtoSchema, gamePickUsersPaginatedResponseDtoSchema } from "../schemas/pick";
3
3
  export type Pick = z.infer<typeof pickSchema>;
4
4
  export type MiniPick = z.infer<typeof miniPickSchema>;
5
5
  export type PickSubmissionDto = z.infer<typeof pickSubmissionDtoSchema>;
6
6
  export type PickSubmissionResponseDto = z.infer<typeof pickSubmissionResponseDtoSchema>;
7
7
  export type PickUpdateDto = z.infer<typeof pickUpdateDtoSchema>;
8
+ export type PickDeleteDto = z.infer<typeof pickDeleteDtoSchema>;
8
9
  export type GamePickStatsResponseDto = z.infer<typeof gamePickStatsResponseDtoSchema>;
9
10
  export type UserPickResponseDto = z.infer<typeof userPickResponseDtoSchema>;
10
11
  export type UserPicksLeagueStats = z.infer<typeof userPicksLeagueStatsSchema>;
@@ -13,3 +14,4 @@ export type UserPicksTeamStats = z.infer<typeof userPicksTeamStatsSchema>;
13
14
  export type UserPicksByTeamResponseDto = z.infer<typeof userPicksByTeamResponseDtoSchema>;
14
15
  export type GamePickUsersResponseDto = z.infer<typeof gamePickUsersResponseDtoSchema>;
15
16
  export type GamePickUsersPaginatedResponseDto = z.infer<typeof gamePickUsersPaginatedResponseDtoSchema>;
17
+ export type PickDeleteResponseDto = z.infer<typeof pickDeleteResponseDtoSchema>;