rategame-shared 1.1.291 → 1.1.292
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/voting.d.ts +2 -1
- package/dist/schemas/voting.d.ts +17830 -0
- package/dist/schemas/voting.js +8 -1
- package/package.json +1 -1
package/dist/models/voting.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
-
import { playerVoteSchema, voteSubmissionDtoSchema, voteSubmissionResponseDtoSchema, mostVotedPlayerSchema, gameVoteResultsSchema, teamPlayersResponseDtoSchema, gamePlayersResponseDtoSchema, userVoteResponseDtoSchema, voteResultsResponseDtoSchema, leagueSupportErrorSchema, apiErrorResponseSchema, playerWithVotesSchema, voteUpdateDtoSchema } from "../schemas/voting";
|
|
2
|
+
import { playerVoteSchema, voteSubmissionDtoSchema, voteSubmissionResponseDtoSchema, mostVotedPlayerSchema, gameVoteResultsSchema, teamPlayersResponseDtoSchema, gamePlayersResponseDtoSchema, userVoteResponseDtoSchema, voteResultsResponseDtoSchema, leagueSupportErrorSchema, apiErrorResponseSchema, playerWithVotesSchema, voteUpdateDtoSchema, playerWithVotesAndGameSchema } from "../schemas/voting";
|
|
3
3
|
export type PlayerVote = z.infer<typeof playerVoteSchema>;
|
|
4
4
|
export type VoteSubmissionDto = z.infer<typeof voteSubmissionDtoSchema>;
|
|
5
5
|
export type VoteSubmissionResponseDto = z.infer<typeof voteSubmissionResponseDtoSchema>;
|
|
@@ -13,3 +13,4 @@ export type VoteUpdateDto = z.infer<typeof voteUpdateDtoSchema>;
|
|
|
13
13
|
export type LeagueSupportError = z.infer<typeof leagueSupportErrorSchema>;
|
|
14
14
|
export type ApiErrorResponse = z.infer<typeof apiErrorResponseSchema>;
|
|
15
15
|
export type PlayerWithVotes = z.infer<typeof playerWithVotesSchema>;
|
|
16
|
+
export type PlayerWithVotesAndGame = z.infer<typeof playerWithVotesAndGameSchema>;
|