@mikro-orm/core 6.6.2-dev.1 → 6.6.2-dev.3
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.6.2-dev.
|
|
3
|
+
"version": "6.6.2-dev.3",
|
|
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.6.2-dev.
|
|
67
|
+
"mikro-orm": "6.6.2-dev.3",
|
|
68
68
|
"reflect-metadata": "0.2.2"
|
|
69
69
|
}
|
|
70
70
|
}
|
|
@@ -288,10 +288,14 @@ class EntityComparator {
|
|
|
288
288
|
lines.push(`${padding} if (${value} == null || ${value} instanceof Date) {`);
|
|
289
289
|
lines.push(`${padding} ${key} = ${value};`);
|
|
290
290
|
if (!tz || tz === 'local') {
|
|
291
|
+
lines.push(`${padding} } else if (typeof ${value} === 'bigint') {`);
|
|
292
|
+
lines.push(`${padding} ${key} = parseDate(Number(${value}));`);
|
|
291
293
|
lines.push(`${padding} } else {`);
|
|
292
294
|
lines.push(`${padding} ${key} = parseDate(${value});`);
|
|
293
295
|
}
|
|
294
296
|
else {
|
|
297
|
+
lines.push(`${padding} } else if (typeof ${value} === 'bigint') {`);
|
|
298
|
+
lines.push(`${padding} ${key} = parseDate(Number(${value}));`);
|
|
295
299
|
lines.push(`${padding} } else if (typeof ${value} === 'number' || ${value}.includes('+') || ${value}.lastIndexOf('-') > 10 || ${value}.endsWith('Z')) {`);
|
|
296
300
|
lines.push(`${padding} ${key} = parseDate(${value});`);
|
|
297
301
|
lines.push(`${padding} } else {`);
|