rategame-shared 1.1.290 → 1.1.291

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.
@@ -5,8 +5,6 @@ export declare const supportSchema: z.ZodObject<{
5
5
  email: z.ZodString;
6
6
  subject: z.ZodString;
7
7
  message: z.ZodString;
8
- status: z.ZodOptional<z.ZodEnum<["new", "in-progress", "resolved"]>>;
9
- supportEmail: z.ZodOptional<z.ZodString>;
10
8
  createdAt: z.ZodOptional<z.ZodNumber>;
11
9
  }, "strip", z.ZodTypeAny, {
12
10
  message: string;
@@ -14,18 +12,14 @@ export declare const supportSchema: z.ZodObject<{
14
12
  name: string;
15
13
  email: string;
16
14
  subject: string;
17
- status?: "in-progress" | "new" | "resolved" | undefined;
18
15
  createdAt?: number | undefined;
19
- supportEmail?: string | undefined;
20
16
  }, {
21
17
  message: string;
22
18
  id: string;
23
19
  name: string;
24
20
  email: string;
25
21
  subject: string;
26
- status?: "in-progress" | "new" | "resolved" | undefined;
27
22
  createdAt?: number | undefined;
28
- supportEmail?: string | undefined;
29
23
  }>;
30
24
  export declare const supportCreateSchema: z.ZodObject<Omit<{
31
25
  id: z.ZodString;
@@ -33,23 +27,17 @@ export declare const supportCreateSchema: z.ZodObject<Omit<{
33
27
  email: z.ZodString;
34
28
  subject: z.ZodString;
35
29
  message: z.ZodString;
36
- status: z.ZodOptional<z.ZodEnum<["new", "in-progress", "resolved"]>>;
37
- supportEmail: z.ZodOptional<z.ZodString>;
38
30
  createdAt: z.ZodOptional<z.ZodNumber>;
39
31
  }, "id">, "strip", z.ZodTypeAny, {
40
32
  message: string;
41
33
  name: string;
42
34
  email: string;
43
35
  subject: string;
44
- status?: "in-progress" | "new" | "resolved" | undefined;
45
36
  createdAt?: number | undefined;
46
- supportEmail?: string | undefined;
47
37
  }, {
48
38
  message: string;
49
39
  name: string;
50
40
  email: string;
51
41
  subject: string;
52
- status?: "in-progress" | "new" | "resolved" | undefined;
53
42
  createdAt?: number | undefined;
54
- supportEmail?: string | undefined;
55
43
  }>;
@@ -8,8 +8,6 @@ exports.supportSchema = zod_1.z.object({
8
8
  email: zod_1.z.string().email(),
9
9
  subject: zod_1.z.string(),
10
10
  message: zod_1.z.string(),
11
- status: zod_1.z.enum(["new", "in-progress", "resolved"]).optional(),
12
- supportEmail: zod_1.z.string().optional(),
13
11
  createdAt: zod_1.z.number().optional(),
14
12
  });
15
13
  exports.supportCreateSchema = exports.supportSchema.omit({ id: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rategame-shared",
3
- "version": "1.1.290",
3
+ "version": "1.1.291",
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",