rategame-shared 1.0.34 → 1.0.36

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.
@@ -190,6 +190,7 @@ export declare const searchRatingSchema: import("zod").ZodObject<{
190
190
  sortBy: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"rating:asc">, import("zod").ZodLiteral<"rating:desc">, import("zod").ZodLiteral<"createdAt:asc">, import("zod").ZodLiteral<"createdAt:desc">]>>;
191
191
  limit: import("zod").ZodOptional<import("zod").ZodString>;
192
192
  offset: import("zod").ZodOptional<import("zod").ZodString>;
193
+ ratingLikes: import("zod").ZodOptional<import("zod").ZodNumber>;
193
194
  }, "strip", import("zod").ZodTypeAny, {
194
195
  q?: string | undefined;
195
196
  teamId?: string | undefined;
@@ -198,6 +199,7 @@ export declare const searchRatingSchema: import("zod").ZodObject<{
198
199
  sortBy?: "rating:asc" | "rating:desc" | "createdAt:asc" | "createdAt:desc" | undefined;
199
200
  limit?: string | undefined;
200
201
  offset?: string | undefined;
202
+ ratingLikes?: number | undefined;
201
203
  }, {
202
204
  q?: string | undefined;
203
205
  teamId?: string | undefined;
@@ -206,6 +208,7 @@ export declare const searchRatingSchema: import("zod").ZodObject<{
206
208
  sortBy?: "rating:asc" | "rating:desc" | "createdAt:asc" | "createdAt:desc" | undefined;
207
209
  limit?: string | undefined;
208
210
  offset?: string | undefined;
211
+ ratingLikes?: number | undefined;
209
212
  }>;
210
213
  export declare const ratingLikeSchema: import("zod").ZodObject<{
211
214
  ratingId: import("zod").ZodString;
@@ -38,6 +38,7 @@ exports.searchRatingSchema = (0, zod_1.object)({
38
38
  ]).optional(),
39
39
  limit: (0, zod_1.string)().optional(),
40
40
  offset: (0, zod_1.string)().optional(),
41
+ ratingLikes: (0, zod_1.number)().optional(),
41
42
  });
42
43
  exports.ratingLikeSchema = (0, zod_1.object)({
43
44
  ratingId: (0, zod_1.string)(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rategame-shared",
3
- "version": "1.0.34",
3
+ "version": "1.0.36",
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",