@skillstew/common 1.0.28 → 1.0.29

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.
@@ -45,6 +45,7 @@ export declare const EventSchemas: {
45
45
  formattedAddress: z.ZodString;
46
46
  }, z.core.$strip>>;
47
47
  languages: z.ZodOptional<z.ZodArray<z.ZodString>>;
48
+ avatarKey: z.ZodOptional<z.ZodString>;
48
49
  }, z.core.$strip>;
49
50
  };
50
51
  export type EventName = keyof typeof EventSchemas;
@@ -16,6 +16,7 @@ export declare const userProfileUpdatedSchema: z.ZodObject<{
16
16
  formattedAddress: z.ZodString;
17
17
  }, z.core.$strip>>;
18
18
  languages: z.ZodOptional<z.ZodArray<z.ZodString>>;
19
+ avatarKey: z.ZodOptional<z.ZodString>;
19
20
  }, z.core.$strip>;
20
21
  export declare const UserEventSchemas: {
21
22
  readonly "user.registered": z.ZodObject<{
@@ -35,5 +36,6 @@ export declare const UserEventSchemas: {
35
36
  formattedAddress: z.ZodString;
36
37
  }, z.core.$strip>>;
37
38
  languages: z.ZodOptional<z.ZodArray<z.ZodString>>;
39
+ avatarKey: z.ZodOptional<z.ZodString>;
38
40
  }, z.core.$strip>;
39
41
  };
@@ -24,6 +24,7 @@ exports.userProfileUpdatedSchema = zod_1.default.object({
24
24
  })
25
25
  .optional(),
26
26
  languages: zod_1.default.array(zod_1.default.string()).optional(),
27
+ avatarKey: zod_1.default.string().optional(),
27
28
  });
28
29
  exports.UserEventSchemas = {
29
30
  "user.registered": exports.userRegisteredSchema,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skillstew/common",
3
- "version": "1.0.28",
3
+ "version": "1.0.29",
4
4
  "main": "./build/index.js",
5
5
  "types": "./build/index.d.ts",
6
6
  "scripts": {
@@ -21,6 +21,7 @@ export const userProfileUpdatedSchema = z.object({
21
21
  })
22
22
  .optional(),
23
23
  languages: z.array(z.string()).optional(),
24
+ avatarKey: z.string().optional(),
24
25
  });
25
26
 
26
27
  export const UserEventSchemas = {