multi-db-orm 2.1.3 → 2.1.6

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/databases.js CHANGED
@@ -3,11 +3,13 @@ const { FireStoreDB } = require("./engines/firestoredb");
3
3
  const { MongoDB } = require("./engines/mongodb");
4
4
  const { SQLiteDB } = require("./engines/sqlitedb");
5
5
  const { OracleDB } = require('./engines/oracledb')
6
+ const { MySQLDB } = require('./engines/mysqldb')
6
7
 
7
8
  module.exports = {
8
9
  MultiDbORM,
9
10
  FireStoreDB,
10
11
  MongoDB,
11
12
  SQLiteDB,
12
- OracleDB
13
+ OracleDB,
14
+ MySQLDB
13
15
  }
package/index.d.ts CHANGED
@@ -3,3 +3,5 @@ export { SQLiteDB } from './engines/sqlitedb';
3
3
  export { MongoDB } from './engines/mongodb';
4
4
  export { FireStoreDB } from './engines/firestoredb';
5
5
  export { OracleDB } from './engines/oracledb';
6
+ export { MySQLDB } from './engines/mysqldb';
7
+
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- const { MultiDBSafe, FireStoreDB, MongoDB, SQLiteDB, OracleDB } = require("./databases");
1
+ const { MultiDBSafe, FireStoreDB, MongoDB, SQLiteDB, OracleDB, MySQLDB } = require("./databases");
2
2
  const { Sync } = require("./sync");
3
3
 
4
4
  module.exports = {
@@ -7,5 +7,6 @@ module.exports = {
7
7
  MongoDB,
8
8
  SQLiteDB,
9
9
  OracleDB,
10
+ MySQLDB,
10
11
  Sync
11
12
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "multi-db-orm",
3
- "version": "2.1.3",
3
+ "version": "2.1.6",
4
4
  "description": "CRUD , Backup , Restore and Migration library for multiple databases",
5
5
  "main": "index.js",
6
6
  "dependencies": {
@@ -15,6 +15,7 @@
15
15
  "sqlite3": "^5.0.0"
16
16
  },
17
17
  "scripts": {
18
+ "release": "git add -A && git commit -m Update-Files | npm version patch && git add -A && git commit -m Update-Version && git push && npm publish",
18
19
  "postinstall": "node postinstall.js",
19
20
  "test": "node test/test.js"
20
21
  },