@uniorganization/uni-lib 4.0.1 → 4.0.3

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.
@@ -11,5 +11,6 @@ export declare class Form {
11
11
  updatedBy: string;
12
12
  dateUpdated: Date;
13
13
  isEnabled: boolean;
14
+ isServiceCenterEnabled: boolean;
14
15
  fieldList: FormDefinition[];
15
16
  }
@@ -59,6 +59,10 @@ __decorate([
59
59
  (0, typeorm_1.Column)({ name: 'is_enabled', default: true }),
60
60
  __metadata("design:type", Boolean)
61
61
  ], Form.prototype, "isEnabled", void 0);
62
+ __decorate([
63
+ (0, typeorm_1.Column)({ name: 'is_service_center_enabled', default: false }),
64
+ __metadata("design:type", Boolean)
65
+ ], Form.prototype, "isServiceCenterEnabled", void 0);
62
66
  __decorate([
63
67
  (0, typeorm_1.OneToMany)(() => form_definition_entity_1.FormDefinition, (formDefinition) => formDefinition.form, { cascade: ['insert', 'update', 'remove'] }),
64
68
  __metadata("design:type", Array)
@@ -78,3 +78,6 @@ export * from './p1-service-network.entity';
78
78
  export * from './raw_roster.entity';
79
79
  export * from './bp-alerts.entity';
80
80
  export * from './feedback.entity';
81
+ export * from './service-center.entity';
82
+ export * from './service-center-interaction.entity';
83
+ export * from './service-center-review.entity';
@@ -94,3 +94,6 @@ __exportStar(require("./p1-service-network.entity"), exports);
94
94
  __exportStar(require("./raw_roster.entity"), exports);
95
95
  __exportStar(require("./bp-alerts.entity"), exports);
96
96
  __exportStar(require("./feedback.entity"), exports);
97
+ __exportStar(require("./service-center.entity"), exports);
98
+ __exportStar(require("./service-center-interaction.entity"), exports);
99
+ __exportStar(require("./service-center-review.entity"), exports);
@@ -0,0 +1,18 @@
1
+ import { Transactions } from './transactions.entity';
2
+ import { ServiceCenterEntity } from './service-center.entity';
3
+ import { Users } from './usr.entity';
4
+ export declare class ServiceCenterInteractionEntity {
5
+ id: number;
6
+ transaction: Transactions;
7
+ transactionId: number;
8
+ serviceCenter: ServiceCenterEntity;
9
+ serviceCenterId: number;
10
+ agent: Users;
11
+ agentId: number;
12
+ ntgid: string;
13
+ distance: number;
14
+ agreedPrice: number;
15
+ agentComment: string;
16
+ isContracted: boolean;
17
+ dateCreated: Date;
18
+ }
@@ -0,0 +1,77 @@
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.ServiceCenterInteractionEntity = void 0;
13
+ const typeorm_1 = require("typeorm");
14
+ const transactions_entity_1 = require("./transactions.entity");
15
+ const service_center_entity_1 = require("./service-center.entity");
16
+ const usr_entity_1 = require("./usr.entity");
17
+ let ServiceCenterInteractionEntity = class ServiceCenterInteractionEntity {
18
+ };
19
+ exports.ServiceCenterInteractionEntity = ServiceCenterInteractionEntity;
20
+ __decorate([
21
+ (0, typeorm_1.PrimaryGeneratedColumn)(),
22
+ __metadata("design:type", Number)
23
+ ], ServiceCenterInteractionEntity.prototype, "id", void 0);
24
+ __decorate([
25
+ (0, typeorm_1.ManyToOne)(() => transactions_entity_1.Transactions),
26
+ (0, typeorm_1.JoinColumn)({ name: 'transaction_id' }),
27
+ __metadata("design:type", transactions_entity_1.Transactions)
28
+ ], ServiceCenterInteractionEntity.prototype, "transaction", void 0);
29
+ __decorate([
30
+ (0, typeorm_1.Column)({ name: 'transaction_id' }),
31
+ __metadata("design:type", Number)
32
+ ], ServiceCenterInteractionEntity.prototype, "transactionId", void 0);
33
+ __decorate([
34
+ (0, typeorm_1.ManyToOne)(() => service_center_entity_1.ServiceCenterEntity),
35
+ (0, typeorm_1.JoinColumn)({ name: 'service_center_id' }),
36
+ __metadata("design:type", service_center_entity_1.ServiceCenterEntity)
37
+ ], ServiceCenterInteractionEntity.prototype, "serviceCenter", void 0);
38
+ __decorate([
39
+ (0, typeorm_1.Column)({ name: 'service_center_id' }),
40
+ __metadata("design:type", Number)
41
+ ], ServiceCenterInteractionEntity.prototype, "serviceCenterId", void 0);
42
+ __decorate([
43
+ (0, typeorm_1.ManyToOne)(() => usr_entity_1.Users),
44
+ (0, typeorm_1.JoinColumn)({ name: 'agent_id' }),
45
+ __metadata("design:type", usr_entity_1.Users)
46
+ ], ServiceCenterInteractionEntity.prototype, "agent", void 0);
47
+ __decorate([
48
+ (0, typeorm_1.Column)({ name: 'agent_id' }),
49
+ __metadata("design:type", Number)
50
+ ], ServiceCenterInteractionEntity.prototype, "agentId", void 0);
51
+ __decorate([
52
+ (0, typeorm_1.Column)({ name: 'ntgid', type: 'varchar', nullable: true }),
53
+ __metadata("design:type", String)
54
+ ], ServiceCenterInteractionEntity.prototype, "ntgid", void 0);
55
+ __decorate([
56
+ (0, typeorm_1.Column)('numeric', { name: 'distance', precision: 10, scale: 2, nullable: true }),
57
+ __metadata("design:type", Number)
58
+ ], ServiceCenterInteractionEntity.prototype, "distance", void 0);
59
+ __decorate([
60
+ (0, typeorm_1.Column)('numeric', { name: 'agreed_price', precision: 12, scale: 2, nullable: true }),
61
+ __metadata("design:type", Number)
62
+ ], ServiceCenterInteractionEntity.prototype, "agreedPrice", void 0);
63
+ __decorate([
64
+ (0, typeorm_1.Column)({ name: 'agent_comment', type: 'text', nullable: true }),
65
+ __metadata("design:type", String)
66
+ ], ServiceCenterInteractionEntity.prototype, "agentComment", void 0);
67
+ __decorate([
68
+ (0, typeorm_1.Column)({ name: 'is_contracted', type: 'boolean', default: false }),
69
+ __metadata("design:type", Boolean)
70
+ ], ServiceCenterInteractionEntity.prototype, "isContracted", void 0);
71
+ __decorate([
72
+ (0, typeorm_1.CreateDateColumn)({ name: 'date_created', type: 'timestamp' }),
73
+ __metadata("design:type", Date)
74
+ ], ServiceCenterInteractionEntity.prototype, "dateCreated", void 0);
75
+ exports.ServiceCenterInteractionEntity = ServiceCenterInteractionEntity = __decorate([
76
+ (0, typeorm_1.Entity)('service_center_interaction', { schema: 'enr' })
77
+ ], ServiceCenterInteractionEntity);
@@ -0,0 +1,12 @@
1
+ import { ServiceCenterEntity } from './service-center.entity';
2
+ import { Users } from './usr.entity';
3
+ export declare class ServiceCenterReviewEntity {
4
+ id: number;
5
+ serviceCenter: ServiceCenterEntity;
6
+ serviceCenterId: number;
7
+ reviewer: Users;
8
+ reviewerId: number;
9
+ rating: number;
10
+ comment: string;
11
+ dateCreated: Date;
12
+ }
@@ -0,0 +1,55 @@
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.ServiceCenterReviewEntity = void 0;
13
+ const typeorm_1 = require("typeorm");
14
+ const service_center_entity_1 = require("./service-center.entity");
15
+ const usr_entity_1 = require("./usr.entity");
16
+ let ServiceCenterReviewEntity = class ServiceCenterReviewEntity {
17
+ };
18
+ exports.ServiceCenterReviewEntity = ServiceCenterReviewEntity;
19
+ __decorate([
20
+ (0, typeorm_1.PrimaryGeneratedColumn)(),
21
+ __metadata("design:type", Number)
22
+ ], ServiceCenterReviewEntity.prototype, "id", void 0);
23
+ __decorate([
24
+ (0, typeorm_1.ManyToOne)(() => service_center_entity_1.ServiceCenterEntity),
25
+ (0, typeorm_1.JoinColumn)({ name: 'service_center_id' }),
26
+ __metadata("design:type", service_center_entity_1.ServiceCenterEntity)
27
+ ], ServiceCenterReviewEntity.prototype, "serviceCenter", void 0);
28
+ __decorate([
29
+ (0, typeorm_1.Column)({ name: 'service_center_id' }),
30
+ __metadata("design:type", Number)
31
+ ], ServiceCenterReviewEntity.prototype, "serviceCenterId", void 0);
32
+ __decorate([
33
+ (0, typeorm_1.ManyToOne)(() => usr_entity_1.Users),
34
+ (0, typeorm_1.JoinColumn)({ name: 'reviewer_id' }),
35
+ __metadata("design:type", usr_entity_1.Users)
36
+ ], ServiceCenterReviewEntity.prototype, "reviewer", void 0);
37
+ __decorate([
38
+ (0, typeorm_1.Column)({ name: 'reviewer_id' }),
39
+ __metadata("design:type", Number)
40
+ ], ServiceCenterReviewEntity.prototype, "reviewerId", void 0);
41
+ __decorate([
42
+ (0, typeorm_1.Column)({ name: 'rating', type: 'integer' }),
43
+ __metadata("design:type", Number)
44
+ ], ServiceCenterReviewEntity.prototype, "rating", void 0);
45
+ __decorate([
46
+ (0, typeorm_1.Column)({ name: 'comment', type: 'text', nullable: true }),
47
+ __metadata("design:type", String)
48
+ ], ServiceCenterReviewEntity.prototype, "comment", void 0);
49
+ __decorate([
50
+ (0, typeorm_1.CreateDateColumn)({ name: 'date_created', type: 'timestamp' }),
51
+ __metadata("design:type", Date)
52
+ ], ServiceCenterReviewEntity.prototype, "dateCreated", void 0);
53
+ exports.ServiceCenterReviewEntity = ServiceCenterReviewEntity = __decorate([
54
+ (0, typeorm_1.Entity)('service_center_review', { schema: 'enr' })
55
+ ], ServiceCenterReviewEntity);
@@ -0,0 +1,19 @@
1
+ export declare class ServiceCenterEntity {
2
+ id: number;
3
+ servicerAccount: string;
4
+ servicerName: string;
5
+ address: string;
6
+ city: string;
7
+ county: string;
8
+ state: string;
9
+ zipCode: string;
10
+ country: string;
11
+ active: boolean;
12
+ phone: string;
13
+ fax: string;
14
+ email: string;
15
+ lgScore: number;
16
+ isAuthorized: boolean;
17
+ overallReviewScore: number;
18
+ totalReviews: number;
19
+ }
@@ -0,0 +1,88 @@
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.ServiceCenterEntity = void 0;
13
+ const typeorm_1 = require("typeorm");
14
+ let ServiceCenterEntity = class ServiceCenterEntity {
15
+ };
16
+ exports.ServiceCenterEntity = ServiceCenterEntity;
17
+ __decorate([
18
+ (0, typeorm_1.PrimaryGeneratedColumn)(),
19
+ __metadata("design:type", Number)
20
+ ], ServiceCenterEntity.prototype, "id", void 0);
21
+ __decorate([
22
+ (0, typeorm_1.Index)({ unique: true }),
23
+ (0, typeorm_1.Column)({ name: 'servicer_account', type: 'varchar', nullable: false }),
24
+ __metadata("design:type", String)
25
+ ], ServiceCenterEntity.prototype, "servicerAccount", void 0);
26
+ __decorate([
27
+ (0, typeorm_1.Column)({ name: 'servicer_name', type: 'varchar', nullable: true }),
28
+ __metadata("design:type", String)
29
+ ], ServiceCenterEntity.prototype, "servicerName", void 0);
30
+ __decorate([
31
+ (0, typeorm_1.Column)({ name: 'address', type: 'varchar', nullable: true }),
32
+ __metadata("design:type", String)
33
+ ], ServiceCenterEntity.prototype, "address", void 0);
34
+ __decorate([
35
+ (0, typeorm_1.Column)({ name: 'city', type: 'varchar', nullable: true }),
36
+ __metadata("design:type", String)
37
+ ], ServiceCenterEntity.prototype, "city", void 0);
38
+ __decorate([
39
+ (0, typeorm_1.Column)({ name: 'county', type: 'varchar', nullable: true }),
40
+ __metadata("design:type", String)
41
+ ], ServiceCenterEntity.prototype, "county", void 0);
42
+ __decorate([
43
+ (0, typeorm_1.Column)({ name: 'state', type: 'varchar', nullable: true }),
44
+ __metadata("design:type", String)
45
+ ], ServiceCenterEntity.prototype, "state", void 0);
46
+ __decorate([
47
+ (0, typeorm_1.Column)({ name: 'zip_code', type: 'varchar', nullable: true }),
48
+ __metadata("design:type", String)
49
+ ], ServiceCenterEntity.prototype, "zipCode", void 0);
50
+ __decorate([
51
+ (0, typeorm_1.Column)({ name: 'country', type: 'varchar', nullable: true }),
52
+ __metadata("design:type", String)
53
+ ], ServiceCenterEntity.prototype, "country", void 0);
54
+ __decorate([
55
+ (0, typeorm_1.Column)({ name: 'active', type: 'boolean', default: true }),
56
+ __metadata("design:type", Boolean)
57
+ ], ServiceCenterEntity.prototype, "active", void 0);
58
+ __decorate([
59
+ (0, typeorm_1.Column)({ name: 'phone', type: 'varchar', nullable: true }),
60
+ __metadata("design:type", String)
61
+ ], ServiceCenterEntity.prototype, "phone", void 0);
62
+ __decorate([
63
+ (0, typeorm_1.Column)({ name: 'fax', type: 'varchar', nullable: true }),
64
+ __metadata("design:type", String)
65
+ ], ServiceCenterEntity.prototype, "fax", void 0);
66
+ __decorate([
67
+ (0, typeorm_1.Column)({ name: 'email', type: 'varchar', nullable: true }),
68
+ __metadata("design:type", String)
69
+ ], ServiceCenterEntity.prototype, "email", void 0);
70
+ __decorate([
71
+ (0, typeorm_1.Column)({ name: 'lg_score', type: 'integer', nullable: true }),
72
+ __metadata("design:type", Number)
73
+ ], ServiceCenterEntity.prototype, "lgScore", void 0);
74
+ __decorate([
75
+ (0, typeorm_1.Column)({ name: 'is_authorized', type: 'boolean', default: false }),
76
+ __metadata("design:type", Boolean)
77
+ ], ServiceCenterEntity.prototype, "isAuthorized", void 0);
78
+ __decorate([
79
+ (0, typeorm_1.Column)({ name: 'overall_review_score', type: 'numeric', precision: 3, scale: 2, default: 0 }),
80
+ __metadata("design:type", Number)
81
+ ], ServiceCenterEntity.prototype, "overallReviewScore", void 0);
82
+ __decorate([
83
+ (0, typeorm_1.Column)({ name: 'total_reviews', type: 'integer', default: 0 }),
84
+ __metadata("design:type", Number)
85
+ ], ServiceCenterEntity.prototype, "totalReviews", void 0);
86
+ exports.ServiceCenterEntity = ServiceCenterEntity = __decorate([
87
+ (0, typeorm_1.Entity)('service_center', { schema: 'enr' })
88
+ ], ServiceCenterEntity);
@@ -0,0 +1,30 @@
1
+ export declare class ServicerEntity {
2
+ id: number;
3
+ servicerAccount: string;
4
+ servicerName: string;
5
+ contact: string;
6
+ address: string;
7
+ city: string;
8
+ county: string;
9
+ state: string;
10
+ zipCode: string;
11
+ country: string;
12
+ servicerType: string;
13
+ active: string;
14
+ eligible: string;
15
+ locatingFlag: string;
16
+ autoAcceptanceFlag: string;
17
+ partsManagementProgramFlag: string;
18
+ zipcodeCoverage: string;
19
+ brandCoverage: string;
20
+ productCoverage: string;
21
+ overwriteCutOffTime: string;
22
+ excludeServicerFromEmail: string;
23
+ notesNotificationEmail: string;
24
+ classification: string;
25
+ phone: string;
26
+ fax: string;
27
+ email: string;
28
+ lgScore: number;
29
+ profileIndicator: string;
30
+ }
@@ -0,0 +1,132 @@
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.ServicerEntity = void 0;
13
+ const typeorm_1 = require("typeorm");
14
+ let ServicerEntity = class ServicerEntity {
15
+ };
16
+ exports.ServicerEntity = ServicerEntity;
17
+ __decorate([
18
+ (0, typeorm_1.PrimaryGeneratedColumn)(),
19
+ __metadata("design:type", Number)
20
+ ], ServicerEntity.prototype, "id", void 0);
21
+ __decorate([
22
+ (0, typeorm_1.Index)({ unique: true }),
23
+ (0, typeorm_1.Column)({ name: 'servicer_account', type: 'varchar', nullable: false }),
24
+ __metadata("design:type", String)
25
+ ], ServicerEntity.prototype, "servicerAccount", void 0);
26
+ __decorate([
27
+ (0, typeorm_1.Column)({ name: 'servicer_name', type: 'varchar', nullable: true }),
28
+ __metadata("design:type", String)
29
+ ], ServicerEntity.prototype, "servicerName", void 0);
30
+ __decorate([
31
+ (0, typeorm_1.Column)({ name: 'contact', type: 'varchar', nullable: true }),
32
+ __metadata("design:type", String)
33
+ ], ServicerEntity.prototype, "contact", void 0);
34
+ __decorate([
35
+ (0, typeorm_1.Column)({ name: 'address', type: 'varchar', nullable: true }),
36
+ __metadata("design:type", String)
37
+ ], ServicerEntity.prototype, "address", void 0);
38
+ __decorate([
39
+ (0, typeorm_1.Column)({ name: 'city', type: 'varchar', nullable: true }),
40
+ __metadata("design:type", String)
41
+ ], ServicerEntity.prototype, "city", void 0);
42
+ __decorate([
43
+ (0, typeorm_1.Column)({ name: 'county', type: 'varchar', nullable: true }),
44
+ __metadata("design:type", String)
45
+ ], ServicerEntity.prototype, "county", void 0);
46
+ __decorate([
47
+ (0, typeorm_1.Column)({ name: 'state', type: 'varchar', nullable: true }),
48
+ __metadata("design:type", String)
49
+ ], ServicerEntity.prototype, "state", void 0);
50
+ __decorate([
51
+ (0, typeorm_1.Column)({ name: 'zip_code', type: 'varchar', nullable: true }),
52
+ __metadata("design:type", String)
53
+ ], ServicerEntity.prototype, "zipCode", void 0);
54
+ __decorate([
55
+ (0, typeorm_1.Column)({ name: 'country', type: 'varchar', nullable: true }),
56
+ __metadata("design:type", String)
57
+ ], ServicerEntity.prototype, "country", void 0);
58
+ __decorate([
59
+ (0, typeorm_1.Column)({ name: 'servicer_type', type: 'varchar', nullable: true }),
60
+ __metadata("design:type", String)
61
+ ], ServicerEntity.prototype, "servicerType", void 0);
62
+ __decorate([
63
+ (0, typeorm_1.Column)({ name: 'active', type: 'varchar', nullable: true }),
64
+ __metadata("design:type", String)
65
+ ], ServicerEntity.prototype, "active", void 0);
66
+ __decorate([
67
+ (0, typeorm_1.Column)({ name: 'eligible', type: 'varchar', nullable: true }),
68
+ __metadata("design:type", String)
69
+ ], ServicerEntity.prototype, "eligible", void 0);
70
+ __decorate([
71
+ (0, typeorm_1.Column)({ name: 'locating_flag', type: 'varchar', nullable: true }),
72
+ __metadata("design:type", String)
73
+ ], ServicerEntity.prototype, "locatingFlag", void 0);
74
+ __decorate([
75
+ (0, typeorm_1.Column)({ name: 'auto_acceptance_flag', type: 'varchar', nullable: true }),
76
+ __metadata("design:type", String)
77
+ ], ServicerEntity.prototype, "autoAcceptanceFlag", void 0);
78
+ __decorate([
79
+ (0, typeorm_1.Column)({ name: 'parts_management_program_flag', type: 'varchar', nullable: true }),
80
+ __metadata("design:type", String)
81
+ ], ServicerEntity.prototype, "partsManagementProgramFlag", void 0);
82
+ __decorate([
83
+ (0, typeorm_1.Column)({ name: 'zipcode_coverage', type: 'varchar', nullable: true }),
84
+ __metadata("design:type", String)
85
+ ], ServicerEntity.prototype, "zipcodeCoverage", void 0);
86
+ __decorate([
87
+ (0, typeorm_1.Column)({ name: 'brand_coverage', type: 'varchar', nullable: true }),
88
+ __metadata("design:type", String)
89
+ ], ServicerEntity.prototype, "brandCoverage", void 0);
90
+ __decorate([
91
+ (0, typeorm_1.Column)({ name: 'product_coverage', type: 'varchar', nullable: true }),
92
+ __metadata("design:type", String)
93
+ ], ServicerEntity.prototype, "productCoverage", void 0);
94
+ __decorate([
95
+ (0, typeorm_1.Column)({ name: 'overwrite_cut_off_time', type: 'varchar', nullable: true }),
96
+ __metadata("design:type", String)
97
+ ], ServicerEntity.prototype, "overwriteCutOffTime", void 0);
98
+ __decorate([
99
+ (0, typeorm_1.Column)({ name: 'exclude_servicer_from_email', type: 'varchar', nullable: true }),
100
+ __metadata("design:type", String)
101
+ ], ServicerEntity.prototype, "excludeServicerFromEmail", void 0);
102
+ __decorate([
103
+ (0, typeorm_1.Column)({ name: 'notes_notification_email', type: 'varchar', nullable: true }),
104
+ __metadata("design:type", String)
105
+ ], ServicerEntity.prototype, "notesNotificationEmail", void 0);
106
+ __decorate([
107
+ (0, typeorm_1.Column)({ name: 'classification', type: 'varchar', nullable: true }),
108
+ __metadata("design:type", String)
109
+ ], ServicerEntity.prototype, "classification", void 0);
110
+ __decorate([
111
+ (0, typeorm_1.Column)({ name: 'phone', type: 'varchar', nullable: true }),
112
+ __metadata("design:type", String)
113
+ ], ServicerEntity.prototype, "phone", void 0);
114
+ __decorate([
115
+ (0, typeorm_1.Column)({ name: 'fax', type: 'varchar', nullable: true }),
116
+ __metadata("design:type", String)
117
+ ], ServicerEntity.prototype, "fax", void 0);
118
+ __decorate([
119
+ (0, typeorm_1.Column)({ name: 'email', type: 'varchar', nullable: true }),
120
+ __metadata("design:type", String)
121
+ ], ServicerEntity.prototype, "email", void 0);
122
+ __decorate([
123
+ (0, typeorm_1.Column)({ name: 'lg_score', type: 'integer', nullable: true }),
124
+ __metadata("design:type", Number)
125
+ ], ServicerEntity.prototype, "lgScore", void 0);
126
+ __decorate([
127
+ (0, typeorm_1.Column)({ name: 'profile_indicator', type: 'varchar', nullable: true }),
128
+ __metadata("design:type", String)
129
+ ], ServicerEntity.prototype, "profileIndicator", void 0);
130
+ exports.ServicerEntity = ServicerEntity = __decorate([
131
+ (0, typeorm_1.Entity)('servicer', { schema: 'enr' })
132
+ ], ServicerEntity);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniorganization/uni-lib",
3
- "version": "4.0.1",
3
+ "version": "4.0.3",
4
4
  "description": "UNI Library",
5
5
  "author": "Jhomiguel",
6
6
  "main": "dist/index.js",