@uniorganization/uni-lib 1.0.33 → 1.0.34

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.
@@ -33,6 +33,7 @@ export declare class Escalations {
33
33
  agent: Users;
34
34
  reviewer: Users;
35
35
  sme: Users;
36
+ followUpAgent: Users;
36
37
  escalationNotes: EscalationNotes[];
37
38
  escalationStatusLog: EscalationStatusLog[];
38
39
  }
@@ -137,6 +137,11 @@ __decorate([
137
137
  (0, typeorm_1.JoinColumn)({ name: 'sme_id' }),
138
138
  __metadata("design:type", usr_entity_1.Users)
139
139
  ], Escalations.prototype, "sme", void 0);
140
+ __decorate([
141
+ (0, typeorm_1.OneToOne)((type) => usr_entity_1.Users, { eager: true }),
142
+ (0, typeorm_1.JoinColumn)({ name: 'follow_up_agent_id' }),
143
+ __metadata("design:type", usr_entity_1.Users)
144
+ ], Escalations.prototype, "followUpAgent", void 0);
140
145
  __decorate([
141
146
  (0, typeorm_1.OneToMany)((type) => escalation_notes_entity_1.EscalationNotes, (en) => en.escalation, {
142
147
  eager: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniorganization/uni-lib",
3
- "version": "1.0.33",
3
+ "version": "1.0.34",
4
4
  "description": "UNI Library",
5
5
  "author": "Jhomiguel",
6
6
  "main": "dist/index.js",