@mikro-orm/cli 7.1.6-dev.9 → 7.1.7-dev.0

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.
@@ -2,20 +2,20 @@ import type { ArgumentsCamelCase, Argv } from 'yargs';
2
2
  import type { BaseArgs } from '../CLIConfigurator.js';
3
3
  export declare class SchemaCommandFactory {
4
4
  static readonly DESCRIPTIONS: {
5
- readonly create: "Create database schema based on current metadata";
6
- readonly update: "Update database schema based on current metadata";
7
- readonly drop: "Drop database schema based on current metadata";
8
- readonly fresh: "Drop and recreate database schema based on current metadata";
5
+ readonly create: 'Create database schema based on current metadata';
6
+ readonly update: 'Update database schema based on current metadata';
7
+ readonly drop: 'Drop database schema based on current metadata';
8
+ readonly fresh: 'Drop and recreate database schema based on current metadata';
9
9
  };
10
10
  static readonly SUCCESS_MESSAGES: {
11
- readonly create: "Schema successfully created";
12
- readonly update: "Schema successfully updated";
13
- readonly drop: "Schema successfully dropped";
14
- readonly fresh: "Schema successfully dropped and recreated";
11
+ readonly create: 'Schema successfully created';
12
+ readonly update: 'Schema successfully updated';
13
+ readonly drop: 'Schema successfully dropped';
14
+ readonly fresh: 'Schema successfully dropped and recreated';
15
15
  };
16
16
  static create<const T extends SchemaMethod>(command: T): {
17
17
  command: string;
18
- describe: "Create database schema based on current metadata" | "Update database schema based on current metadata" | "Drop database schema based on current metadata" | "Drop and recreate database schema based on current metadata";
18
+ describe: "Create database schema based on current metadata" | "Drop and recreate database schema based on current metadata" | "Drop database schema based on current metadata" | "Update database schema based on current metadata";
19
19
  builder: (args: Argv<BaseArgs>) => Argv<OptionsMap[T]>;
20
20
  handler: (args: ArgumentsCamelCase<OptionsMap[T]>) => Promise<void>;
21
21
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mikro-orm/cli",
3
- "version": "7.1.6-dev.9",
3
+ "version": "7.1.7-dev.0",
4
4
  "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.",
5
5
  "keywords": [
6
6
  "data-mapper",
@@ -50,8 +50,8 @@
50
50
  "copy": "node ../../scripts/copy.mjs"
51
51
  },
52
52
  "dependencies": {
53
- "@mikro-orm/core": "7.1.6-dev.9",
54
- "mikro-orm": "7.1.6-dev.9",
53
+ "@mikro-orm/core": "7.1.7-dev.0",
54
+ "mikro-orm": "7.1.7-dev.0",
55
55
  "yargs": "17.7.2"
56
56
  },
57
57
  "engines": {