@mikro-orm/core 6.5.9-dev.9 → 6.5.9

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.
@@ -175,7 +175,8 @@ class MetadataDiscovery {
175
175
  }
176
176
  tryDiscoverTargets(targets) {
177
177
  for (const target of targets) {
178
- if (typeof target === 'function' && target.name && !this.metadata.has(target.name)) {
178
+ const isDiscoverable = typeof target === 'function' || target instanceof EntitySchema_1.EntitySchema;
179
+ if (isDiscoverable && target.name && !this.metadata.has(target.name)) {
179
180
  this.discoverReferences([target]);
180
181
  this.discoverMissingTargets();
181
182
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mikro-orm/core",
3
- "version": "6.5.9-dev.9",
3
+ "version": "6.5.9",
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.2",
66
66
  "globby": "11.1.0",
67
- "mikro-orm": "6.5.9-dev.9",
67
+ "mikro-orm": "6.5.9",
68
68
  "reflect-metadata": "0.2.2"
69
69
  }
70
70
  }