@mikro-orm/core 7.0.0-dev.69 → 7.0.0-dev.70

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@mikro-orm/core",
3
3
  "type": "module",
4
- "version": "7.0.0-dev.69",
4
+ "version": "7.0.0-dev.70",
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",
@@ -30,7 +30,6 @@ export declare abstract class Platform {
30
30
  usesEnumCheckConstraints(): boolean;
31
31
  getSchemaHelper(): unknown;
32
32
  indexForeignKeys(): boolean;
33
- allowsMultiInsert(): boolean;
34
33
  /**
35
34
  * Whether or not the driver supports retuning list of created PKs back when multi-inserting
36
35
  */
@@ -48,9 +48,6 @@ export class Platform {
48
48
  indexForeignKeys() {
49
49
  return false;
50
50
  }
51
- allowsMultiInsert() {
52
- return true;
53
- }
54
51
  /**
55
52
  * Whether or not the driver supports retuning list of created PKs back when multi-inserting
56
53
  */