@mikro-orm/core 6.6.7-dev.0 → 6.6.7-dev.1

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.
@@ -35,6 +35,11 @@ class EntityHelper {
35
35
  const prototype = meta.prototype;
36
36
  if (!prototype.toJSON) { // toJSON can be overridden
37
37
  prototype.toJSON = function (...args) {
38
+ // Guard against being called on the prototype itself (e.g. by serializers
39
+ // walking the object graph and calling toJSON on prototype objects)
40
+ if (this === prototype) {
41
+ return {};
42
+ }
38
43
  return EntityTransformer_1.EntityTransformer.toObject(this, ...args.slice(meta.toJsonParams.length));
39
44
  };
40
45
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mikro-orm/core",
3
- "version": "6.6.7-dev.0",
3
+ "version": "6.6.7-dev.1",
4
4
  "description": "TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, MySQL, PostgreSQL and SQLite databases as well as usage with vanilla JavaScript.",
5
5
  "main": "index.js",
6
6
  "module": "index.mjs",
@@ -64,7 +64,7 @@
64
64
  "esprima": "4.0.1",
65
65
  "fs-extra": "11.3.3",
66
66
  "globby": "11.1.0",
67
- "mikro-orm": "6.6.7-dev.0",
67
+ "mikro-orm": "6.6.7-dev.1",
68
68
  "reflect-metadata": "0.2.2"
69
69
  }
70
70
  }