rategame-shared 1.1.32 → 1.1.33

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.
@@ -1034,6 +1034,7 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
1034
1034
  id: string;
1035
1035
  value: number;
1036
1036
  }>>>;
1037
+ gameId: import("zod").ZodString;
1037
1038
  }, "strip", import("zod").ZodTypeAny, {
1038
1039
  id: string;
1039
1040
  content: string;
@@ -1044,6 +1045,7 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
1044
1045
  avatarUrl?: string | null | undefined;
1045
1046
  };
1046
1047
  createdAt: number;
1048
+ gameId: string;
1047
1049
  ratingId: string;
1048
1050
  level: number;
1049
1051
  parentId?: string | null | undefined;
@@ -1068,6 +1070,7 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
1068
1070
  avatarUrl?: string | null | undefined;
1069
1071
  };
1070
1072
  createdAt: number;
1073
+ gameId: string;
1071
1074
  ratingId: string;
1072
1075
  level: number;
1073
1076
  parentId?: string | null | undefined;
@@ -121,6 +121,7 @@ exports.threadCommentSchema = (0, zod_1.object)({
121
121
  })
122
122
  .nullable()
123
123
  .optional(),
124
+ gameId: (0, zod_1.string)(),
124
125
  });
125
126
  exports.threadCommentLikeSchema = (0, zod_1.object)({
126
127
  id: (0, zod_1.string)(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rategame-shared",
3
- "version": "1.1.32",
3
+ "version": "1.1.33",
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",