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