@mikro-orm/mariadb 7.0.0-dev.50 → 7.0.0-dev.52

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.
@@ -10,7 +10,7 @@ export declare class MariaDbMikroORM<EM extends SqlEntityManager<MariaDbDriver>
10
10
  /**
11
11
  * @inheritDoc
12
12
  */
13
- static init<D extends IDatabaseDriver = MariaDbDriver, EM extends EntityManager = D[typeof EntityManagerType] & EntityManager, Entities extends (string | EntityClass<AnyEntity> | EntitySchema)[] = (string | EntityClass<AnyEntity> | EntitySchema)[]>(options: Options<D, EM, Entities>): Promise<MikroORM<D, EM, Entities>>;
13
+ static init<D extends IDatabaseDriver = MariaDbDriver, EM extends EntityManager<D> = D[typeof EntityManagerType] & EntityManager<D>, Entities extends (string | EntityClass<AnyEntity> | EntitySchema)[] = (string | EntityClass<AnyEntity> | EntitySchema)[]>(options: Options<D, EM, Entities>): Promise<MikroORM<D, EM, Entities>>;
14
14
  /**
15
15
  * @inheritDoc
16
16
  */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mikro-orm/mariadb",
3
3
  "type": "module",
4
- "version": "7.0.0-dev.50",
4
+ "version": "7.0.0-dev.52",
5
5
  "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.",
6
6
  "exports": {
7
7
  "./package.json": "./package.json",
@@ -50,14 +50,14 @@
50
50
  "access": "public"
51
51
  },
52
52
  "dependencies": {
53
- "@mikro-orm/mysql": "7.0.0-dev.50"
53
+ "@mikro-orm/mysql": "7.0.0-dev.52"
54
54
  },
55
55
  "devDependencies": {
56
56
  "@mikro-orm/core": "^6.6.0",
57
- "kysely": "0.28.7"
57
+ "kysely": "0.28.8"
58
58
  },
59
59
  "peerDependencies": {
60
- "@mikro-orm/core": "7.0.0-dev.50",
60
+ "@mikro-orm/core": "7.0.0-dev.52",
61
61
  "kysely": "*"
62
62
  }
63
63
  }