@cleardu/core 1.0.528 → 1.0.529

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cleardu/core",
3
- "version": "1.0.528",
3
+ "version": "1.0.529",
4
4
  "description": "Nest - modern, fast, powerful node.js web framework (@common)",
5
5
  "homepage": "https://nestjs.com",
6
6
  "funding": {
@@ -25,4 +25,5 @@ export default class UserTaskDetails extends BaseModel<IUserTaskDetails> impleme
25
25
  connected: boolean;
26
26
  notConnected: boolean;
27
27
  callStatus: string;
28
+ dialerResponse: string;
28
29
  }
@@ -107,6 +107,10 @@ tslib_1.__decorate([
107
107
  (0, sequelize_typescript_1.Column)({ type: sequelize_typescript_1.DataType.STRING(255), allowNull: true }),
108
108
  tslib_1.__metadata("design:type", String)
109
109
  ], UserTaskDetails.prototype, "callStatus", void 0);
110
+ tslib_1.__decorate([
111
+ (0, sequelize_typescript_1.Column)(sequelize_typescript_1.DataType.TEXT),
112
+ tslib_1.__metadata("design:type", String)
113
+ ], UserTaskDetails.prototype, "dialerResponse", void 0);
110
114
  UserTaskDetails = tslib_1.__decorate([
111
115
  (0, sequelize_typescript_1.Table)({ tableName: 'userTaskDetails' })
112
116
  ], UserTaskDetails);
@@ -92,4 +92,7 @@ export default class UserTaskDetails
92
92
 
93
93
  @Column({ type: DataType.STRING(255), allowNull: true })
94
94
  public callStatus: string;
95
+
96
+ @Column(DataType.TEXT)
97
+ declare dialerResponse: string;
95
98
  }