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.
package/dist/schemas/rating.d.ts
CHANGED
|
@@ -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;
|
package/dist/schemas/rating.js
CHANGED