@uniorganization/uni-lib 1.0.8 → 1.0.12

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.
@@ -12,6 +12,7 @@ export declare class Escalations {
12
12
  escalationType: EscalationType;
13
13
  escalationTypeTitle: string;
14
14
  escalationStatus: string;
15
+ previousStatus: string;
15
16
  escalationCategory: string;
16
17
  escalationOutcome: string;
17
18
  escalationReasons: string;
@@ -25,6 +26,7 @@ export declare class Escalations {
25
26
  dateResolved: Timestamp;
26
27
  emailSent: boolean;
27
28
  reEscalated: boolean;
29
+ escalationCount: Number;
28
30
  agent: Users;
29
31
  reviewer: Users;
30
32
  sme: Users;
@@ -53,6 +53,10 @@ __decorate([
53
53
  (0, typeorm_1.Column)({ name: 'escalation_status' }),
54
54
  __metadata("design:type", String)
55
55
  ], Escalations.prototype, "escalationStatus", void 0);
56
+ __decorate([
57
+ (0, typeorm_1.Column)({ name: 'previous_status' }),
58
+ __metadata("design:type", String)
59
+ ], Escalations.prototype, "previousStatus", void 0);
56
60
  __decorate([
57
61
  (0, typeorm_1.Column)({ name: 'escalation_category' }),
58
62
  __metadata("design:type", String)
@@ -105,6 +109,10 @@ __decorate([
105
109
  (0, typeorm_1.Column)({ name: 're_escalated', default: () => false }),
106
110
  __metadata("design:type", Boolean)
107
111
  ], Escalations.prototype, "reEscalated", void 0);
112
+ __decorate([
113
+ (0, typeorm_1.Column)({ name: 'escalation_count' }),
114
+ __metadata("design:type", Number)
115
+ ], Escalations.prototype, "escalationCount", void 0);
108
116
  __decorate([
109
117
  (0, typeorm_1.OneToOne)((type) => usr_entity_1.Users, { eager: true }),
110
118
  (0, typeorm_1.JoinColumn)({ name: 'agent_id' }),
@@ -1,2 +1 @@
1
1
  export * from './common';
2
- export * from './config';
@@ -11,4 +11,3 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
11
11
  };
12
12
  Object.defineProperty(exports, "__esModule", { value: true });
13
13
  __exportStar(require("./common"), exports);
14
- __exportStar(require("./config"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniorganization/uni-lib",
3
- "version": "1.0.8",
3
+ "version": "1.0.12",
4
4
  "description": "UNI Library",
5
5
  "author": "Jhomiguel",
6
6
  "main": "dist/index.js",