@mikro-orm/core 6.5.9-dev.5 → 6.5.9-dev.7
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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mikro-orm/core",
|
|
3
|
-
"version": "6.5.9-dev.
|
|
3
|
+
"version": "6.5.9-dev.7",
|
|
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.
|
|
67
|
+
"mikro-orm": "6.5.9-dev.7",
|
|
68
68
|
"reflect-metadata": "0.2.2"
|
|
69
69
|
}
|
|
70
70
|
}
|
package/platforms/Platform.js
CHANGED
|
@@ -130,7 +130,7 @@ class Platform {
|
|
|
130
130
|
return true;
|
|
131
131
|
}
|
|
132
132
|
isBigIntProperty(prop) {
|
|
133
|
-
return prop.columnTypes
|
|
133
|
+
return prop.columnTypes?.[0] === 'bigint';
|
|
134
134
|
}
|
|
135
135
|
isRaw(value) {
|
|
136
136
|
return typeof value === 'object' && value !== null && '__raw' in value;
|
|
@@ -40,7 +40,7 @@ class SerializationContext {
|
|
|
40
40
|
leave(entityName, prop) {
|
|
41
41
|
const last = this.path.pop();
|
|
42
42
|
/* istanbul ignore next */
|
|
43
|
-
if (
|
|
43
|
+
if (last?.[0] !== entityName || last[1] !== prop) {
|
|
44
44
|
throw new Error(`Trying to leave wrong property: ${entityName}.${prop} instead of ${last?.join('.')}`);
|
|
45
45
|
}
|
|
46
46
|
}
|