rategame-shared 1.1.203 → 1.1.204
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/chat.d.ts +3 -3
- package/dist/schemas/chat.js +1 -0
- package/package.json +1 -1
package/dist/schemas/chat.d.ts
CHANGED
|
@@ -1676,7 +1676,7 @@ export declare const communityChatMessageSchema: z.ZodObject<{
|
|
|
1676
1676
|
avatarUrl?: string | null | undefined;
|
|
1677
1677
|
badge?: string | undefined;
|
|
1678
1678
|
}>;
|
|
1679
|
-
type: z.ZodUnion<[z.ZodLiteral<"game">, z.ZodLiteral<"profile">, z.ZodLiteral<"list">, z.ZodLiteral<"gif">, z.ZodLiteral<"text">]>;
|
|
1679
|
+
type: z.ZodUnion<[z.ZodLiteral<"game">, z.ZodLiteral<"profile">, z.ZodLiteral<"list">, z.ZodLiteral<"gif">, z.ZodLiteral<"rating">, z.ZodLiteral<"text">]>;
|
|
1680
1680
|
itemId: z.ZodOptional<z.ZodString>;
|
|
1681
1681
|
gifUrl: z.ZodOptional<z.ZodString>;
|
|
1682
1682
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2500,7 +2500,7 @@ export declare const communityChatMessageSchema: z.ZodObject<{
|
|
|
2500
2500
|
badge?: string | undefined;
|
|
2501
2501
|
}>>>;
|
|
2502
2502
|
}, "strip", z.ZodTypeAny, {
|
|
2503
|
-
type: "text" | "game" | "profile" | "list" | "gif";
|
|
2503
|
+
type: "text" | "rating" | "game" | "profile" | "list" | "gif";
|
|
2504
2504
|
id: string;
|
|
2505
2505
|
user: {
|
|
2506
2506
|
id: string;
|
|
@@ -2524,7 +2524,7 @@ export declare const communityChatMessageSchema: z.ZodObject<{
|
|
|
2524
2524
|
itemId?: string | undefined;
|
|
2525
2525
|
gifUrl?: string | undefined;
|
|
2526
2526
|
}, {
|
|
2527
|
-
type: "text" | "game" | "profile" | "list" | "gif";
|
|
2527
|
+
type: "text" | "rating" | "game" | "profile" | "list" | "gif";
|
|
2528
2528
|
id: string;
|
|
2529
2529
|
user: {
|
|
2530
2530
|
id: string;
|
package/dist/schemas/chat.js
CHANGED