@biorate/sequelize 1.65.5 → 1.65.6

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.65.6](https://github.com/biorate/core/compare/v1.65.5...v1.65.6) (2024-03-27)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **sequelize:** export \* as sequelize ([cdb715d](https://github.com/biorate/core/commit/cdb715d2c6dd23902a909c6baf3f6c9ac996f9f1))
11
+
6
12
  ## [1.65.5](https://github.com/biorate/core/compare/v1.65.4...v1.65.5) (2024-03-27)
7
13
 
8
14
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@biorate/sequelize",
3
- "version": "1.65.5",
3
+ "version": "1.65.6",
4
4
  "description": "Sequelize ORM connector",
5
5
  "main": "dist",
6
6
  "repository": {
@@ -29,5 +29,5 @@
29
29
  "devDependencies": {
30
30
  "sqlite3": "^5.0.7"
31
31
  },
32
- "gitHead": "cd8ed8277fb8ed828d31b22b7ea71482189ae334"
32
+ "gitHead": "9db8d68cc7ea2fbab15232a09cb5f4a76c614beb"
33
33
  }
package/src/index.ts CHANGED
@@ -9,7 +9,7 @@ import { ISequelizeConfig, ISequelizeConnection, IModels } from './interfaces';
9
9
  export * from './errors';
10
10
  export * from './interfaces';
11
11
  export * from 'sequelize-typescript';
12
- export { Transaction } from 'sequelize';
12
+ export * as sequelize from 'sequelize';
13
13
 
14
14
  /**
15
15
  * @description Sequelize ORM connector