exodus-framework 2.0.706 → 2.0.707

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.
@@ -38,7 +38,7 @@ export type TMessageQueueDataMap = {
38
38
  dialect: Dialect;
39
39
  username: string;
40
40
  password: string;
41
- credential: Buffer;
41
+ credential: string;
42
42
  active: boolean;
43
43
  params?: Record<string, any>;
44
44
  };
@@ -6,7 +6,7 @@ export declare class DatabaseHost extends Model<InferAttributes<DatabaseHost>, I
6
6
  host: string;
7
7
  username: string;
8
8
  password: string;
9
- credential: Buffer;
9
+ credential: string;
10
10
  active: boolean;
11
11
  params: CreationOptional<Record<string, any>>;
12
12
  }
@@ -33,11 +33,11 @@ DatabaseHost.init({
33
33
  allowNull: false
34
34
  },
35
35
  credential: {
36
- type: _sequelize.DataTypes.BLOB('medium'),
36
+ type: _sequelize.DataTypes.TEXT,
37
37
  allowNull: false
38
38
  },
39
39
  password: {
40
- type: _sequelize.DataTypes.STRING(100),
40
+ type: _sequelize.DataTypes.TEXT,
41
41
  allowNull: false
42
42
  },
43
43
  active: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exodus-framework",
3
- "version": "2.0.706",
3
+ "version": "2.0.707",
4
4
  "description": "Exodus Framework",
5
5
  "author": "jhownpaixao",
6
6
  "license": "ISC",