rategame-shared 1.1.215 → 1.1.216

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.
@@ -2664,12 +2664,15 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
2664
2664
  authorGameRating: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
2665
2665
  id: import("zod").ZodString;
2666
2666
  value: import("zod").ZodNumber;
2667
+ category: import("zod").ZodUnion<[import("zod").ZodLiteral<"watched">, import("zod").ZodLiteral<"attended">, import("zod").ZodLiteral<"highlights">]>;
2667
2668
  }, "strip", import("zod").ZodTypeAny, {
2668
2669
  id: string;
2669
2670
  value: number;
2671
+ category: "watched" | "attended" | "highlights";
2670
2672
  }, {
2671
2673
  id: string;
2672
2674
  value: number;
2675
+ category: "watched" | "attended" | "highlights";
2673
2676
  }>>>;
2674
2677
  gameId: import("zod").ZodString;
2675
2678
  }, "strip", import("zod").ZodTypeAny, {
@@ -2698,6 +2701,7 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
2698
2701
  authorGameRating?: {
2699
2702
  id: string;
2700
2703
  value: number;
2704
+ category: "watched" | "attended" | "highlights";
2701
2705
  } | null | undefined;
2702
2706
  }, {
2703
2707
  id: string;
@@ -2725,6 +2729,7 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
2725
2729
  authorGameRating?: {
2726
2730
  id: string;
2727
2731
  value: number;
2732
+ category: "watched" | "attended" | "highlights";
2728
2733
  } | null | undefined;
2729
2734
  }>;
2730
2735
  export declare const threadCommentLikeSchema: import("zod").ZodObject<{
@@ -122,6 +122,7 @@ exports.threadCommentSchema = (0, zod_1.object)({
122
122
  authorGameRating: (0, zod_1.object)({
123
123
  id: (0, zod_1.string)(),
124
124
  value: (0, zod_1.number)(),
125
+ category: exports.ratingCategorySchema,
125
126
  })
126
127
  .nullable()
127
128
  .optional(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rategame-shared",
3
- "version": "1.1.215",
3
+ "version": "1.1.216",
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",