@uniorganization/uni-lib 3.0.0 → 4.0.2
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.
- package/dist/entities/evaluations.entity.d.ts +0 -1
- package/dist/entities/evaluations.entity.js +0 -4
- package/dist/entities/form-fields.entity.d.ts +1 -0
- package/dist/entities/form-fields.entity.js +4 -0
- package/dist/entities/index.d.ts +1 -0
- package/dist/entities/index.js +1 -0
- package/dist/entities/servicer.entity.d.ts +30 -0
- package/dist/entities/servicer.entity.js +132 -0
- package/package.json +1 -1
|
@@ -108,10 +108,6 @@ __decorate([
|
|
|
108
108
|
(0, typeorm_1.Column)({ name: 'feedback_id' }),
|
|
109
109
|
__metadata("design:type", Number)
|
|
110
110
|
], Evaluations.prototype, "feedbackId", void 0);
|
|
111
|
-
__decorate([
|
|
112
|
-
(0, typeorm_1.Column)({ name: 'is_sale' }),
|
|
113
|
-
__metadata("design:type", String)
|
|
114
|
-
], Evaluations.prototype, "isSale", void 0);
|
|
115
111
|
__decorate([
|
|
116
112
|
(0, typeorm_1.ManyToOne)(() => usr_entity_1.Users),
|
|
117
113
|
(0, typeorm_1.JoinColumn)({ name: 'agent_id' }),
|
|
@@ -82,6 +82,10 @@ __decorate([
|
|
|
82
82
|
(0, typeorm_1.Column)({ name: 'dependency_value', type: "json" }),
|
|
83
83
|
__metadata("design:type", Object)
|
|
84
84
|
], FormFields.prototype, "dependencyValue", void 0);
|
|
85
|
+
__decorate([
|
|
86
|
+
(0, typeorm_1.Column)({ name: 'config', type: "json" }),
|
|
87
|
+
__metadata("design:type", Object)
|
|
88
|
+
], FormFields.prototype, "config", void 0);
|
|
85
89
|
exports.FormFields = FormFields = __decorate([
|
|
86
90
|
(0, typeorm_1.Entity)('form_fields', { schema: 'tracking' })
|
|
87
91
|
], FormFields);
|
package/dist/entities/index.d.ts
CHANGED
package/dist/entities/index.js
CHANGED
|
@@ -94,3 +94,4 @@ __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("./servicer.entity"), exports);
|
|
@@ -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);
|