rategame-shared 1.1.337 → 1.1.339

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.
@@ -722,9 +722,6 @@ export declare const searchRatingSchema: import("zod").ZodObject<{
722
722
  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">]>>;
723
723
  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">]>>;
724
724
  userLocation: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
725
- includeExperienceRatings: import("zod").ZodOptional<import("zod").ZodString>;
726
- experienceRatingsLimit: import("zod").ZodOptional<import("zod").ZodString>;
727
- experienceRatingsOffset: import("zod").ZodOptional<import("zod").ZodString>;
728
725
  }, "strip", import("zod").ZodTypeAny, {
729
726
  league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
730
727
  offset?: string | undefined;
@@ -745,9 +742,6 @@ export declare const searchRatingSchema: import("zod").ZodObject<{
745
742
  showEmptyRatings?: string | undefined;
746
743
  mlbTeamLeague?: string | undefined;
747
744
  division?: string | undefined;
748
- includeExperienceRatings?: string | undefined;
749
- experienceRatingsLimit?: string | undefined;
750
- experienceRatingsOffset?: string | undefined;
751
745
  }, {
752
746
  league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
753
747
  offset?: string | undefined;
@@ -768,9 +762,6 @@ export declare const searchRatingSchema: import("zod").ZodObject<{
768
762
  showEmptyRatings?: string | undefined;
769
763
  mlbTeamLeague?: string | undefined;
770
764
  division?: string | undefined;
771
- includeExperienceRatings?: string | undefined;
772
- experienceRatingsLimit?: string | undefined;
773
- experienceRatingsOffset?: string | undefined;
774
765
  }>;
775
766
  export declare const ratingLikeSchema: import("zod").ZodObject<{
776
767
  ratingId: import("zod").ZodString;
@@ -106,10 +106,6 @@ exports.searchRatingSchema = (0, zod_1.object)({
106
106
  ]).optional(),
107
107
  category: exports.ratingCategorySchema.optional(),
108
108
  userLocation: (0, zod_1.string)().optional().nullable(),
109
- // Experience ratings params - when set, include experience ratings in response
110
- includeExperienceRatings: (0, zod_1.string)().optional(),
111
- experienceRatingsLimit: (0, zod_1.string)().optional(),
112
- experienceRatingsOffset: (0, zod_1.string)().optional(),
113
109
  });
114
110
  exports.ratingLikeSchema = (0, zod_1.object)({
115
111
  ratingId: (0, zod_1.string)(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rategame-shared",
3
- "version": "1.1.337",
3
+ "version": "1.1.339",
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",