diff --git a/VERSION.md b/VERSION.md index d7d4d22..ce6eb85 100644 --- a/VERSION.md +++ b/VERSION.md @@ -1,5 +1,9 @@ # History +## Version 0.0.31 + +- FIX: Export of Sequelize from sequelize-typescript. + ## Version 0.0.30 - FIX: Packages updated. diff --git a/package-lock.json b/package-lock.json index d427034..b44eb19 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "botlib", - "version": "0.0.30", + "version": "0.0.31", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 6541585..be65468 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "botlib", - "version": "0.0.30", + "version": "0.0.31", "description": "General Bot base library for building Node.js TypeScript Apps packages (.gbapp)", "main": "dist/src/index.js", "types": "dist/src/index.d.ts", diff --git a/src/index.ts b/src/index.ts index 83a02d5..b7df1cb 100644 --- a/src/index.ts +++ b/src/index.ts @@ -32,7 +32,7 @@ 'use strict'; -export { Sequelize } from 'sequelize'; +export { Sequelize } from 'sequelize-typescript'; import { GBMinInstance } from './GBMinInstance'; import { GBService } from './GBService';