rategame-shared 1.1.199 → 1.1.200

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.
@@ -1679,8 +1679,6 @@ export declare const communityChatMessageSchema: z.ZodObject<{
1679
1679
  type: z.ZodUnion<[z.ZodLiteral<"game">, z.ZodLiteral<"profile">, z.ZodLiteral<"list">, z.ZodLiteral<"gif">]>;
1680
1680
  itemId: z.ZodOptional<z.ZodString>;
1681
1681
  gifUrl: z.ZodOptional<z.ZodString>;
1682
- reactionCounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
1683
- myReactions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1684
1682
  }, "strip", z.ZodTypeAny, {
1685
1683
  type: "game" | "profile" | "list" | "gif";
1686
1684
  id: string;
@@ -1696,8 +1694,6 @@ export declare const communityChatMessageSchema: z.ZodObject<{
1696
1694
  createdAt?: any;
1697
1695
  itemId?: string | undefined;
1698
1696
  gifUrl?: string | undefined;
1699
- reactionCounts?: Record<string, number> | undefined;
1700
- myReactions?: string[] | undefined;
1701
1697
  }, {
1702
1698
  type: "game" | "profile" | "list" | "gif";
1703
1699
  id: string;
@@ -1713,8 +1709,6 @@ export declare const communityChatMessageSchema: z.ZodObject<{
1713
1709
  createdAt?: any;
1714
1710
  itemId?: string | undefined;
1715
1711
  gifUrl?: string | undefined;
1716
- reactionCounts?: Record<string, number> | undefined;
1717
- myReactions?: string[] | undefined;
1718
1712
  }>;
1719
1713
  export declare const messageReactionSchema: z.ZodObject<{
1720
1714
  id: z.ZodString;
@@ -26,8 +26,6 @@ exports.communityChatMessageSchema = zod_1.z.object({
26
26
  ]),
27
27
  itemId: zod_1.z.string().optional(),
28
28
  gifUrl: zod_1.z.string().optional(),
29
- reactionCounts: zod_1.z.record(zod_1.z.string(), zod_1.z.number()).optional(),
30
- myReactions: zod_1.z.array(zod_1.z.string()).optional(),
31
29
  });
32
30
  exports.messageReactionSchema = zod_1.z.object({
33
31
  id: zod_1.z.string(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rategame-shared",
3
- "version": "1.1.199",
3
+ "version": "1.1.200",
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",