@uniorganization/uni-lib 4.0.45 → 4.0.46

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.
@@ -0,0 +1,14 @@
1
+ export declare class ContactSearchEntity {
2
+ contactId: string;
3
+ channel: string;
4
+ contactStatus: string;
5
+ initiationTimestamp: Date;
6
+ systemPhoneNumber: string;
7
+ queue: string;
8
+ agent: string;
9
+ customerPhoneNumber: string;
10
+ disconnectTimestamp: Date;
11
+ systemEmailAddress: string;
12
+ customerEmailAddress: string;
13
+ credentialsTapp: string;
14
+ }
@@ -0,0 +1,70 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.ContactSearchEntity = void 0;
13
+ const typeorm_1 = require("typeorm");
14
+ let ContactSearchEntity = class ContactSearchEntity {
15
+ };
16
+ exports.ContactSearchEntity = ContactSearchEntity;
17
+ __decorate([
18
+ (0, typeorm_1.ViewColumn)({ name: 'contact_id' }),
19
+ __metadata("design:type", String)
20
+ ], ContactSearchEntity.prototype, "contactId", void 0);
21
+ __decorate([
22
+ (0, typeorm_1.ViewColumn)(),
23
+ __metadata("design:type", String)
24
+ ], ContactSearchEntity.prototype, "channel", void 0);
25
+ __decorate([
26
+ (0, typeorm_1.ViewColumn)({ name: 'contact_status' }),
27
+ __metadata("design:type", String)
28
+ ], ContactSearchEntity.prototype, "contactStatus", void 0);
29
+ __decorate([
30
+ (0, typeorm_1.ViewColumn)({ name: 'initiation_timestamp' }),
31
+ __metadata("design:type", Date)
32
+ ], ContactSearchEntity.prototype, "initiationTimestamp", void 0);
33
+ __decorate([
34
+ (0, typeorm_1.ViewColumn)({ name: 'system_phone_number' }),
35
+ __metadata("design:type", String)
36
+ ], ContactSearchEntity.prototype, "systemPhoneNumber", void 0);
37
+ __decorate([
38
+ (0, typeorm_1.ViewColumn)(),
39
+ __metadata("design:type", String)
40
+ ], ContactSearchEntity.prototype, "queue", void 0);
41
+ __decorate([
42
+ (0, typeorm_1.ViewColumn)(),
43
+ __metadata("design:type", String)
44
+ ], ContactSearchEntity.prototype, "agent", void 0);
45
+ __decorate([
46
+ (0, typeorm_1.ViewColumn)({ name: 'customer_phone_number' }),
47
+ __metadata("design:type", String)
48
+ ], ContactSearchEntity.prototype, "customerPhoneNumber", void 0);
49
+ __decorate([
50
+ (0, typeorm_1.ViewColumn)({ name: 'disconnect_timestamp' }),
51
+ __metadata("design:type", Date)
52
+ ], ContactSearchEntity.prototype, "disconnectTimestamp", void 0);
53
+ __decorate([
54
+ (0, typeorm_1.ViewColumn)({ name: 'system_email_address' }),
55
+ __metadata("design:type", String)
56
+ ], ContactSearchEntity.prototype, "systemEmailAddress", void 0);
57
+ __decorate([
58
+ (0, typeorm_1.ViewColumn)({ name: 'customer_email_address' }),
59
+ __metadata("design:type", String)
60
+ ], ContactSearchEntity.prototype, "customerEmailAddress", void 0);
61
+ __decorate([
62
+ (0, typeorm_1.ViewColumn)({ name: 'credentials_tapp' }),
63
+ __metadata("design:type", String)
64
+ ], ContactSearchEntity.prototype, "credentialsTapp", void 0);
65
+ exports.ContactSearchEntity = ContactSearchEntity = __decorate([
66
+ (0, typeorm_1.ViewEntity)({
67
+ name: 'contact_search',
68
+ schema: 'lgai',
69
+ })
70
+ ], ContactSearchEntity);
@@ -1,15 +1,11 @@
1
1
  import { Users } from '../usr.entity';
2
2
  import { MessageCaseEntity } from './message-case.entity';
3
- import { ClaimReport } from '../claim-report.entity';
4
3
  export declare class CaseLinkEntity {
5
4
  id: string;
6
5
  case: MessageCaseEntity;
7
6
  caseId: string;
8
7
  linkType: string;
9
8
  referenceValue: string;
10
- transactionId: string | null;
11
- claimReport?: ClaimReport | null;
12
- claimReportId: number | null;
13
9
  externalSystem: string | null;
14
10
  verificationStatus: string;
15
11
  verificationNotes: string | null;
@@ -13,7 +13,6 @@ exports.CaseLinkEntity = void 0;
13
13
  const typeorm_1 = require("typeorm");
14
14
  const usr_entity_1 = require("../usr.entity");
15
15
  const message_case_entity_1 = require("./message-case.entity");
16
- const claim_report_entity_1 = require("../claim-report.entity");
17
16
  let CaseLinkEntity = class CaseLinkEntity {
18
17
  };
19
18
  exports.CaseLinkEntity = CaseLinkEntity;
@@ -43,24 +42,6 @@ __decorate([
43
42
  }),
44
43
  __metadata("design:type", String)
45
44
  ], CaseLinkEntity.prototype, "referenceValue", void 0);
46
- __decorate([
47
- (0, typeorm_1.Column)({
48
- name: 'transaction_id',
49
- type: 'varchar',
50
- length: 100,
51
- nullable: true,
52
- }),
53
- __metadata("design:type", String)
54
- ], CaseLinkEntity.prototype, "transactionId", void 0);
55
- __decorate([
56
- (0, typeorm_1.ManyToOne)(() => claim_report_entity_1.ClaimReport),
57
- (0, typeorm_1.JoinColumn)({ name: 'claim_report_id' }),
58
- __metadata("design:type", claim_report_entity_1.ClaimReport)
59
- ], CaseLinkEntity.prototype, "claimReport", void 0);
60
- __decorate([
61
- (0, typeorm_1.Column)({ name: 'claim_report_id', type: 'integer', nullable: true }),
62
- __metadata("design:type", Number)
63
- ], CaseLinkEntity.prototype, "claimReportId", void 0);
64
45
  __decorate([
65
46
  (0, typeorm_1.Column)({
66
47
  name: 'external_system',
@@ -73,6 +73,7 @@ export * from './skipped-ticket.entity';
73
73
  export * from './user-roster.view';
74
74
  export * from './enr-inventory.entity';
75
75
  export * from './claim-report.entity';
76
+ export * from './contact-search.entity';
76
77
  export * from './p1-service-center.entity';
77
78
  export * from './p1-service-network.entity';
78
79
  export * from './raw_roster.entity';
@@ -89,6 +89,7 @@ __exportStar(require("./skipped-ticket.entity"), exports);
89
89
  __exportStar(require("./user-roster.view"), exports);
90
90
  __exportStar(require("./enr-inventory.entity"), exports);
91
91
  __exportStar(require("./claim-report.entity"), exports);
92
+ __exportStar(require("./contact-search.entity"), exports);
92
93
  __exportStar(require("./p1-service-center.entity"), exports);
93
94
  __exportStar(require("./p1-service-network.entity"), exports);
94
95
  __exportStar(require("./raw_roster.entity"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniorganization/uni-lib",
3
- "version": "4.0.45",
3
+ "version": "4.0.46",
4
4
  "description": "UNI Library",
5
5
  "author": "Jhomiguel",
6
6
  "main": "dist/index.js",