@biorate/migrations 1.4.2 → 1.7.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@biorate/migrations",
3
- "version": "1.4.2",
3
+ "version": "1.7.0",
4
4
  "description": "Migrations tools",
5
5
  "main": "dist",
6
6
  "scripts": {
@@ -23,15 +23,15 @@
23
23
  "author": "llevkin",
24
24
  "license": "MIT",
25
25
  "dependencies": {
26
- "@biorate/config": "1.4.0",
27
- "@biorate/connector": "1.4.0",
26
+ "@biorate/config": "1.7.0",
27
+ "@biorate/connector": "1.7.0",
28
28
  "@biorate/errors": "1.2.2",
29
- "@biorate/file-config": "1.4.0",
29
+ "@biorate/file-config": "1.7.0",
30
30
  "@biorate/inversion": "1.4.0",
31
- "@biorate/minio": "1.4.0",
32
- "@biorate/mongodb": "1.4.0",
33
- "@biorate/sequelize": "1.4.0",
31
+ "@biorate/minio": "1.7.0",
32
+ "@biorate/mongodb": "1.7.0",
33
+ "@biorate/sequelize": "1.7.0",
34
34
  "@biorate/tools": "1.4.0"
35
35
  },
36
- "gitHead": "c653c127c22d7e7e4b039bc84213e2303816078a"
36
+ "gitHead": "c8053dceabec9a9da0727cda0cb5f88861fede41"
37
37
  }
@@ -1,11 +1,11 @@
1
1
  import { Migration } from './migration';
2
- import { IMinioDBConnector, IMinioConfig, IMinioConnection } from '@biorate/minio';
2
+ import { IMinioConnector, IMinioConfig, IMinioConnection } from '@biorate/minio';
3
3
  import { inject, Types } from '@biorate/inversion';
4
4
  /**
5
5
  * @description Minio migration class
6
6
  */
7
7
  export class Minio extends Migration {
8
- @inject(Types.Minio) protected connector: IMinioDBConnector;
8
+ @inject(Types.Minio) protected connector: IMinioConnector;
9
9
  /**
10
10
  * @description Minio process method realization
11
11
  */