@mikro-orm/seeder 6.4.4-dev.7 → 6.4.4-dev.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.
Files changed (2) hide show
  1. package/Factory.d.ts +1 -1
  2. package/package.json +2 -2
package/Factory.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import type { EntityData, EntityManager, Constructor } from '@mikro-orm/core';
2
2
  export declare abstract class Factory<T extends object> {
3
- private readonly em;
3
+ protected readonly em: EntityManager;
4
4
  abstract readonly model: Constructor<T>;
5
5
  private eachFunction?;
6
6
  constructor(em: EntityManager);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mikro-orm/seeder",
3
- "version": "6.4.4-dev.7",
3
+ "version": "6.4.4-dev.9",
4
4
  "description": "Seeder package for MikroORM.",
5
5
  "main": "index.js",
6
6
  "typings": "index.d.ts",
@@ -55,6 +55,6 @@
55
55
  "@mikro-orm/core": "^6.4.3"
56
56
  },
57
57
  "peerDependencies": {
58
- "@mikro-orm/core": "6.4.4-dev.7"
58
+ "@mikro-orm/core": "6.4.4-dev.9"
59
59
  }
60
60
  }