rategame-shared 1.1.85 → 1.1.86

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.
@@ -7863,7 +7863,7 @@ export declare const searchGameSchema: z.ZodObject<{
7863
7863
  sortBy: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"rating.avg:asc">, z.ZodLiteral<"rating.avg:desc">, z.ZodLiteral<"startedAt:asc">, z.ZodLiteral<"startedAt:desc">, z.ZodLiteral<"ratings.weightedRating.avg:asc">, z.ZodLiteral<"ratings.weightedRating.avg:desc">]>>;
7864
7864
  limit: z.ZodOptional<z.ZodString>;
7865
7865
  offset: z.ZodOptional<z.ZodString>;
7866
- filterNoRatingAvg: z.ZodOptional<z.ZodBoolean>;
7866
+ filterNoRatingAvg: z.ZodOptional<z.ZodString>;
7867
7867
  }, "strip", z.ZodTypeAny, {
7868
7868
  league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "mls" | "cbb" | "cfb" | "epl";
7869
7869
  offset?: string | undefined;
@@ -7873,7 +7873,7 @@ export declare const searchGameSchema: z.ZodObject<{
7873
7873
  teamId?: string | undefined;
7874
7874
  sortBy?: "rating.avg:asc" | "rating.avg:desc" | "startedAt:asc" | "startedAt:desc" | "ratings.weightedRating.avg:asc" | "ratings.weightedRating.avg:desc" | undefined;
7875
7875
  limit?: string | undefined;
7876
- filterNoRatingAvg?: boolean | undefined;
7876
+ filterNoRatingAvg?: string | undefined;
7877
7877
  }, {
7878
7878
  league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "mls" | "cbb" | "cfb" | "epl";
7879
7879
  offset?: string | undefined;
@@ -7883,5 +7883,5 @@ export declare const searchGameSchema: z.ZodObject<{
7883
7883
  teamId?: string | undefined;
7884
7884
  sortBy?: "rating.avg:asc" | "rating.avg:desc" | "startedAt:asc" | "startedAt:desc" | "ratings.weightedRating.avg:asc" | "ratings.weightedRating.avg:desc" | undefined;
7885
7885
  limit?: string | undefined;
7886
- filterNoRatingAvg?: boolean | undefined;
7886
+ filterNoRatingAvg?: string | undefined;
7887
7887
  }>;
@@ -288,5 +288,5 @@ exports.searchGameSchema = zod_1.z.object({
288
288
  .optional(),
289
289
  limit: zod_1.z.string().optional(),
290
290
  offset: zod_1.z.string().optional(),
291
- filterNoRatingAvg: zod_1.z.boolean().optional(),
291
+ filterNoRatingAvg: zod_1.z.string().optional(),
292
292
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rategame-shared",
3
- "version": "1.1.85",
3
+ "version": "1.1.86",
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",