@mikro-orm/mariadb 7.0.0-dev.114 → 7.0.0-dev.116

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.
@@ -1,4 +1,4 @@
1
- import { type AnyEntity, type Configuration, type ConnectionType, type LoggingOptions, type Transaction, type Constructor } from '@mikro-orm/core';
1
+ import { type AnyEntity, type Configuration, type ConnectionType, type LoggingOptions, type Transaction, type Constructor, type EntityName } from '@mikro-orm/core';
2
2
  import { MySqlDriver, type SqlEntityManager } from '@mikro-orm/mysql';
3
3
  import { MariaDbPlatform } from './MariaDbPlatform.js';
4
4
  import { MariaDbQueryBuilder } from './MariaDbQueryBuilder.js';
@@ -6,7 +6,7 @@ import { MariaDbMikroORM } from './MariaDbMikroORM.js';
6
6
  export declare class MariaDbDriver extends MySqlDriver {
7
7
  readonly platform: MariaDbPlatform;
8
8
  constructor(config: Configuration);
9
- createQueryBuilder<T extends AnyEntity<T>>(entityName: string, ctx?: Transaction, preferredConnectionType?: ConnectionType, convertCustomTypes?: boolean, loggerContext?: LoggingOptions, alias?: string, em?: SqlEntityManager): MariaDbQueryBuilder<T, any, any, any>;
9
+ createQueryBuilder<T extends AnyEntity<T>>(entityName: EntityName<T>, ctx?: Transaction, preferredConnectionType?: ConnectionType, convertCustomTypes?: boolean, loggerContext?: LoggingOptions, alias?: string, em?: SqlEntityManager): MariaDbQueryBuilder<T, any, any, any>;
10
10
  /** @inheritDoc */
11
11
  getORMClass(): Constructor<MariaDbMikroORM>;
12
12
  }
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.114",
4
+ "version": "7.0.0-dev.116",
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,13 +50,13 @@
50
50
  "access": "public"
51
51
  },
52
52
  "dependencies": {
53
- "@mikro-orm/mysql": "7.0.0-dev.114",
53
+ "@mikro-orm/mysql": "7.0.0-dev.116",
54
54
  "kysely": "0.28.9"
55
55
  },
56
56
  "devDependencies": {
57
- "@mikro-orm/core": "^6.6.2"
57
+ "@mikro-orm/core": "^6.6.3"
58
58
  },
59
59
  "peerDependencies": {
60
- "@mikro-orm/core": "7.0.0-dev.114"
60
+ "@mikro-orm/core": "7.0.0-dev.116"
61
61
  }
62
62
  }