@medusajs/user 2.18.0 → 2.19.0-preview-20260811102316

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.
@@ -4,6 +4,6 @@ export declare const Invite: import("@medusajs/framework/utils").DmlEntity<impor
4
4
  accepted: import("@medusajs/framework/utils").BooleanProperty;
5
5
  token: import("@medusajs/framework/utils").TextProperty;
6
6
  expires_at: import("@medusajs/framework/utils").DateTimeProperty;
7
- metadata: import("@medusajs/framework/utils").NullableModifier<Record<string, unknown>, import("@medusajs/framework/utils").JSONProperty>;
7
+ metadata: import("@medusajs/framework/utils").NullableModifier<NoInfer<Record<string, unknown>>, import("@medusajs/framework/utils").JSONProperty<NoInfer<Record<string, unknown>>>>;
8
8
  }>, "invite">;
9
9
  //# sourceMappingURL=invite.d.ts.map
@@ -4,6 +4,6 @@ export declare const User: import("@medusajs/framework/utils").DmlEntity<import(
4
4
  last_name: import("@medusajs/framework/utils").NullableModifier<string, import("@medusajs/framework/utils").TextProperty>;
5
5
  email: import("@medusajs/framework/utils").TextProperty;
6
6
  avatar_url: import("@medusajs/framework/utils").NullableModifier<string, import("@medusajs/framework/utils").TextProperty>;
7
- metadata: import("@medusajs/framework/utils").NullableModifier<Record<string, unknown>, import("@medusajs/framework/utils").JSONProperty>;
7
+ metadata: import("@medusajs/framework/utils").NullableModifier<NoInfer<Record<string, unknown>>, import("@medusajs/framework/utils").JSONProperty<NoInfer<Record<string, unknown>>>>;
8
8
  }>, "user">;
9
9
  //# sourceMappingURL=user.d.ts.map
@@ -34,7 +34,7 @@ export default class UserModuleService extends UserModuleService_base implements
34
34
  accepted: boolean;
35
35
  token: string;
36
36
  expires_at: Date;
37
- metadata: Record<string, unknown> | null;
37
+ metadata: NoInfer<Record<string, unknown>> | null;
38
38
  created_at: Date;
39
39
  updated_at: Date;
40
40
  deleted_at: Date | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@medusajs/user",
3
- "version": "2.18.0",
3
+ "version": "2.19.0-preview-20260811102316",
4
4
  "description": "Medusa Users module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -39,13 +39,13 @@
39
39
  "orm:cache:clear": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm cache:clear"
40
40
  },
41
41
  "devDependencies": {
42
- "@medusajs/framework": "2.18.0",
43
- "@medusajs/test-utils": "2.18.0"
42
+ "@medusajs/framework": "2.19.0-preview-20260811102316",
43
+ "@medusajs/test-utils": "2.19.0-preview-20260811102316"
44
44
  },
45
45
  "dependencies": {
46
46
  "jsonwebtoken": "^9.0.2"
47
47
  },
48
48
  "peerDependencies": {
49
- "@medusajs/framework": "2.18.0"
49
+ "@medusajs/framework": "2.19.0-preview-20260811102316"
50
50
  }
51
51
  }