@uniorganization/uni-lib 1.1.68 → 1.1.69

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.
@@ -23,4 +23,5 @@ export declare class DisputeRequest {
23
23
  waiverRequested: boolean;
24
24
  waiverRequestReason: string;
25
25
  waiverRequestDate: Date;
26
+ outcomeReason: string;
26
27
  }
@@ -100,6 +100,10 @@ __decorate([
100
100
  (0, typeorm_1.Column)({ name: 'waiver_request_date' }),
101
101
  __metadata("design:type", Date)
102
102
  ], DisputeRequest.prototype, "waiverRequestDate", void 0);
103
+ __decorate([
104
+ (0, typeorm_1.Column)({ name: 'outcome_reason' }),
105
+ __metadata("design:type", String)
106
+ ], DisputeRequest.prototype, "outcomeReason", void 0);
103
107
  DisputeRequest = __decorate([
104
108
  (0, typeorm_1.Entity)({ name: 'dispute_request', schema: 'tracking' })
105
109
  ], DisputeRequest);
@@ -25,6 +25,7 @@ export declare class Evaluations {
25
25
  isWaived: boolean;
26
26
  dateWaived: Date;
27
27
  waiverReason: string;
28
+ outcomeReason: string;
28
29
  agent: Users;
29
30
  evaluator: Users;
30
31
  disputedBy: Users;
@@ -98,6 +98,10 @@ __decorate([
98
98
  (0, typeorm_1.Column)({ name: 'waiver_reason' }),
99
99
  __metadata("design:type", String)
100
100
  ], Evaluations.prototype, "waiverReason", void 0);
101
+ __decorate([
102
+ (0, typeorm_1.Column)({ name: 'outcome_reason' }),
103
+ __metadata("design:type", String)
104
+ ], Evaluations.prototype, "outcomeReason", void 0);
101
105
  __decorate([
102
106
  (0, typeorm_1.ManyToOne)(() => usr_entity_1.Users),
103
107
  (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.1.68",
3
+ "version": "1.1.69",
4
4
  "description": "UNI Library",
5
5
  "author": "Jhomiguel",
6
6
  "main": "dist/index.js",