@biorate/sequelize 1.65.4 → 1.65.5

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.5](https://github.com/biorate/core/compare/v1.65.4...v1.65.5) (2024-03-27)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **sequelize:** export Transaction ([2eda168](https://github.com/biorate/core/commit/2eda1682bc8d03457ffdca0d1499e1c223c4c854))
11
+
6
12
  ## [1.65.4](https://github.com/biorate/core/compare/v1.65.3...v1.65.4) (2024-03-26)
7
13
 
8
14
  **Note:** Version bump only for package @biorate/sequelize
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@biorate/sequelize",
3
- "version": "1.65.4",
3
+ "version": "1.65.5",
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": "7406f2c9710d59d31f0520256e1a103c0b51f40b"
32
+ "gitHead": "cd8ed8277fb8ed828d31b22b7ea71482189ae334"
33
33
  }
package/src/index.ts CHANGED
@@ -9,6 +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
13
 
13
14
  /**
14
15
  * @description Sequelize ORM connector