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