rategame-shared 1.0.27 → 1.0.28

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.
@@ -6,12 +6,15 @@ export declare const ratingSchema: import("zod").ZodObject<{
6
6
  user: import("zod").ZodObject<{
7
7
  id: import("zod").ZodString;
8
8
  username: import("zod").ZodString;
9
+ avatarUrl: import("zod").ZodString;
9
10
  }, "strip", import("zod").ZodTypeAny, {
10
11
  id: string;
11
12
  username: string;
13
+ avatarUrl: string;
12
14
  }, {
13
15
  id: string;
14
16
  username: string;
17
+ avatarUrl: string;
15
18
  }>;
16
19
  game: import("zod").ZodObject<{
17
20
  id: import("zod").ZodString;
@@ -114,6 +117,7 @@ export declare const ratingSchema: import("zod").ZodObject<{
114
117
  user: {
115
118
  id: string;
116
119
  username: string;
120
+ avatarUrl: string;
117
121
  };
118
122
  createdAt: number;
119
123
  rating: number;
@@ -145,6 +149,7 @@ export declare const ratingSchema: import("zod").ZodObject<{
145
149
  user: {
146
150
  id: string;
147
151
  username: string;
152
+ avatarUrl: string;
148
153
  };
149
154
  createdAt: number;
150
155
  rating: number;
@@ -11,6 +11,7 @@ exports.ratingSchema = (0, zod_1.object)({
11
11
  user: (0, zod_1.object)({
12
12
  id: (0, zod_1.string)(),
13
13
  username: (0, zod_1.string)(),
14
+ avatarUrl: (0, zod_1.string)(),
14
15
  }),
15
16
  game: (0, zod_1.object)({
16
17
  id: (0, zod_1.string)(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rategame-shared",
3
- "version": "1.0.27",
3
+ "version": "1.0.28",
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",