rategame-shared 1.1.201 → 1.1.202

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.
@@ -2499,7 +2499,6 @@ export declare const communityChatMessageSchema: z.ZodObject<{
2499
2499
  avatarUrl?: string | null | undefined;
2500
2500
  badge?: string | undefined;
2501
2501
  }>>>;
2502
- level: z.ZodDefault<z.ZodNumber>;
2503
2502
  }, "strip", z.ZodTypeAny, {
2504
2503
  type: "game" | "profile" | "list" | "gif";
2505
2504
  id: string;
@@ -2511,7 +2510,6 @@ export declare const communityChatMessageSchema: z.ZodObject<{
2511
2510
  badge?: string | undefined;
2512
2511
  };
2513
2512
  league: string;
2514
- level: number;
2515
2513
  content?: string | undefined;
2516
2514
  createdAt?: any;
2517
2515
  parentId?: string | null | undefined;
@@ -2547,7 +2545,6 @@ export declare const communityChatMessageSchema: z.ZodObject<{
2547
2545
  avatarUrl?: string | null | undefined;
2548
2546
  badge?: string | undefined;
2549
2547
  } | null | undefined;
2550
- level?: number | undefined;
2551
2548
  itemId?: string | undefined;
2552
2549
  gifUrl?: string | undefined;
2553
2550
  }>;
@@ -29,7 +29,6 @@ exports.communityChatMessageSchema = zod_1.z.object({
29
29
  parentId: zod_1.z.string().nullable().optional(),
30
30
  isReply: zod_1.z.boolean().optional(),
31
31
  replyTo: user_1.reducedUserSchema.nullable().optional(),
32
- level: zod_1.z.number().default(0),
33
32
  });
34
33
  exports.messageReactionSchema = zod_1.z.object({
35
34
  id: zod_1.z.string(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rategame-shared",
3
- "version": "1.1.201",
3
+ "version": "1.1.202",
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",