@uniorganization/uni-lib 2.0.11 → 2.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.
|
@@ -16,279 +16,279 @@ let RawRoster = class RawRoster {
|
|
|
16
16
|
};
|
|
17
17
|
exports.RawRoster = RawRoster;
|
|
18
18
|
__decorate([
|
|
19
|
-
(0, typeorm_1.PrimaryColumn)({ type: 'varchar' }),
|
|
19
|
+
(0, typeorm_1.PrimaryColumn)({ name: 'employee_id', type: 'varchar' }),
|
|
20
20
|
__metadata("design:type", String)
|
|
21
21
|
], RawRoster.prototype, "employeeId", void 0);
|
|
22
22
|
__decorate([
|
|
23
|
-
(0, typeorm_1.Column)({ type: 'integer' }),
|
|
23
|
+
(0, typeorm_1.Column)({ name: 'row_index', type: 'integer' }),
|
|
24
24
|
__metadata("design:type", Number)
|
|
25
25
|
], RawRoster.prototype, "rowIndex", void 0);
|
|
26
26
|
__decorate([
|
|
27
|
-
(0, typeorm_1.Column)({ type: 'integer' }),
|
|
27
|
+
(0, typeorm_1.Column)({ name: 'internal_id', type: 'integer' }),
|
|
28
28
|
__metadata("design:type", Number)
|
|
29
29
|
], RawRoster.prototype, "internalId", void 0);
|
|
30
30
|
__decorate([
|
|
31
|
-
(0, typeorm_1.Column)({
|
|
31
|
+
(0, typeorm_1.Column)({ name: 'phone_login', type: 'text' }),
|
|
32
32
|
__metadata("design:type", String)
|
|
33
33
|
], RawRoster.prototype, "phoneLogin", void 0);
|
|
34
34
|
__decorate([
|
|
35
|
-
(0, typeorm_1.Column)({
|
|
35
|
+
(0, typeorm_1.Column)({ name: 'verint_skill', type: 'text' }),
|
|
36
36
|
__metadata("design:type", String)
|
|
37
37
|
], RawRoster.prototype, "verintSkill", void 0);
|
|
38
38
|
__decorate([
|
|
39
|
-
(0, typeorm_1.Column)({
|
|
39
|
+
(0, typeorm_1.Column)({ name: 'first_level_id', type: 'varchar' }),
|
|
40
40
|
__metadata("design:type", String)
|
|
41
41
|
], RawRoster.prototype, "firstLevelId", void 0);
|
|
42
42
|
__decorate([
|
|
43
|
-
(0, typeorm_1.Column)({
|
|
43
|
+
(0, typeorm_1.Column)({ name: 'first_level_name', type: 'text' }),
|
|
44
44
|
__metadata("design:type", String)
|
|
45
45
|
], RawRoster.prototype, "firstLevelName", void 0);
|
|
46
46
|
__decorate([
|
|
47
|
-
(0, typeorm_1.Column)({
|
|
47
|
+
(0, typeorm_1.Column)({ name: 'second_level_id', type: 'varchar' }),
|
|
48
48
|
__metadata("design:type", String)
|
|
49
49
|
], RawRoster.prototype, "secondLevelId", void 0);
|
|
50
50
|
__decorate([
|
|
51
|
-
(0, typeorm_1.Column)({
|
|
51
|
+
(0, typeorm_1.Column)({ name: 'second_level_name', type: 'text' }),
|
|
52
52
|
__metadata("design:type", String)
|
|
53
53
|
], RawRoster.prototype, "secondLevelName", void 0);
|
|
54
54
|
__decorate([
|
|
55
|
-
(0, typeorm_1.Column)({
|
|
55
|
+
(0, typeorm_1.Column)({ name: 'third_level_id', type: 'varchar' }),
|
|
56
56
|
__metadata("design:type", String)
|
|
57
57
|
], RawRoster.prototype, "thirdLevelId", void 0);
|
|
58
58
|
__decorate([
|
|
59
|
-
(0, typeorm_1.Column)({
|
|
59
|
+
(0, typeorm_1.Column)({ name: 'third_level_name', type: 'text' }),
|
|
60
60
|
__metadata("design:type", String)
|
|
61
61
|
], RawRoster.prototype, "thirdLevelName", void 0);
|
|
62
62
|
__decorate([
|
|
63
|
-
(0, typeorm_1.Column)({
|
|
63
|
+
(0, typeorm_1.Column)({ name: 'start_date', type: 'text' }),
|
|
64
64
|
__metadata("design:type", String)
|
|
65
65
|
], RawRoster.prototype, "startDate", void 0);
|
|
66
66
|
__decorate([
|
|
67
|
-
(0, typeorm_1.Column)({
|
|
67
|
+
(0, typeorm_1.Column)({ name: 'end_date', type: 'text' }),
|
|
68
68
|
__metadata("design:type", String)
|
|
69
69
|
], RawRoster.prototype, "endDate", void 0);
|
|
70
70
|
__decorate([
|
|
71
|
-
(0, typeorm_1.Column)({
|
|
71
|
+
(0, typeorm_1.Column)({ name: 'job_title', type: 'text' }),
|
|
72
72
|
__metadata("design:type", String)
|
|
73
73
|
], RawRoster.prototype, "jobTitle", void 0);
|
|
74
74
|
__decorate([
|
|
75
|
-
(0, typeorm_1.Column)({
|
|
75
|
+
(0, typeorm_1.Column)({ name: 'verint_username', type: 'text' }),
|
|
76
76
|
__metadata("design:type", String)
|
|
77
77
|
], RawRoster.prototype, "verintUsername", void 0);
|
|
78
78
|
__decorate([
|
|
79
|
-
(0, typeorm_1.Column)({
|
|
79
|
+
(0, typeorm_1.Column)({ name: 'td_user', type: 'text' }),
|
|
80
80
|
__metadata("design:type", String)
|
|
81
81
|
], RawRoster.prototype, "tdUser", void 0);
|
|
82
82
|
__decorate([
|
|
83
|
-
(0, typeorm_1.Column)({
|
|
83
|
+
(0, typeorm_1.Column)({ name: 'lms_client', type: 'text' }),
|
|
84
84
|
__metadata("design:type", String)
|
|
85
85
|
], RawRoster.prototype, "lmsClient", void 0);
|
|
86
86
|
__decorate([
|
|
87
|
-
(0, typeorm_1.Column)({
|
|
87
|
+
(0, typeorm_1.Column)({ name: 'lms_nt', type: 'text' }),
|
|
88
88
|
__metadata("design:type", String)
|
|
89
89
|
], RawRoster.prototype, "lmsNt", void 0);
|
|
90
90
|
__decorate([
|
|
91
|
-
(0, typeorm_1.Column)({
|
|
91
|
+
(0, typeorm_1.Column)({ name: 'production_date', type: 'text' }),
|
|
92
92
|
__metadata("design:type", String)
|
|
93
93
|
], RawRoster.prototype, "productionDate", void 0);
|
|
94
94
|
__decorate([
|
|
95
|
-
(0, typeorm_1.Column)({
|
|
95
|
+
(0, typeorm_1.Column)({ name: 'gcic_id', type: 'text' }),
|
|
96
96
|
__metadata("design:type", String)
|
|
97
97
|
], RawRoster.prototype, "gcicId", void 0);
|
|
98
98
|
__decorate([
|
|
99
|
-
(0, typeorm_1.Column)({
|
|
99
|
+
(0, typeorm_1.Column)({ name: 'ern', type: 'text' }),
|
|
100
100
|
__metadata("design:type", String)
|
|
101
101
|
], RawRoster.prototype, "ern", void 0);
|
|
102
102
|
__decorate([
|
|
103
|
-
(0, typeorm_1.Column)({
|
|
103
|
+
(0, typeorm_1.Column)({ name: 'trainer_id', type: 'text' }),
|
|
104
104
|
__metadata("design:type", String)
|
|
105
105
|
], RawRoster.prototype, "trainerId", void 0);
|
|
106
106
|
__decorate([
|
|
107
|
-
(0, typeorm_1.Column)({
|
|
107
|
+
(0, typeorm_1.Column)({ name: 'trainer_name', type: 'text' }),
|
|
108
108
|
__metadata("design:type", String)
|
|
109
109
|
], RawRoster.prototype, "trainerName", void 0);
|
|
110
110
|
__decorate([
|
|
111
|
-
(0, typeorm_1.Column)({
|
|
111
|
+
(0, typeorm_1.Column)({ name: 'training_class', type: 'text' }),
|
|
112
112
|
__metadata("design:type", String)
|
|
113
113
|
], RawRoster.prototype, "trainingClass", void 0);
|
|
114
114
|
__decorate([
|
|
115
|
-
(0, typeorm_1.Column)({
|
|
115
|
+
(0, typeorm_1.Column)({ name: 'email_id', type: 'text' }),
|
|
116
116
|
__metadata("design:type", String)
|
|
117
117
|
], RawRoster.prototype, "emailId", void 0);
|
|
118
118
|
__decorate([
|
|
119
|
-
(0, typeorm_1.Column)({
|
|
119
|
+
(0, typeorm_1.Column)({ name: 'sms_id', type: 'text' }),
|
|
120
120
|
__metadata("design:type", String)
|
|
121
121
|
], RawRoster.prototype, "smsId", void 0);
|
|
122
122
|
__decorate([
|
|
123
|
-
(0, typeorm_1.Column)({
|
|
123
|
+
(0, typeorm_1.Column)({ name: 'lms_id', type: 'text' }),
|
|
124
124
|
__metadata("design:type", String)
|
|
125
125
|
], RawRoster.prototype, "lmsId", void 0);
|
|
126
126
|
__decorate([
|
|
127
|
-
(0, typeorm_1.Column)({
|
|
127
|
+
(0, typeorm_1.Column)({ name: 'p1_user', type: 'text' }),
|
|
128
128
|
__metadata("design:type", String)
|
|
129
129
|
], RawRoster.prototype, "p1User", void 0);
|
|
130
130
|
__decorate([
|
|
131
|
-
(0, typeorm_1.Column)({
|
|
131
|
+
(0, typeorm_1.Column)({ name: 'qa_id', type: 'varchar' }),
|
|
132
132
|
__metadata("design:type", String)
|
|
133
133
|
], RawRoster.prototype, "qaId", void 0);
|
|
134
134
|
__decorate([
|
|
135
|
-
(0, typeorm_1.Column)({
|
|
135
|
+
(0, typeorm_1.Column)({ name: 'qa_name', type: 'text' }),
|
|
136
136
|
__metadata("design:type", String)
|
|
137
137
|
], RawRoster.prototype, "qaName", void 0);
|
|
138
138
|
__decorate([
|
|
139
|
-
(0, typeorm_1.Column)({
|
|
139
|
+
(0, typeorm_1.Column)({ name: 'row_date', type: 'text' }),
|
|
140
140
|
__metadata("design:type", String)
|
|
141
141
|
], RawRoster.prototype, "rowDate", void 0);
|
|
142
142
|
__decorate([
|
|
143
|
-
(0, typeorm_1.Column)({
|
|
143
|
+
(0, typeorm_1.Column)({ name: 'employee_status', type: 'text' }),
|
|
144
144
|
__metadata("design:type", String)
|
|
145
145
|
], RawRoster.prototype, "employeeStatus", void 0);
|
|
146
146
|
__decorate([
|
|
147
|
-
(0, typeorm_1.Column)({
|
|
147
|
+
(0, typeorm_1.Column)({ name: 'tapp_2', type: 'text' }),
|
|
148
148
|
__metadata("design:type", String)
|
|
149
149
|
], RawRoster.prototype, "tapp2", void 0);
|
|
150
150
|
__decorate([
|
|
151
|
-
(0, typeorm_1.Column)({
|
|
151
|
+
(0, typeorm_1.Column)({ name: 'tapp_11', type: 'text' }),
|
|
152
152
|
__metadata("design:type", String)
|
|
153
153
|
], RawRoster.prototype, "tapp11", void 0);
|
|
154
154
|
__decorate([
|
|
155
|
-
(0, typeorm_1.Column)({
|
|
155
|
+
(0, typeorm_1.Column)({ name: 'tapp_13', type: 'text' }),
|
|
156
156
|
__metadata("design:type", String)
|
|
157
157
|
], RawRoster.prototype, "tapp13", void 0);
|
|
158
158
|
__decorate([
|
|
159
|
-
(0, typeorm_1.Column)({
|
|
159
|
+
(0, typeorm_1.Column)({ name: 'score_id', type: 'text' }),
|
|
160
160
|
__metadata("design:type", String)
|
|
161
161
|
], RawRoster.prototype, "scoreId", void 0);
|
|
162
162
|
__decorate([
|
|
163
|
-
(0, typeorm_1.Column)({
|
|
163
|
+
(0, typeorm_1.Column)({ name: 'work_location', type: 'text' }),
|
|
164
164
|
__metadata("design:type", String)
|
|
165
165
|
], RawRoster.prototype, "workLocation", void 0);
|
|
166
166
|
__decorate([
|
|
167
|
-
(0, typeorm_1.Column)({
|
|
167
|
+
(0, typeorm_1.Column)({ name: 'last_date_on_site', type: 'text' }),
|
|
168
168
|
__metadata("design:type", String)
|
|
169
169
|
], RawRoster.prototype, "lastDateOnSite", void 0);
|
|
170
170
|
__decorate([
|
|
171
|
-
(0, typeorm_1.Column)({
|
|
171
|
+
(0, typeorm_1.Column)({ name: 'sun_in', type: 'text' }),
|
|
172
172
|
__metadata("design:type", String)
|
|
173
173
|
], RawRoster.prototype, "sunIn", void 0);
|
|
174
174
|
__decorate([
|
|
175
|
-
(0, typeorm_1.Column)({
|
|
175
|
+
(0, typeorm_1.Column)({ name: 'sun_out', type: 'text' }),
|
|
176
176
|
__metadata("design:type", String)
|
|
177
177
|
], RawRoster.prototype, "sunOut", void 0);
|
|
178
178
|
__decorate([
|
|
179
|
-
(0, typeorm_1.Column)({
|
|
179
|
+
(0, typeorm_1.Column)({ name: 'mon_in', type: 'text' }),
|
|
180
180
|
__metadata("design:type", String)
|
|
181
181
|
], RawRoster.prototype, "monIn", void 0);
|
|
182
182
|
__decorate([
|
|
183
|
-
(0, typeorm_1.Column)({
|
|
183
|
+
(0, typeorm_1.Column)({ name: 'mon_out', type: 'text' }),
|
|
184
184
|
__metadata("design:type", String)
|
|
185
185
|
], RawRoster.prototype, "monOut", void 0);
|
|
186
186
|
__decorate([
|
|
187
|
-
(0, typeorm_1.Column)({
|
|
187
|
+
(0, typeorm_1.Column)({ name: 'tue_in', type: 'text' }),
|
|
188
188
|
__metadata("design:type", String)
|
|
189
189
|
], RawRoster.prototype, "tueIn", void 0);
|
|
190
190
|
__decorate([
|
|
191
|
-
(0, typeorm_1.Column)({
|
|
191
|
+
(0, typeorm_1.Column)({ name: 'tue_out', type: 'text' }),
|
|
192
192
|
__metadata("design:type", String)
|
|
193
193
|
], RawRoster.prototype, "tueOut", void 0);
|
|
194
194
|
__decorate([
|
|
195
|
-
(0, typeorm_1.Column)({
|
|
195
|
+
(0, typeorm_1.Column)({ name: 'wed_in', type: 'text' }),
|
|
196
196
|
__metadata("design:type", String)
|
|
197
197
|
], RawRoster.prototype, "wedIn", void 0);
|
|
198
198
|
__decorate([
|
|
199
|
-
(0, typeorm_1.Column)({
|
|
199
|
+
(0, typeorm_1.Column)({ name: 'wed_out', type: 'text' }),
|
|
200
200
|
__metadata("design:type", String)
|
|
201
201
|
], RawRoster.prototype, "wedOut", void 0);
|
|
202
202
|
__decorate([
|
|
203
|
-
(0, typeorm_1.Column)({
|
|
203
|
+
(0, typeorm_1.Column)({ name: 'thu_in', type: 'text' }),
|
|
204
204
|
__metadata("design:type", String)
|
|
205
205
|
], RawRoster.prototype, "thuIn", void 0);
|
|
206
206
|
__decorate([
|
|
207
|
-
(0, typeorm_1.Column)({
|
|
207
|
+
(0, typeorm_1.Column)({ name: 'thu_out', type: 'text' }),
|
|
208
208
|
__metadata("design:type", String)
|
|
209
209
|
], RawRoster.prototype, "thuOut", void 0);
|
|
210
210
|
__decorate([
|
|
211
|
-
(0, typeorm_1.Column)({
|
|
211
|
+
(0, typeorm_1.Column)({ name: 'fri_in', type: 'text' }),
|
|
212
212
|
__metadata("design:type", String)
|
|
213
213
|
], RawRoster.prototype, "friIn", void 0);
|
|
214
214
|
__decorate([
|
|
215
|
-
(0, typeorm_1.Column)({
|
|
215
|
+
(0, typeorm_1.Column)({ name: 'fri_out', type: 'text' }),
|
|
216
216
|
__metadata("design:type", String)
|
|
217
217
|
], RawRoster.prototype, "friOut", void 0);
|
|
218
218
|
__decorate([
|
|
219
|
-
(0, typeorm_1.Column)({
|
|
219
|
+
(0, typeorm_1.Column)({ name: 'sat_in', type: 'text' }),
|
|
220
220
|
__metadata("design:type", String)
|
|
221
221
|
], RawRoster.prototype, "satIn", void 0);
|
|
222
222
|
__decorate([
|
|
223
|
-
(0, typeorm_1.Column)({
|
|
223
|
+
(0, typeorm_1.Column)({ name: 'sat_out', type: 'text' }),
|
|
224
224
|
__metadata("design:type", String)
|
|
225
225
|
], RawRoster.prototype, "satOut", void 0);
|
|
226
226
|
__decorate([
|
|
227
|
-
(0, typeorm_1.Column)({
|
|
227
|
+
(0, typeorm_1.Column)({ name: 'updated_by', type: 'text' }),
|
|
228
228
|
__metadata("design:type", String)
|
|
229
229
|
], RawRoster.prototype, "updatedBy", void 0);
|
|
230
230
|
__decorate([
|
|
231
|
-
(0, typeorm_1.Column)({
|
|
231
|
+
(0, typeorm_1.Column)({ name: 'updated_date', type: 'text' }),
|
|
232
232
|
__metadata("design:type", String)
|
|
233
233
|
], RawRoster.prototype, "updatedDate", void 0);
|
|
234
234
|
__decorate([
|
|
235
|
-
(0, typeorm_1.Column)({
|
|
235
|
+
(0, typeorm_1.Column)({ name: 'sch_effective_date', type: 'text' }),
|
|
236
236
|
__metadata("design:type", String)
|
|
237
237
|
], RawRoster.prototype, "schEffectiveDate", void 0);
|
|
238
238
|
__decorate([
|
|
239
|
-
(0, typeorm_1.Column)({
|
|
239
|
+
(0, typeorm_1.Column)({ name: 'full_name', type: 'text' }),
|
|
240
240
|
__metadata("design:type", String)
|
|
241
241
|
], RawRoster.prototype, "fullName", void 0);
|
|
242
242
|
__decorate([
|
|
243
|
-
(0, typeorm_1.Column)({
|
|
243
|
+
(0, typeorm_1.Column)({ name: 'company', type: 'text' }),
|
|
244
244
|
__metadata("design:type", String)
|
|
245
245
|
], RawRoster.prototype, "company", void 0);
|
|
246
246
|
__decorate([
|
|
247
|
-
(0, typeorm_1.Column)({
|
|
247
|
+
(0, typeorm_1.Column)({ name: 'teams_username', type: 'text' }),
|
|
248
248
|
__metadata("design:type", String)
|
|
249
249
|
], RawRoster.prototype, "teamsUsername", void 0);
|
|
250
250
|
__decorate([
|
|
251
|
-
(0, typeorm_1.Column)({
|
|
251
|
+
(0, typeorm_1.Column)({ name: 'mimecast_id', type: 'text' }),
|
|
252
252
|
__metadata("design:type", String)
|
|
253
253
|
], RawRoster.prototype, "mimecastId", void 0);
|
|
254
254
|
__decorate([
|
|
255
|
-
(0, typeorm_1.Column)({
|
|
255
|
+
(0, typeorm_1.Column)({ name: 'revo_id', type: 'text' }),
|
|
256
256
|
__metadata("design:type", String)
|
|
257
257
|
], RawRoster.prototype, "revoId", void 0);
|
|
258
258
|
__decorate([
|
|
259
|
-
(0, typeorm_1.Column)({
|
|
259
|
+
(0, typeorm_1.Column)({ name: 'phoenix_id', type: 'text' }),
|
|
260
260
|
__metadata("design:type", String)
|
|
261
261
|
], RawRoster.prototype, "phoenixId", void 0);
|
|
262
262
|
__decorate([
|
|
263
|
-
(0, typeorm_1.Column)({
|
|
263
|
+
(0, typeorm_1.Column)({ name: 'five9_id', type: 'text' }),
|
|
264
264
|
__metadata("design:type", String)
|
|
265
265
|
], RawRoster.prototype, "five9Id", void 0);
|
|
266
266
|
__decorate([
|
|
267
|
-
(0, typeorm_1.Column)({
|
|
267
|
+
(0, typeorm_1.Column)({ name: 'community_wfm_id', type: 'text' }),
|
|
268
268
|
__metadata("design:type", String)
|
|
269
269
|
], RawRoster.prototype, "communityWfmId", void 0);
|
|
270
270
|
__decorate([
|
|
271
|
-
(0, typeorm_1.Column)({
|
|
271
|
+
(0, typeorm_1.Column)({ name: 'division', type: 'text' }),
|
|
272
272
|
__metadata("design:type", String)
|
|
273
273
|
], RawRoster.prototype, "division", void 0);
|
|
274
274
|
__decorate([
|
|
275
|
-
(0, typeorm_1.Column)({
|
|
275
|
+
(0, typeorm_1.Column)({ name: 'main_line', type: 'text' }),
|
|
276
276
|
__metadata("design:type", String)
|
|
277
277
|
], RawRoster.prototype, "mainLine", void 0);
|
|
278
278
|
__decorate([
|
|
279
|
-
(0, typeorm_1.Column)({
|
|
279
|
+
(0, typeorm_1.Column)({ name: 'lob', type: 'text' }),
|
|
280
280
|
__metadata("design:type", String)
|
|
281
281
|
], RawRoster.prototype, "lob", void 0);
|
|
282
282
|
__decorate([
|
|
283
|
-
(0, typeorm_1.Column)({
|
|
283
|
+
(0, typeorm_1.Column)({ name: 'employee_role', type: 'text' }),
|
|
284
284
|
__metadata("design:type", String)
|
|
285
285
|
], RawRoster.prototype, "employeeRole", void 0);
|
|
286
286
|
__decorate([
|
|
287
|
-
(0, typeorm_1.Column)({
|
|
287
|
+
(0, typeorm_1.Column)({ name: 'sector', type: 'text' }),
|
|
288
288
|
__metadata("design:type", String)
|
|
289
289
|
], RawRoster.prototype, "sector", void 0);
|
|
290
290
|
__decorate([
|
|
291
|
-
(0, typeorm_1.Column)({
|
|
291
|
+
(0, typeorm_1.Column)({ name: 'sprinklr_id', type: 'text' }),
|
|
292
292
|
__metadata("design:type", String)
|
|
293
293
|
], RawRoster.prototype, "sprinklrId", void 0);
|
|
294
294
|
__decorate([
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
export declare class VwUserRoster {
|
|
2
|
-
employeeId:
|
|
2
|
+
employeeId: number;
|
|
3
3
|
rowIndex: number;
|
|
4
4
|
internalId: number;
|
|
5
5
|
phoneLogin: string;
|
|
6
6
|
verintSkill: string;
|
|
7
|
-
firstLevelId:
|
|
7
|
+
firstLevelId: number;
|
|
8
8
|
firstLevelName: string;
|
|
9
|
-
secondLevelId:
|
|
9
|
+
secondLevelId: number;
|
|
10
10
|
secondLevelName: string;
|
|
11
|
-
thirdLevelId:
|
|
11
|
+
thirdLevelId: number;
|
|
12
12
|
thirdLevelName: string;
|
|
13
13
|
startDate: string;
|
|
14
14
|
endDate: string;
|
|
@@ -20,14 +20,14 @@ export declare class VwUserRoster {
|
|
|
20
20
|
productionDate: string;
|
|
21
21
|
gcicId: string;
|
|
22
22
|
ern: string;
|
|
23
|
-
trainerId:
|
|
23
|
+
trainerId: number;
|
|
24
24
|
trainerName: string;
|
|
25
25
|
trainingClass: string;
|
|
26
26
|
emailId: string;
|
|
27
27
|
smsId: string;
|
|
28
28
|
lmsId: string;
|
|
29
29
|
p1User: string;
|
|
30
|
-
qaId:
|
|
30
|
+
qaId: number;
|
|
31
31
|
qaName: string;
|
|
32
32
|
rowDate: string;
|
|
33
33
|
employeeStatus: string;
|
|
@@ -15,279 +15,279 @@ let VwUserRoster = class VwUserRoster {
|
|
|
15
15
|
};
|
|
16
16
|
exports.VwUserRoster = VwUserRoster;
|
|
17
17
|
__decorate([
|
|
18
|
-
(0, typeorm_1.PrimaryColumn)({
|
|
19
|
-
__metadata("design:type",
|
|
18
|
+
(0, typeorm_1.PrimaryColumn)({ name: 'employee_id' }),
|
|
19
|
+
__metadata("design:type", Number)
|
|
20
20
|
], VwUserRoster.prototype, "employeeId", void 0);
|
|
21
21
|
__decorate([
|
|
22
|
-
(0, typeorm_1.Column)({ type: 'integer' }),
|
|
22
|
+
(0, typeorm_1.Column)({ name: 'row_index', type: 'integer' }),
|
|
23
23
|
__metadata("design:type", Number)
|
|
24
24
|
], VwUserRoster.prototype, "rowIndex", void 0);
|
|
25
25
|
__decorate([
|
|
26
|
-
(0, typeorm_1.Column)({ type: 'integer' }),
|
|
26
|
+
(0, typeorm_1.Column)({ name: 'internal_id', type: 'integer' }),
|
|
27
27
|
__metadata("design:type", Number)
|
|
28
28
|
], VwUserRoster.prototype, "internalId", void 0);
|
|
29
29
|
__decorate([
|
|
30
|
-
(0, typeorm_1.Column)({
|
|
30
|
+
(0, typeorm_1.Column)({ name: 'phone_login', type: 'text' }),
|
|
31
31
|
__metadata("design:type", String)
|
|
32
32
|
], VwUserRoster.prototype, "phoneLogin", void 0);
|
|
33
33
|
__decorate([
|
|
34
|
-
(0, typeorm_1.Column)({
|
|
34
|
+
(0, typeorm_1.Column)({ name: 'verint_skill', type: 'text' }),
|
|
35
35
|
__metadata("design:type", String)
|
|
36
36
|
], VwUserRoster.prototype, "verintSkill", void 0);
|
|
37
37
|
__decorate([
|
|
38
|
-
(0, typeorm_1.Column)({
|
|
39
|
-
__metadata("design:type",
|
|
38
|
+
(0, typeorm_1.Column)({ name: 'first_level_id' }),
|
|
39
|
+
__metadata("design:type", Number)
|
|
40
40
|
], VwUserRoster.prototype, "firstLevelId", void 0);
|
|
41
41
|
__decorate([
|
|
42
|
-
(0, typeorm_1.Column)({
|
|
42
|
+
(0, typeorm_1.Column)({ name: 'first_level_name', type: 'text' }),
|
|
43
43
|
__metadata("design:type", String)
|
|
44
44
|
], VwUserRoster.prototype, "firstLevelName", void 0);
|
|
45
45
|
__decorate([
|
|
46
|
-
(0, typeorm_1.Column)({
|
|
47
|
-
__metadata("design:type",
|
|
46
|
+
(0, typeorm_1.Column)({ name: 'second_level_id' }),
|
|
47
|
+
__metadata("design:type", Number)
|
|
48
48
|
], VwUserRoster.prototype, "secondLevelId", void 0);
|
|
49
49
|
__decorate([
|
|
50
|
-
(0, typeorm_1.Column)({
|
|
50
|
+
(0, typeorm_1.Column)({ name: 'second_level_name', type: 'text' }),
|
|
51
51
|
__metadata("design:type", String)
|
|
52
52
|
], VwUserRoster.prototype, "secondLevelName", void 0);
|
|
53
53
|
__decorate([
|
|
54
|
-
(0, typeorm_1.Column)({
|
|
55
|
-
__metadata("design:type",
|
|
54
|
+
(0, typeorm_1.Column)({ name: 'third_level_id' }),
|
|
55
|
+
__metadata("design:type", Number)
|
|
56
56
|
], VwUserRoster.prototype, "thirdLevelId", void 0);
|
|
57
57
|
__decorate([
|
|
58
|
-
(0, typeorm_1.Column)({
|
|
58
|
+
(0, typeorm_1.Column)({ name: 'third_level_name', type: 'text' }),
|
|
59
59
|
__metadata("design:type", String)
|
|
60
60
|
], VwUserRoster.prototype, "thirdLevelName", void 0);
|
|
61
61
|
__decorate([
|
|
62
|
-
(0, typeorm_1.Column)({
|
|
62
|
+
(0, typeorm_1.Column)({ name: 'start_date', type: 'text' }),
|
|
63
63
|
__metadata("design:type", String)
|
|
64
64
|
], VwUserRoster.prototype, "startDate", void 0);
|
|
65
65
|
__decorate([
|
|
66
|
-
(0, typeorm_1.Column)({
|
|
66
|
+
(0, typeorm_1.Column)({ name: 'end_date', type: 'text' }),
|
|
67
67
|
__metadata("design:type", String)
|
|
68
68
|
], VwUserRoster.prototype, "endDate", void 0);
|
|
69
69
|
__decorate([
|
|
70
|
-
(0, typeorm_1.Column)({
|
|
70
|
+
(0, typeorm_1.Column)({ name: 'job_title', type: 'text' }),
|
|
71
71
|
__metadata("design:type", String)
|
|
72
72
|
], VwUserRoster.prototype, "jobTitle", void 0);
|
|
73
73
|
__decorate([
|
|
74
|
-
(0, typeorm_1.Column)({
|
|
74
|
+
(0, typeorm_1.Column)({ name: 'verint_username', type: 'text' }),
|
|
75
75
|
__metadata("design:type", String)
|
|
76
76
|
], VwUserRoster.prototype, "verintUsername", void 0);
|
|
77
77
|
__decorate([
|
|
78
|
-
(0, typeorm_1.Column)({
|
|
78
|
+
(0, typeorm_1.Column)({ name: 'td_user', type: 'text' }),
|
|
79
79
|
__metadata("design:type", String)
|
|
80
80
|
], VwUserRoster.prototype, "tdUser", void 0);
|
|
81
81
|
__decorate([
|
|
82
|
-
(0, typeorm_1.Column)({
|
|
82
|
+
(0, typeorm_1.Column)({ name: 'lms_client', type: 'text' }),
|
|
83
83
|
__metadata("design:type", String)
|
|
84
84
|
], VwUserRoster.prototype, "lmsClient", void 0);
|
|
85
85
|
__decorate([
|
|
86
|
-
(0, typeorm_1.Column)({
|
|
86
|
+
(0, typeorm_1.Column)({ name: 'lms_nt', type: 'text' }),
|
|
87
87
|
__metadata("design:type", String)
|
|
88
88
|
], VwUserRoster.prototype, "lmsNt", void 0);
|
|
89
89
|
__decorate([
|
|
90
|
-
(0, typeorm_1.Column)({
|
|
90
|
+
(0, typeorm_1.Column)({ name: 'production_date', type: 'text' }),
|
|
91
91
|
__metadata("design:type", String)
|
|
92
92
|
], VwUserRoster.prototype, "productionDate", void 0);
|
|
93
93
|
__decorate([
|
|
94
|
-
(0, typeorm_1.Column)({
|
|
94
|
+
(0, typeorm_1.Column)({ name: 'gcic_id', type: 'text' }),
|
|
95
95
|
__metadata("design:type", String)
|
|
96
96
|
], VwUserRoster.prototype, "gcicId", void 0);
|
|
97
97
|
__decorate([
|
|
98
|
-
(0, typeorm_1.Column)({
|
|
98
|
+
(0, typeorm_1.Column)({ name: 'ern', type: 'text' }),
|
|
99
99
|
__metadata("design:type", String)
|
|
100
100
|
], VwUserRoster.prototype, "ern", void 0);
|
|
101
101
|
__decorate([
|
|
102
|
-
(0, typeorm_1.Column)({
|
|
103
|
-
__metadata("design:type",
|
|
102
|
+
(0, typeorm_1.Column)({ name: 'trainer_id' }),
|
|
103
|
+
__metadata("design:type", Number)
|
|
104
104
|
], VwUserRoster.prototype, "trainerId", void 0);
|
|
105
105
|
__decorate([
|
|
106
|
-
(0, typeorm_1.Column)({
|
|
106
|
+
(0, typeorm_1.Column)({ name: 'trainer_name', type: 'text' }),
|
|
107
107
|
__metadata("design:type", String)
|
|
108
108
|
], VwUserRoster.prototype, "trainerName", void 0);
|
|
109
109
|
__decorate([
|
|
110
|
-
(0, typeorm_1.Column)({
|
|
110
|
+
(0, typeorm_1.Column)({ name: 'training_class', type: 'text' }),
|
|
111
111
|
__metadata("design:type", String)
|
|
112
112
|
], VwUserRoster.prototype, "trainingClass", void 0);
|
|
113
113
|
__decorate([
|
|
114
|
-
(0, typeorm_1.Column)({
|
|
114
|
+
(0, typeorm_1.Column)({ name: 'email_id', type: 'text' }),
|
|
115
115
|
__metadata("design:type", String)
|
|
116
116
|
], VwUserRoster.prototype, "emailId", void 0);
|
|
117
117
|
__decorate([
|
|
118
|
-
(0, typeorm_1.Column)({
|
|
118
|
+
(0, typeorm_1.Column)({ name: 'sms_id', type: 'text' }),
|
|
119
119
|
__metadata("design:type", String)
|
|
120
120
|
], VwUserRoster.prototype, "smsId", void 0);
|
|
121
121
|
__decorate([
|
|
122
|
-
(0, typeorm_1.Column)({
|
|
122
|
+
(0, typeorm_1.Column)({ name: 'lms_id', type: 'text' }),
|
|
123
123
|
__metadata("design:type", String)
|
|
124
124
|
], VwUserRoster.prototype, "lmsId", void 0);
|
|
125
125
|
__decorate([
|
|
126
|
-
(0, typeorm_1.Column)({
|
|
126
|
+
(0, typeorm_1.Column)({ name: 'p1_user', type: 'text' }),
|
|
127
127
|
__metadata("design:type", String)
|
|
128
128
|
], VwUserRoster.prototype, "p1User", void 0);
|
|
129
129
|
__decorate([
|
|
130
|
-
(0, typeorm_1.Column)({
|
|
131
|
-
__metadata("design:type",
|
|
130
|
+
(0, typeorm_1.Column)({ name: 'qa_id' }),
|
|
131
|
+
__metadata("design:type", Number)
|
|
132
132
|
], VwUserRoster.prototype, "qaId", void 0);
|
|
133
133
|
__decorate([
|
|
134
|
-
(0, typeorm_1.Column)({
|
|
134
|
+
(0, typeorm_1.Column)({ name: 'qa_name', type: 'text' }),
|
|
135
135
|
__metadata("design:type", String)
|
|
136
136
|
], VwUserRoster.prototype, "qaName", void 0);
|
|
137
137
|
__decorate([
|
|
138
|
-
(0, typeorm_1.Column)({
|
|
138
|
+
(0, typeorm_1.Column)({ name: 'row_date', type: 'text' }),
|
|
139
139
|
__metadata("design:type", String)
|
|
140
140
|
], VwUserRoster.prototype, "rowDate", void 0);
|
|
141
141
|
__decorate([
|
|
142
|
-
(0, typeorm_1.Column)({
|
|
142
|
+
(0, typeorm_1.Column)({ name: 'employee_status', type: 'text' }),
|
|
143
143
|
__metadata("design:type", String)
|
|
144
144
|
], VwUserRoster.prototype, "employeeStatus", void 0);
|
|
145
145
|
__decorate([
|
|
146
|
-
(0, typeorm_1.Column)({
|
|
146
|
+
(0, typeorm_1.Column)({ name: 'tapp_2', type: 'text' }),
|
|
147
147
|
__metadata("design:type", String)
|
|
148
148
|
], VwUserRoster.prototype, "tapp2", void 0);
|
|
149
149
|
__decorate([
|
|
150
|
-
(0, typeorm_1.Column)({
|
|
150
|
+
(0, typeorm_1.Column)({ name: 'tapp_11', type: 'text' }),
|
|
151
151
|
__metadata("design:type", String)
|
|
152
152
|
], VwUserRoster.prototype, "tapp11", void 0);
|
|
153
153
|
__decorate([
|
|
154
|
-
(0, typeorm_1.Column)({
|
|
154
|
+
(0, typeorm_1.Column)({ name: 'tapp_13', type: 'text' }),
|
|
155
155
|
__metadata("design:type", String)
|
|
156
156
|
], VwUserRoster.prototype, "tapp13", void 0);
|
|
157
157
|
__decorate([
|
|
158
|
-
(0, typeorm_1.Column)({
|
|
158
|
+
(0, typeorm_1.Column)({ name: 'score_id', type: 'text' }),
|
|
159
159
|
__metadata("design:type", String)
|
|
160
160
|
], VwUserRoster.prototype, "scoreId", void 0);
|
|
161
161
|
__decorate([
|
|
162
|
-
(0, typeorm_1.Column)({
|
|
162
|
+
(0, typeorm_1.Column)({ name: 'work_location', type: 'text' }),
|
|
163
163
|
__metadata("design:type", String)
|
|
164
164
|
], VwUserRoster.prototype, "workLocation", void 0);
|
|
165
165
|
__decorate([
|
|
166
|
-
(0, typeorm_1.Column)({
|
|
166
|
+
(0, typeorm_1.Column)({ name: 'last_date_on_site', type: 'text' }),
|
|
167
167
|
__metadata("design:type", String)
|
|
168
168
|
], VwUserRoster.prototype, "lastDateOnSite", void 0);
|
|
169
169
|
__decorate([
|
|
170
|
-
(0, typeorm_1.Column)({
|
|
170
|
+
(0, typeorm_1.Column)({ name: 'sun_in', type: 'text' }),
|
|
171
171
|
__metadata("design:type", String)
|
|
172
172
|
], VwUserRoster.prototype, "sunIn", void 0);
|
|
173
173
|
__decorate([
|
|
174
|
-
(0, typeorm_1.Column)({
|
|
174
|
+
(0, typeorm_1.Column)({ name: 'sun_out', type: 'text' }),
|
|
175
175
|
__metadata("design:type", String)
|
|
176
176
|
], VwUserRoster.prototype, "sunOut", void 0);
|
|
177
177
|
__decorate([
|
|
178
|
-
(0, typeorm_1.Column)({
|
|
178
|
+
(0, typeorm_1.Column)({ name: 'mon_in', type: 'text' }),
|
|
179
179
|
__metadata("design:type", String)
|
|
180
180
|
], VwUserRoster.prototype, "monIn", void 0);
|
|
181
181
|
__decorate([
|
|
182
|
-
(0, typeorm_1.Column)({
|
|
182
|
+
(0, typeorm_1.Column)({ name: 'mon_out', type: 'text' }),
|
|
183
183
|
__metadata("design:type", String)
|
|
184
184
|
], VwUserRoster.prototype, "monOut", void 0);
|
|
185
185
|
__decorate([
|
|
186
|
-
(0, typeorm_1.Column)({
|
|
186
|
+
(0, typeorm_1.Column)({ name: 'tue_in', type: 'text' }),
|
|
187
187
|
__metadata("design:type", String)
|
|
188
188
|
], VwUserRoster.prototype, "tueIn", void 0);
|
|
189
189
|
__decorate([
|
|
190
|
-
(0, typeorm_1.Column)({
|
|
190
|
+
(0, typeorm_1.Column)({ name: 'tue_out', type: 'text' }),
|
|
191
191
|
__metadata("design:type", String)
|
|
192
192
|
], VwUserRoster.prototype, "tueOut", void 0);
|
|
193
193
|
__decorate([
|
|
194
|
-
(0, typeorm_1.Column)({
|
|
194
|
+
(0, typeorm_1.Column)({ name: 'wed_in', type: 'text' }),
|
|
195
195
|
__metadata("design:type", String)
|
|
196
196
|
], VwUserRoster.prototype, "wedIn", void 0);
|
|
197
197
|
__decorate([
|
|
198
|
-
(0, typeorm_1.Column)({
|
|
198
|
+
(0, typeorm_1.Column)({ name: 'wed_out', type: 'text' }),
|
|
199
199
|
__metadata("design:type", String)
|
|
200
200
|
], VwUserRoster.prototype, "wedOut", void 0);
|
|
201
201
|
__decorate([
|
|
202
|
-
(0, typeorm_1.Column)({
|
|
202
|
+
(0, typeorm_1.Column)({ name: 'thu_in', type: 'text' }),
|
|
203
203
|
__metadata("design:type", String)
|
|
204
204
|
], VwUserRoster.prototype, "thuIn", void 0);
|
|
205
205
|
__decorate([
|
|
206
|
-
(0, typeorm_1.Column)({
|
|
206
|
+
(0, typeorm_1.Column)({ name: 'thu_out', type: 'text' }),
|
|
207
207
|
__metadata("design:type", String)
|
|
208
208
|
], VwUserRoster.prototype, "thuOut", void 0);
|
|
209
209
|
__decorate([
|
|
210
|
-
(0, typeorm_1.Column)({
|
|
210
|
+
(0, typeorm_1.Column)({ name: 'fri_in', type: 'text' }),
|
|
211
211
|
__metadata("design:type", String)
|
|
212
212
|
], VwUserRoster.prototype, "friIn", void 0);
|
|
213
213
|
__decorate([
|
|
214
|
-
(0, typeorm_1.Column)({
|
|
214
|
+
(0, typeorm_1.Column)({ name: 'fri_out', type: 'text' }),
|
|
215
215
|
__metadata("design:type", String)
|
|
216
216
|
], VwUserRoster.prototype, "friOut", void 0);
|
|
217
217
|
__decorate([
|
|
218
|
-
(0, typeorm_1.Column)({
|
|
218
|
+
(0, typeorm_1.Column)({ name: 'sat_in', type: 'text' }),
|
|
219
219
|
__metadata("design:type", String)
|
|
220
220
|
], VwUserRoster.prototype, "satIn", void 0);
|
|
221
221
|
__decorate([
|
|
222
|
-
(0, typeorm_1.Column)({
|
|
222
|
+
(0, typeorm_1.Column)({ name: 'sat_out', type: 'text' }),
|
|
223
223
|
__metadata("design:type", String)
|
|
224
224
|
], VwUserRoster.prototype, "satOut", void 0);
|
|
225
225
|
__decorate([
|
|
226
|
-
(0, typeorm_1.Column)({
|
|
226
|
+
(0, typeorm_1.Column)({ name: 'updated_by', type: 'text' }),
|
|
227
227
|
__metadata("design:type", String)
|
|
228
228
|
], VwUserRoster.prototype, "updatedBy", void 0);
|
|
229
229
|
__decorate([
|
|
230
|
-
(0, typeorm_1.Column)({
|
|
230
|
+
(0, typeorm_1.Column)({ name: 'updated_date', type: 'text' }),
|
|
231
231
|
__metadata("design:type", String)
|
|
232
232
|
], VwUserRoster.prototype, "updatedDate", void 0);
|
|
233
233
|
__decorate([
|
|
234
|
-
(0, typeorm_1.Column)({
|
|
234
|
+
(0, typeorm_1.Column)({ name: 'sch_effective_date', type: 'text' }),
|
|
235
235
|
__metadata("design:type", String)
|
|
236
236
|
], VwUserRoster.prototype, "schEffectiveDate", void 0);
|
|
237
237
|
__decorate([
|
|
238
|
-
(0, typeorm_1.Column)({
|
|
238
|
+
(0, typeorm_1.Column)({ name: 'full_name', type: 'text' }),
|
|
239
239
|
__metadata("design:type", String)
|
|
240
240
|
], VwUserRoster.prototype, "fullName", void 0);
|
|
241
241
|
__decorate([
|
|
242
|
-
(0, typeorm_1.Column)({
|
|
242
|
+
(0, typeorm_1.Column)({ name: 'company', type: 'text' }),
|
|
243
243
|
__metadata("design:type", String)
|
|
244
244
|
], VwUserRoster.prototype, "company", void 0);
|
|
245
245
|
__decorate([
|
|
246
|
-
(0, typeorm_1.Column)({
|
|
246
|
+
(0, typeorm_1.Column)({ name: 'teams_username', type: 'text' }),
|
|
247
247
|
__metadata("design:type", String)
|
|
248
248
|
], VwUserRoster.prototype, "teamsUsername", void 0);
|
|
249
249
|
__decorate([
|
|
250
|
-
(0, typeorm_1.Column)({
|
|
250
|
+
(0, typeorm_1.Column)({ name: 'mimecast_id', type: 'text' }),
|
|
251
251
|
__metadata("design:type", String)
|
|
252
252
|
], VwUserRoster.prototype, "mimecastId", void 0);
|
|
253
253
|
__decorate([
|
|
254
|
-
(0, typeorm_1.Column)({
|
|
254
|
+
(0, typeorm_1.Column)({ name: 'revo_id', type: 'text' }),
|
|
255
255
|
__metadata("design:type", String)
|
|
256
256
|
], VwUserRoster.prototype, "revoId", void 0);
|
|
257
257
|
__decorate([
|
|
258
|
-
(0, typeorm_1.Column)({
|
|
258
|
+
(0, typeorm_1.Column)({ name: 'phoenix_id', type: 'text' }),
|
|
259
259
|
__metadata("design:type", String)
|
|
260
260
|
], VwUserRoster.prototype, "phoenixId", void 0);
|
|
261
261
|
__decorate([
|
|
262
|
-
(0, typeorm_1.Column)({
|
|
262
|
+
(0, typeorm_1.Column)({ name: 'five9_id', type: 'text' }),
|
|
263
263
|
__metadata("design:type", String)
|
|
264
264
|
], VwUserRoster.prototype, "five9Id", void 0);
|
|
265
265
|
__decorate([
|
|
266
|
-
(0, typeorm_1.Column)({
|
|
266
|
+
(0, typeorm_1.Column)({ name: 'community_wfm_id', type: 'text' }),
|
|
267
267
|
__metadata("design:type", String)
|
|
268
268
|
], VwUserRoster.prototype, "communityWfmId", void 0);
|
|
269
269
|
__decorate([
|
|
270
|
-
(0, typeorm_1.Column)({
|
|
270
|
+
(0, typeorm_1.Column)({ name: 'division', type: 'text' }),
|
|
271
271
|
__metadata("design:type", String)
|
|
272
272
|
], VwUserRoster.prototype, "division", void 0);
|
|
273
273
|
__decorate([
|
|
274
|
-
(0, typeorm_1.Column)({
|
|
274
|
+
(0, typeorm_1.Column)({ name: 'main_line', type: 'text' }),
|
|
275
275
|
__metadata("design:type", String)
|
|
276
276
|
], VwUserRoster.prototype, "mainLine", void 0);
|
|
277
277
|
__decorate([
|
|
278
|
-
(0, typeorm_1.Column)({
|
|
278
|
+
(0, typeorm_1.Column)({ name: 'lob', type: 'text' }),
|
|
279
279
|
__metadata("design:type", String)
|
|
280
280
|
], VwUserRoster.prototype, "lob", void 0);
|
|
281
281
|
__decorate([
|
|
282
|
-
(0, typeorm_1.Column)({
|
|
282
|
+
(0, typeorm_1.Column)({ name: 'employee_role', type: 'text' }),
|
|
283
283
|
__metadata("design:type", String)
|
|
284
284
|
], VwUserRoster.prototype, "employeeRole", void 0);
|
|
285
285
|
__decorate([
|
|
286
|
-
(0, typeorm_1.Column)({
|
|
286
|
+
(0, typeorm_1.Column)({ name: 'sector', type: 'text' }),
|
|
287
287
|
__metadata("design:type", String)
|
|
288
288
|
], VwUserRoster.prototype, "sector", void 0);
|
|
289
289
|
__decorate([
|
|
290
|
-
(0, typeorm_1.Column)({
|
|
290
|
+
(0, typeorm_1.Column)({ name: 'sprinklr_id', type: 'text' }),
|
|
291
291
|
__metadata("design:type", String)
|
|
292
292
|
], VwUserRoster.prototype, "sprinklrId", void 0);
|
|
293
293
|
exports.VwUserRoster = VwUserRoster = __decorate([
|