rategame-shared 1.1.14 → 1.1.15
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
|
@@ -264,6 +264,8 @@ export declare const searchRatingSchema: import("zod").ZodObject<{
|
|
|
264
264
|
username: import("zod").ZodOptional<import("zod").ZodString>;
|
|
265
265
|
following: import("zod").ZodOptional<import("zod").ZodString>;
|
|
266
266
|
userId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
267
|
+
mlbTeamLeague: import("zod").ZodOptional<import("zod").ZodString>;
|
|
268
|
+
division: import("zod").ZodOptional<import("zod").ZodString>;
|
|
267
269
|
}, "strip", import("zod").ZodTypeAny, {
|
|
268
270
|
league: "nba" | "ncaa" | "mlb" | "nfl" | "nhl" | "mls";
|
|
269
271
|
offset?: string | undefined;
|
|
@@ -279,6 +281,8 @@ export declare const searchRatingSchema: import("zod").ZodObject<{
|
|
|
279
281
|
showEmptyRatings?: string | undefined;
|
|
280
282
|
following?: string | undefined;
|
|
281
283
|
userId?: string | undefined;
|
|
284
|
+
mlbTeamLeague?: string | undefined;
|
|
285
|
+
division?: string | undefined;
|
|
282
286
|
}, {
|
|
283
287
|
league: "nba" | "ncaa" | "mlb" | "nfl" | "nhl" | "mls";
|
|
284
288
|
offset?: string | undefined;
|
|
@@ -294,6 +298,8 @@ export declare const searchRatingSchema: import("zod").ZodObject<{
|
|
|
294
298
|
showEmptyRatings?: string | undefined;
|
|
295
299
|
following?: string | undefined;
|
|
296
300
|
userId?: string | undefined;
|
|
301
|
+
mlbTeamLeague?: string | undefined;
|
|
302
|
+
division?: string | undefined;
|
|
297
303
|
}>;
|
|
298
304
|
export declare const ratingLikeSchema: import("zod").ZodObject<{
|
|
299
305
|
ratingId: import("zod").ZodString;
|
package/dist/schemas/rating.js
CHANGED
|
@@ -65,6 +65,8 @@ exports.searchRatingSchema = (0, zod_1.object)({
|
|
|
65
65
|
username: (0, zod_1.string)().optional(),
|
|
66
66
|
following: (0, zod_1.string)().optional(),
|
|
67
67
|
userId: (0, zod_1.string)().optional(),
|
|
68
|
+
mlbTeamLeague: (0, zod_1.string)().optional(),
|
|
69
|
+
division: (0, zod_1.string)().optional(),
|
|
68
70
|
});
|
|
69
71
|
exports.ratingLikeSchema = (0, zod_1.object)({
|
|
70
72
|
ratingId: (0, zod_1.string)(),
|