rategame-shared 1.0.83 → 1.0.84

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.
@@ -246,15 +246,19 @@ export declare const searchRatingSchema: import("zod").ZodObject<{
246
246
  offset: import("zod").ZodOptional<import("zod").ZodString>;
247
247
  gameId: import("zod").ZodOptional<import("zod").ZodString>;
248
248
  showEmptyRatings: import("zod").ZodOptional<import("zod").ZodString>;
249
+ comment: import("zod").ZodOptional<import("zod").ZodString>;
250
+ username: import("zod").ZodOptional<import("zod").ZodString>;
249
251
  }, "strip", import("zod").ZodTypeAny, {
250
252
  league: "nba" | "ncaa";
251
253
  offset?: string | undefined;
252
254
  round?: string | undefined;
253
255
  q?: string | undefined;
256
+ username?: string | undefined;
254
257
  createdAt?: "12h" | "daily" | "weekly" | undefined;
255
258
  teamId?: string | undefined;
256
259
  sortBy?: "rating:asc" | "rating:desc" | "createdAt:asc" | "createdAt:desc" | undefined;
257
260
  limit?: string | undefined;
261
+ comment?: string | undefined;
258
262
  gameId?: string | undefined;
259
263
  showEmptyRatings?: string | undefined;
260
264
  }, {
@@ -262,10 +266,12 @@ export declare const searchRatingSchema: import("zod").ZodObject<{
262
266
  offset?: string | undefined;
263
267
  round?: string | undefined;
264
268
  q?: string | undefined;
269
+ username?: string | undefined;
265
270
  createdAt?: "12h" | "daily" | "weekly" | undefined;
266
271
  teamId?: string | undefined;
267
272
  sortBy?: "rating:asc" | "rating:desc" | "createdAt:asc" | "createdAt:desc" | undefined;
268
273
  limit?: string | undefined;
274
+ comment?: string | undefined;
269
275
  gameId?: string | undefined;
270
276
  showEmptyRatings?: string | undefined;
271
277
  }>;
@@ -45,6 +45,8 @@ exports.searchRatingSchema = (0, zod_1.object)({
45
45
  offset: (0, zod_1.string)().optional(),
46
46
  gameId: (0, zod_1.string)().optional(),
47
47
  showEmptyRatings: (0, zod_1.string)().optional(),
48
+ comment: (0, zod_1.string)().optional(),
49
+ username: (0, zod_1.string)().optional(),
48
50
  });
49
51
  exports.ratingLikeSchema = (0, zod_1.object)({
50
52
  ratingId: (0, zod_1.string)(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rategame-shared",
3
- "version": "1.0.83",
3
+ "version": "1.0.84",
4
4
  "description": "This package contains shared resources for the Rate Game project.",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "./dist/index.js",