rategame-shared 1.1.230 → 1.1.231

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.
@@ -383,9 +383,11 @@ export declare const searchRatingSchema: import("zod").ZodObject<{
383
383
  division: import("zod").ZodOptional<import("zod").ZodString>;
384
384
  fanCategory: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"winningTeam">, import("zod").ZodLiteral<"losingTeam">, import("zod").ZodLiteral<"neutral">, import("zod").ZodLiteral<"homeTeam">, import("zod").ZodLiteral<"awayTeam">]>>;
385
385
  category: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"watched">, import("zod").ZodLiteral<"attended">, import("zod").ZodLiteral<"highlights">, import("zod").ZodLiteral<"listened">, import("zod").ZodLiteral<"partiallyWatched">]>>;
386
+ location: import("zod").ZodOptional<import("zod").ZodString>;
386
387
  }, "strip", import("zod").ZodTypeAny, {
387
388
  league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
388
389
  offset?: string | undefined;
390
+ location?: string | undefined;
389
391
  round?: string | undefined;
390
392
  q?: string | undefined;
391
393
  username?: string | undefined;
@@ -405,6 +407,7 @@ export declare const searchRatingSchema: import("zod").ZodObject<{
405
407
  }, {
406
408
  league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
407
409
  offset?: string | undefined;
410
+ location?: string | undefined;
408
411
  round?: string | undefined;
409
412
  q?: string | undefined;
410
413
  username?: string | undefined;
@@ -77,6 +77,7 @@ exports.searchRatingSchema = (0, zod_1.object)({
77
77
  (0, zod_1.literal)("awayTeam"),
78
78
  ]).optional(),
79
79
  category: exports.ratingCategorySchema.optional(),
80
+ location: (0, zod_1.string)().optional(),
80
81
  });
81
82
  exports.ratingLikeSchema = (0, zod_1.object)({
82
83
  ratingId: (0, zod_1.string)(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rategame-shared",
3
- "version": "1.1.230",
3
+ "version": "1.1.231",
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",