@mikro-orm/core 7.0.0-dev.26 → 7.0.0-dev.260

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.
Files changed (209) hide show
  1. package/EntityManager.d.ts +91 -59
  2. package/EntityManager.js +310 -255
  3. package/MikroORM.d.ts +44 -35
  4. package/MikroORM.js +109 -143
  5. package/README.md +2 -0
  6. package/cache/FileCacheAdapter.d.ts +1 -1
  7. package/cache/FileCacheAdapter.js +17 -8
  8. package/cache/GeneratedCacheAdapter.d.ts +0 -1
  9. package/cache/GeneratedCacheAdapter.js +0 -2
  10. package/cache/index.d.ts +0 -1
  11. package/cache/index.js +0 -1
  12. package/connections/Connection.d.ts +12 -5
  13. package/connections/Connection.js +21 -12
  14. package/drivers/DatabaseDriver.d.ts +25 -16
  15. package/drivers/DatabaseDriver.js +118 -35
  16. package/drivers/IDatabaseDriver.d.ts +70 -23
  17. package/entity/BaseEntity.d.ts +63 -4
  18. package/entity/BaseEntity.js +0 -3
  19. package/entity/Collection.d.ts +101 -29
  20. package/entity/Collection.js +436 -104
  21. package/entity/EntityAssigner.js +17 -17
  22. package/entity/EntityFactory.d.ts +7 -1
  23. package/entity/EntityFactory.js +83 -54
  24. package/entity/EntityHelper.d.ts +2 -2
  25. package/entity/EntityHelper.js +50 -17
  26. package/entity/EntityLoader.d.ts +7 -6
  27. package/entity/EntityLoader.js +221 -93
  28. package/entity/EntityRepository.d.ts +27 -7
  29. package/entity/EntityRepository.js +8 -2
  30. package/entity/PolymorphicRef.d.ts +12 -0
  31. package/entity/PolymorphicRef.js +18 -0
  32. package/entity/Reference.d.ts +1 -5
  33. package/entity/Reference.js +21 -12
  34. package/entity/WrappedEntity.d.ts +2 -7
  35. package/entity/WrappedEntity.js +2 -7
  36. package/entity/defineEntity.d.ts +512 -310
  37. package/entity/defineEntity.js +134 -287
  38. package/entity/index.d.ts +2 -2
  39. package/entity/index.js +2 -2
  40. package/entity/utils.d.ts +6 -1
  41. package/entity/utils.js +34 -1
  42. package/entity/validators.d.ts +11 -0
  43. package/entity/validators.js +65 -0
  44. package/enums.d.ts +8 -6
  45. package/enums.js +2 -1
  46. package/errors.d.ts +20 -10
  47. package/errors.js +55 -23
  48. package/events/EventManager.d.ts +2 -1
  49. package/events/EventManager.js +19 -11
  50. package/hydration/Hydrator.js +1 -2
  51. package/hydration/ObjectHydrator.d.ts +4 -4
  52. package/hydration/ObjectHydrator.js +87 -35
  53. package/index.d.ts +2 -2
  54. package/index.js +1 -2
  55. package/logging/DefaultLogger.d.ts +1 -1
  56. package/logging/DefaultLogger.js +1 -0
  57. package/logging/SimpleLogger.d.ts +1 -1
  58. package/logging/colors.d.ts +1 -1
  59. package/logging/colors.js +7 -6
  60. package/logging/index.d.ts +1 -0
  61. package/logging/index.js +1 -0
  62. package/logging/inspect.d.ts +2 -0
  63. package/logging/inspect.js +11 -0
  64. package/metadata/EntitySchema.d.ts +47 -23
  65. package/metadata/EntitySchema.js +92 -33
  66. package/metadata/MetadataDiscovery.d.ts +64 -9
  67. package/metadata/MetadataDiscovery.js +778 -325
  68. package/metadata/MetadataProvider.d.ts +11 -2
  69. package/metadata/MetadataProvider.js +46 -2
  70. package/metadata/MetadataStorage.d.ts +13 -11
  71. package/metadata/MetadataStorage.js +70 -37
  72. package/metadata/MetadataValidator.d.ts +32 -9
  73. package/metadata/MetadataValidator.js +196 -41
  74. package/metadata/discover-entities.d.ts +5 -0
  75. package/metadata/discover-entities.js +40 -0
  76. package/metadata/index.d.ts +1 -1
  77. package/metadata/index.js +1 -1
  78. package/metadata/types.d.ts +577 -0
  79. package/metadata/types.js +1 -0
  80. package/naming-strategy/AbstractNamingStrategy.d.ts +16 -4
  81. package/naming-strategy/AbstractNamingStrategy.js +20 -2
  82. package/naming-strategy/EntityCaseNamingStrategy.d.ts +3 -3
  83. package/naming-strategy/EntityCaseNamingStrategy.js +6 -5
  84. package/naming-strategy/MongoNamingStrategy.d.ts +3 -3
  85. package/naming-strategy/MongoNamingStrategy.js +6 -6
  86. package/naming-strategy/NamingStrategy.d.ts +28 -4
  87. package/naming-strategy/UnderscoreNamingStrategy.d.ts +3 -3
  88. package/naming-strategy/UnderscoreNamingStrategy.js +6 -6
  89. package/not-supported.d.ts +2 -0
  90. package/not-supported.js +4 -0
  91. package/package.json +19 -11
  92. package/platforms/ExceptionConverter.js +1 -1
  93. package/platforms/Platform.d.ts +7 -14
  94. package/platforms/Platform.js +20 -43
  95. package/serialization/EntitySerializer.d.ts +6 -3
  96. package/serialization/EntitySerializer.js +46 -26
  97. package/serialization/EntityTransformer.js +28 -18
  98. package/serialization/SerializationContext.d.ts +6 -6
  99. package/serialization/SerializationContext.js +3 -3
  100. package/types/ArrayType.d.ts +1 -1
  101. package/types/ArrayType.js +2 -3
  102. package/types/BigIntType.d.ts +8 -6
  103. package/types/BigIntType.js +1 -1
  104. package/types/BlobType.d.ts +0 -1
  105. package/types/BlobType.js +0 -3
  106. package/types/BooleanType.d.ts +1 -0
  107. package/types/BooleanType.js +3 -0
  108. package/types/DecimalType.d.ts +6 -4
  109. package/types/DecimalType.js +2 -2
  110. package/types/DoubleType.js +1 -1
  111. package/types/EnumArrayType.js +1 -2
  112. package/types/JsonType.d.ts +1 -1
  113. package/types/JsonType.js +7 -2
  114. package/types/TinyIntType.js +1 -1
  115. package/types/Type.d.ts +2 -4
  116. package/types/Type.js +3 -3
  117. package/types/Uint8ArrayType.d.ts +0 -1
  118. package/types/Uint8ArrayType.js +1 -4
  119. package/types/index.d.ts +1 -1
  120. package/typings.d.ts +425 -176
  121. package/typings.js +99 -44
  122. package/unit-of-work/ChangeSet.d.ts +4 -6
  123. package/unit-of-work/ChangeSet.js +4 -5
  124. package/unit-of-work/ChangeSetComputer.d.ts +3 -8
  125. package/unit-of-work/ChangeSetComputer.js +41 -20
  126. package/unit-of-work/ChangeSetPersister.d.ts +13 -12
  127. package/unit-of-work/ChangeSetPersister.js +92 -34
  128. package/unit-of-work/CommitOrderCalculator.d.ts +12 -10
  129. package/unit-of-work/CommitOrderCalculator.js +13 -13
  130. package/unit-of-work/IdentityMap.d.ts +12 -0
  131. package/unit-of-work/IdentityMap.js +39 -1
  132. package/unit-of-work/UnitOfWork.d.ts +27 -3
  133. package/unit-of-work/UnitOfWork.js +258 -92
  134. package/utils/AbstractSchemaGenerator.d.ts +5 -5
  135. package/utils/AbstractSchemaGenerator.js +28 -17
  136. package/utils/AsyncContext.d.ts +6 -0
  137. package/utils/AsyncContext.js +42 -0
  138. package/utils/Configuration.d.ts +795 -209
  139. package/utils/Configuration.js +150 -192
  140. package/utils/ConfigurationLoader.d.ts +1 -54
  141. package/utils/ConfigurationLoader.js +1 -352
  142. package/utils/Cursor.d.ts +0 -3
  143. package/utils/Cursor.js +24 -11
  144. package/utils/DataloaderUtils.d.ts +10 -5
  145. package/utils/DataloaderUtils.js +29 -12
  146. package/utils/EntityComparator.d.ts +16 -9
  147. package/utils/EntityComparator.js +158 -58
  148. package/utils/QueryHelper.d.ts +18 -6
  149. package/utils/QueryHelper.js +76 -23
  150. package/utils/RawQueryFragment.d.ts +28 -34
  151. package/utils/RawQueryFragment.js +35 -71
  152. package/utils/RequestContext.js +2 -2
  153. package/utils/TransactionContext.js +2 -2
  154. package/utils/TransactionManager.js +28 -4
  155. package/utils/Utils.d.ts +14 -127
  156. package/utils/Utils.js +80 -396
  157. package/utils/clone.js +8 -23
  158. package/utils/env-vars.d.ts +7 -0
  159. package/utils/env-vars.js +97 -0
  160. package/utils/fs-utils.d.ts +33 -0
  161. package/utils/fs-utils.js +192 -0
  162. package/utils/index.d.ts +1 -1
  163. package/utils/index.js +1 -1
  164. package/utils/upsert-utils.d.ts +9 -4
  165. package/utils/upsert-utils.js +46 -3
  166. package/decorators/Check.d.ts +0 -3
  167. package/decorators/Check.js +0 -13
  168. package/decorators/CreateRequestContext.d.ts +0 -3
  169. package/decorators/CreateRequestContext.js +0 -32
  170. package/decorators/Embeddable.d.ts +0 -8
  171. package/decorators/Embeddable.js +0 -11
  172. package/decorators/Embedded.d.ts +0 -12
  173. package/decorators/Embedded.js +0 -18
  174. package/decorators/Entity.d.ts +0 -33
  175. package/decorators/Entity.js +0 -12
  176. package/decorators/Enum.d.ts +0 -9
  177. package/decorators/Enum.js +0 -16
  178. package/decorators/Filter.d.ts +0 -2
  179. package/decorators/Filter.js +0 -8
  180. package/decorators/Formula.d.ts +0 -4
  181. package/decorators/Formula.js +0 -15
  182. package/decorators/Indexed.d.ts +0 -19
  183. package/decorators/Indexed.js +0 -20
  184. package/decorators/ManyToMany.d.ts +0 -42
  185. package/decorators/ManyToMany.js +0 -14
  186. package/decorators/ManyToOne.d.ts +0 -34
  187. package/decorators/ManyToOne.js +0 -14
  188. package/decorators/OneToMany.d.ts +0 -28
  189. package/decorators/OneToMany.js +0 -17
  190. package/decorators/OneToOne.d.ts +0 -28
  191. package/decorators/OneToOne.js +0 -7
  192. package/decorators/PrimaryKey.d.ts +0 -8
  193. package/decorators/PrimaryKey.js +0 -20
  194. package/decorators/Property.d.ts +0 -250
  195. package/decorators/Property.js +0 -32
  196. package/decorators/Transactional.d.ts +0 -14
  197. package/decorators/Transactional.js +0 -28
  198. package/decorators/hooks.d.ts +0 -16
  199. package/decorators/hooks.js +0 -47
  200. package/decorators/index.d.ts +0 -17
  201. package/decorators/index.js +0 -17
  202. package/entity/ArrayCollection.d.ts +0 -118
  203. package/entity/ArrayCollection.js +0 -407
  204. package/entity/EntityValidator.d.ts +0 -19
  205. package/entity/EntityValidator.js +0 -150
  206. package/metadata/ReflectMetadataProvider.d.ts +0 -8
  207. package/metadata/ReflectMetadataProvider.js +0 -44
  208. package/utils/resolveContextProvider.d.ts +0 -10
  209. package/utils/resolveContextProvider.js +0 -28
package/utils/Utils.js CHANGED
@@ -1,15 +1,7 @@
1
- import { createRequire } from 'node:module';
2
- import { glob, isDynamicPattern } from 'tinyglobby';
3
- import { extname, isAbsolute, join, normalize, relative, resolve } from 'node:path';
4
- import { platform } from 'node:os';
5
- import { fileURLToPath, pathToFileURL } from 'node:url';
6
- import { existsSync, mkdirSync, readFileSync } from 'node:fs';
7
- import { createHash } from 'node:crypto';
8
- import { tokenize } from 'esprima';
9
1
  import { clone } from './clone.js';
10
- import { ARRAY_OPERATORS, JSON_KEY_OPERATORS, GroupOperator, PlainObject, QueryOperator, ReferenceKind } from '../enums.js';
2
+ import { GroupOperator, PlainObject, QueryOperator, ReferenceKind } from '../enums.js';
11
3
  import { helper } from '../entity/wrap.js';
12
- export const ObjectBindingPattern = Symbol('ObjectBindingPattern');
4
+ import { Raw } from './RawQueryFragment.js';
13
5
  function compareConstructors(a, b) {
14
6
  if (a.constructor === b.constructor) {
15
7
  return true;
@@ -41,9 +33,8 @@ export function compareObjects(a, b) {
41
33
  }
42
34
  return timeA === timeB;
43
35
  }
44
- /* v8 ignore next 9 */
36
+ /* v8 ignore next */
45
37
  if ((typeof a === 'function' && typeof b === 'function') ||
46
- (typeof a === 'object' && a.client && ['Ref', 'Raw'].includes(a.constructor.name) && typeof b === 'object' && b.client && ['Ref', 'Raw'].includes(b.constructor.name)) || // knex qb
47
38
  (a instanceof RegExp && b instanceof RegExp) ||
48
39
  (a instanceof String && b instanceof String) ||
49
40
  (a instanceof Number && b instanceof Number)) {
@@ -119,7 +110,7 @@ export function equals(a, b) {
119
110
  const equalsFn = equals;
120
111
  export function parseJsonSafe(value) {
121
112
  if (typeof value === 'string') {
122
- /* v8 ignore next 6 */
113
+ /* v8 ignore next */
123
114
  try {
124
115
  return JSON.parse(value);
125
116
  }
@@ -132,52 +123,13 @@ export function parseJsonSafe(value) {
132
123
  }
133
124
  export class Utils {
134
125
  static PK_SEPARATOR = '~~~';
135
- /* v8 ignore next */
136
- static dynamicImportProvider = (id) => import(id);
137
- /**
138
- * Checks if the argument is not undefined
139
- */
140
- static isDefined(data) {
141
- return typeof data !== 'undefined';
142
- }
126
+ static #ORM_VERSION = '7.0.0-dev.260';
143
127
  /**
144
128
  * Checks if the argument is instance of `Object`. Returns false for arrays.
145
129
  */
146
130
  static isObject(o) {
147
131
  return !!o && typeof o === 'object' && !Array.isArray(o);
148
132
  }
149
- /**
150
- * Relation decorators allow using two signatures
151
- * - using first parameter as options object
152
- * - using all parameters
153
- *
154
- * This function validates those two ways are not mixed and returns the final options object.
155
- * If the second way is used, we always consider the last parameter as options object.
156
- * @internal
157
- */
158
- static processDecoratorParameters(params) {
159
- const keys = Object.keys(params);
160
- const values = Object.values(params);
161
- if (!Utils.isPlainObject(values[0])) {
162
- const lastKey = keys[keys.length - 1];
163
- const last = params[lastKey];
164
- delete params[lastKey];
165
- return { ...last, ...params };
166
- }
167
- // validate only first parameter is used if its an option object
168
- const empty = (v) => v == null || (Utils.isPlainObject(v) && !Utils.hasObjectKeys(v));
169
- if (values.slice(1).some(v => !empty(v))) {
170
- throw new Error('Mixing first decorator parameter as options object with other parameters is forbidden. ' +
171
- 'If you want to use the options parameter at first position, provide all options inside it.');
172
- }
173
- return values[0];
174
- }
175
- /**
176
- * Checks if the argument is instance of `Object`, but not one of the blacklisted types. Returns false for arrays.
177
- */
178
- static isNotObject(o, not) {
179
- return this.isObject(o) && !not.some(cls => o instanceof cls);
180
- }
181
133
  /**
182
134
  * Removes `undefined` properties (recursively) so they are not saved as nulls
183
135
  */
@@ -225,18 +177,6 @@ export class Utils {
225
177
  }
226
178
  return false;
227
179
  }
228
- /**
229
- * Checks if the argument is string
230
- */
231
- static isString(s) {
232
- return typeof s === 'string';
233
- }
234
- /**
235
- * Checks if the argument is number
236
- */
237
- static isNumber(s) {
238
- return typeof s === 'number';
239
- }
240
180
  /**
241
181
  * Checks if arguments are deeply (but not strictly) equal.
242
182
  */
@@ -282,7 +222,7 @@ export class Utils {
282
222
  target[key] = Utils.copy(value);
283
223
  continue;
284
224
  }
285
- /* v8 ignore next 3 */
225
+ /* v8 ignore next */
286
226
  if (!(key in target)) {
287
227
  Object.assign(target, { [key]: {} });
288
228
  }
@@ -295,30 +235,6 @@ export class Utils {
295
235
  }
296
236
  return Utils._merge(target, sources, ignoreUndefined);
297
237
  }
298
- static getRootEntity(metadata, meta) {
299
- const base = meta.extends && metadata.find(Utils.className(meta.extends));
300
- if (!base || base === meta) { // make sure we do not fall into infinite loop
301
- return meta;
302
- }
303
- const root = Utils.getRootEntity(metadata, base);
304
- if (root.discriminatorColumn) {
305
- return root;
306
- }
307
- return meta;
308
- }
309
- /**
310
- * Computes difference between two objects, ignoring items missing in `b`.
311
- */
312
- static diff(a, b) {
313
- const ret = {};
314
- for (const k of Object.keys(b)) {
315
- if (Utils.equals(a[k], b[k])) {
316
- continue;
317
- }
318
- ret[k] = b[k];
319
- }
320
- return ret;
321
- }
322
238
  /**
323
239
  * Creates deep copy of given object.
324
240
  */
@@ -359,53 +275,37 @@ export class Utils {
359
275
  }
360
276
  }
361
277
  /**
362
- * Returns array of functions argument names. Uses `esprima` for source code analysis.
278
+ * Returns array of functions argument names. Uses basic regex for source code analysis, might not work with advanced syntax.
363
279
  */
364
- static tokenize(func) {
365
- if (Array.isArray(func)) {
366
- return func;
367
- }
368
- /* v8 ignore next 5 */
369
- try {
370
- return tokenize(func.toString(), { tolerant: true });
280
+ static getConstructorParams(func) {
281
+ const source = func.toString();
282
+ const i = source.indexOf('constructor');
283
+ if (i === -1) {
284
+ return undefined;
371
285
  }
372
- catch {
373
- return [];
286
+ const start = source.indexOf('(', i);
287
+ if (start === -1) {
288
+ return undefined;
374
289
  }
375
- }
376
- /**
377
- * Returns array of functions argument names. Uses `esprima` for source code analysis.
378
- */
379
- static getParamNames(func, methodName) {
380
- const ret = [];
381
- const tokens = this.tokenize(func);
382
- let inside = 0;
383
- let currentBlockStart = 0;
384
- for (let i = 0; i < tokens.length; i++) {
385
- const token = tokens[i];
386
- if (token.type === 'Identifier' && token.value === methodName) {
387
- inside = 1;
388
- currentBlockStart = i;
389
- continue;
290
+ let depth = 0;
291
+ let end = start;
292
+ for (; end < source.length; end++) {
293
+ if (source[end] === '(') {
294
+ depth++;
390
295
  }
391
- if (inside === 1 && token.type === 'Punctuator' && token.value === '(') {
392
- inside = 2;
393
- currentBlockStart = i;
394
- continue;
296
+ if (source[end] === ')') {
297
+ depth--;
395
298
  }
396
- if (inside === 2 && token.type === 'Punctuator' && token.value === ')') {
299
+ if (depth === 0) {
397
300
  break;
398
301
  }
399
- if (inside === 2 && token.type === 'Punctuator' && token.value === '{' && i === currentBlockStart + 1) {
400
- ret.push(ObjectBindingPattern);
401
- i = tokens.findIndex((t, idx) => idx > i + 2 && t.type === 'Punctuator' && t.value === '}');
402
- continue;
403
- }
404
- if (inside === 2 && token.type === 'Identifier') {
405
- ret.push(token.value);
406
- }
407
302
  }
408
- return ret;
303
+ const raw = source.slice(start + 1, end);
304
+ return raw
305
+ .split(',')
306
+ .map(s => s.trim().replace(/=.*$/, '').trim())
307
+ .filter(Boolean)
308
+ .map(raw => raw.startsWith('{') && raw.endsWith('}') ? '' : raw);
409
309
  }
410
310
  /**
411
311
  * Checks whether the argument looks like primary key (string, number or ObjectId).
@@ -418,7 +318,7 @@ export class Utils {
418
318
  return true;
419
319
  }
420
320
  if (Utils.isObject(key)) {
421
- if (key.constructor && key.constructor.name.toLowerCase() === 'objectid') {
321
+ if (key.constructor?.name === 'ObjectId') {
422
322
  return true;
423
323
  }
424
324
  if (!Utils.isPlainObject(key) && !Utils.isEntity(key, true)) {
@@ -448,7 +348,7 @@ export class Utils {
448
348
  if (meta.compositePK) {
449
349
  return this.getCompositeKeyValue(data, meta);
450
350
  }
451
- return data[meta.primaryKeys[0]] || data[meta.serializedPrimaryKey] || null;
351
+ return data[meta.primaryKeys[0]] ?? data[meta.serializedPrimaryKey] ?? null;
452
352
  }
453
353
  return null;
454
354
  }
@@ -487,9 +387,8 @@ export class Utils {
487
387
  static splitPrimaryKeys(key) {
488
388
  return key.split(this.PK_SEPARATOR);
489
389
  }
490
- // TODO v7: remove support for `primaryKeys: string[]`
491
- static getPrimaryKeyValues(entity, primaryKeys, allowScalar = false, convertCustomTypes = false) {
492
- /* v8 ignore next 3 */
390
+ static getPrimaryKeyValues(entity, meta, allowScalar = false, convertCustomTypes = false) {
391
+ /* v8 ignore next */
493
392
  if (entity == null) {
494
393
  return entity;
495
394
  }
@@ -499,15 +398,13 @@ export class Utils {
499
398
  }
500
399
  return val;
501
400
  }
502
- const meta = Array.isArray(primaryKeys) ? undefined : primaryKeys;
503
- primaryKeys = Array.isArray(primaryKeys) ? primaryKeys : meta.primaryKeys;
504
401
  let pk;
505
402
  if (Utils.isEntity(entity, true)) {
506
403
  pk = helper(entity).getPrimaryKey(convertCustomTypes);
507
404
  }
508
405
  else {
509
- pk = primaryKeys.reduce((o, pk) => {
510
- const targetMeta = meta?.properties[pk].targetMeta;
406
+ pk = meta.primaryKeys.reduce((o, pk) => {
407
+ const targetMeta = meta.properties[pk].targetMeta;
511
408
  if (targetMeta && Utils.isPlainObject(entity[pk])) {
512
409
  o[pk] = Utils.getPrimaryKeyValues(entity[pk], targetMeta, allowScalar, convertCustomTypes);
513
410
  }
@@ -517,12 +414,12 @@ export class Utils {
517
414
  return o;
518
415
  }, {});
519
416
  }
520
- if (primaryKeys.length > 1) {
417
+ if (meta.primaryKeys.length > 1) {
521
418
  return toArray(pk);
522
419
  }
523
420
  if (allowScalar) {
524
421
  if (Utils.isPlainObject(pk)) {
525
- return pk[primaryKeys[0]];
422
+ return pk[(meta.primaryKeys)[0]];
526
423
  }
527
424
  return pk;
528
425
  }
@@ -606,12 +503,6 @@ export class Utils {
606
503
  static isScalarReference(data, allowReference = false) {
607
504
  return typeof data === 'object' && data?.__scalarReference;
608
505
  }
609
- /**
610
- * Checks whether the argument is ObjectId instance
611
- */
612
- static isObjectID(key) {
613
- return Utils.isObject(key) && key.constructor && key.constructor.name.toLowerCase() === 'objectid';
614
- }
615
506
  /**
616
507
  * Checks whether the argument is empty (array without items, object without keys or falsy value).
617
508
  */
@@ -642,56 +533,21 @@ export class Utils {
642
533
  * Tries to detect TypeScript support.
643
534
  */
644
535
  static detectTypeScriptSupport() {
645
- /* v8 ignore next 7 */
646
- return process.argv[0].endsWith('ts-node') // running via ts-node directly
647
- || !!process.env.MIKRO_ORM_CLI_ALWAYS_ALLOW_TS // forced explicitly or enabled via `registerTypeScriptSupport()`
648
- || !!process.env.TS_JEST // check if ts-jest is used (works only with v27.0.4+)
649
- || !!process.env.VITEST // check if vitest is used
650
- || !!process.versions.bun // check if bun is used
651
- || process.argv.slice(1).some(arg => arg.match(/\.([mc]?ts|tsx)$/)) // executing `.ts` file
652
- || process.execArgv.some(arg => {
536
+ /* v8 ignore next */
537
+ const process = globalThis.process ?? {};
538
+ /* v8 ignore next */
539
+ return process.argv?.[0]?.endsWith('ts-node') // running via ts-node directly
540
+ || !!process.env?.MIKRO_ORM_CLI_ALWAYS_ALLOW_TS // forced explicitly or enabled via `registerTypeScriptSupport()`
541
+ || !!process.env?.TS_JEST // check if ts-jest is used
542
+ || !!process.env?.VITEST // check if vitest is used
543
+ || !!process.versions?.bun // check if bun is used
544
+ || process.argv?.slice(1).some(arg => arg.match(/\.([mc]?ts|tsx)$/)) // executing `.ts` file
545
+ || process.execArgv?.some(arg => {
653
546
  return arg.includes('ts-node') // check for ts-node loader
654
547
  || arg.includes('@swc-node/register') // check for swc-node/register loader
655
548
  || arg.includes('node_modules/tsx/'); // check for tsx loader
656
549
  });
657
550
  }
658
- /**
659
- * Uses some dark magic to get source path to caller where decorator is used.
660
- * Analyses stack trace of error created inside the function call.
661
- */
662
- static lookupPathFromDecorator(name, stack) {
663
- // use some dark magic to get source path to caller
664
- stack = stack || new Error().stack.split('\n');
665
- // In some situations (e.g. swc 1.3.4+), the presence of a source map can obscure the call to
666
- // __decorate(), replacing it with the constructor name. To support these cases we look for
667
- // Reflect.decorate() as well. Also when babel is used, we need to check
668
- // the `_applyDecoratedDescriptor` method instead.
669
- let line = stack.findIndex(line => line.match(/__decorate|Reflect\.decorate|_applyDecoratedDescriptor/));
670
- // bun does not have those lines at all, only the DecorateProperty/DecorateConstructor,
671
- // but those are also present in node, so we need to check this only if they weren't found.
672
- if (line === -1) {
673
- // here we handle bun which stack is different from nodejs so we search for reflect-metadata
674
- // Different bun versions might have different stack traces. The "last index" works for both 1.2.6 and 1.2.7.
675
- const reflectLine = stack.findLastIndex(line => Utils.normalizePath(line).includes('node_modules/reflect-metadata/Reflect.js'));
676
- if (reflectLine === -1 || reflectLine + 2 >= stack.length || !stack[reflectLine + 1].includes('bun:wrap')) {
677
- return name;
678
- }
679
- line = reflectLine + 2;
680
- }
681
- if (stack[line].includes('Reflect.decorate')) {
682
- line++;
683
- }
684
- if (Utils.normalizePath(stack[line]).includes('node_modules/tslib/tslib')) {
685
- line++;
686
- }
687
- try {
688
- const re = stack[line].match(/\(.+\)/i) ? /\((.*):\d+:\d+\)/ : /at\s*(.*):\d+:\d+$/;
689
- return Utils.normalizePath(stack[line].match(re)[1]);
690
- }
691
- catch {
692
- return name;
693
- }
694
- }
695
551
  /**
696
552
  * Gets the type of the argument.
697
553
  */
@@ -701,11 +557,11 @@ export class Utils {
701
557
  return simple;
702
558
  }
703
559
  const objectType = Object.prototype.toString.call(value);
704
- const type = objectType.match(/\[object (\w+)]/)[1];
560
+ const type = objectType.match(/^\[object (.+)]$/)[1];
705
561
  if (type === 'Uint8Array') {
706
562
  return 'Buffer';
707
563
  }
708
- return ['Date', 'Buffer', 'RegExp'].includes(type) ? type : type.toLowerCase();
564
+ return type;
709
565
  }
710
566
  /**
711
567
  * Checks whether the value is POJO (e.g. `{ foo: 'bar' }`, and not instance of `Foo`)
@@ -731,66 +587,14 @@ export class Utils {
731
587
  static isCollection(item) {
732
588
  return item?.__collection;
733
589
  }
734
- static fileURLToPath(url) {
735
- // expose `fileURLToPath` on Utils so that it can be properly mocked in tests
736
- return fileURLToPath(url);
737
- }
738
- /**
739
- * Resolves and normalizes a series of path parts relative to each preceding part.
740
- * If any part is a `file:` URL, it is converted to a local path. If any part is an
741
- * absolute path, it replaces preceding paths (similar to `path.resolve` in NodeJS).
742
- * Trailing directory separators are removed, and all directory separators are converted
743
- * to POSIX-style separators (`/`).
744
- */
745
- static normalizePath(...parts) {
746
- let start = 0;
747
- for (let i = 0; i < parts.length; i++) {
748
- const part = parts[i];
749
- if (isAbsolute(part)) {
750
- start = i;
751
- }
752
- else if (part.startsWith('file:')) {
753
- start = i;
754
- parts[i] = Utils.fileURLToPath(part);
755
- }
756
- }
757
- if (start > 0) {
758
- parts = parts.slice(start);
759
- }
760
- let path = parts.join('/').replace(/\\/g, '/').replace(/\/$/, '');
761
- path = normalize(path).replace(/\\/g, '/');
762
- return (path.match(/^[/.]|[a-zA-Z]:/) || path.startsWith('!')) ? path : './' + path;
763
- }
764
- /**
765
- * Determines the relative path between two paths. If either path is a `file:` URL,
766
- * it is converted to a local path.
767
- */
768
- static relativePath(path, relativeTo) {
769
- if (!path) {
770
- return path;
771
- }
772
- path = Utils.normalizePath(path);
773
- if (path.startsWith('.')) {
774
- return path;
775
- }
776
- path = relative(Utils.normalizePath(relativeTo), path);
777
- return Utils.normalizePath(path);
778
- }
779
- /**
780
- * Computes the absolute path to for the given path relative to the provided base directory.
781
- * If either `path` or `baseDir` are `file:` URLs, they are converted to local paths.
782
- */
783
- static absolutePath(path, baseDir = process.cwd()) {
784
- if (!path) {
785
- return Utils.normalizePath(baseDir);
786
- }
787
- if (!isAbsolute(path) && !path.startsWith('file://')) {
788
- path = baseDir + '/' + path;
789
- }
790
- return Utils.normalizePath(path);
791
- }
590
+ // FNV-1a 64-bit
792
591
  static hash(data, length) {
793
- const hash = createHash('md5').update(data).digest('hex');
592
+ let h1 = 0xcbf29ce484222325n;
593
+ for (let i = 0; i < data.length; i++) {
594
+ h1 ^= BigInt(data.charCodeAt(i));
595
+ h1 = (h1 * 0x100000001b3n) & 0xffffffffffffffffn;
596
+ }
597
+ const hash = h1.toString(16).padStart(16, '0');
794
598
  if (length) {
795
599
  return hash.substring(0, length);
796
600
  }
@@ -822,13 +626,6 @@ export class Utils {
822
626
  static randomInt(min, max) {
823
627
  return Math.round(Math.random() * (max - min)) + min;
824
628
  }
825
- static async pathExists(path, options = {}) {
826
- if (isDynamicPattern(path)) {
827
- const found = await glob(path, options);
828
- return found.length > 0;
829
- }
830
- return this.pathExistsSync(path);
831
- }
832
629
  /**
833
630
  * Extracts all possible values of a TS enum. Works with both string and numeric enums.
834
631
  */
@@ -845,8 +642,8 @@ export class Utils {
845
642
  }
846
643
  return values;
847
644
  }
848
- static flatten(arrays) {
849
- return [].concat.apply([], arrays);
645
+ static flatten(arrays, deep) {
646
+ return arrays.flatMap(v => deep && Array.isArray(v) ? this.flatten(v, true) : v);
850
647
  }
851
648
  static isOperator(key, includeGroupOperators = true) {
852
649
  if (!includeGroupOperators) {
@@ -854,15 +651,6 @@ export class Utils {
854
651
  }
855
652
  return key in GroupOperator || key in QueryOperator;
856
653
  }
857
- static isGroupOperator(key) {
858
- return key in GroupOperator;
859
- }
860
- static isArrayOperator(key) {
861
- return ARRAY_OPERATORS.includes(key);
862
- }
863
- static isJsonKeyOperator(key) {
864
- return JSON_KEY_OPERATORS.includes(key);
865
- }
866
654
  static hasNestedKey(object, key) {
867
655
  if (!object) {
868
656
  return false;
@@ -875,86 +663,16 @@ export class Utils {
875
663
  }
876
664
  return false;
877
665
  }
878
- static getGlobalStorage(namespace) {
879
- const key = `mikro-orm-${namespace}`;
880
- globalThis[key] = globalThis[key] || {};
881
- return globalThis[key];
882
- }
883
- /**
884
- * Require a module from a specific location
885
- * @param id The module to require
886
- * @param [from] Location to start the node resolution
887
- */
888
- static requireFrom(id, from = process.cwd()) {
889
- if (!extname(from)) {
890
- from = join(from, '__fake.js');
891
- }
892
- return createRequire(resolve(from))(id);
893
- }
894
- /**
895
- * Resolve path to a module.
896
- * @param id The module to require
897
- * @param [from] Location to start the node resolution
898
- */
899
- static resolveModulePath(id, from = process.cwd()) {
900
- if (!extname(from)) {
901
- from = join(from, '__fake.js');
902
- }
903
- const path = Utils.normalizePath(createRequire(resolve(from)).resolve(id));
904
- const parts = path.split('/');
905
- const idx = parts.lastIndexOf(id) + 1;
906
- parts.splice(idx, parts.length - idx);
907
- return parts.join('/');
908
- }
909
- static async dynamicImport(id) {
910
- /* v8 ignore next 7 */
911
- if (platform() === 'win32') {
912
- try {
913
- id = pathToFileURL(id).toString();
914
- }
915
- catch {
916
- // ignore
917
- }
918
- }
919
- /* v8 ignore next */
920
- return this.dynamicImportProvider(id);
921
- }
922
- /* v8 ignore next 3 */
923
- static setDynamicImportProvider(provider) {
924
- this.dynamicImportProvider = provider;
925
- }
926
- static ensureDir(path) {
927
- if (!existsSync(path)) {
928
- mkdirSync(path, { recursive: true });
929
- }
930
- }
931
- static pathExistsSync(path) {
932
- return existsSync(path);
933
- }
934
- static readJSONSync(path) {
935
- const file = readFileSync(path);
936
- return JSON.parse(file.toString());
937
- }
938
666
  static getORMVersion() {
939
- try {
940
- // this works during development where we have `src` folder
941
- return this.requireFrom('../../package.json', import.meta.dirname).version;
942
- /* v8 ignore next 5 */
943
- }
944
- catch {
945
- try {
946
- // this works in production build where we do not have the `src` folder
947
- return this.requireFrom('../package.json', import.meta.dirname).version;
948
- }
949
- catch {
950
- return 'N/A';
951
- }
952
- }
667
+ return this.#ORM_VERSION;
953
668
  }
954
- static createFunction(context, code) {
669
+ static createFunction(context, code, compiledFunctions, key) {
670
+ if (key && compiledFunctions?.[key]) {
671
+ return compiledFunctions[key](...context.values());
672
+ }
955
673
  try {
956
674
  return new Function(...context.keys(), `'use strict';\n` + code)(...context.values());
957
- /* v8 ignore next 5 */
675
+ /* v8 ignore next */
958
676
  }
959
677
  catch (e) {
960
678
  // eslint-disable-next-line no-console
@@ -967,7 +685,7 @@ export class Utils {
967
685
  return fn(...args);
968
686
  }
969
687
  catch (e) {
970
- /* v8 ignore start */
688
+ /* v8 ignore next */
971
689
  if ([SyntaxError, TypeError, EvalError, ReferenceError].some(t => e instanceof t)) {
972
690
  const position = e.stack.match(/<anonymous>:(\d+):(\d+)/);
973
691
  let code = fn.toString();
@@ -984,18 +702,9 @@ export class Utils {
984
702
  // eslint-disable-next-line no-console
985
703
  console.error(`JIT runtime error: ${e.message}\n\n${code}`);
986
704
  }
987
- /* v8 ignore stop */
988
705
  throw e;
989
706
  }
990
707
  }
991
- /**
992
- * @see https://github.com/mikro-orm/mikro-orm/issues/840
993
- */
994
- static propertyDecoratorReturnValue() {
995
- if (process.env.BABEL_DECORATORS_COMPAT) {
996
- return {};
997
- }
998
- }
999
708
  static unwrapProperty(entity, meta, prop, payload = false) {
1000
709
  let p = prop;
1001
710
  const path = [];
@@ -1075,54 +784,21 @@ export class Utils {
1075
784
  }
1076
785
  }
1077
786
  }
1078
- static tryRequire({ module, from, allowError, warning }) {
1079
- allowError ??= `Cannot find module '${module}'`;
1080
- from ??= process.cwd();
787
+ static async tryImport({ module, warning }) {
1081
788
  try {
1082
- return Utils.requireFrom(module, from);
789
+ return await import(module);
1083
790
  }
1084
791
  catch (err) {
1085
- if (err.message.includes(allowError)) {
1086
- // eslint-disable-next-line no-console
1087
- console.warn(warning);
792
+ if (err.code === 'ERR_MODULE_NOT_FOUND') {
793
+ if (warning) {
794
+ // eslint-disable-next-line no-console
795
+ console.warn(warning);
796
+ }
1088
797
  return undefined;
1089
798
  }
1090
799
  throw err;
1091
800
  }
1092
801
  }
1093
- static async tryImport({ module, warning }) {
1094
- try {
1095
- return await this.dynamicImport(module);
1096
- }
1097
- catch (err) {
1098
- // eslint-disable-next-line no-console
1099
- console.warn(warning);
1100
- return undefined;
1101
- }
1102
- }
1103
- static stripRelativePath(str) {
1104
- return str.replace(/^(?:\.\.\/|\.\/)+/, '/');
1105
- }
1106
- /**
1107
- * simple process.argv parser, supports only properties with long names, prefixed with `--`
1108
- */
1109
- static parseArgs() {
1110
- let lastKey;
1111
- return process.argv.slice(2).reduce((args, arg) => {
1112
- if (arg.includes('=')) {
1113
- const [key, value] = arg.split('=');
1114
- args[key.substring(2)] = value;
1115
- }
1116
- else if (lastKey) {
1117
- args[lastKey] = arg;
1118
- lastKey = undefined;
1119
- }
1120
- else if (arg.startsWith('--')) {
1121
- lastKey = arg.substring(2);
1122
- }
1123
- return args;
1124
- }, {});
1125
- }
1126
802
  static xor(a, b) {
1127
803
  return (a || b) && !(a && b);
1128
804
  }
@@ -1151,4 +827,12 @@ export class Utils {
1151
827
  return o;
1152
828
  }, {});
1153
829
  }
830
+ static getObjectQueryKeys(obj) {
831
+ return Reflect.ownKeys(obj).filter(key => {
832
+ if (!Object.prototype.propertyIsEnumerable.call(obj, key)) {
833
+ return false;
834
+ }
835
+ return typeof key === 'string' || Raw.isKnownFragmentSymbol(key);
836
+ });
837
+ }
1154
838
  }