rategame-shared 1.1.94 → 1.1.95

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.
@@ -2627,12 +2627,12 @@ export declare const threadCommentLikeSchema: import("zod").ZodObject<{
2627
2627
  commentParentId?: string | null | undefined;
2628
2628
  }>;
2629
2629
  export declare const profileRatingStatsSchema: import("zod").ZodObject<{
2630
- avgRating: import("zod").ZodNumber;
2631
- ratedGames: import("zod").ZodNumber;
2630
+ avgRating: import("zod").ZodString;
2631
+ ratedGames: import("zod").ZodString;
2632
2632
  }, "strip", import("zod").ZodTypeAny, {
2633
- avgRating: number;
2634
- ratedGames: number;
2633
+ avgRating: string;
2634
+ ratedGames: string;
2635
2635
  }, {
2636
- avgRating: number;
2637
- ratedGames: number;
2636
+ avgRating: string;
2637
+ ratedGames: string;
2638
2638
  }>;
@@ -109,6 +109,6 @@ exports.threadCommentLikeSchema = (0, zod_1.object)({
109
109
  commentParentId: (0, zod_1.string)().nullable().optional(),
110
110
  });
111
111
  exports.profileRatingStatsSchema = (0, zod_1.object)({
112
- avgRating: (0, zod_1.number)(),
113
- ratedGames: (0, zod_1.number)(),
112
+ avgRating: (0, zod_1.string)(),
113
+ ratedGames: (0, zod_1.string)(),
114
114
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rategame-shared",
3
- "version": "1.1.94",
3
+ "version": "1.1.95",
4
4
  "description": "This package contains shared resources for the Rate Game project.",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "./dist/index.js",