@biorate/sequelize 1.65.5 → 1.65.7

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,18 @@
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.7](https://github.com/biorate/core/compare/v1.65.6...v1.65.7) (2024-03-27)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **sequelize:** export sequalize ([cb6210c](https://github.com/biorate/core/commit/cb6210cdc1cb753d40e354ec7328a3656666d81a))
11
+
12
+ ## [1.65.6](https://github.com/biorate/core/compare/v1.65.5...v1.65.6) (2024-03-27)
13
+
14
+ ### Bug Fixes
15
+
16
+ - **sequelize:** export \* as sequelize ([cdb715d](https://github.com/biorate/core/commit/cdb715d2c6dd23902a909c6baf3f6c9ac996f9f1))
17
+
6
18
  ## [1.65.5](https://github.com/biorate/core/compare/v1.65.4...v1.65.5) (2024-03-27)
7
19
 
8
20
  ### 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.7",
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": "4ea03e9919a512acd2401bdccd2261cf5ce29864"
33
33
  }
package/src/index.ts CHANGED
@@ -9,7 +9,13 @@ 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 {
13
+ QueryTypes,
14
+ QueryOptions,
15
+ QueryOptionsWithType,
16
+ Transaction,
17
+ TransactionOptions,
18
+ } from 'sequelize';
13
19
 
14
20
  /**
15
21
  * @description Sequelize ORM connector