rategame-shared 1.1.202 → 1.1.203

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.
@@ -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">]>;
1679
+ type: z.ZodUnion<[z.ZodLiteral<"game">, z.ZodLiteral<"profile">, z.ZodLiteral<"list">, z.ZodLiteral<"gif">, 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: "game" | "profile" | "list" | "gif";
2503
+ type: "text" | "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: "game" | "profile" | "list" | "gif";
2527
+ type: "text" | "game" | "profile" | "list" | "gif";
2528
2528
  id: string;
2529
2529
  user: {
2530
2530
  id: string;
@@ -23,6 +23,7 @@ exports.communityChatMessageSchema = zod_1.z.object({
23
23
  zod_1.z.literal("profile"),
24
24
  zod_1.z.literal("list"),
25
25
  zod_1.z.literal("gif"),
26
+ zod_1.z.literal("text"),
26
27
  ]),
27
28
  itemId: zod_1.z.string().optional(),
28
29
  gifUrl: zod_1.z.string().optional(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rategame-shared",
3
- "version": "1.1.202",
3
+ "version": "1.1.203",
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",