@uniorganization/uni-lib 1.0.32 → 1.0.33

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.
@@ -28,6 +28,8 @@ export declare class Escalations {
28
28
  emailSent: boolean;
29
29
  reEscalated: boolean;
30
30
  escalationCount: Number;
31
+ followUpOutcome: string;
32
+ followUpDate: Timestamp;
31
33
  agent: Users;
32
34
  reviewer: Users;
33
35
  sme: Users;
@@ -114,6 +114,14 @@ __decorate([
114
114
  (0, typeorm_1.Column)({ name: 'escalation_count' }),
115
115
  __metadata("design:type", Number)
116
116
  ], Escalations.prototype, "escalationCount", void 0);
117
+ __decorate([
118
+ (0, typeorm_1.Column)({ name: 'follow_up_outcome' }),
119
+ __metadata("design:type", String)
120
+ ], Escalations.prototype, "followUpOutcome", void 0);
121
+ __decorate([
122
+ (0, typeorm_1.Column)('timestamp', { name: 'follow_up_date' }),
123
+ __metadata("design:type", typeorm_1.Timestamp)
124
+ ], Escalations.prototype, "followUpDate", void 0);
117
125
  __decorate([
118
126
  (0, typeorm_1.OneToOne)((type) => usr_entity_1.Users, { eager: true }),
119
127
  (0, typeorm_1.JoinColumn)({ name: 'agent_id' }),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniorganization/uni-lib",
3
- "version": "1.0.32",
3
+ "version": "1.0.33",
4
4
  "description": "UNI Library",
5
5
  "author": "Jhomiguel",
6
6
  "main": "dist/index.js",