rategame-shared 1.0.42 → 1.0.43
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 +13 -0
- package/dist/schemas/rating.js +3 -0
- package/package.json +1 -1
package/dist/schemas/rating.d.ts
CHANGED
|
@@ -257,15 +257,28 @@ export declare const createAgreeRatingSchema: import("zod").ZodObject<{
|
|
|
257
257
|
}, {
|
|
258
258
|
id: string;
|
|
259
259
|
}>;
|
|
260
|
+
game: import("zod").ZodObject<{
|
|
261
|
+
id: import("zod").ZodString;
|
|
262
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
263
|
+
id: string;
|
|
264
|
+
}, {
|
|
265
|
+
id: string;
|
|
266
|
+
}>;
|
|
260
267
|
}, "strip", import("zod").ZodTypeAny, {
|
|
261
268
|
user: {
|
|
262
269
|
id: string;
|
|
263
270
|
};
|
|
271
|
+
game: {
|
|
272
|
+
id: string;
|
|
273
|
+
};
|
|
264
274
|
agree: boolean;
|
|
265
275
|
}, {
|
|
266
276
|
user: {
|
|
267
277
|
id: string;
|
|
268
278
|
};
|
|
279
|
+
game: {
|
|
280
|
+
id: string;
|
|
281
|
+
};
|
|
269
282
|
agree: boolean;
|
|
270
283
|
}>;
|
|
271
284
|
export declare const createRatingSchema: import("zod").ZodObject<{
|
package/dist/schemas/rating.js
CHANGED