rategame-shared 1.0.32 → 1.0.33
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
|
@@ -203,7 +203,7 @@ export declare const searchRatingSchema: import("zod").ZodObject<{
|
|
|
203
203
|
offset?: number | undefined;
|
|
204
204
|
}>;
|
|
205
205
|
export declare const ratingLikeSchema: import("zod").ZodObject<{
|
|
206
|
-
|
|
206
|
+
ratingId: import("zod").ZodString;
|
|
207
207
|
user: import("zod").ZodObject<{
|
|
208
208
|
id: import("zod").ZodString;
|
|
209
209
|
username: import("zod").ZodString;
|
|
@@ -219,20 +219,20 @@ export declare const ratingLikeSchema: import("zod").ZodObject<{
|
|
|
219
219
|
}>;
|
|
220
220
|
likedAt: import("zod").ZodNumber;
|
|
221
221
|
}, "strip", import("zod").ZodTypeAny, {
|
|
222
|
-
id: string;
|
|
223
222
|
user: {
|
|
224
223
|
id: string;
|
|
225
224
|
email: string;
|
|
226
225
|
username: string;
|
|
227
226
|
};
|
|
227
|
+
ratingId: string;
|
|
228
228
|
likedAt: number;
|
|
229
229
|
}, {
|
|
230
|
-
id: string;
|
|
231
230
|
user: {
|
|
232
231
|
id: string;
|
|
233
232
|
email: string;
|
|
234
233
|
username: string;
|
|
235
234
|
};
|
|
235
|
+
ratingId: string;
|
|
236
236
|
likedAt: number;
|
|
237
237
|
}>;
|
|
238
238
|
export declare const createAgreeRatingSchema: import("zod").ZodObject<{
|
package/dist/schemas/rating.js
CHANGED
|
@@ -39,7 +39,7 @@ exports.searchRatingSchema = (0, zod_1.object)({
|
|
|
39
39
|
offset: (0, zod_1.number)().optional(),
|
|
40
40
|
});
|
|
41
41
|
exports.ratingLikeSchema = (0, zod_1.object)({
|
|
42
|
-
|
|
42
|
+
ratingId: (0, zod_1.string)(),
|
|
43
43
|
user: (0, zod_1.object)({
|
|
44
44
|
id: (0, zod_1.string)(),
|
|
45
45
|
username: (0, zod_1.string)(),
|