rategame-shared 1.0.89 → 1.0.90
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
|
@@ -249,6 +249,7 @@ export declare const searchRatingSchema: import("zod").ZodObject<{
|
|
|
249
249
|
comment: import("zod").ZodOptional<import("zod").ZodString>;
|
|
250
250
|
username: import("zod").ZodOptional<import("zod").ZodString>;
|
|
251
251
|
following: import("zod").ZodOptional<import("zod").ZodString>;
|
|
252
|
+
userId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
252
253
|
}, "strip", import("zod").ZodTypeAny, {
|
|
253
254
|
league: "nba" | "ncaa";
|
|
254
255
|
offset?: string | undefined;
|
|
@@ -263,6 +264,7 @@ export declare const searchRatingSchema: import("zod").ZodObject<{
|
|
|
263
264
|
gameId?: string | undefined;
|
|
264
265
|
showEmptyRatings?: string | undefined;
|
|
265
266
|
following?: string | undefined;
|
|
267
|
+
userId?: string | undefined;
|
|
266
268
|
}, {
|
|
267
269
|
league: "nba" | "ncaa";
|
|
268
270
|
offset?: string | undefined;
|
|
@@ -277,6 +279,7 @@ export declare const searchRatingSchema: import("zod").ZodObject<{
|
|
|
277
279
|
gameId?: string | undefined;
|
|
278
280
|
showEmptyRatings?: string | undefined;
|
|
279
281
|
following?: string | undefined;
|
|
282
|
+
userId?: string | undefined;
|
|
280
283
|
}>;
|
|
281
284
|
export declare const ratingLikeSchema: import("zod").ZodObject<{
|
|
282
285
|
ratingId: import("zod").ZodString;
|
package/dist/schemas/rating.js
CHANGED
|
@@ -50,6 +50,7 @@ exports.searchRatingSchema = (0, zod_1.object)({
|
|
|
50
50
|
comment: (0, zod_1.string)().optional(),
|
|
51
51
|
username: (0, zod_1.string)().optional(),
|
|
52
52
|
following: (0, zod_1.string)().optional(),
|
|
53
|
+
userId: (0, zod_1.string)().optional(),
|
|
53
54
|
});
|
|
54
55
|
exports.ratingLikeSchema = (0, zod_1.object)({
|
|
55
56
|
ratingId: (0, zod_1.string)(),
|