rategame-shared 1.1.321 → 1.1.323

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 { pickSchema, miniPickSchema, pickSubmissionDtoSchema, pickSubmissionResponseDtoSchema, pickUpdateDtoSchema, gamePickStatsResponseDtoSchema, userPickResponseDtoSchema, userPicksLeagueStatsSchema, userPicksStatsResponseDtoSchema, userPicksTeamStatsSchema, userPicksByTeamResponseDtoSchema, gamePickUsersResponseDtoSchema, gamePickUsersPaginatedResponseDtoSchema } from "../schemas/pick";
2
+ import { pickSchema, miniPickSchema, pickSubmissionDtoSchema, pickSubmissionResponseDtoSchema, pickUpdateDtoSchema, 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>;
@@ -13,3 +13,4 @@ export type UserPicksTeamStats = z.infer<typeof userPicksTeamStatsSchema>;
13
13
  export type UserPicksByTeamResponseDto = z.infer<typeof userPicksByTeamResponseDtoSchema>;
14
14
  export type GamePickUsersResponseDto = z.infer<typeof gamePickUsersResponseDtoSchema>;
15
15
  export type GamePickUsersPaginatedResponseDto = z.infer<typeof gamePickUsersPaginatedResponseDtoSchema>;
16
+ export type PickDeleteResponseDto = z.infer<typeof pickDeleteResponseDtoSchema>;