rategame-shared 1.1.291 → 1.1.293

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 { 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>;
@@ -4102,12 +4102,15 @@ export declare const threadCommentLikeSchema: import("zod").ZodObject<{
4102
4102
  export declare const profileRatingStatsSchema: import("zod").ZodObject<{
4103
4103
  avgRating: import("zod").ZodString;
4104
4104
  ratedGames: import("zod").ZodString;
4105
+ stadiumRatings: import("zod").ZodNumber;
4105
4106
  }, "strip", import("zod").ZodTypeAny, {
4106
4107
  avgRating: string;
4107
4108
  ratedGames: string;
4109
+ stadiumRatings: number;
4108
4110
  }, {
4109
4111
  avgRating: string;
4110
4112
  ratedGames: string;
4113
+ stadiumRatings: number;
4111
4114
  }>;
4112
4115
  export declare const seasonStatsSchema: import("zod").ZodObject<{
4113
4116
  season: import("zod").ZodString;
@@ -149,6 +149,7 @@ exports.threadCommentLikeSchema = (0, zod_1.object)({
149
149
  exports.profileRatingStatsSchema = (0, zod_1.object)({
150
150
  avgRating: (0, zod_1.string)(),
151
151
  ratedGames: (0, zod_1.string)(),
152
+ stadiumRatings: (0, zod_1.number)(),
152
153
  });
153
154
  exports.seasonStatsSchema = (0, zod_1.object)({
154
155
  season: (0, zod_1.string)(),