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.
package/dist/schemas/rating.d.ts
CHANGED
|
@@ -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").
|
|
2631
|
-
ratedGames: import("zod").
|
|
2630
|
+
avgRating: import("zod").ZodString;
|
|
2631
|
+
ratedGames: import("zod").ZodString;
|
|
2632
2632
|
}, "strip", import("zod").ZodTypeAny, {
|
|
2633
|
-
avgRating:
|
|
2634
|
-
ratedGames:
|
|
2633
|
+
avgRating: string;
|
|
2634
|
+
ratedGames: string;
|
|
2635
2635
|
}, {
|
|
2636
|
-
avgRating:
|
|
2637
|
-
ratedGames:
|
|
2636
|
+
avgRating: string;
|
|
2637
|
+
ratedGames: string;
|
|
2638
2638
|
}>;
|
package/dist/schemas/rating.js
CHANGED
|
@@ -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.
|
|
113
|
-
ratedGames: (0, zod_1.
|
|
112
|
+
avgRating: (0, zod_1.string)(),
|
|
113
|
+
ratedGames: (0, zod_1.string)(),
|
|
114
114
|
});
|