@idsoftsource/initial-process 0.0.1
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/README.md +63 -0
- package/fesm2022/idsoftsource-initial-process.mjs +30048 -0
- package/fesm2022/idsoftsource-initial-process.mjs.map +1 -0
- package/index.d.ts +2557 -0
- package/package.json +25 -0
package/index.d.ts
ADDED
|
@@ -0,0 +1,2557 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { OnInit, ElementRef, EventEmitter, TemplateRef, Injector, OnChanges, AfterViewInit, ChangeDetectorRef, SimpleChanges, ViewContainerRef, OnDestroy, ComponentFactoryResolver, Renderer2, ModuleWithProviders, PipeTransform, NgZone } from '@angular/core';
|
|
3
|
+
import * as _angular_forms from '@angular/forms';
|
|
4
|
+
import { FormGroup, FormBuilder, FormControl, FormArray, UntypedFormGroup, UntypedFormBuilder, ControlValueAccessor, AbstractControl } from '@angular/forms';
|
|
5
|
+
import * as i16 from '@angular/router';
|
|
6
|
+
import { Router, ActivatedRoute, RouterOutlet } from '@angular/router';
|
|
7
|
+
import { Observable, Subscription } from 'rxjs';
|
|
8
|
+
import { BsModalRef, BsModalService } from 'ngx-bootstrap/modal';
|
|
9
|
+
import { TokenService, RoleContextService, RoleContextModel } from '@rangs/auth0-lib';
|
|
10
|
+
import { AuthService } from '@auth0/auth0-angular';
|
|
11
|
+
import { HttpClient } from '@angular/common/http';
|
|
12
|
+
import * as i2 from '@angular/common';
|
|
13
|
+
import { ViewportScroller } from '@angular/common';
|
|
14
|
+
import * as i18 from '@ng-select/ng-select';
|
|
15
|
+
import * as i23 from 'ngx-bootstrap/tooltip';
|
|
16
|
+
import * as i24 from 'ngx-bootstrap/tabs';
|
|
17
|
+
import * as i25 from 'ngx-bootstrap/accordion';
|
|
18
|
+
import * as i27 from '@angular/google-maps';
|
|
19
|
+
|
|
20
|
+
interface MasterModel {
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
interface ProviderAccoladeModel extends MasterModel {
|
|
24
|
+
providerId?: string;
|
|
25
|
+
accoladeId?: string;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
interface ProviderAffiliationModel extends MasterModel {
|
|
29
|
+
providerId?: string;
|
|
30
|
+
affiliationId?: string;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
interface LookupItem extends LookupItem1<string> {
|
|
34
|
+
}
|
|
35
|
+
interface LookupItem1<TValue> {
|
|
36
|
+
value: any;
|
|
37
|
+
text: string;
|
|
38
|
+
selected: boolean;
|
|
39
|
+
title?: string;
|
|
40
|
+
providerId?: string;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
declare enum SocialMediaType {
|
|
44
|
+
Facebook = 1,
|
|
45
|
+
Twitter = 2,
|
|
46
|
+
Instagram = 3,
|
|
47
|
+
LinkedIn = 4,
|
|
48
|
+
Pinterest = 5,
|
|
49
|
+
GooglePlus = 6,
|
|
50
|
+
WhatsApp = 7,
|
|
51
|
+
Telegram = 8,
|
|
52
|
+
Youtube = 9,
|
|
53
|
+
Yelp = 10,
|
|
54
|
+
Others = 11
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
interface ProviderSocialLinkModel extends MasterModel {
|
|
58
|
+
providerId?: string;
|
|
59
|
+
socialMediaType?: SocialMediaType;
|
|
60
|
+
link?: string;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
declare enum ProviderStatus {
|
|
64
|
+
Active = 1,
|
|
65
|
+
Inactive = 2,
|
|
66
|
+
Pending = 3,
|
|
67
|
+
Reject = 4
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
declare enum ProviderType {
|
|
71
|
+
ServiceProvider = 1,
|
|
72
|
+
InsuranceAgency = 2,
|
|
73
|
+
RealEstateAgency = 3,
|
|
74
|
+
Carrier = 4,
|
|
75
|
+
Contractor = 5,
|
|
76
|
+
Bank = 5
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
interface ProviderModel extends MasterModel {
|
|
80
|
+
providerType?: ProviderType;
|
|
81
|
+
providerName?: string;
|
|
82
|
+
providerBio?: string;
|
|
83
|
+
yearsInBusiness?: string;
|
|
84
|
+
address1?: string;
|
|
85
|
+
address2?: string;
|
|
86
|
+
xactnetAddress?: string;
|
|
87
|
+
city?: string;
|
|
88
|
+
state?: string;
|
|
89
|
+
zipcode?: string;
|
|
90
|
+
county?: string;
|
|
91
|
+
subDivision?: string;
|
|
92
|
+
country?: string;
|
|
93
|
+
latitude?: number | null;
|
|
94
|
+
longitude?: number | null;
|
|
95
|
+
mobileNumberCode?: string;
|
|
96
|
+
phone?: string;
|
|
97
|
+
phoneNumberCode?: string;
|
|
98
|
+
mobile?: string;
|
|
99
|
+
fax?: string;
|
|
100
|
+
emailId?: string;
|
|
101
|
+
website?: string;
|
|
102
|
+
registrationDate?: Date;
|
|
103
|
+
isPublic?: boolean;
|
|
104
|
+
logoId?: string;
|
|
105
|
+
status?: ProviderStatus;
|
|
106
|
+
comments?: string;
|
|
107
|
+
skipLicense?: boolean;
|
|
108
|
+
skipCertificate?: boolean;
|
|
109
|
+
skipInsurance?: boolean;
|
|
110
|
+
skipOtherCredential?: boolean;
|
|
111
|
+
isNationWideCoverage?: boolean;
|
|
112
|
+
skipProfileCompletionPopup?: boolean;
|
|
113
|
+
providerSocialLinks?: ProviderSocialLinkModel[];
|
|
114
|
+
providerAffiliations?: ProviderAffiliationModel[];
|
|
115
|
+
providerAccolades?: ProviderAccoladeModel[];
|
|
116
|
+
annualRevenue?: number;
|
|
117
|
+
contactPerson?: string;
|
|
118
|
+
headshotId?: string;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
interface ReadModel extends ReadModel1<string> {
|
|
122
|
+
}
|
|
123
|
+
interface ReadModel1<TKey> {
|
|
124
|
+
id?: TKey;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
interface CustomReadModel extends ReadModel {
|
|
128
|
+
createdByUserId?: string;
|
|
129
|
+
createdDateTime?: Date;
|
|
130
|
+
createdDateTimeDisplay?: string;
|
|
131
|
+
createdByBrowserName?: string;
|
|
132
|
+
createdByIP?: string;
|
|
133
|
+
modifiedByUserId?: string;
|
|
134
|
+
modifiedDateTime?: Date;
|
|
135
|
+
modifiedDateTimeDisplay?: string;
|
|
136
|
+
modifiedByBrowserName?: string;
|
|
137
|
+
modifiedByIP?: string;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
interface ContractorSubCategoryReadModel extends CustomReadModel {
|
|
141
|
+
contractorCategoryId?: string;
|
|
142
|
+
contractorCategory?: string;
|
|
143
|
+
name?: any;
|
|
144
|
+
id?: any;
|
|
145
|
+
description?: string;
|
|
146
|
+
isActive?: boolean;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
interface PrivacyAndTerms {
|
|
150
|
+
companyName?: string | null;
|
|
151
|
+
modifiedDate?: string | null;
|
|
152
|
+
phone?: string | null;
|
|
153
|
+
registeredin?: string | null;
|
|
154
|
+
contactEmail?: string | null;
|
|
155
|
+
privacyEmail?: string | null;
|
|
156
|
+
requestForm?: string | null;
|
|
157
|
+
privacyPolicyLink?: string | null;
|
|
158
|
+
termsOfSaleLink?: string | null;
|
|
159
|
+
copyrightPolicyLink?: string | null;
|
|
160
|
+
companyTrademarks?: string | null;
|
|
161
|
+
privacyPolicyUrl?: string | null;
|
|
162
|
+
address1?: string | null;
|
|
163
|
+
state?: string | null;
|
|
164
|
+
city?: string | null;
|
|
165
|
+
zipCode?: string | null;
|
|
166
|
+
country?: string | null;
|
|
167
|
+
email?: string | null;
|
|
168
|
+
websiteurl?: string | null;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
interface GridResult<TReadModel> {
|
|
172
|
+
data: TReadModel[];
|
|
173
|
+
count: number;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
interface GridifyQuery {
|
|
177
|
+
page?: number;
|
|
178
|
+
pageSize?: number;
|
|
179
|
+
orderBy?: string;
|
|
180
|
+
filter?: any;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
interface ValidationFailure {
|
|
184
|
+
memberName: string;
|
|
185
|
+
message: string;
|
|
186
|
+
}
|
|
187
|
+
interface Result {
|
|
188
|
+
failed: boolean;
|
|
189
|
+
message: string;
|
|
190
|
+
failures: ValidationFailure[];
|
|
191
|
+
}
|
|
192
|
+
interface Result1<T> extends Result {
|
|
193
|
+
value: T;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
interface UserDetailReadModel extends MasterModel {
|
|
197
|
+
userId: string;
|
|
198
|
+
fullName: string;
|
|
199
|
+
firstName: string;
|
|
200
|
+
lastName: string;
|
|
201
|
+
isDefault: boolean;
|
|
202
|
+
isActive: boolean;
|
|
203
|
+
email: string;
|
|
204
|
+
phoneNumber: string;
|
|
205
|
+
employeeType?: any;
|
|
206
|
+
id?: any;
|
|
207
|
+
officeNumber: string;
|
|
208
|
+
userBio: string;
|
|
209
|
+
address1: string;
|
|
210
|
+
address2: string;
|
|
211
|
+
city: string;
|
|
212
|
+
state: string;
|
|
213
|
+
zipcode: string;
|
|
214
|
+
county: string;
|
|
215
|
+
subDivision: string;
|
|
216
|
+
country: string;
|
|
217
|
+
latitude: number | null;
|
|
218
|
+
longitude: number | null;
|
|
219
|
+
dateOfBirth: string | null;
|
|
220
|
+
website: string;
|
|
221
|
+
isHire: boolean;
|
|
222
|
+
yearsActive?: number | null;
|
|
223
|
+
headshotFileId?: string | null;
|
|
224
|
+
initialFileId?: string | null;
|
|
225
|
+
initialUrl?: string | null;
|
|
226
|
+
headshotUrl?: string | null;
|
|
227
|
+
signatureFileId?: string | null;
|
|
228
|
+
signatureUrl?: string | null;
|
|
229
|
+
isInitialSetupCompleted?: boolean;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
interface UserAccountReadModel extends UserDetailReadModel {
|
|
233
|
+
providerId: string | null;
|
|
234
|
+
providerName: string;
|
|
235
|
+
roleId: string | null;
|
|
236
|
+
roleName: string;
|
|
237
|
+
emailConfirmed: boolean;
|
|
238
|
+
phoneNumberConfirmed: boolean;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
interface UserUpdateModel {
|
|
242
|
+
updateModel: {
|
|
243
|
+
id?: string;
|
|
244
|
+
firstName?: string;
|
|
245
|
+
lastName?: string;
|
|
246
|
+
email?: string;
|
|
247
|
+
phoneNumber: string;
|
|
248
|
+
officeNumber: string;
|
|
249
|
+
};
|
|
250
|
+
userDetailModel: {
|
|
251
|
+
id?: string;
|
|
252
|
+
userId?: string;
|
|
253
|
+
userBio?: string;
|
|
254
|
+
address1?: string;
|
|
255
|
+
address2?: string;
|
|
256
|
+
city?: string;
|
|
257
|
+
state?: string;
|
|
258
|
+
zipcode?: string;
|
|
259
|
+
county?: string;
|
|
260
|
+
subDivision?: string;
|
|
261
|
+
country?: string;
|
|
262
|
+
latitude: number;
|
|
263
|
+
longitude: number;
|
|
264
|
+
dateOfBirth?: string;
|
|
265
|
+
website?: string;
|
|
266
|
+
isHire?: boolean;
|
|
267
|
+
headshotFileId?: string;
|
|
268
|
+
headshotUrl?: string;
|
|
269
|
+
initialFileId?: string;
|
|
270
|
+
initialUrl?: string;
|
|
271
|
+
signatureFileId?: string;
|
|
272
|
+
signatureUrl?: string;
|
|
273
|
+
isInitialSetupCompleted?: boolean;
|
|
274
|
+
};
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
declare class UserDetailService {
|
|
278
|
+
private http;
|
|
279
|
+
private readonly baseUrl;
|
|
280
|
+
updateMyProfile(model: UserUpdateModel): Observable<Result>;
|
|
281
|
+
initialSetUpCreateUserDetail(model: any): Observable<Result>;
|
|
282
|
+
getUserAccounts(query: any): Observable<GridResult<UserAccountReadModel>>;
|
|
283
|
+
resetPassword(model: any): Observable<Result>;
|
|
284
|
+
private buildParams;
|
|
285
|
+
getByUserId(userId: string, query: any): Observable<UserAccountReadModel>;
|
|
286
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UserDetailService, never>;
|
|
287
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UserDetailService>;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
interface FileModel extends MasterModel {
|
|
291
|
+
fileName?: string;
|
|
292
|
+
filePath?: string;
|
|
293
|
+
fileSize?: number;
|
|
294
|
+
fileType?: string;
|
|
295
|
+
publicUrl?: string;
|
|
296
|
+
}
|
|
297
|
+
interface AwsFileRequestModel extends MasterModel {
|
|
298
|
+
fileName: string;
|
|
299
|
+
fileLocation: any;
|
|
300
|
+
fileSize: number;
|
|
301
|
+
fileType: string;
|
|
302
|
+
publicUrl: any;
|
|
303
|
+
encrypted: boolean;
|
|
304
|
+
deleteFileId?: string;
|
|
305
|
+
}
|
|
306
|
+
interface AwsFileResponseModel {
|
|
307
|
+
id: string;
|
|
308
|
+
publicUrl: string;
|
|
309
|
+
fileId: string;
|
|
310
|
+
fileUrl?: string;
|
|
311
|
+
fileName?: string;
|
|
312
|
+
}
|
|
313
|
+
interface UpdateAwsFileModelModel {
|
|
314
|
+
fileId: string;
|
|
315
|
+
isActive: boolean;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
declare enum FileSource {
|
|
319
|
+
UserHeadshot = 1001,
|
|
320
|
+
UserSignature = 1002,
|
|
321
|
+
UserInitial = 1003,
|
|
322
|
+
ProducerHeadshot = 1004,
|
|
323
|
+
ProviderLogo = 2001,
|
|
324
|
+
ProviderProfilePhoto = 2002,
|
|
325
|
+
UserLicense = 3001,
|
|
326
|
+
UserCertificate = 3002,
|
|
327
|
+
UserExperience = 3003,
|
|
328
|
+
UserInsurance = 3004,
|
|
329
|
+
UserEducation = 3005,
|
|
330
|
+
UserOtherCredential = 3006,
|
|
331
|
+
UserRequestedCredentials = 3007,
|
|
332
|
+
ProducerProfilePhoto = 3008,
|
|
333
|
+
ProgramLogo = 4002,
|
|
334
|
+
EventLogo = 4003,
|
|
335
|
+
ProviderLicense = 5001,
|
|
336
|
+
ProviderCertificate = 5002,
|
|
337
|
+
ProviderInsurance = 5003,
|
|
338
|
+
ProviderOtherCredential = 5004,
|
|
339
|
+
MessageAttachment = 6001,
|
|
340
|
+
DocumentBuilder = 7001,
|
|
341
|
+
ServiceTemplateFile = 7002,
|
|
342
|
+
ProducerInvitationExcelImport = 8001,
|
|
343
|
+
ProgramInvitationExcelImport = 8002,
|
|
344
|
+
AssignmentExcelImport = 8003,
|
|
345
|
+
UserExcelImport = 8004,
|
|
346
|
+
ServiceCategoryImage = 10000,
|
|
347
|
+
ServiceTypeImage = 10001,
|
|
348
|
+
IndustryLogo = 10003,
|
|
349
|
+
ServiceTypeAgreement = 10004,
|
|
350
|
+
ServiceTypeAgreementVideo = 10005,
|
|
351
|
+
ServiceTypeAgreementImage = 10006,
|
|
352
|
+
ServiceTypeAgreementAttachment = 10007,
|
|
353
|
+
ClientContactLogAttachment = 11000,
|
|
354
|
+
OrderAudit = 11001,
|
|
355
|
+
OrderReportPdf = 11002,
|
|
356
|
+
AgencyLogo = 12000,
|
|
357
|
+
CourseVideo = 13000,
|
|
358
|
+
CourseImage = 13001,
|
|
359
|
+
ProjectAsset = 14000,
|
|
360
|
+
Proposal = 15000,
|
|
361
|
+
ProposalContactLogAttachment = 15001,
|
|
362
|
+
RecruitmentApplication = 16000,
|
|
363
|
+
RecruitmentApplicationContactLogAttachment = 16001,
|
|
364
|
+
HomeInspection = 17000,
|
|
365
|
+
Accolade = 18000,
|
|
366
|
+
Affiliation = 18001,
|
|
367
|
+
ProgramApplication = 4004,
|
|
368
|
+
ProgramApplicationContactLogAttachment = 4005,
|
|
369
|
+
OrderSubmit = 11004,
|
|
370
|
+
OrderReimbursement = 11005,
|
|
371
|
+
Icon = 18002
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
interface FileUploadResultModel {
|
|
375
|
+
id?: string;
|
|
376
|
+
url?: string;
|
|
377
|
+
imageUrl?: string;
|
|
378
|
+
noOfPages?: number;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
declare class FileService {
|
|
382
|
+
private httpClient;
|
|
383
|
+
private readonly apiUrl?;
|
|
384
|
+
private baseUrl;
|
|
385
|
+
constructor(httpClient: HttpClient, apiUrl?: string | undefined);
|
|
386
|
+
uploadFile(file: File, deleteAndInsert?: boolean, fileId?: string, encrypted?: string): Observable<FileModel>;
|
|
387
|
+
uploadFileTemplate(sourceId: FileSource, deleteAndInsert: boolean, file: File, fileId?: string): Observable<Result1<FileUploadResultModel>>;
|
|
388
|
+
deleteFiles(deletedFiles: string): Observable<boolean>;
|
|
389
|
+
download(id: string): Observable<{
|
|
390
|
+
file: Blob;
|
|
391
|
+
filename: string;
|
|
392
|
+
}>;
|
|
393
|
+
awsFileUpload(fileData: AwsFileRequestModel[]): Observable<AwsFileResponseModel[]>;
|
|
394
|
+
updateAwsFileUpload(fileData: UpdateAwsFileModelModel[]): Observable<Result1<string>>;
|
|
395
|
+
uploadImageAsync(file: File, data: {
|
|
396
|
+
key: string;
|
|
397
|
+
contentType: string;
|
|
398
|
+
Expires: number;
|
|
399
|
+
}): Promise<{
|
|
400
|
+
success: boolean;
|
|
401
|
+
message: string;
|
|
402
|
+
publicUrl: string | null;
|
|
403
|
+
}>;
|
|
404
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FileService, [null, { optional: true; }]>;
|
|
405
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FileService>;
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
interface UserDetailModel extends MasterModel {
|
|
409
|
+
userId?: string;
|
|
410
|
+
userBio?: string;
|
|
411
|
+
address1?: any;
|
|
412
|
+
address2?: any;
|
|
413
|
+
city?: any;
|
|
414
|
+
state?: any;
|
|
415
|
+
zipcode?: any;
|
|
416
|
+
county?: any;
|
|
417
|
+
subDivision?: string;
|
|
418
|
+
country?: any;
|
|
419
|
+
latitude?: number;
|
|
420
|
+
longitude?: number;
|
|
421
|
+
website?: string;
|
|
422
|
+
xactnetAddress?: string;
|
|
423
|
+
dateOfBirth?: Date;
|
|
424
|
+
isInitialSetupCompleted?: boolean;
|
|
425
|
+
id?: any;
|
|
426
|
+
isInitialSetupSkip?: boolean;
|
|
427
|
+
isBusiness?: boolean;
|
|
428
|
+
isBusinessCreated?: boolean;
|
|
429
|
+
acceptingAssignments?: boolean;
|
|
430
|
+
yearsActive?: number;
|
|
431
|
+
isHire?: boolean;
|
|
432
|
+
isPublic?: boolean;
|
|
433
|
+
headshotFileId?: string;
|
|
434
|
+
initialFileId?: string;
|
|
435
|
+
signatureFileId?: string;
|
|
436
|
+
designationStatus?: Object;
|
|
437
|
+
skipWorkHistory?: boolean;
|
|
438
|
+
skipEducationHistory?: boolean;
|
|
439
|
+
skipLicense?: boolean;
|
|
440
|
+
skipCertificate?: boolean;
|
|
441
|
+
skipInsurance?: boolean;
|
|
442
|
+
skipOtherCredential?: boolean;
|
|
443
|
+
skipProfileCompletionPopup?: boolean;
|
|
444
|
+
displayView?: string;
|
|
445
|
+
assignmentDisplayView?: string;
|
|
446
|
+
firstName?: any;
|
|
447
|
+
lastName?: any;
|
|
448
|
+
email: any;
|
|
449
|
+
headshotUrl?: string;
|
|
450
|
+
signatureUrl?: string;
|
|
451
|
+
middleName?: any;
|
|
452
|
+
businessName?: any;
|
|
453
|
+
phoneNumber?: any;
|
|
454
|
+
timeZone?: string;
|
|
455
|
+
datePattern?: string;
|
|
456
|
+
dateTimePattern?: string;
|
|
457
|
+
timePattern?: string;
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
interface IBasicPoint {
|
|
461
|
+
x: number;
|
|
462
|
+
y: number;
|
|
463
|
+
time: number;
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
declare global {
|
|
467
|
+
interface Window {
|
|
468
|
+
PointerEvent: typeof PointerEvent;
|
|
469
|
+
}
|
|
470
|
+
}
|
|
471
|
+
interface IOptions {
|
|
472
|
+
dotSize?: number | (() => number);
|
|
473
|
+
minWidth?: number;
|
|
474
|
+
maxWidth?: number;
|
|
475
|
+
minDistance?: number;
|
|
476
|
+
backgroundColor?: string;
|
|
477
|
+
penColor?: string;
|
|
478
|
+
throttle?: number;
|
|
479
|
+
velocityFilterWeight?: number;
|
|
480
|
+
onBegin?: (event: MouseEvent | Touch) => void;
|
|
481
|
+
onEnd?: (event: MouseEvent | Touch) => void;
|
|
482
|
+
}
|
|
483
|
+
interface IPointGroup {
|
|
484
|
+
color: string;
|
|
485
|
+
points: IBasicPoint[];
|
|
486
|
+
}
|
|
487
|
+
declare class SignaturePad {
|
|
488
|
+
private canvas;
|
|
489
|
+
private options;
|
|
490
|
+
dotSize: number | (() => number);
|
|
491
|
+
minWidth: number;
|
|
492
|
+
maxWidth: number;
|
|
493
|
+
minDistance: number;
|
|
494
|
+
backgroundColor: string;
|
|
495
|
+
penColor: string;
|
|
496
|
+
throttle: number;
|
|
497
|
+
velocityFilterWeight: number;
|
|
498
|
+
onBegin?: (event: MouseEvent | Touch) => void;
|
|
499
|
+
onEnd?: (event: MouseEvent | Touch) => void;
|
|
500
|
+
private _ctx;
|
|
501
|
+
private _mouseButtonDown;
|
|
502
|
+
private _isEmpty;
|
|
503
|
+
private _lastPoints;
|
|
504
|
+
private _data;
|
|
505
|
+
private _lastVelocity;
|
|
506
|
+
private _lastWidth;
|
|
507
|
+
private _strokeMoveUpdate;
|
|
508
|
+
constructor(canvas: HTMLCanvasElement, options?: IOptions);
|
|
509
|
+
clear(): void;
|
|
510
|
+
fromDataURL(dataUrl: string, options?: {
|
|
511
|
+
ratio?: number;
|
|
512
|
+
width?: number;
|
|
513
|
+
height?: number;
|
|
514
|
+
}, callback?: (error?: ErrorEvent) => void): void;
|
|
515
|
+
toDataURL(type?: string, encoderOptions?: number): string;
|
|
516
|
+
on(): void;
|
|
517
|
+
off(): void;
|
|
518
|
+
isEmpty(): boolean;
|
|
519
|
+
fromData(pointGroups: IPointGroup[]): void;
|
|
520
|
+
toData(): IPointGroup[];
|
|
521
|
+
private _handleMouseDown;
|
|
522
|
+
private _handleMouseMove;
|
|
523
|
+
private _handleMouseUp;
|
|
524
|
+
private _handleTouchStart;
|
|
525
|
+
private _handleTouchMove;
|
|
526
|
+
private _handleTouchEnd;
|
|
527
|
+
private _strokeBegin;
|
|
528
|
+
private _strokeUpdate;
|
|
529
|
+
private _strokeEnd;
|
|
530
|
+
private _handlePointerEvents;
|
|
531
|
+
private _handleMouseEvents;
|
|
532
|
+
private _handleTouchEvents;
|
|
533
|
+
private _reset;
|
|
534
|
+
private _createPoint;
|
|
535
|
+
private _addPoint;
|
|
536
|
+
private _calculateCurveWidths;
|
|
537
|
+
private _strokeWidth;
|
|
538
|
+
private _drawCurveSegment;
|
|
539
|
+
private _drawCurve;
|
|
540
|
+
private _drawDot;
|
|
541
|
+
private _fromData;
|
|
542
|
+
private _toSVG;
|
|
543
|
+
}
|
|
544
|
+
|
|
545
|
+
declare class ProvidersService {
|
|
546
|
+
private http;
|
|
547
|
+
private baseUrl;
|
|
548
|
+
constructor(http: HttpClient);
|
|
549
|
+
private generateParams;
|
|
550
|
+
private generateGridParams;
|
|
551
|
+
getProducerDocumentCounts(query: any): Observable<GridResult<any>>;
|
|
552
|
+
getProviders(): Observable<any[]>;
|
|
553
|
+
getProviderDetails(query: any): Observable<GridResult<any>>;
|
|
554
|
+
getProviderNames(query: any): Observable<any[]>;
|
|
555
|
+
getProviderName(providerId?: string): Observable<LookupItem[]>;
|
|
556
|
+
getVendorBasedServiceProviders(query: any): Observable<any[]>;
|
|
557
|
+
getProviderVendorAndUpdate(query: any): Observable<any[]>;
|
|
558
|
+
getDashboardCount(query: any): Observable<any>;
|
|
559
|
+
getContractors(query: any): Observable<GridResult<any>>;
|
|
560
|
+
getGlobalProviderNames(query: any): Observable<any[]>;
|
|
561
|
+
getUserDetail(query: any): Observable<GridResult<UserDetailReadModel>>;
|
|
562
|
+
adminCreateProvider(model: any): Observable<Result>;
|
|
563
|
+
changeStatus(model: any): Observable<Result>;
|
|
564
|
+
saveProviderVendor(model: any): Observable<Result>;
|
|
565
|
+
getProviderVendor(model: any): Observable<any>;
|
|
566
|
+
getProducerWithFee(model: any): Observable<Result1<any>>;
|
|
567
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProvidersService, never>;
|
|
568
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ProvidersService>;
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
declare enum UserProviderMappingStatus {
|
|
572
|
+
Active = 1,
|
|
573
|
+
Inactive = 2,
|
|
574
|
+
Remove = 3
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
interface UserRoleReadModel extends ReadModel {
|
|
578
|
+
providerId?: string;
|
|
579
|
+
providerName?: string;
|
|
580
|
+
isAdmin?: boolean;
|
|
581
|
+
providerLogo?: string;
|
|
582
|
+
userProviderMappingStatus?: UserProviderMappingStatus;
|
|
583
|
+
userId?: string;
|
|
584
|
+
userName?: string;
|
|
585
|
+
userEmail?: string;
|
|
586
|
+
userPhone?: string;
|
|
587
|
+
userHeadShot?: string;
|
|
588
|
+
roleId?: string;
|
|
589
|
+
roleName?: string;
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
interface CacheUserClaimModel {
|
|
593
|
+
roleId?: string;
|
|
594
|
+
claimType?: string;
|
|
595
|
+
claimValue?: string;
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
declare class RolesService {
|
|
599
|
+
private httpClient;
|
|
600
|
+
private baseUrl;
|
|
601
|
+
constructor(httpClient: HttpClient);
|
|
602
|
+
private buildParams;
|
|
603
|
+
getUserRoles(query: any): Observable<UserRoleReadModel[]>;
|
|
604
|
+
getUserPermission(query: any): Observable<CacheUserClaimModel>;
|
|
605
|
+
setRoleContext(query: any): Observable<string[]>;
|
|
606
|
+
assignRole(model: any): Observable<Result>;
|
|
607
|
+
assignProviderRole(model: any): Observable<Result>;
|
|
608
|
+
updateRole(model: any): Observable<Result>;
|
|
609
|
+
getRoles(query: any): Observable<GridResult<any>>;
|
|
610
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RolesService, never>;
|
|
611
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<RolesService>;
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
interface ProviderContractorSubCategoryReadModel extends CustomReadModel {
|
|
615
|
+
providerId?: string;
|
|
616
|
+
contractorSubCategoryId?: string;
|
|
617
|
+
contractorCategoryName?: string;
|
|
618
|
+
contractorCategory?: any;
|
|
619
|
+
contractorSubCategoryName?: string;
|
|
620
|
+
contractorCategoryId?: any;
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
declare class ProviderContractorSubCategoryService {
|
|
624
|
+
private baseUrl;
|
|
625
|
+
private http;
|
|
626
|
+
private buildParams;
|
|
627
|
+
getContractorSubCategories(query: any): Observable<GridResult<ProviderContractorSubCategoryReadModel>>;
|
|
628
|
+
getUserAccounts(query: any): Observable<GridResult<UserAccountReadModel>>;
|
|
629
|
+
bulkDelete(ids: any[]): Observable<Result>;
|
|
630
|
+
bulkInsert(models: any[]): Observable<Result>;
|
|
631
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProviderContractorSubCategoryService, never>;
|
|
632
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ProviderContractorSubCategoryService>;
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
interface AppBranding {
|
|
636
|
+
logo: string;
|
|
637
|
+
displayName: string;
|
|
638
|
+
}
|
|
639
|
+
declare class InitialProcessComponent implements OnInit {
|
|
640
|
+
private router;
|
|
641
|
+
private userDetailService;
|
|
642
|
+
private formBuilder;
|
|
643
|
+
private fileService;
|
|
644
|
+
private providerService;
|
|
645
|
+
private roleService;
|
|
646
|
+
private modalService;
|
|
647
|
+
private contractorSubCategoryService;
|
|
648
|
+
private providerContractorSubCategoryService;
|
|
649
|
+
private authService;
|
|
650
|
+
private tokenService;
|
|
651
|
+
private route;
|
|
652
|
+
private roleContextService;
|
|
653
|
+
private readonly uploadToAws;
|
|
654
|
+
selectedRoleValue: string | null;
|
|
655
|
+
selectedRole: any;
|
|
656
|
+
isUserSelected: boolean;
|
|
657
|
+
title: string;
|
|
658
|
+
state: any;
|
|
659
|
+
branding: {
|
|
660
|
+
logo: string;
|
|
661
|
+
displayName: string;
|
|
662
|
+
};
|
|
663
|
+
credentialingData: any;
|
|
664
|
+
modalRef?: BsModalRef;
|
|
665
|
+
DefaultButtonSpinnerConfig: {
|
|
666
|
+
spinnerColor: string;
|
|
667
|
+
spinnerSize: string;
|
|
668
|
+
buttonText: string;
|
|
669
|
+
};
|
|
670
|
+
view: number;
|
|
671
|
+
validatePage: number;
|
|
672
|
+
isBusiness: boolean;
|
|
673
|
+
isImageRequired: boolean;
|
|
674
|
+
user: any;
|
|
675
|
+
assignProviderRoleModel: any;
|
|
676
|
+
provider: ProviderModel;
|
|
677
|
+
userId: any;
|
|
678
|
+
fileName: string;
|
|
679
|
+
model: {
|
|
680
|
+
acceptTerms: boolean;
|
|
681
|
+
privacy: boolean;
|
|
682
|
+
};
|
|
683
|
+
showContent: boolean;
|
|
684
|
+
showLoader: boolean;
|
|
685
|
+
isShowDelete: boolean;
|
|
686
|
+
path: string;
|
|
687
|
+
isCopy: boolean;
|
|
688
|
+
rolesApiCall: Subscription;
|
|
689
|
+
roles: any;
|
|
690
|
+
canvasRef: ElementRef;
|
|
691
|
+
signaturePad: SignaturePad;
|
|
692
|
+
signaturePadData: {
|
|
693
|
+
publicUrl: null;
|
|
694
|
+
};
|
|
695
|
+
points: never[];
|
|
696
|
+
pointsChange: EventEmitter<string>;
|
|
697
|
+
cleared: EventEmitter<any>;
|
|
698
|
+
companyForm: FormGroup;
|
|
699
|
+
userForm: FormGroup;
|
|
700
|
+
fileData: any;
|
|
701
|
+
fileDataUser: File;
|
|
702
|
+
zipcodeMask: RegExp[];
|
|
703
|
+
options: {
|
|
704
|
+
componentRestrictions: {
|
|
705
|
+
country: string[];
|
|
706
|
+
};
|
|
707
|
+
};
|
|
708
|
+
appType: any;
|
|
709
|
+
users: LookupItem;
|
|
710
|
+
providerError: any;
|
|
711
|
+
userError: any;
|
|
712
|
+
providerRoleId: any;
|
|
713
|
+
termsAndConditionTitle: string;
|
|
714
|
+
showTermsAndConditions: boolean;
|
|
715
|
+
termsAndConditions: string[];
|
|
716
|
+
isTermsAccept: boolean;
|
|
717
|
+
isPrivacyAccept: boolean;
|
|
718
|
+
skipRole: boolean;
|
|
719
|
+
modelRef: BsModalRef;
|
|
720
|
+
userRoles: any;
|
|
721
|
+
cloudfront: any;
|
|
722
|
+
private destroy$;
|
|
723
|
+
currentUserRoles: any;
|
|
724
|
+
userViewRoles: ({
|
|
725
|
+
name: string;
|
|
726
|
+
value: string;
|
|
727
|
+
img: string;
|
|
728
|
+
selected: boolean;
|
|
729
|
+
code: null;
|
|
730
|
+
id: string;
|
|
731
|
+
roleId: string;
|
|
732
|
+
} | {
|
|
733
|
+
name: string;
|
|
734
|
+
value: string;
|
|
735
|
+
img: string;
|
|
736
|
+
selected: boolean;
|
|
737
|
+
code: ProviderType;
|
|
738
|
+
id: string;
|
|
739
|
+
roleId: string;
|
|
740
|
+
})[];
|
|
741
|
+
onCredentialingBack(): void;
|
|
742
|
+
selectedUserRole(role: any): void;
|
|
743
|
+
privacyAndTerms: PrivacyAndTerms;
|
|
744
|
+
setPrivacyAndTerms(appType: string): void;
|
|
745
|
+
private getDefaultPrivacy;
|
|
746
|
+
setRoleContext(roleId: any, name: any): void;
|
|
747
|
+
selectedContractorCategories: string[];
|
|
748
|
+
selectedContractorSubCategories: {
|
|
749
|
+
name: string;
|
|
750
|
+
id: string;
|
|
751
|
+
selected: boolean;
|
|
752
|
+
selectAll: boolean;
|
|
753
|
+
items: ContractorSubCategoryReadModel[];
|
|
754
|
+
}[];
|
|
755
|
+
contractorSubCategories: {
|
|
756
|
+
name: any;
|
|
757
|
+
id: any;
|
|
758
|
+
selected: boolean;
|
|
759
|
+
selectAll: boolean;
|
|
760
|
+
items: ContractorSubCategoryReadModel[];
|
|
761
|
+
}[];
|
|
762
|
+
contractorCategories: ContractorSubCategoryReadModel[];
|
|
763
|
+
appBrandingMap: Record<string, AppBranding>;
|
|
764
|
+
constructor(router: Router, userDetailService: UserDetailService, formBuilder: FormBuilder, fileService: FileService, providerService: ProvidersService, roleService: RolesService, modalService: BsModalService, contractorSubCategoryService: ProviderContractorSubCategoryService, providerContractorSubCategoryService: ProviderContractorSubCategoryService, authService: AuthService, tokenService: TokenService, route: ActivatedRoute, roleContextService: RoleContextService);
|
|
765
|
+
selectedContract: any;
|
|
766
|
+
changeContractor(event?: any[]): void;
|
|
767
|
+
selectAll(event: any, items: any[]): void;
|
|
768
|
+
unCheckedEvent(event: any, items: any): void;
|
|
769
|
+
findCategory(contractorCategories: any): boolean;
|
|
770
|
+
getUserRoles(): void;
|
|
771
|
+
ngOnInit(): Promise<void>;
|
|
772
|
+
getUser(): Promise<void>;
|
|
773
|
+
get f(): {
|
|
774
|
+
[key: string]: _angular_forms.AbstractControl<any, any, any>;
|
|
775
|
+
};
|
|
776
|
+
get u(): {
|
|
777
|
+
[key: string]: _angular_forms.AbstractControl<any, any, any>;
|
|
778
|
+
};
|
|
779
|
+
ngAfterViewInit(): void;
|
|
780
|
+
clearPad(): void;
|
|
781
|
+
private applyPoints;
|
|
782
|
+
private emitPoints;
|
|
783
|
+
uploadSignImage(event: any): void;
|
|
784
|
+
uploadUserImage(event: any): void;
|
|
785
|
+
AddressChange(address: any): void;
|
|
786
|
+
AddressChangeUser(address: any): void;
|
|
787
|
+
previous(): void;
|
|
788
|
+
next(page?: number): void;
|
|
789
|
+
private dataURLtoFile;
|
|
790
|
+
uploadFileBrowseHandler(): void;
|
|
791
|
+
saveAWSHeadShot(): Promise<void>;
|
|
792
|
+
saveAWSSignature(): Promise<void>;
|
|
793
|
+
saveSignature(): void;
|
|
794
|
+
private saveInitial;
|
|
795
|
+
bindProviderDetails(): {
|
|
796
|
+
userId: any;
|
|
797
|
+
userName: string;
|
|
798
|
+
providerType: ProviderType;
|
|
799
|
+
providerName: any;
|
|
800
|
+
address1: any;
|
|
801
|
+
address2: any;
|
|
802
|
+
city: any;
|
|
803
|
+
state: any;
|
|
804
|
+
zipcode: any;
|
|
805
|
+
county: any;
|
|
806
|
+
subDivision: any;
|
|
807
|
+
country: any;
|
|
808
|
+
latitude: any;
|
|
809
|
+
longitude: any;
|
|
810
|
+
phoneNumber: any;
|
|
811
|
+
userAddress1: any;
|
|
812
|
+
userAddress2: any;
|
|
813
|
+
userCity: any;
|
|
814
|
+
userState: any;
|
|
815
|
+
userZipcode: any;
|
|
816
|
+
userCounty: any;
|
|
817
|
+
userCountry: any;
|
|
818
|
+
headshotUrl: any;
|
|
819
|
+
userMobile: any;
|
|
820
|
+
userEmailId: any;
|
|
821
|
+
};
|
|
822
|
+
isProviderCall: boolean;
|
|
823
|
+
isResponse: boolean;
|
|
824
|
+
saveBusiness(): void;
|
|
825
|
+
getRoles(): void;
|
|
826
|
+
formatDateTime(date: Date): {
|
|
827
|
+
mmddyyyy: string;
|
|
828
|
+
mmddyyyyhhmmtt: string;
|
|
829
|
+
hhmmtt: string;
|
|
830
|
+
};
|
|
831
|
+
bindUserDetails(): UserDetailModel;
|
|
832
|
+
saveFinal(): void;
|
|
833
|
+
dashboard(): void;
|
|
834
|
+
changeAddressUser(): void;
|
|
835
|
+
openModal(template: TemplateRef<any>, title: string, event: any): void;
|
|
836
|
+
agree(title: string): void;
|
|
837
|
+
decline(title: string): void;
|
|
838
|
+
logout(): Promise<void>;
|
|
839
|
+
getContractorSubCategories(): void;
|
|
840
|
+
saveContractorSubCategory(id: any): void;
|
|
841
|
+
ngOnDestroy(): void;
|
|
842
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InitialProcessComponent, never>;
|
|
843
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InitialProcessComponent, "app-initial-process", never, {}, {}, never, never, false, never>;
|
|
844
|
+
}
|
|
845
|
+
|
|
846
|
+
declare class TermsConditionsComponent {
|
|
847
|
+
title: string;
|
|
848
|
+
branding: {
|
|
849
|
+
logo: string;
|
|
850
|
+
displayName: string;
|
|
851
|
+
};
|
|
852
|
+
PrivacyAndTerms: PrivacyAndTerms;
|
|
853
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TermsConditionsComponent, never>;
|
|
854
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TermsConditionsComponent, "app-terms-conditions", never, { "title": { "alias": "title"; "required": false; }; "branding": { "alias": "branding"; "required": false; }; "PrivacyAndTerms": { "alias": "PrivacyAndTerms"; "required": false; }; }, {}, never, never, false, never>;
|
|
855
|
+
}
|
|
856
|
+
|
|
857
|
+
declare class PrivacyPolicyComponent {
|
|
858
|
+
title: string;
|
|
859
|
+
branding: {
|
|
860
|
+
logo?: string;
|
|
861
|
+
displayName?: string;
|
|
862
|
+
};
|
|
863
|
+
PrivacyAndTerms: PrivacyAndTerms;
|
|
864
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PrivacyPolicyComponent, never>;
|
|
865
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PrivacyPolicyComponent, "app-privacy-policy", never, { "title": { "alias": "title"; "required": false; }; "branding": { "alias": "branding"; "required": false; }; "PrivacyAndTerms": { "alias": "PrivacyAndTerms"; "required": false; }; }, {}, never, never, false, never>;
|
|
866
|
+
}
|
|
867
|
+
|
|
868
|
+
declare enum ForUser {
|
|
869
|
+
ForProvider = 1,
|
|
870
|
+
ForProducer = 2
|
|
871
|
+
}
|
|
872
|
+
|
|
873
|
+
declare enum RequestedStatus {
|
|
874
|
+
Requested = 1,
|
|
875
|
+
InReview = 2,
|
|
876
|
+
Rejected = 3,
|
|
877
|
+
Resubmitted = 4,
|
|
878
|
+
Approved = 5,
|
|
879
|
+
Canceled = 6
|
|
880
|
+
}
|
|
881
|
+
|
|
882
|
+
interface UserSkillSetModel extends MasterModel {
|
|
883
|
+
forUser: ForUser;
|
|
884
|
+
id?: any;
|
|
885
|
+
providerId?: string;
|
|
886
|
+
providerName?: string;
|
|
887
|
+
userId?: string;
|
|
888
|
+
userName?: string;
|
|
889
|
+
emailId?: string;
|
|
890
|
+
phoneNumber?: string;
|
|
891
|
+
userHeadShotUrl?: string;
|
|
892
|
+
skillSetId?: string;
|
|
893
|
+
skillSetName?: string;
|
|
894
|
+
notes?: string;
|
|
895
|
+
dueDate?: string;
|
|
896
|
+
starRating?: number;
|
|
897
|
+
year?: number;
|
|
898
|
+
profileVisibility?: boolean;
|
|
899
|
+
reviewNotes?: string;
|
|
900
|
+
status?: RequestedStatus;
|
|
901
|
+
rejectionCategory?: string;
|
|
902
|
+
isActive?: boolean;
|
|
903
|
+
isOpen?: boolean;
|
|
904
|
+
}
|
|
905
|
+
|
|
906
|
+
interface UserToolModel extends MasterModel {
|
|
907
|
+
showOption?: boolean;
|
|
908
|
+
forUser: ForUser;
|
|
909
|
+
providerId?: string;
|
|
910
|
+
providerName?: string;
|
|
911
|
+
userId?: string;
|
|
912
|
+
userName?: string;
|
|
913
|
+
id?: any;
|
|
914
|
+
toolName?: string;
|
|
915
|
+
emailId?: string;
|
|
916
|
+
phoneNumber?: string;
|
|
917
|
+
userHeadShotUrl?: string;
|
|
918
|
+
toolId?: string;
|
|
919
|
+
starRating?: number;
|
|
920
|
+
year?: number;
|
|
921
|
+
make?: string;
|
|
922
|
+
model?: string;
|
|
923
|
+
serialNumber?: string;
|
|
924
|
+
reviewBy?: string;
|
|
925
|
+
reviewByName?: string;
|
|
926
|
+
status?: RequestedStatus;
|
|
927
|
+
reviewDateTime?: string;
|
|
928
|
+
reviewComments?: string;
|
|
929
|
+
profileVisibility?: boolean;
|
|
930
|
+
notes?: string;
|
|
931
|
+
rejectionCategory?: string;
|
|
932
|
+
isActive?: boolean;
|
|
933
|
+
isOpen?: boolean;
|
|
934
|
+
}
|
|
935
|
+
|
|
936
|
+
interface Certification$2 {
|
|
937
|
+
name: string;
|
|
938
|
+
type: string;
|
|
939
|
+
issuedBy: string;
|
|
940
|
+
issueDate: string;
|
|
941
|
+
expiryDate: string;
|
|
942
|
+
city: string;
|
|
943
|
+
state: string;
|
|
944
|
+
description: string;
|
|
945
|
+
}
|
|
946
|
+
interface License {
|
|
947
|
+
title: string;
|
|
948
|
+
number: string;
|
|
949
|
+
institution: string;
|
|
950
|
+
issueDate: string;
|
|
951
|
+
expiryDate: string;
|
|
952
|
+
city: string;
|
|
953
|
+
state: string;
|
|
954
|
+
description: string;
|
|
955
|
+
}
|
|
956
|
+
interface Tool {
|
|
957
|
+
name: string;
|
|
958
|
+
selected: boolean;
|
|
959
|
+
model?: string;
|
|
960
|
+
serialNumber?: string;
|
|
961
|
+
yearsExperience?: number;
|
|
962
|
+
profileVisible?: boolean;
|
|
963
|
+
manufacturer?: string;
|
|
964
|
+
rating?: number;
|
|
965
|
+
}
|
|
966
|
+
declare class CredentialingStore {
|
|
967
|
+
toolsList: i0.WritableSignal<Tool[]>;
|
|
968
|
+
uploadOption: i0.WritableSignal<"manual" | "upload" | null>;
|
|
969
|
+
certifications: i0.WritableSignal<Certification$2[]>;
|
|
970
|
+
licenses: i0.WritableSignal<License[]>;
|
|
971
|
+
stepView: i0.WritableSignal<"add" | "preview">;
|
|
972
|
+
goToPreview(): void;
|
|
973
|
+
goToAdd(): void;
|
|
974
|
+
userSkills: i0.WritableSignal<UserSkillSetModel[]>;
|
|
975
|
+
setUserSkills(skills: UserSkillSetModel[]): void;
|
|
976
|
+
updateUserSkill(updated: UserSkillSetModel): void;
|
|
977
|
+
addUserSkills(skills: UserSkillSetModel | UserSkillSetModel[]): void;
|
|
978
|
+
toggleSkill(skillSetId: string): void;
|
|
979
|
+
toolStepView: i0.WritableSignal<"add" | "preview">;
|
|
980
|
+
goToToolPreview(): void;
|
|
981
|
+
goToToolAdd(): void;
|
|
982
|
+
userTools: i0.WritableSignal<UserToolModel[]>;
|
|
983
|
+
setUserTools(tools: UserToolModel[]): void;
|
|
984
|
+
updateUserTool(updated: UserToolModel): void;
|
|
985
|
+
addUserTools(tools: UserToolModel | UserToolModel[]): void;
|
|
986
|
+
toggleTool(toolId: string): void;
|
|
987
|
+
currentStep: i0.WritableSignal<number>;
|
|
988
|
+
role: i0.WritableSignal<string | null>;
|
|
989
|
+
education: i0.WritableSignal<any>;
|
|
990
|
+
initialSelection: i0.WritableSignal<string | null>;
|
|
991
|
+
selectedTools: i0.WritableSignal<Tool[]>;
|
|
992
|
+
selectedRoles: i0.WritableSignal<string[]>;
|
|
993
|
+
selectedJobs: i0.WritableSignal<string[]>;
|
|
994
|
+
city: i0.WritableSignal<string>;
|
|
995
|
+
state: i0.WritableSignal<string>;
|
|
996
|
+
showMap: i0.WritableSignal<boolean>;
|
|
997
|
+
currentCoverage: i0.WritableSignal<boolean>;
|
|
998
|
+
notApplicable: i0.WritableSignal<boolean>;
|
|
999
|
+
selectedStates: i0.WritableSignal<string[]>;
|
|
1000
|
+
selectInitial(value: string): void;
|
|
1001
|
+
setUploadOption(option: 'upload' | 'manual'): void;
|
|
1002
|
+
addRole(role: string): void;
|
|
1003
|
+
removeRole(role: string): void;
|
|
1004
|
+
setRole(role: string): void;
|
|
1005
|
+
setEducation(data: any): void;
|
|
1006
|
+
setCoverage(data: {
|
|
1007
|
+
city: string;
|
|
1008
|
+
state: string;
|
|
1009
|
+
selectedStates: string[];
|
|
1010
|
+
currentCoverage: boolean;
|
|
1011
|
+
notApplicable: boolean;
|
|
1012
|
+
showMap: boolean;
|
|
1013
|
+
}): void;
|
|
1014
|
+
setSelectedJobs(jobs: string[]): void;
|
|
1015
|
+
addCertification(cert: Certification$2): void;
|
|
1016
|
+
removeCertification(index: number): void;
|
|
1017
|
+
addLicense(license: License): void;
|
|
1018
|
+
removeLicense(index: number): void;
|
|
1019
|
+
nextStep(): void;
|
|
1020
|
+
previousStep(): void;
|
|
1021
|
+
updateToolDetails(toolName: string, data: Partial<Tool>): void;
|
|
1022
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CredentialingStore, never>;
|
|
1023
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CredentialingStore>;
|
|
1024
|
+
}
|
|
1025
|
+
|
|
1026
|
+
declare class CredentialingComponent implements OnInit {
|
|
1027
|
+
store: CredentialingStore;
|
|
1028
|
+
private viewport;
|
|
1029
|
+
animation: string | undefined;
|
|
1030
|
+
data: any;
|
|
1031
|
+
back: EventEmitter<void>;
|
|
1032
|
+
onActivate(outlet: RouterOutlet): void;
|
|
1033
|
+
constructor(store: CredentialingStore, viewport: ViewportScroller);
|
|
1034
|
+
ngOnInit(): void;
|
|
1035
|
+
goBackToInitialProcess(): void;
|
|
1036
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CredentialingComponent, never>;
|
|
1037
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CredentialingComponent, "app-credentialing", never, { "data": { "alias": "data"; "required": false; }; }, { "back": "back"; }, never, never, false, never>;
|
|
1038
|
+
}
|
|
1039
|
+
|
|
1040
|
+
declare class StepperComponent {
|
|
1041
|
+
store: CredentialingStore;
|
|
1042
|
+
steps: string[];
|
|
1043
|
+
constructor(store: CredentialingStore);
|
|
1044
|
+
goToStep(index: number): void;
|
|
1045
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StepperComponent, never>;
|
|
1046
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StepperComponent, "app-stepper", never, {}, {}, never, never, false, never>;
|
|
1047
|
+
}
|
|
1048
|
+
|
|
1049
|
+
declare class UserExperienceService {
|
|
1050
|
+
private httpClient;
|
|
1051
|
+
private readonly baseUrl;
|
|
1052
|
+
constructor(httpClient: HttpClient);
|
|
1053
|
+
createUserExperience(model: any): Observable<Result>;
|
|
1054
|
+
updateUserExperience(model: any): Observable<Result>;
|
|
1055
|
+
getUserExperience(query: GridifyQuery): Observable<{
|
|
1056
|
+
data: WorkExperience[];
|
|
1057
|
+
}>;
|
|
1058
|
+
private buildParams;
|
|
1059
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UserExperienceService, never>;
|
|
1060
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UserExperienceService>;
|
|
1061
|
+
}
|
|
1062
|
+
|
|
1063
|
+
interface WorkExperience {
|
|
1064
|
+
id?: string;
|
|
1065
|
+
companyName: string;
|
|
1066
|
+
jobTitle: string;
|
|
1067
|
+
country: string;
|
|
1068
|
+
state: string;
|
|
1069
|
+
city: string;
|
|
1070
|
+
fromDate: string;
|
|
1071
|
+
toDate: string;
|
|
1072
|
+
jobDescription: string;
|
|
1073
|
+
fileUrl?: string;
|
|
1074
|
+
fileName?: string;
|
|
1075
|
+
reviewStatus?: number;
|
|
1076
|
+
}
|
|
1077
|
+
declare class WorkExperienceStore {
|
|
1078
|
+
userExperienceService: UserExperienceService;
|
|
1079
|
+
private _experiences;
|
|
1080
|
+
readonly experiences: i0.Signal<WorkExperience[]>;
|
|
1081
|
+
API_URL: any;
|
|
1082
|
+
constructor(userExperienceService: UserExperienceService);
|
|
1083
|
+
loadFromApi(userId: string): void;
|
|
1084
|
+
addExperience(exp: WorkExperience): void;
|
|
1085
|
+
updateExperience(index: number, exp: WorkExperience): void;
|
|
1086
|
+
getExperience(index: number): WorkExperience;
|
|
1087
|
+
clear(): void;
|
|
1088
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WorkExperienceStore, never>;
|
|
1089
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<WorkExperienceStore>;
|
|
1090
|
+
}
|
|
1091
|
+
|
|
1092
|
+
declare class UserEducationService {
|
|
1093
|
+
private httpClient;
|
|
1094
|
+
private readonly baseUrl;
|
|
1095
|
+
constructor(httpClient: HttpClient);
|
|
1096
|
+
createUserEducation(model: any): Observable<Result>;
|
|
1097
|
+
updateUserEducation(model: any): Observable<Result>;
|
|
1098
|
+
getUserEducation(query: GridifyQuery): Observable<{
|
|
1099
|
+
data: WorkExperience[];
|
|
1100
|
+
}>;
|
|
1101
|
+
private buildParams;
|
|
1102
|
+
getByUserId(userId: string): Observable<{
|
|
1103
|
+
data: Education[];
|
|
1104
|
+
}>;
|
|
1105
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UserEducationService, never>;
|
|
1106
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UserEducationService>;
|
|
1107
|
+
}
|
|
1108
|
+
|
|
1109
|
+
interface Education {
|
|
1110
|
+
id?: string;
|
|
1111
|
+
courseName: string;
|
|
1112
|
+
courseType: string;
|
|
1113
|
+
instituteName: string;
|
|
1114
|
+
country: string;
|
|
1115
|
+
state: string;
|
|
1116
|
+
city: string;
|
|
1117
|
+
startDate: string;
|
|
1118
|
+
endDate: string;
|
|
1119
|
+
fileId?: any;
|
|
1120
|
+
fileUrl?: string;
|
|
1121
|
+
fileName?: string;
|
|
1122
|
+
comments: string;
|
|
1123
|
+
reviewStatus?: number;
|
|
1124
|
+
}
|
|
1125
|
+
declare class EducationStore {
|
|
1126
|
+
private userEducationService;
|
|
1127
|
+
private educations;
|
|
1128
|
+
readonly experiences: i0.Signal<Education[]>;
|
|
1129
|
+
API_URL: any;
|
|
1130
|
+
constructor(userEducationService: UserEducationService);
|
|
1131
|
+
loadFromApi(userId: string): void;
|
|
1132
|
+
addExperience(exp: Education): void;
|
|
1133
|
+
updateExperience(index: number, exp: Education): void;
|
|
1134
|
+
getExperience(index: number): Education;
|
|
1135
|
+
clear(): void;
|
|
1136
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EducationStore, never>;
|
|
1137
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<EducationStore>;
|
|
1138
|
+
}
|
|
1139
|
+
|
|
1140
|
+
interface StateModel {
|
|
1141
|
+
stateCode: string;
|
|
1142
|
+
stateName: string;
|
|
1143
|
+
}
|
|
1144
|
+
interface CountyModel extends StateModel {
|
|
1145
|
+
countyName: string;
|
|
1146
|
+
}
|
|
1147
|
+
interface ZipCodeModel extends CountyModel {
|
|
1148
|
+
countryCode: string;
|
|
1149
|
+
postalCode: string;
|
|
1150
|
+
placeName: string;
|
|
1151
|
+
countyCode: string;
|
|
1152
|
+
communityCode: string;
|
|
1153
|
+
communityName: string;
|
|
1154
|
+
latitude: number;
|
|
1155
|
+
longitude: number;
|
|
1156
|
+
accuracy: number;
|
|
1157
|
+
}
|
|
1158
|
+
|
|
1159
|
+
declare class PostalCodeServices {
|
|
1160
|
+
protected httpClient: HttpClient;
|
|
1161
|
+
protected readonly apiUrl?: string | undefined;
|
|
1162
|
+
private selectedCountryCode;
|
|
1163
|
+
private endpoint;
|
|
1164
|
+
private get url();
|
|
1165
|
+
constructor(httpClient: HttpClient, apiUrl?: string | undefined);
|
|
1166
|
+
getCountryCode(): string;
|
|
1167
|
+
GetStatesByCountryCode(countryCode: string): Observable<StateModel[]>;
|
|
1168
|
+
GetCountiesByState(countryCode: string, stateCode: string): Observable<CountyModel[]>;
|
|
1169
|
+
getCountiesByStates(countryCode: string, stateCodes: string[]): Observable<CountyModel[]>;
|
|
1170
|
+
GetZipcodesByCounty(countryCode: string, countyName: string): Observable<ZipCodeModel[]>;
|
|
1171
|
+
SearchZipcodeDetails(countryCode: string, zipCode: string): Observable<ZipCodeModel[]>;
|
|
1172
|
+
GetNearestZipcodeDetails(countryCode: string, zipCode: string, totalCount: number): Observable<ZipCodeModel[]>;
|
|
1173
|
+
GetZipcodeDetails(countryCode: string, zipCode: string): Observable<ZipCodeModel>;
|
|
1174
|
+
GetZipcodeDetailsByCoordinate(countryCode: string, latitude: number, longitude: number): Observable<ZipCodeModel>;
|
|
1175
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PostalCodeServices, [null, { optional: true; }]>;
|
|
1176
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PostalCodeServices>;
|
|
1177
|
+
}
|
|
1178
|
+
|
|
1179
|
+
interface CountryModel {
|
|
1180
|
+
countryCode2: string;
|
|
1181
|
+
countryCode3: string;
|
|
1182
|
+
country: string;
|
|
1183
|
+
capital: string;
|
|
1184
|
+
area: any;
|
|
1185
|
+
population: number;
|
|
1186
|
+
continent: string;
|
|
1187
|
+
currencyCode: string;
|
|
1188
|
+
currencyName: string;
|
|
1189
|
+
phone: string;
|
|
1190
|
+
postalCodeFormat: string;
|
|
1191
|
+
postalCodeRegex: string;
|
|
1192
|
+
languages: string[];
|
|
1193
|
+
neighbours: string[];
|
|
1194
|
+
}
|
|
1195
|
+
|
|
1196
|
+
declare class CountryServices {
|
|
1197
|
+
protected httpClient: HttpClient;
|
|
1198
|
+
protected readonly apiUrl?: string | undefined;
|
|
1199
|
+
private endpoint;
|
|
1200
|
+
private get url();
|
|
1201
|
+
constructor(httpClient: HttpClient, apiUrl?: string | undefined);
|
|
1202
|
+
GetCountries(): Observable<CountryModel[]>;
|
|
1203
|
+
SearchCountries(name: string): Observable<CountryModel[]>;
|
|
1204
|
+
GetCountryDetail(countryCode: string): Observable<CountryModel[]>;
|
|
1205
|
+
GetCountryCode(countryCode: string): Observable<CountryModel[]>;
|
|
1206
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CountryServices, [null, { optional: true; }]>;
|
|
1207
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CountryServices>;
|
|
1208
|
+
}
|
|
1209
|
+
|
|
1210
|
+
declare class EducationComponent implements OnInit {
|
|
1211
|
+
userEducation: UserEducationService;
|
|
1212
|
+
store: CredentialingStore;
|
|
1213
|
+
workStore: EducationStore;
|
|
1214
|
+
private countryService;
|
|
1215
|
+
private postalCodeService;
|
|
1216
|
+
private tokenService;
|
|
1217
|
+
private fb;
|
|
1218
|
+
private fileService;
|
|
1219
|
+
private http;
|
|
1220
|
+
private readonly uploadToAws;
|
|
1221
|
+
educationForm: FormGroup;
|
|
1222
|
+
editingIndex: number;
|
|
1223
|
+
isEditing: i0.WritableSignal<boolean>;
|
|
1224
|
+
fileData: any;
|
|
1225
|
+
API_URL: any;
|
|
1226
|
+
API_URL_UPDATE: any;
|
|
1227
|
+
awsFileUpdate: UpdateAwsFileModelModel[];
|
|
1228
|
+
model: any;
|
|
1229
|
+
fileName: any;
|
|
1230
|
+
preferredStartDate: string | null;
|
|
1231
|
+
minDate: Date;
|
|
1232
|
+
countries: any[];
|
|
1233
|
+
states: any[];
|
|
1234
|
+
selectedCountry: string;
|
|
1235
|
+
selectedStates: string | null;
|
|
1236
|
+
userId: any;
|
|
1237
|
+
userName: any;
|
|
1238
|
+
cloudfront: any;
|
|
1239
|
+
proposalLoader: boolean;
|
|
1240
|
+
showpreview: i0.Signal<boolean>;
|
|
1241
|
+
userdata: any;
|
|
1242
|
+
constructor(userEducation: UserEducationService, store: CredentialingStore, workStore: EducationStore, countryService: CountryServices, postalCodeService: PostalCodeServices, tokenService: TokenService, fb: FormBuilder, fileService: FileService, http: HttpClient);
|
|
1243
|
+
ngOnInit(): Promise<void>;
|
|
1244
|
+
getcountry(): void;
|
|
1245
|
+
getstates(countryCode: any): void;
|
|
1246
|
+
onCountryChange(countryCode: string): void;
|
|
1247
|
+
onPreferredDateChange(date: Date): void;
|
|
1248
|
+
selectFile(event: any): void;
|
|
1249
|
+
saveFile(): void;
|
|
1250
|
+
private saveAWSFile;
|
|
1251
|
+
saveAndContinue(): void;
|
|
1252
|
+
refreshForEdit(): void;
|
|
1253
|
+
add(): void;
|
|
1254
|
+
edit(index: number): void;
|
|
1255
|
+
back(): void;
|
|
1256
|
+
nextStep(): void;
|
|
1257
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EducationComponent, never>;
|
|
1258
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EducationComponent, "app-education", never, {}, {}, never, never, false, never>;
|
|
1259
|
+
}
|
|
1260
|
+
|
|
1261
|
+
declare class UserDocumentService {
|
|
1262
|
+
private httpClient;
|
|
1263
|
+
private readonly baseUrl;
|
|
1264
|
+
constructor(httpClient: HttpClient);
|
|
1265
|
+
createUserDocument(model: any): Observable<Result>;
|
|
1266
|
+
updateUserDocument(model: any): Observable<Result>;
|
|
1267
|
+
getUserDocument(query: GridifyQuery): Observable<{
|
|
1268
|
+
data: any[];
|
|
1269
|
+
}>;
|
|
1270
|
+
private buildParams;
|
|
1271
|
+
getDocumentTypes(maintype: any, providerId: string, searchText?: string): Observable<any>;
|
|
1272
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UserDocumentService, never>;
|
|
1273
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UserDocumentService>;
|
|
1274
|
+
}
|
|
1275
|
+
|
|
1276
|
+
interface Certification$1 {
|
|
1277
|
+
id?: string;
|
|
1278
|
+
number: string;
|
|
1279
|
+
issuedBy: string;
|
|
1280
|
+
issuedState: string;
|
|
1281
|
+
expiryDate: string;
|
|
1282
|
+
issueDate: string;
|
|
1283
|
+
mainType: string;
|
|
1284
|
+
forUser: string;
|
|
1285
|
+
status: string;
|
|
1286
|
+
fileId?: any;
|
|
1287
|
+
fileUrl?: string;
|
|
1288
|
+
fileName?: string;
|
|
1289
|
+
notes: string;
|
|
1290
|
+
documentTypeId?: string;
|
|
1291
|
+
documentTypeName?: string;
|
|
1292
|
+
}
|
|
1293
|
+
declare class CertificationStore {
|
|
1294
|
+
userDocumentService: UserDocumentService;
|
|
1295
|
+
private certifications;
|
|
1296
|
+
readonly experiences: i0.Signal<Certification$1[]>;
|
|
1297
|
+
API_URL: any;
|
|
1298
|
+
constructor(userDocumentService: UserDocumentService);
|
|
1299
|
+
loadFromApi(userId: string): void;
|
|
1300
|
+
addExperience(exp: Certification$1): void;
|
|
1301
|
+
updateExperience(index: number, exp: Certification$1): void;
|
|
1302
|
+
getExperience(index: number): Certification$1;
|
|
1303
|
+
clear(): void;
|
|
1304
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CertificationStore, never>;
|
|
1305
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CertificationStore>;
|
|
1306
|
+
}
|
|
1307
|
+
|
|
1308
|
+
declare class CertificationComponent {
|
|
1309
|
+
userDocumentService: UserDocumentService;
|
|
1310
|
+
store: CredentialingStore;
|
|
1311
|
+
workStore: CertificationStore;
|
|
1312
|
+
private tokenService;
|
|
1313
|
+
private postalCodeService;
|
|
1314
|
+
private fb;
|
|
1315
|
+
private fileService;
|
|
1316
|
+
private http;
|
|
1317
|
+
private readonly uploadToAws;
|
|
1318
|
+
editingIndex: number;
|
|
1319
|
+
selectedDocumentTypeId: string | null;
|
|
1320
|
+
selectedDocumentId: string | null;
|
|
1321
|
+
selectedDocumentName: string | null;
|
|
1322
|
+
isEditing: i0.WritableSignal<boolean>;
|
|
1323
|
+
searchControl: FormControl<string | null>;
|
|
1324
|
+
documentTypes: any[];
|
|
1325
|
+
userId: any;
|
|
1326
|
+
selectedDocument: {
|
|
1327
|
+
id: string | null;
|
|
1328
|
+
name: string | null;
|
|
1329
|
+
};
|
|
1330
|
+
providerId: string;
|
|
1331
|
+
certificateForm: FormGroup;
|
|
1332
|
+
API_URL: any;
|
|
1333
|
+
API_URL_UPDATE: any;
|
|
1334
|
+
fileData: any;
|
|
1335
|
+
awsFileUpdate: UpdateAwsFileModelModel[];
|
|
1336
|
+
model: any;
|
|
1337
|
+
fileName: any;
|
|
1338
|
+
preferredStartDate: string | null;
|
|
1339
|
+
states: any[];
|
|
1340
|
+
selectedCountry: string;
|
|
1341
|
+
selectedStates: string | null;
|
|
1342
|
+
userName: any;
|
|
1343
|
+
cloudfront: any;
|
|
1344
|
+
proposalLoader: boolean;
|
|
1345
|
+
showpreview: i0.Signal<boolean>;
|
|
1346
|
+
userdata: any;
|
|
1347
|
+
constructor(userDocumentService: UserDocumentService, store: CredentialingStore, workStore: CertificationStore, tokenService: TokenService, postalCodeService: PostalCodeServices, fb: FormBuilder, fileService: FileService, http: HttpClient);
|
|
1348
|
+
ngOnInit(): Promise<void>;
|
|
1349
|
+
loadDocumentTypes(searchText?: string): void;
|
|
1350
|
+
isChecked(id: string): boolean;
|
|
1351
|
+
toggleSelection(item: any, event: Event): void;
|
|
1352
|
+
getstates(): void;
|
|
1353
|
+
onPreferredDateChange(date: Date): void;
|
|
1354
|
+
saveFile(): void;
|
|
1355
|
+
private saveAWSFile;
|
|
1356
|
+
saveAndContinue(): void;
|
|
1357
|
+
add(): void;
|
|
1358
|
+
edit(index: number): void;
|
|
1359
|
+
selectFile(event: any): void;
|
|
1360
|
+
back(): void;
|
|
1361
|
+
nextStep(): void;
|
|
1362
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CertificationComponent, never>;
|
|
1363
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CertificationComponent, "app-certification", never, {}, {}, never, never, false, never>;
|
|
1364
|
+
}
|
|
1365
|
+
|
|
1366
|
+
interface SkillSetModel extends MasterModel {
|
|
1367
|
+
providerId?: string;
|
|
1368
|
+
skillSetCategoryId?: string;
|
|
1369
|
+
name?: string;
|
|
1370
|
+
description?: string;
|
|
1371
|
+
isPublic?: boolean;
|
|
1372
|
+
isActive?: boolean;
|
|
1373
|
+
selected?: boolean;
|
|
1374
|
+
cloneId?: string;
|
|
1375
|
+
isModified?: boolean;
|
|
1376
|
+
id?: any;
|
|
1377
|
+
}
|
|
1378
|
+
|
|
1379
|
+
interface SkillSetCategoryModel extends MasterModel {
|
|
1380
|
+
name?: string;
|
|
1381
|
+
description?: string;
|
|
1382
|
+
isPublic?: boolean;
|
|
1383
|
+
providerId?: string;
|
|
1384
|
+
isActive?: boolean;
|
|
1385
|
+
cloneId?: string;
|
|
1386
|
+
isModified?: boolean;
|
|
1387
|
+
id?: any;
|
|
1388
|
+
}
|
|
1389
|
+
|
|
1390
|
+
declare class SkillSetService {
|
|
1391
|
+
private httpClient;
|
|
1392
|
+
private readonly baseUrl;
|
|
1393
|
+
constructor(httpClient: HttpClient);
|
|
1394
|
+
getSkillSetNames(providerId?: string): Observable<LookupItem[]>;
|
|
1395
|
+
getSkillSets(query: any): Observable<any>;
|
|
1396
|
+
private generateParams;
|
|
1397
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkillSetService, never>;
|
|
1398
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SkillSetService>;
|
|
1399
|
+
}
|
|
1400
|
+
|
|
1401
|
+
declare class UserSkillSetService {
|
|
1402
|
+
private httpClient;
|
|
1403
|
+
private readonly baseUrl;
|
|
1404
|
+
constructor(httpClient: HttpClient);
|
|
1405
|
+
changeStatus(model: any): Observable<Result>;
|
|
1406
|
+
createUserSkillSet(models: UserSkillSetModel[]): Observable<any>;
|
|
1407
|
+
updateUserSkillSet(model: UserSkillSetModel): Observable<any>;
|
|
1408
|
+
getUserSkillSet(query: GridifyQuery): Observable<any>;
|
|
1409
|
+
private generateParams;
|
|
1410
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UserSkillSetService, never>;
|
|
1411
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UserSkillSetService>;
|
|
1412
|
+
}
|
|
1413
|
+
|
|
1414
|
+
declare class AlertService {
|
|
1415
|
+
private injector;
|
|
1416
|
+
constructor(injector: Injector);
|
|
1417
|
+
info(message: string): void;
|
|
1418
|
+
success(message: string): void;
|
|
1419
|
+
warning(message: string, isHtml?: boolean): void;
|
|
1420
|
+
error(message: string): void;
|
|
1421
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AlertService, never>;
|
|
1422
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AlertService>;
|
|
1423
|
+
}
|
|
1424
|
+
|
|
1425
|
+
declare enum FileTypes {
|
|
1426
|
+
EMPTY = 0,
|
|
1427
|
+
PDF = 1,
|
|
1428
|
+
DOCUMENT = 2,
|
|
1429
|
+
EXCEL = 3,
|
|
1430
|
+
IMAGE = 4,
|
|
1431
|
+
TEXT = 5,
|
|
1432
|
+
OTHER = 6
|
|
1433
|
+
}
|
|
1434
|
+
|
|
1435
|
+
declare class UtilsService {
|
|
1436
|
+
protected alertService: AlertService;
|
|
1437
|
+
private router;
|
|
1438
|
+
constructor(alertService: AlertService, router: Router);
|
|
1439
|
+
parseResult(result: Result, message: string, redirect?: string): Promise<Result>;
|
|
1440
|
+
handleError(error: any): Promise<never>;
|
|
1441
|
+
setTimeZone(date: string | number | Date | null | undefined): Date | null;
|
|
1442
|
+
imageToFormData(image: any, name: string): FormData;
|
|
1443
|
+
base64ToBlob(base64: string, mime: string): Blob;
|
|
1444
|
+
arrayToPairwise(arr: any[]): any[];
|
|
1445
|
+
parseQuery(queryString: string): {
|
|
1446
|
+
[key: string]: string;
|
|
1447
|
+
};
|
|
1448
|
+
getFileType(fileName: string): FileTypes;
|
|
1449
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UtilsService, never>;
|
|
1450
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UtilsService>;
|
|
1451
|
+
}
|
|
1452
|
+
|
|
1453
|
+
declare class SkillsComponent {
|
|
1454
|
+
private skillSetService;
|
|
1455
|
+
private userSkillSetService;
|
|
1456
|
+
private formBuilder;
|
|
1457
|
+
private utils;
|
|
1458
|
+
private roleContextService;
|
|
1459
|
+
store: CredentialingStore;
|
|
1460
|
+
private tokenService;
|
|
1461
|
+
private userSkillsSub?;
|
|
1462
|
+
tab: FormArray;
|
|
1463
|
+
showLoading: boolean;
|
|
1464
|
+
showLoader: boolean;
|
|
1465
|
+
userSkillSetModel: UserSkillSetModel;
|
|
1466
|
+
skillSetModel: any;
|
|
1467
|
+
userSkillSetModels: any[];
|
|
1468
|
+
skillSets: SkillSetModel[];
|
|
1469
|
+
skillSetForm: UntypedFormGroup;
|
|
1470
|
+
showForm: boolean;
|
|
1471
|
+
showCreate: boolean;
|
|
1472
|
+
isCopy: boolean;
|
|
1473
|
+
copyOptionIndex: number;
|
|
1474
|
+
initialStarts: number;
|
|
1475
|
+
searchSkillQry: string | undefined | null;
|
|
1476
|
+
selectedSkillSetCategory: SkillSetCategoryModel;
|
|
1477
|
+
skillSubmitted: boolean;
|
|
1478
|
+
skillSubmittedValue: boolean;
|
|
1479
|
+
userSkillSubmitted: boolean;
|
|
1480
|
+
showUserSkills: boolean;
|
|
1481
|
+
expYears: LookupItem[];
|
|
1482
|
+
tabs: any;
|
|
1483
|
+
selectedTab: any;
|
|
1484
|
+
nameError: string | undefined | null;
|
|
1485
|
+
copyData: any;
|
|
1486
|
+
getSkillCall: Subscription;
|
|
1487
|
+
userContext: RoleContextModel | null;
|
|
1488
|
+
form: UntypedFormGroup;
|
|
1489
|
+
model: UserSkillSetModel | null;
|
|
1490
|
+
userToolSubmitted: boolean;
|
|
1491
|
+
errMsg: boolean;
|
|
1492
|
+
userSkillsPreview: any[];
|
|
1493
|
+
isEditMode: boolean;
|
|
1494
|
+
emailId: any;
|
|
1495
|
+
userId: any;
|
|
1496
|
+
constructor(skillSetService: SkillSetService, userSkillSetService: UserSkillSetService, formBuilder: UntypedFormBuilder, utils: UtilsService, roleContextService: RoleContextService, store: CredentialingStore, tokenService: TokenService);
|
|
1497
|
+
private ctxProviderName;
|
|
1498
|
+
private ctxProviderId;
|
|
1499
|
+
private markTabPristine;
|
|
1500
|
+
createGroup(skillSetId?: any, skillName?: any): UntypedFormGroup;
|
|
1501
|
+
AddGroup(skillSetId: null, skillName: string): UntypedFormGroup;
|
|
1502
|
+
initialData(): void;
|
|
1503
|
+
getYears(): void;
|
|
1504
|
+
ngOnInit(): Promise<void>;
|
|
1505
|
+
getuserSkillsData(): void;
|
|
1506
|
+
backToSkill(accGroup: any): void;
|
|
1507
|
+
onSkillAccordionChange(skill: any, isOpen: boolean): void;
|
|
1508
|
+
getSkillKey(skill: any): string;
|
|
1509
|
+
editSkillFromPreview(skill: any, accGroup: any, event: Event): void;
|
|
1510
|
+
onEditRating(stars: any): void;
|
|
1511
|
+
removeTab(index: number, skillId?: string): void;
|
|
1512
|
+
setTabGroup(g: any): void;
|
|
1513
|
+
onRatingSet(rating: number, index: number): void;
|
|
1514
|
+
reset(): void;
|
|
1515
|
+
onYearChange(group: any): void;
|
|
1516
|
+
setCopyToAllTabs(index: number, group: any): void;
|
|
1517
|
+
onSelectedSkillsets(event: Event, skill: SkillSetModel): void;
|
|
1518
|
+
createNewSkills(): void;
|
|
1519
|
+
getSkillSets(): void;
|
|
1520
|
+
setDefault(): void;
|
|
1521
|
+
onContinue(): void;
|
|
1522
|
+
saveUserSkillset(): void;
|
|
1523
|
+
private extractNameError;
|
|
1524
|
+
get g(): {
|
|
1525
|
+
[key: string]: _angular_forms.AbstractControl<any, any, any>;
|
|
1526
|
+
};
|
|
1527
|
+
get k(): any;
|
|
1528
|
+
back(): void;
|
|
1529
|
+
next(): void;
|
|
1530
|
+
ngOnDestroy(): void;
|
|
1531
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkillsComponent, never>;
|
|
1532
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkillsComponent, "app-skills", never, {}, {}, never, never, false, never>;
|
|
1533
|
+
}
|
|
1534
|
+
|
|
1535
|
+
interface Certification {
|
|
1536
|
+
id?: string;
|
|
1537
|
+
number: string;
|
|
1538
|
+
issuedBy: string;
|
|
1539
|
+
issuedState: string;
|
|
1540
|
+
expiryDate: string;
|
|
1541
|
+
issueDate: string;
|
|
1542
|
+
mainType: string;
|
|
1543
|
+
forUser: string;
|
|
1544
|
+
status: string;
|
|
1545
|
+
fileId?: any;
|
|
1546
|
+
fileUrl?: string;
|
|
1547
|
+
fileName?: string;
|
|
1548
|
+
notes: string;
|
|
1549
|
+
documentTypeId?: string;
|
|
1550
|
+
documentTypeName?: string;
|
|
1551
|
+
}
|
|
1552
|
+
declare class LicenseStore {
|
|
1553
|
+
userDocumentService: UserDocumentService;
|
|
1554
|
+
private certifications;
|
|
1555
|
+
readonly experiences: i0.Signal<Certification[]>;
|
|
1556
|
+
API_URL: any;
|
|
1557
|
+
constructor(userDocumentService: UserDocumentService);
|
|
1558
|
+
loadFromApi(userId: string): void;
|
|
1559
|
+
addExperience(exp: Certification): void;
|
|
1560
|
+
updateExperience(index: number, exp: Certification): void;
|
|
1561
|
+
getExperience(index: number): Certification;
|
|
1562
|
+
clear(): void;
|
|
1563
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LicenseStore, never>;
|
|
1564
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LicenseStore>;
|
|
1565
|
+
}
|
|
1566
|
+
|
|
1567
|
+
declare class LicensesComponent {
|
|
1568
|
+
userDocumentService: UserDocumentService;
|
|
1569
|
+
store: CredentialingStore;
|
|
1570
|
+
workStore: LicenseStore;
|
|
1571
|
+
private tokenService;
|
|
1572
|
+
private postalCodeService;
|
|
1573
|
+
private fb;
|
|
1574
|
+
private fileService;
|
|
1575
|
+
private http;
|
|
1576
|
+
private readonly uploadToAws;
|
|
1577
|
+
editingIndex: number;
|
|
1578
|
+
selectedDocumentTypeId: string | null;
|
|
1579
|
+
selectedDocumentId: any | null;
|
|
1580
|
+
selectedDocumentName: string | null;
|
|
1581
|
+
isEditing: i0.WritableSignal<boolean>;
|
|
1582
|
+
searchControl: FormControl<string | null>;
|
|
1583
|
+
documentTypes: any[];
|
|
1584
|
+
userId: any;
|
|
1585
|
+
selectedDocument: {
|
|
1586
|
+
id: string | null;
|
|
1587
|
+
name: string | null;
|
|
1588
|
+
};
|
|
1589
|
+
providerId: string;
|
|
1590
|
+
certificateForm: FormGroup;
|
|
1591
|
+
fileData: any;
|
|
1592
|
+
awsFileUpdate: UpdateAwsFileModelModel[];
|
|
1593
|
+
model: any;
|
|
1594
|
+
fileName: any;
|
|
1595
|
+
preferredStartDate: string | null;
|
|
1596
|
+
states: any[];
|
|
1597
|
+
selectedCountry: string;
|
|
1598
|
+
selectedStates: string | null;
|
|
1599
|
+
userName: any;
|
|
1600
|
+
cloudfront: any;
|
|
1601
|
+
proposalLoader: boolean;
|
|
1602
|
+
showpreview: i0.Signal<boolean>;
|
|
1603
|
+
userdata: any;
|
|
1604
|
+
constructor(userDocumentService: UserDocumentService, store: CredentialingStore, workStore: LicenseStore, tokenService: TokenService, postalCodeService: PostalCodeServices, fb: FormBuilder, fileService: FileService, http: HttpClient);
|
|
1605
|
+
ngOnInit(): Promise<void>;
|
|
1606
|
+
loadDocumentTypes(searchText?: string): void;
|
|
1607
|
+
toggleSelection(item: any, event: Event): void;
|
|
1608
|
+
getstates(): void;
|
|
1609
|
+
onPreferredDateChange(date: Date): void;
|
|
1610
|
+
saveFile(): void;
|
|
1611
|
+
private saveAWSFile;
|
|
1612
|
+
saveAndContinue(): void;
|
|
1613
|
+
add(): void;
|
|
1614
|
+
edit(index: number): void;
|
|
1615
|
+
selectFile(event: any): void;
|
|
1616
|
+
isChecked(id: string): boolean;
|
|
1617
|
+
back(): void;
|
|
1618
|
+
nextStep(): void;
|
|
1619
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LicensesComponent, never>;
|
|
1620
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LicensesComponent, "app-licenses", never, {}, {}, never, never, false, never>;
|
|
1621
|
+
}
|
|
1622
|
+
|
|
1623
|
+
interface ToolModel extends MasterModel {
|
|
1624
|
+
toolCategoryName?: string;
|
|
1625
|
+
providerId?: string;
|
|
1626
|
+
toolCategoryId?: string;
|
|
1627
|
+
name?: string;
|
|
1628
|
+
description?: string;
|
|
1629
|
+
isPublic?: boolean;
|
|
1630
|
+
isActive?: boolean;
|
|
1631
|
+
id?: any;
|
|
1632
|
+
cloneId?: string;
|
|
1633
|
+
isModified?: boolean;
|
|
1634
|
+
selected?: boolean;
|
|
1635
|
+
}
|
|
1636
|
+
|
|
1637
|
+
interface ToolCategoryModel extends MasterModel {
|
|
1638
|
+
selected?: boolean;
|
|
1639
|
+
providerId?: string;
|
|
1640
|
+
name?: string;
|
|
1641
|
+
description?: string;
|
|
1642
|
+
isPublic?: boolean;
|
|
1643
|
+
isActive?: boolean;
|
|
1644
|
+
cloneId?: string;
|
|
1645
|
+
isModified?: boolean;
|
|
1646
|
+
id?: any;
|
|
1647
|
+
}
|
|
1648
|
+
|
|
1649
|
+
declare class UserToolService {
|
|
1650
|
+
private httpClient;
|
|
1651
|
+
private readonly baseUrl;
|
|
1652
|
+
constructor(httpClient: HttpClient);
|
|
1653
|
+
changeStatus(model: any): Observable<Result>;
|
|
1654
|
+
sendUserToolsRequest(model: any): Observable<Result>;
|
|
1655
|
+
createUserTool(model: any): Observable<any>;
|
|
1656
|
+
updateUserTool(model: UserToolModel): Observable<any>;
|
|
1657
|
+
getUserTool(query: GridifyQuery): Observable<any>;
|
|
1658
|
+
private buildParams;
|
|
1659
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UserToolService, never>;
|
|
1660
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UserToolService>;
|
|
1661
|
+
}
|
|
1662
|
+
|
|
1663
|
+
declare class ToolService {
|
|
1664
|
+
private httpClient;
|
|
1665
|
+
private readonly baseUrl;
|
|
1666
|
+
constructor(httpClient: HttpClient);
|
|
1667
|
+
getToolNames(providerId?: string): Observable<LookupItem[]>;
|
|
1668
|
+
getTool(query: GridifyQuery): Observable<any>;
|
|
1669
|
+
private buildParams;
|
|
1670
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToolService, never>;
|
|
1671
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ToolService>;
|
|
1672
|
+
}
|
|
1673
|
+
|
|
1674
|
+
declare class ToolsComponent {
|
|
1675
|
+
private toolService;
|
|
1676
|
+
private userToolService;
|
|
1677
|
+
private formBuilder;
|
|
1678
|
+
private utils;
|
|
1679
|
+
store: CredentialingStore;
|
|
1680
|
+
private tokenService;
|
|
1681
|
+
private userDetailService;
|
|
1682
|
+
roleData: any;
|
|
1683
|
+
form: UntypedFormGroup;
|
|
1684
|
+
submitted: boolean;
|
|
1685
|
+
apiSubmit: boolean;
|
|
1686
|
+
model: UserToolModel | null;
|
|
1687
|
+
toolModel: any;
|
|
1688
|
+
userToolModels: UserToolModel[];
|
|
1689
|
+
tools: ToolModel[];
|
|
1690
|
+
toolCategories: ToolCategoryModel[];
|
|
1691
|
+
toolForm: UntypedFormGroup;
|
|
1692
|
+
showCreate: boolean;
|
|
1693
|
+
showLoader: boolean;
|
|
1694
|
+
homeLoader: boolean;
|
|
1695
|
+
toolsName: string | null | undefined;
|
|
1696
|
+
showForm: boolean;
|
|
1697
|
+
isCopy: boolean;
|
|
1698
|
+
copyOptionIndex: number;
|
|
1699
|
+
initialStarts: number;
|
|
1700
|
+
searchToolQry: string | null | undefined;
|
|
1701
|
+
selectedToolCategory: ToolCategoryModel;
|
|
1702
|
+
toolSubmitted: boolean;
|
|
1703
|
+
toolSubmittedValue: boolean;
|
|
1704
|
+
userToolSubmitted: boolean;
|
|
1705
|
+
expYears: LookupItem[];
|
|
1706
|
+
tabs: any[];
|
|
1707
|
+
tab?: FormArray<any> | null | undefined;
|
|
1708
|
+
selectedTab: any;
|
|
1709
|
+
nameError: string | null | undefined;
|
|
1710
|
+
showLoading: boolean | null | undefined;
|
|
1711
|
+
copyData: any;
|
|
1712
|
+
getToolCall: Subscription;
|
|
1713
|
+
userId: any;
|
|
1714
|
+
emailId: any;
|
|
1715
|
+
isEditMode: boolean;
|
|
1716
|
+
userToolsPreview: any[];
|
|
1717
|
+
userDetails: any;
|
|
1718
|
+
userdata: any;
|
|
1719
|
+
constructor(toolService: ToolService, userToolService: UserToolService, formBuilder: UntypedFormBuilder, utils: UtilsService, store: CredentialingStore, tokenService: TokenService, userDetailService: UserDetailService);
|
|
1720
|
+
ngOnInit(): Promise<void>;
|
|
1721
|
+
private ctxProviderName;
|
|
1722
|
+
private ctxProviderId;
|
|
1723
|
+
createGroup(toolId: string | null | undefined, toolName: string): UntypedFormGroup;
|
|
1724
|
+
AddGroup(toolId: null, toolName: string): UntypedFormGroup;
|
|
1725
|
+
setDefault(): void;
|
|
1726
|
+
removeTab(index: number, toolId: string | undefined): void;
|
|
1727
|
+
initialData(): void;
|
|
1728
|
+
getYears(): void;
|
|
1729
|
+
getuserToolsData(): void;
|
|
1730
|
+
getToolKey(tool: any): string;
|
|
1731
|
+
editingToolKey: string | null;
|
|
1732
|
+
onRatingSets(stars: number): void;
|
|
1733
|
+
editToolFromPreview(tool: any, accGroup: any, event: Event): void;
|
|
1734
|
+
onAccordionChange(tool: any, isOpen: boolean): void;
|
|
1735
|
+
backTool(group: any): void;
|
|
1736
|
+
private markTabPristine;
|
|
1737
|
+
onRatingSet(rating: number, index: number): void;
|
|
1738
|
+
setCopyToAllTabs(index: number, group: any, viewTab: boolean): void;
|
|
1739
|
+
onChangeCategory(obj: any): void;
|
|
1740
|
+
onSelectedTools(event: {
|
|
1741
|
+
target: {
|
|
1742
|
+
checked: boolean;
|
|
1743
|
+
};
|
|
1744
|
+
}, tool: {
|
|
1745
|
+
selected: boolean;
|
|
1746
|
+
name: string;
|
|
1747
|
+
id: string | undefined;
|
|
1748
|
+
}): void;
|
|
1749
|
+
reset(): void;
|
|
1750
|
+
createNewTools(): void;
|
|
1751
|
+
getTools(): void;
|
|
1752
|
+
onToolContinue(): void;
|
|
1753
|
+
saveUserTools(): void;
|
|
1754
|
+
private extractNameError;
|
|
1755
|
+
get g(): {
|
|
1756
|
+
[key: string]: _angular_forms.AbstractControl<any, any, any>;
|
|
1757
|
+
};
|
|
1758
|
+
get k(): any;
|
|
1759
|
+
onYearChange(group: any): void;
|
|
1760
|
+
setTabGroup(g: any): void;
|
|
1761
|
+
goBack(): void;
|
|
1762
|
+
saveFinal(): void;
|
|
1763
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToolsComponent, never>;
|
|
1764
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToolsComponent, "app-tools", never, { "roleData": { "alias": "roleData"; "required": false; }; }, {}, never, never, false, never>;
|
|
1765
|
+
}
|
|
1766
|
+
|
|
1767
|
+
interface UserFormControls {
|
|
1768
|
+
firstName: FormControl<string | null>;
|
|
1769
|
+
lastName: FormControl<string | null>;
|
|
1770
|
+
email: FormControl<string | null>;
|
|
1771
|
+
address1: FormControl<string | null>;
|
|
1772
|
+
address2: FormControl<string | null>;
|
|
1773
|
+
city: FormControl<string | null>;
|
|
1774
|
+
state: FormControl<string | null>;
|
|
1775
|
+
zipcode: FormControl<string | null>;
|
|
1776
|
+
country: FormControl<string | null>;
|
|
1777
|
+
county: FormControl<string | null>;
|
|
1778
|
+
latitude: FormControl<any | null>;
|
|
1779
|
+
longitude: FormControl<any | null>;
|
|
1780
|
+
phoneNumber: FormControl<string | null>;
|
|
1781
|
+
}
|
|
1782
|
+
declare class RoleSelectionComponent implements OnInit {
|
|
1783
|
+
store: CredentialingStore;
|
|
1784
|
+
router: Router;
|
|
1785
|
+
private userDetailService;
|
|
1786
|
+
private fileService;
|
|
1787
|
+
private tokenService;
|
|
1788
|
+
private fb;
|
|
1789
|
+
private readonly uploadToAws;
|
|
1790
|
+
backToParent: EventEmitter<void>;
|
|
1791
|
+
roleData: any;
|
|
1792
|
+
userId: any;
|
|
1793
|
+
user: any;
|
|
1794
|
+
userError: any;
|
|
1795
|
+
showLoader: boolean;
|
|
1796
|
+
isImageRequired: boolean;
|
|
1797
|
+
fileData: any;
|
|
1798
|
+
fileDataUser: any;
|
|
1799
|
+
zipcodeMask: RegExp[];
|
|
1800
|
+
options: {
|
|
1801
|
+
componentRestrictions: {
|
|
1802
|
+
country: string[];
|
|
1803
|
+
};
|
|
1804
|
+
};
|
|
1805
|
+
userDetails: any;
|
|
1806
|
+
selectedJobValue: number | null;
|
|
1807
|
+
roleForm: FormGroup;
|
|
1808
|
+
userForm: FormGroup<UserFormControls>;
|
|
1809
|
+
fileName: any;
|
|
1810
|
+
signaturePad: SignaturePad;
|
|
1811
|
+
signaturePadData: {
|
|
1812
|
+
publicUrl: null;
|
|
1813
|
+
};
|
|
1814
|
+
private initialJobValue;
|
|
1815
|
+
useremail: any;
|
|
1816
|
+
jobTypes: any;
|
|
1817
|
+
selectedJobs: i0.WritableSignal<string[]>;
|
|
1818
|
+
selectedJobValues: number[];
|
|
1819
|
+
provider: ProviderModel;
|
|
1820
|
+
constructor(store: CredentialingStore, router: Router, userDetailService: UserDetailService, fileService: FileService, tokenService: TokenService, fb: FormBuilder);
|
|
1821
|
+
ngOnInit(): Promise<void>;
|
|
1822
|
+
onBackClick(): void;
|
|
1823
|
+
getUserDetail(): void;
|
|
1824
|
+
hasChanges(): boolean;
|
|
1825
|
+
toggleJob(job: any): void;
|
|
1826
|
+
isSelected(job: any): boolean;
|
|
1827
|
+
selectRole(role: string): void;
|
|
1828
|
+
get u(): UserFormControls;
|
|
1829
|
+
uploadUserImage(event: any): void;
|
|
1830
|
+
uploadFileBrowseHandler(): void;
|
|
1831
|
+
go(): void;
|
|
1832
|
+
saveAWSHeadShot(): Promise<void>;
|
|
1833
|
+
saveFinal(): void;
|
|
1834
|
+
bindUserDetails(): UserDetailModel;
|
|
1835
|
+
formatDateTime(date: Date): {
|
|
1836
|
+
mmddyyyy: string;
|
|
1837
|
+
mmddyyyyhhmmtt: string;
|
|
1838
|
+
hhmmtt: string;
|
|
1839
|
+
};
|
|
1840
|
+
removeRole(role: string): void;
|
|
1841
|
+
phoneMask(event: Event): void;
|
|
1842
|
+
AddressChangeUser(address: any): void;
|
|
1843
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RoleSelectionComponent, never>;
|
|
1844
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RoleSelectionComponent, "app-role-selection", never, { "roleData": { "alias": "roleData"; "required": false; }; }, { "backToParent": "backToParent"; }, never, never, false, never>;
|
|
1845
|
+
}
|
|
1846
|
+
|
|
1847
|
+
interface CoordinateLocation {
|
|
1848
|
+
name?: string;
|
|
1849
|
+
id?: string;
|
|
1850
|
+
path?: string;
|
|
1851
|
+
state?: string;
|
|
1852
|
+
county?: string;
|
|
1853
|
+
fillColor?: any;
|
|
1854
|
+
strokeColor?: any;
|
|
1855
|
+
isAllCounty?: boolean;
|
|
1856
|
+
latitude?: number;
|
|
1857
|
+
longitude?: number;
|
|
1858
|
+
}
|
|
1859
|
+
interface Coordinate {
|
|
1860
|
+
label: string;
|
|
1861
|
+
viewBox: string;
|
|
1862
|
+
locations: CoordinateLocation[];
|
|
1863
|
+
}
|
|
1864
|
+
interface CoordinateLocationDetail {
|
|
1865
|
+
label: string;
|
|
1866
|
+
locations: CoordinateLocation[];
|
|
1867
|
+
}
|
|
1868
|
+
|
|
1869
|
+
declare class UsMapService {
|
|
1870
|
+
private coordinates;
|
|
1871
|
+
getUsMapCoordinates(): Promise<Coordinate>;
|
|
1872
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UsMapService, never>;
|
|
1873
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UsMapService>;
|
|
1874
|
+
}
|
|
1875
|
+
|
|
1876
|
+
declare class UserCoverageAreaService {
|
|
1877
|
+
private httpClient;
|
|
1878
|
+
private readonly baseUrl;
|
|
1879
|
+
constructor(httpClient: HttpClient);
|
|
1880
|
+
getUserCoverageArea(query: GridifyQuery): Observable<any>;
|
|
1881
|
+
getUserCoverageAreaByUserId(userId: string): Observable<any>;
|
|
1882
|
+
private buildParams;
|
|
1883
|
+
bulkDelete(ids: string[]): Observable<Result>;
|
|
1884
|
+
bulkInsert(models: any[]): Observable<Result>;
|
|
1885
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UserCoverageAreaService, never>;
|
|
1886
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UserCoverageAreaService>;
|
|
1887
|
+
}
|
|
1888
|
+
|
|
1889
|
+
declare class Step2CoverageComponent {
|
|
1890
|
+
store: CredentialingStore;
|
|
1891
|
+
private usMapService;
|
|
1892
|
+
private postalCodeService;
|
|
1893
|
+
private userCoverageAreaService;
|
|
1894
|
+
private alertService;
|
|
1895
|
+
private tokenService;
|
|
1896
|
+
city: i0.WritableSignal<string>;
|
|
1897
|
+
state: i0.WritableSignal<string>;
|
|
1898
|
+
showMap: boolean;
|
|
1899
|
+
currentCoverage: i0.WritableSignal<boolean>;
|
|
1900
|
+
isStatesLoading: boolean;
|
|
1901
|
+
selectedStates: string[];
|
|
1902
|
+
coverages: any[];
|
|
1903
|
+
usCoordinates: Coordinate;
|
|
1904
|
+
filteredLocations: CoordinateLocationDetail[];
|
|
1905
|
+
states: StateModel[];
|
|
1906
|
+
showCoverage: boolean;
|
|
1907
|
+
showLoading: boolean;
|
|
1908
|
+
userCoverageArea: {
|
|
1909
|
+
forUser: ForUser;
|
|
1910
|
+
providerId: string;
|
|
1911
|
+
providerName: string;
|
|
1912
|
+
userId: string;
|
|
1913
|
+
userName: string;
|
|
1914
|
+
state: string;
|
|
1915
|
+
counties: never[];
|
|
1916
|
+
};
|
|
1917
|
+
isProvider: boolean;
|
|
1918
|
+
coverageSave: boolean;
|
|
1919
|
+
userContext: RoleContextModel;
|
|
1920
|
+
userId: any;
|
|
1921
|
+
emailId: any;
|
|
1922
|
+
userDetail: any;
|
|
1923
|
+
existingCoverageIds: string[];
|
|
1924
|
+
private initialCoverageSnapshot;
|
|
1925
|
+
constructor(store: CredentialingStore, usMapService: UsMapService, postalCodeService: PostalCodeServices, userCoverageAreaService: UserCoverageAreaService, alertService: AlertService, tokenService: TokenService);
|
|
1926
|
+
ngOnInit(): Promise<void>;
|
|
1927
|
+
getData(): void;
|
|
1928
|
+
toggleMap(): void;
|
|
1929
|
+
setSelectedStates(values: StateModel[]): void;
|
|
1930
|
+
onChangedCounty(event: any, stateCode: string, countyName: string, lat?: number, lng?: number): void;
|
|
1931
|
+
onSelectAllChanged(coverage: any): void;
|
|
1932
|
+
toggleCheckBox(state: string): any;
|
|
1933
|
+
updateFilteredLocations(): void;
|
|
1934
|
+
getCoverage(userId: string): void;
|
|
1935
|
+
syncStateCheckboxes(): void;
|
|
1936
|
+
skip(): void;
|
|
1937
|
+
saveCoverage(): void;
|
|
1938
|
+
previousStep(): void;
|
|
1939
|
+
prefillCoverage(data: any[]): void;
|
|
1940
|
+
hasCoverageChanged(): boolean;
|
|
1941
|
+
buildMapLocations(data: any[]): void;
|
|
1942
|
+
private buildCoveragePayload;
|
|
1943
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Step2CoverageComponent, never>;
|
|
1944
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<Step2CoverageComponent, "app-coverage", never, {}, {}, never, never, false, never>;
|
|
1945
|
+
}
|
|
1946
|
+
|
|
1947
|
+
declare class WorkexperienceComponent implements OnInit {
|
|
1948
|
+
userExperienceService: UserExperienceService;
|
|
1949
|
+
workStore: WorkExperienceStore;
|
|
1950
|
+
store: CredentialingStore;
|
|
1951
|
+
private countryService;
|
|
1952
|
+
private postalCodeService;
|
|
1953
|
+
private tokenService;
|
|
1954
|
+
private fb;
|
|
1955
|
+
private fileService;
|
|
1956
|
+
private http;
|
|
1957
|
+
private readonly uploadToAws;
|
|
1958
|
+
editingIndex: number;
|
|
1959
|
+
workexperienceForm: FormGroup;
|
|
1960
|
+
isEditing: i0.WritableSignal<boolean>;
|
|
1961
|
+
API_URL: any;
|
|
1962
|
+
API_URL_UPDATE: any;
|
|
1963
|
+
fileData: any;
|
|
1964
|
+
awsFileUpdate: UpdateAwsFileModelModel[];
|
|
1965
|
+
model: any;
|
|
1966
|
+
fileName: any;
|
|
1967
|
+
preferredStartDate: string | null;
|
|
1968
|
+
minDate: Date;
|
|
1969
|
+
countries: any[];
|
|
1970
|
+
states: any[];
|
|
1971
|
+
selectedCountry: string;
|
|
1972
|
+
selectedStates: string | null;
|
|
1973
|
+
userId: any;
|
|
1974
|
+
userName: any;
|
|
1975
|
+
cloudfront: any;
|
|
1976
|
+
proposalLoader: boolean;
|
|
1977
|
+
showpreview: i0.Signal<boolean>;
|
|
1978
|
+
userdata: any;
|
|
1979
|
+
constructor(userExperienceService: UserExperienceService, workStore: WorkExperienceStore, store: CredentialingStore, countryService: CountryServices, postalCodeService: PostalCodeServices, tokenService: TokenService, fb: FormBuilder, fileService: FileService, http: HttpClient);
|
|
1980
|
+
ngOnInit(): Promise<void>;
|
|
1981
|
+
getcountry(): void;
|
|
1982
|
+
getstates(countryCode: any): void;
|
|
1983
|
+
onCountryChange(countryCode: string): void;
|
|
1984
|
+
onPreferredDateChange(date: Date): void;
|
|
1985
|
+
selectFile(event: any): void;
|
|
1986
|
+
saveFile(): void;
|
|
1987
|
+
private saveAWSFile;
|
|
1988
|
+
saveAndContinue(): void;
|
|
1989
|
+
add(): void;
|
|
1990
|
+
edit(index: number): void;
|
|
1991
|
+
back(): void;
|
|
1992
|
+
nextStep(): void;
|
|
1993
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WorkexperienceComponent, never>;
|
|
1994
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WorkexperienceComponent, "app-workexperience", never, {}, {}, never, never, false, never>;
|
|
1995
|
+
}
|
|
1996
|
+
|
|
1997
|
+
declare class UsMapComponent implements OnChanges, OnInit, AfterViewInit {
|
|
1998
|
+
private cdr;
|
|
1999
|
+
private usMapService;
|
|
2000
|
+
viewinisialized: boolean;
|
|
2001
|
+
coordinates: any;
|
|
2002
|
+
selectedCoordinates: string[];
|
|
2003
|
+
selectedStates: any;
|
|
2004
|
+
changedSelectedStates: any;
|
|
2005
|
+
allowedStates: any;
|
|
2006
|
+
changedAllowedStates: any;
|
|
2007
|
+
isReadOnly: boolean;
|
|
2008
|
+
fillColor: string;
|
|
2009
|
+
fillStateColor: string;
|
|
2010
|
+
strokeColor: string;
|
|
2011
|
+
fillSelected: string;
|
|
2012
|
+
removeStateColor: string;
|
|
2013
|
+
click: EventEmitter<any>;
|
|
2014
|
+
usCoordinates: Coordinate;
|
|
2015
|
+
allCoordinates: Coordinate;
|
|
2016
|
+
filteredLocations: CoordinateLocationDetail[];
|
|
2017
|
+
usFillColor: string;
|
|
2018
|
+
usStrokeColor: string;
|
|
2019
|
+
constructor(cdr: ChangeDetectorRef, usMapService: UsMapService);
|
|
2020
|
+
ngOnInit(): void;
|
|
2021
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
2022
|
+
ngAfterViewInit(): void;
|
|
2023
|
+
fetchData(): void;
|
|
2024
|
+
modelValueChanged(): void;
|
|
2025
|
+
onUsMapClick(state: any, check?: boolean): void;
|
|
2026
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UsMapComponent, never>;
|
|
2027
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UsMapComponent, "us-map", never, { "selectedStates": { "alias": "selectedStates"; "required": false; }; "allowedStates": { "alias": "allowedStates"; "required": false; }; "isReadOnly": { "alias": "isReadOnly"; "required": false; }; "filteredLocations": { "alias": "filteredLocations"; "required": false; }; }, { "click": "onMapClick"; }, never, never, false, never>;
|
|
2028
|
+
}
|
|
2029
|
+
|
|
2030
|
+
declare class UsMapModule {
|
|
2031
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UsMapModule, never>;
|
|
2032
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<UsMapModule, [typeof UsMapComponent], [typeof i2.CommonModule], [typeof UsMapComponent]>;
|
|
2033
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<UsMapModule>;
|
|
2034
|
+
}
|
|
2035
|
+
|
|
2036
|
+
interface INg2LoadingSpinnerConfig {
|
|
2037
|
+
animationType?: string;
|
|
2038
|
+
backdropColor?: any;
|
|
2039
|
+
backdropBorderRadius?: any;
|
|
2040
|
+
spinnerColor?: any;
|
|
2041
|
+
spinnerPosition?: any;
|
|
2042
|
+
spinnerSize?: any;
|
|
2043
|
+
spinnerFontSize?: any;
|
|
2044
|
+
}
|
|
2045
|
+
declare class Ng2LoadingSpinnerConfig implements INg2LoadingSpinnerConfig {
|
|
2046
|
+
private config;
|
|
2047
|
+
animationType: string | undefined;
|
|
2048
|
+
backdropColor: string;
|
|
2049
|
+
spinnerColor: string;
|
|
2050
|
+
spinnerPosition: string;
|
|
2051
|
+
backdropBorderRadius: string;
|
|
2052
|
+
spinnerSize: string;
|
|
2053
|
+
spinnerFontSize: string;
|
|
2054
|
+
constructor(config: INg2LoadingSpinnerConfig);
|
|
2055
|
+
}
|
|
2056
|
+
|
|
2057
|
+
declare class Ng2LoadingSpinnerComponent implements OnInit {
|
|
2058
|
+
vcRef: ViewContainerRef;
|
|
2059
|
+
config: Ng2LoadingSpinnerConfig;
|
|
2060
|
+
template: TemplateRef<any>;
|
|
2061
|
+
ANIMATION_TYPES: {
|
|
2062
|
+
dualCircle: string;
|
|
2063
|
+
scalingBars: string;
|
|
2064
|
+
chasingDots: string;
|
|
2065
|
+
bouncingDots: string;
|
|
2066
|
+
fadingCircle: string;
|
|
2067
|
+
halfCircle: string;
|
|
2068
|
+
cubeGrid: string;
|
|
2069
|
+
};
|
|
2070
|
+
constructor(vcRef: ViewContainerRef);
|
|
2071
|
+
ngOnInit(): void;
|
|
2072
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Ng2LoadingSpinnerComponent, never>;
|
|
2073
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<Ng2LoadingSpinnerComponent, "ng2-loading-spinner", never, { "config": { "alias": "config"; "required": false; }; "template": { "alias": "template"; "required": false; }; }, {}, never, never, false, never>;
|
|
2074
|
+
}
|
|
2075
|
+
|
|
2076
|
+
declare class ConfigService {
|
|
2077
|
+
private readonly config;
|
|
2078
|
+
private readonly defaultConfig;
|
|
2079
|
+
constructor(config: INg2LoadingSpinnerConfig);
|
|
2080
|
+
normalizeConfigs(config: INg2LoadingSpinnerConfig): INg2LoadingSpinnerConfig;
|
|
2081
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ConfigService, [{ optional: true; }]>;
|
|
2082
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ConfigService>;
|
|
2083
|
+
}
|
|
2084
|
+
|
|
2085
|
+
declare class Ng2LoadingSpinnerDirective implements OnInit, OnChanges, OnDestroy {
|
|
2086
|
+
private el;
|
|
2087
|
+
private vcRef;
|
|
2088
|
+
private cfResolver;
|
|
2089
|
+
private renderer;
|
|
2090
|
+
private configService;
|
|
2091
|
+
show: any;
|
|
2092
|
+
config: any;
|
|
2093
|
+
template: TemplateRef<any>;
|
|
2094
|
+
private spinnerComponentRef;
|
|
2095
|
+
constructor(el: ElementRef, vcRef: ViewContainerRef, cfResolver: ComponentFactoryResolver, renderer: Renderer2, configService: ConfigService);
|
|
2096
|
+
ngOnInit(): void;
|
|
2097
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
2098
|
+
ngOnDestroy(): void;
|
|
2099
|
+
setPosition(): void;
|
|
2100
|
+
createSpinner(): void;
|
|
2101
|
+
destroySpinner(): void;
|
|
2102
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Ng2LoadingSpinnerDirective, never>;
|
|
2103
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<Ng2LoadingSpinnerDirective, "[ng2-loading]", never, { "show": { "alias": "ng2-loading"; "required": false; }; "config": { "alias": "config"; "required": false; }; "template": { "alias": "template"; "required": false; }; }, {}, never, never, false, never>;
|
|
2104
|
+
}
|
|
2105
|
+
|
|
2106
|
+
declare class Ng2LoadingSpinnerModule {
|
|
2107
|
+
static forRoot(globalConfig: INg2LoadingSpinnerConfig): ModuleWithProviders<Ng2LoadingSpinnerModule>;
|
|
2108
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Ng2LoadingSpinnerModule, never>;
|
|
2109
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<Ng2LoadingSpinnerModule, [typeof Ng2LoadingSpinnerComponent, typeof Ng2LoadingSpinnerDirective], [typeof i2.CommonModule], [typeof Ng2LoadingSpinnerDirective]>;
|
|
2110
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<Ng2LoadingSpinnerModule>;
|
|
2111
|
+
}
|
|
2112
|
+
|
|
2113
|
+
declare class LoaderComponent {
|
|
2114
|
+
show: boolean;
|
|
2115
|
+
small: boolean;
|
|
2116
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoaderComponent, never>;
|
|
2117
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LoaderComponent, "loader", never, { "show": { "alias": "show"; "required": false; }; "small": { "alias": "small"; "required": false; }; }, {}, never, never, false, never>;
|
|
2118
|
+
}
|
|
2119
|
+
|
|
2120
|
+
declare class LoaderModule {
|
|
2121
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoaderModule, never>;
|
|
2122
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<LoaderModule, [typeof LoaderComponent], [typeof i2.CommonModule], [typeof LoaderComponent]>;
|
|
2123
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<LoaderModule>;
|
|
2124
|
+
}
|
|
2125
|
+
|
|
2126
|
+
declare class MinutesToHoursPipe implements PipeTransform {
|
|
2127
|
+
transform(value: number, dateFormat: string): string;
|
|
2128
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MinutesToHoursPipe, never>;
|
|
2129
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<MinutesToHoursPipe, "minutesToHours", false>;
|
|
2130
|
+
}
|
|
2131
|
+
|
|
2132
|
+
declare class SearchPipe implements PipeTransform {
|
|
2133
|
+
transform(value: any, keys: string, term: string): any;
|
|
2134
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SearchPipe, never>;
|
|
2135
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<SearchPipe, "SearchBy", false>;
|
|
2136
|
+
}
|
|
2137
|
+
|
|
2138
|
+
declare class ValidateNullValuePipe implements PipeTransform {
|
|
2139
|
+
transform(value: string, args?: string): string;
|
|
2140
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ValidateNullValuePipe, never>;
|
|
2141
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<ValidateNullValuePipe, "validateNullValue", false>;
|
|
2142
|
+
}
|
|
2143
|
+
|
|
2144
|
+
declare class TitleCaseExceptPipe implements PipeTransform {
|
|
2145
|
+
transform(value: string): any;
|
|
2146
|
+
private isPreposition;
|
|
2147
|
+
private toTilteCase;
|
|
2148
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TitleCaseExceptPipe, never>;
|
|
2149
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<TitleCaseExceptPipe, "titleCaseExcept", false>;
|
|
2150
|
+
}
|
|
2151
|
+
|
|
2152
|
+
declare class CustomPipesModule {
|
|
2153
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CustomPipesModule, never>;
|
|
2154
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CustomPipesModule, [typeof MinutesToHoursPipe, typeof SearchPipe, typeof ValidateNullValuePipe, typeof TitleCaseExceptPipe], never, [typeof MinutesToHoursPipe, typeof SearchPipe, typeof ValidateNullValuePipe, typeof TitleCaseExceptPipe]>;
|
|
2155
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<CustomPipesModule>;
|
|
2156
|
+
}
|
|
2157
|
+
|
|
2158
|
+
declare class NgxStarsComponent implements OnChanges, OnInit, OnDestroy {
|
|
2159
|
+
maxStars: number;
|
|
2160
|
+
initialStars: number;
|
|
2161
|
+
readonly: boolean;
|
|
2162
|
+
size: number;
|
|
2163
|
+
color: string;
|
|
2164
|
+
animation: boolean;
|
|
2165
|
+
animationSpeed: number;
|
|
2166
|
+
customPadding: string;
|
|
2167
|
+
wholeStars: boolean;
|
|
2168
|
+
customStarIcons: {
|
|
2169
|
+
empty: string;
|
|
2170
|
+
half: string;
|
|
2171
|
+
full: string;
|
|
2172
|
+
};
|
|
2173
|
+
ratingOutput: EventEmitter<number>;
|
|
2174
|
+
rating: number;
|
|
2175
|
+
editableStars: EditableStar[];
|
|
2176
|
+
animationInterval: any;
|
|
2177
|
+
animationRunning: boolean;
|
|
2178
|
+
private customCssClasses;
|
|
2179
|
+
private customClassIdentifier;
|
|
2180
|
+
ngOnInit(): void;
|
|
2181
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
2182
|
+
ngOnDestroy(): void;
|
|
2183
|
+
private setupStarImages;
|
|
2184
|
+
private createCssClass;
|
|
2185
|
+
starPadding(): {
|
|
2186
|
+
[p: string]: string;
|
|
2187
|
+
};
|
|
2188
|
+
starColorAndSize(): {
|
|
2189
|
+
[p: string]: string;
|
|
2190
|
+
};
|
|
2191
|
+
private starColor;
|
|
2192
|
+
starSize(): {
|
|
2193
|
+
[p: string]: string;
|
|
2194
|
+
};
|
|
2195
|
+
private safeSize;
|
|
2196
|
+
starAnimation(): void;
|
|
2197
|
+
cancelStarAnimation(): void;
|
|
2198
|
+
setRating(rating: number): void;
|
|
2199
|
+
onStarHover(event: MouseEvent, clickedStar: EditableStar): void;
|
|
2200
|
+
onStarClick(event: MouseEvent, clickedStar: EditableStar): void;
|
|
2201
|
+
onZeroStarClick(): void;
|
|
2202
|
+
onZeroStarHover(): void;
|
|
2203
|
+
onStarsUnhover(): void;
|
|
2204
|
+
private clickedInFirstHalf;
|
|
2205
|
+
noop(): void;
|
|
2206
|
+
private getStarClass;
|
|
2207
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgxStarsComponent, never>;
|
|
2208
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgxStarsComponent, "ngx-stars", never, { "maxStars": { "alias": "maxStars"; "required": false; }; "initialStars": { "alias": "initialStars"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "size": { "alias": "size"; "required": false; }; "color": { "alias": "color"; "required": false; }; "animation": { "alias": "animation"; "required": false; }; "animationSpeed": { "alias": "animationSpeed"; "required": false; }; "customPadding": { "alias": "customPadding"; "required": false; }; "wholeStars": { "alias": "wholeStars"; "required": false; }; "customStarIcons": { "alias": "customStarIcons"; "required": false; }; }, { "ratingOutput": "ratingOutput"; }, never, never, false, never>;
|
|
2209
|
+
}
|
|
2210
|
+
declare class EditableStar {
|
|
2211
|
+
position: number;
|
|
2212
|
+
classname: any;
|
|
2213
|
+
constructor(position: number);
|
|
2214
|
+
}
|
|
2215
|
+
|
|
2216
|
+
declare class NgxStarsModule {
|
|
2217
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgxStarsModule, never>;
|
|
2218
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<NgxStarsModule, [typeof NgxStarsComponent], [typeof i2.CommonModule], [typeof NgxStarsComponent]>;
|
|
2219
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<NgxStarsModule>;
|
|
2220
|
+
}
|
|
2221
|
+
|
|
2222
|
+
interface AddressComponent {
|
|
2223
|
+
long_name: string;
|
|
2224
|
+
short_name: string;
|
|
2225
|
+
types: string[];
|
|
2226
|
+
}
|
|
2227
|
+
|
|
2228
|
+
interface LatLng {
|
|
2229
|
+
/** Comparison function. */
|
|
2230
|
+
equals(other: LatLng): boolean;
|
|
2231
|
+
/** Returns the latitude in degrees. */
|
|
2232
|
+
lat(): number;
|
|
2233
|
+
/** Returns the longitude in degrees. */
|
|
2234
|
+
lng(): number;
|
|
2235
|
+
/** Converts to string representation. */
|
|
2236
|
+
toString(): string;
|
|
2237
|
+
/** Returns a string of the form "lat,lng". We round the lat/lng values to 6 decimal places by default. */
|
|
2238
|
+
toUrlValue(precision?: number): string;
|
|
2239
|
+
/** Converts to JSON representation. This function is intended to be used via JSON.stringify. */
|
|
2240
|
+
toJSON(): LatLngLiteral;
|
|
2241
|
+
}
|
|
2242
|
+
type LatLngLiteral = {
|
|
2243
|
+
lat: number;
|
|
2244
|
+
lng: number;
|
|
2245
|
+
};
|
|
2246
|
+
type LatLngBoundsLiteral = {
|
|
2247
|
+
east: number;
|
|
2248
|
+
north: number;
|
|
2249
|
+
south: number;
|
|
2250
|
+
west: number;
|
|
2251
|
+
};
|
|
2252
|
+
|
|
2253
|
+
/**
|
|
2254
|
+
* A LatLngBounds instance represents a rectangle in geographical coordinates, including one
|
|
2255
|
+
* that crosses the 180 degrees longitudinal meridian.
|
|
2256
|
+
*/
|
|
2257
|
+
|
|
2258
|
+
interface LatLngBounds {
|
|
2259
|
+
/** Returns true if the given lat/lng is in this bounds. */
|
|
2260
|
+
contains(latLng: LatLng | LatLngLiteral): boolean;
|
|
2261
|
+
/** Returns true if this bounds approximately equals the given bounds. */
|
|
2262
|
+
equals(other: LatLngBounds | LatLngBoundsLiteral): boolean;
|
|
2263
|
+
/** Extends this bounds to contain the given point. */
|
|
2264
|
+
extend(point: LatLng | LatLngLiteral): LatLngBounds;
|
|
2265
|
+
/** Computes the center of this LatLngBounds */
|
|
2266
|
+
getCenter(): LatLng;
|
|
2267
|
+
/** Returns the north-east corner of this bounds. */
|
|
2268
|
+
getNorthEast(): LatLng;
|
|
2269
|
+
/** Returns the south-west corner of this bounds. */
|
|
2270
|
+
getSouthWest(): LatLng;
|
|
2271
|
+
/** Returns true if this bounds shares any points with the other bounds. */
|
|
2272
|
+
intersects(other: LatLngBounds | LatLngBoundsLiteral): boolean;
|
|
2273
|
+
/** Returns if the bounds are empty. */
|
|
2274
|
+
isEmpty(): boolean;
|
|
2275
|
+
/** Converts to JSON representation. This function is intended to be used via JSON.stringify. */
|
|
2276
|
+
toJSON(): LatLngBoundsLiteral;
|
|
2277
|
+
/** Converts the given map bounds to a lat/lng span. */
|
|
2278
|
+
toSpan(): LatLng;
|
|
2279
|
+
/** Converts to string. */
|
|
2280
|
+
toString(): string;
|
|
2281
|
+
/**
|
|
2282
|
+
* Returns a string of the form "lat_lo,lng_lo,lat_hi,lng_hi" for this bounds, where "lo" corresponds to the
|
|
2283
|
+
* southwest corner of the bounding box, while "hi" corresponds to the northeast corner of that box.
|
|
2284
|
+
*/
|
|
2285
|
+
toUrlValue(precision?: number): string;
|
|
2286
|
+
/** Extends this bounds to contain the union of this and the given bounds. */
|
|
2287
|
+
union(other: LatLngBounds | LatLngBoundsLiteral): LatLngBounds;
|
|
2288
|
+
}
|
|
2289
|
+
|
|
2290
|
+
interface Geometry {
|
|
2291
|
+
location: LatLng;
|
|
2292
|
+
viewport: LatLngBounds;
|
|
2293
|
+
}
|
|
2294
|
+
|
|
2295
|
+
interface Photo {
|
|
2296
|
+
height: number;
|
|
2297
|
+
html_attributions: string[];
|
|
2298
|
+
width: number;
|
|
2299
|
+
getUrl(request: PhotoRequest): string;
|
|
2300
|
+
}
|
|
2301
|
+
declare class PhotoRequest {
|
|
2302
|
+
maxWidth: number;
|
|
2303
|
+
maxHeight: number;
|
|
2304
|
+
}
|
|
2305
|
+
|
|
2306
|
+
interface OpeningHours {
|
|
2307
|
+
open_now: boolean;
|
|
2308
|
+
periods: OpeningPeriod[];
|
|
2309
|
+
weekday_text: string[];
|
|
2310
|
+
}
|
|
2311
|
+
interface OpeningPeriod {
|
|
2312
|
+
open: OpeningHoursTime;
|
|
2313
|
+
close?: OpeningHoursTime;
|
|
2314
|
+
}
|
|
2315
|
+
interface OpeningHoursTime {
|
|
2316
|
+
day: number;
|
|
2317
|
+
hours: number;
|
|
2318
|
+
minutes: number;
|
|
2319
|
+
nextDate: number;
|
|
2320
|
+
time: string;
|
|
2321
|
+
}
|
|
2322
|
+
|
|
2323
|
+
interface PlaceReview {
|
|
2324
|
+
aspects: PlaceAspectRating[];
|
|
2325
|
+
author_name: string;
|
|
2326
|
+
author_url: string;
|
|
2327
|
+
language: string;
|
|
2328
|
+
text: string;
|
|
2329
|
+
}
|
|
2330
|
+
interface PlaceAspectRating {
|
|
2331
|
+
rating: number;
|
|
2332
|
+
type: string;
|
|
2333
|
+
}
|
|
2334
|
+
|
|
2335
|
+
declare class Address {
|
|
2336
|
+
address_components: AddressComponent[];
|
|
2337
|
+
adr_address: string;
|
|
2338
|
+
formatted_address: string;
|
|
2339
|
+
formatted_phone_number: string;
|
|
2340
|
+
geometry: Geometry;
|
|
2341
|
+
html_attributions: string[];
|
|
2342
|
+
icon: string;
|
|
2343
|
+
id: string;
|
|
2344
|
+
international_phone_number: string;
|
|
2345
|
+
name: string;
|
|
2346
|
+
opening_hours: OpeningHours;
|
|
2347
|
+
permanently_closed: boolean;
|
|
2348
|
+
photos: Photo[];
|
|
2349
|
+
place_id: string;
|
|
2350
|
+
price_level: number;
|
|
2351
|
+
rating: number;
|
|
2352
|
+
reviews: PlaceReview[];
|
|
2353
|
+
types: string[];
|
|
2354
|
+
url: string;
|
|
2355
|
+
utc_offset: number;
|
|
2356
|
+
vicinity: string;
|
|
2357
|
+
website: string;
|
|
2358
|
+
}
|
|
2359
|
+
|
|
2360
|
+
declare class ComponentRestrictions {
|
|
2361
|
+
country: string;
|
|
2362
|
+
constructor(obj?: Partial<ComponentRestrictions>);
|
|
2363
|
+
}
|
|
2364
|
+
|
|
2365
|
+
declare class Options {
|
|
2366
|
+
bounds: LatLngBounds;
|
|
2367
|
+
componentRestrictions: ComponentRestrictions;
|
|
2368
|
+
types: string[];
|
|
2369
|
+
fields: string[];
|
|
2370
|
+
strictBounds: boolean;
|
|
2371
|
+
origin: LatLng;
|
|
2372
|
+
constructor(opt?: Partial<Options>);
|
|
2373
|
+
}
|
|
2374
|
+
|
|
2375
|
+
declare class GooglePlaceDirective implements AfterViewInit {
|
|
2376
|
+
private el;
|
|
2377
|
+
private ngZone;
|
|
2378
|
+
options: Options;
|
|
2379
|
+
onAddressChange: EventEmitter<Address>;
|
|
2380
|
+
private autocomplete;
|
|
2381
|
+
private eventListener;
|
|
2382
|
+
place: Address;
|
|
2383
|
+
constructor(el: ElementRef, ngZone: NgZone);
|
|
2384
|
+
ngAfterViewInit(): void;
|
|
2385
|
+
private isGoogleLibExists;
|
|
2386
|
+
private initialize;
|
|
2387
|
+
reset(): void;
|
|
2388
|
+
private handleChangeEvent;
|
|
2389
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GooglePlaceDirective, never>;
|
|
2390
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<GooglePlaceDirective, "[ngx-google-places-autocomplete]", ["ngx-places"], { "options": { "alias": "options"; "required": false; }; }, { "onAddressChange": "onAddressChange"; }, never, never, false, never>;
|
|
2391
|
+
}
|
|
2392
|
+
|
|
2393
|
+
declare class GooglePlaceModule {
|
|
2394
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GooglePlaceModule, never>;
|
|
2395
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<GooglePlaceModule, [typeof GooglePlaceDirective], never, [typeof GooglePlaceDirective]>;
|
|
2396
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<GooglePlaceModule>;
|
|
2397
|
+
}
|
|
2398
|
+
|
|
2399
|
+
declare class TextMaskConfig {
|
|
2400
|
+
mask: Array<string | RegExp> | ((raw: string) => Array<string | RegExp>) | false;
|
|
2401
|
+
guide?: boolean;
|
|
2402
|
+
placeholderChar?: string;
|
|
2403
|
+
pipe?: (conformedValue: string, config: TextMaskConfig) => false | string | object;
|
|
2404
|
+
keepCharPositions?: boolean;
|
|
2405
|
+
showMask?: boolean;
|
|
2406
|
+
}
|
|
2407
|
+
declare class MaskedInputDirective implements ControlValueAccessor, OnChanges {
|
|
2408
|
+
private _renderer;
|
|
2409
|
+
private _elementRef;
|
|
2410
|
+
private _compositionMode;
|
|
2411
|
+
textMaskConfig: TextMaskConfig;
|
|
2412
|
+
onChange: (_: any) => void;
|
|
2413
|
+
onTouched: () => void;
|
|
2414
|
+
private textMaskInputElement;
|
|
2415
|
+
private inputElement;
|
|
2416
|
+
/** Whether the user is creating a composition string (IME events). */
|
|
2417
|
+
private _composing;
|
|
2418
|
+
constructor(_renderer: Renderer2, _elementRef: ElementRef, _compositionMode: boolean);
|
|
2419
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
2420
|
+
writeValue(value: any): void;
|
|
2421
|
+
registerOnChange(fn: (_: any) => void): void;
|
|
2422
|
+
registerOnTouched(fn: () => void): void;
|
|
2423
|
+
setDisabledState(isDisabled: boolean): void;
|
|
2424
|
+
_handleInput(value: any): void;
|
|
2425
|
+
_setupMask(create?: boolean): void;
|
|
2426
|
+
_compositionStart(): void;
|
|
2427
|
+
_compositionEnd(value: any): void;
|
|
2428
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MaskedInputDirective, [null, null, { optional: true; }]>;
|
|
2429
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MaskedInputDirective, "[textMask]", ["textMask"], { "textMaskConfig": { "alias": "textMask"; "required": false; }; }, {}, never, never, false, never>;
|
|
2430
|
+
}
|
|
2431
|
+
declare class TextMaskModule {
|
|
2432
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TextMaskModule, never>;
|
|
2433
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TextMaskModule, [typeof MaskedInputDirective], never, [typeof MaskedInputDirective]>;
|
|
2434
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TextMaskModule>;
|
|
2435
|
+
}
|
|
2436
|
+
|
|
2437
|
+
declare class SignaturePadComponent implements OnInit, AfterViewInit, OnChanges {
|
|
2438
|
+
private signaturePad;
|
|
2439
|
+
canvasRef: ElementRef;
|
|
2440
|
+
uploadImage: ElementRef;
|
|
2441
|
+
currentPoints: any[];
|
|
2442
|
+
points: any[];
|
|
2443
|
+
pointsChange: EventEmitter<any>;
|
|
2444
|
+
editable: boolean;
|
|
2445
|
+
isSubmit: boolean;
|
|
2446
|
+
Title: string;
|
|
2447
|
+
signData: any;
|
|
2448
|
+
penColor: string;
|
|
2449
|
+
backgroundColor: string;
|
|
2450
|
+
showDoneButton: boolean;
|
|
2451
|
+
doneButtonText: string;
|
|
2452
|
+
doneButtonClass: string;
|
|
2453
|
+
showClearButton: boolean;
|
|
2454
|
+
clearButtonText: string;
|
|
2455
|
+
clearButtonClass: string;
|
|
2456
|
+
showUploadButton: boolean;
|
|
2457
|
+
uploadButtonText: string;
|
|
2458
|
+
uploadButtonClass: string;
|
|
2459
|
+
format: 'blob' | 'base64' | 'json';
|
|
2460
|
+
height: number;
|
|
2461
|
+
width: number;
|
|
2462
|
+
done: EventEmitter<any>;
|
|
2463
|
+
upload: EventEmitter<any>;
|
|
2464
|
+
cleared: EventEmitter<any>;
|
|
2465
|
+
signatureData: EventEmitter<any>;
|
|
2466
|
+
isShown: boolean;
|
|
2467
|
+
croppedImage: any;
|
|
2468
|
+
imageChangedEvent: any;
|
|
2469
|
+
constructor();
|
|
2470
|
+
ngOnInit(): void;
|
|
2471
|
+
ngAfterViewInit(): void;
|
|
2472
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
2473
|
+
initPad(): void;
|
|
2474
|
+
clearPad(): void;
|
|
2475
|
+
applyPoints(): void;
|
|
2476
|
+
emitPoints(): void;
|
|
2477
|
+
emitPointsAndBlob(): void;
|
|
2478
|
+
emitBlob(): void;
|
|
2479
|
+
uploadSignImage(event: any): void;
|
|
2480
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SignaturePadComponent, never>;
|
|
2481
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SignaturePadComponent, "ng-signature-pad", never, { "points": { "alias": "points"; "required": false; }; "editable": { "alias": "editable"; "required": false; }; "isSubmit": { "alias": "isSubmit"; "required": false; }; "Title": { "alias": "Title"; "required": false; }; "signData": { "alias": "signData"; "required": false; }; "penColor": { "alias": "penColor"; "required": false; }; "backgroundColor": { "alias": "backgroundColor"; "required": false; }; "showDoneButton": { "alias": "showDoneButton"; "required": false; }; "doneButtonText": { "alias": "doneButtonText"; "required": false; }; "doneButtonClass": { "alias": "doneButtonClass"; "required": false; }; "showClearButton": { "alias": "showClearButton"; "required": false; }; "clearButtonText": { "alias": "clearButtonText"; "required": false; }; "clearButtonClass": { "alias": "clearButtonClass"; "required": false; }; "showUploadButton": { "alias": "showUploadButton"; "required": false; }; "uploadButtonText": { "alias": "uploadButtonText"; "required": false; }; "uploadButtonClass": { "alias": "uploadButtonClass"; "required": false; }; "format": { "alias": "format"; "required": false; }; "height": { "alias": "height"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, { "pointsChange": "pointsChange"; "done": "done"; "upload": "upload"; "cleared": "cleared"; "signatureData": "signatureData"; }, never, never, false, never>;
|
|
2482
|
+
}
|
|
2483
|
+
|
|
2484
|
+
declare class SignaturePadModule {
|
|
2485
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SignaturePadModule, never>;
|
|
2486
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SignaturePadModule, [typeof SignaturePadComponent], [typeof i2.CommonModule], [typeof SignaturePadComponent]>;
|
|
2487
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SignaturePadModule>;
|
|
2488
|
+
}
|
|
2489
|
+
|
|
2490
|
+
declare class AssetUrlService {
|
|
2491
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AssetUrlService, never>;
|
|
2492
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AssetUrlService>;
|
|
2493
|
+
}
|
|
2494
|
+
|
|
2495
|
+
declare class AssetUrlPipe {
|
|
2496
|
+
private asset;
|
|
2497
|
+
constructor(asset: AssetUrlService);
|
|
2498
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AssetUrlPipe, never>;
|
|
2499
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<AssetUrlPipe, "assetUrl", false>;
|
|
2500
|
+
}
|
|
2501
|
+
|
|
2502
|
+
interface State {
|
|
2503
|
+
stateCode: string;
|
|
2504
|
+
stateName: string;
|
|
2505
|
+
}
|
|
2506
|
+
declare class StateService {
|
|
2507
|
+
private states;
|
|
2508
|
+
getStateName(code: string): string;
|
|
2509
|
+
getStates(): State[];
|
|
2510
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StateService, never>;
|
|
2511
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<StateService>;
|
|
2512
|
+
}
|
|
2513
|
+
|
|
2514
|
+
declare class StateNamePipe implements PipeTransform {
|
|
2515
|
+
private stateService;
|
|
2516
|
+
constructor(stateService: StateService);
|
|
2517
|
+
transform(code: string): string;
|
|
2518
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StateNamePipe, never>;
|
|
2519
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<StateNamePipe, "stateName", false>;
|
|
2520
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<StateNamePipe>;
|
|
2521
|
+
}
|
|
2522
|
+
|
|
2523
|
+
declare class CommonPipesModule {
|
|
2524
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CommonPipesModule, never>;
|
|
2525
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CommonPipesModule, [typeof AssetUrlPipe, typeof StateNamePipe], [typeof i2.CommonModule], [typeof i2.CommonModule, typeof AssetUrlPipe, typeof StateNamePipe]>;
|
|
2526
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<CommonPipesModule>;
|
|
2527
|
+
}
|
|
2528
|
+
|
|
2529
|
+
declare class InitialProcessModule {
|
|
2530
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InitialProcessModule, never>;
|
|
2531
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<InitialProcessModule, [typeof InitialProcessComponent, typeof TermsConditionsComponent, typeof PrivacyPolicyComponent, typeof CredentialingComponent, typeof StepperComponent, typeof EducationComponent, typeof CertificationComponent, typeof SkillsComponent, typeof LicensesComponent, typeof ToolsComponent, typeof RoleSelectionComponent, typeof Step2CoverageComponent, typeof WorkexperienceComponent], [typeof i2.CommonModule, typeof _angular_forms.FormsModule, typeof _angular_forms.ReactiveFormsModule, typeof i16.RouterModule, typeof UsMapModule, typeof i18.NgSelectModule, typeof Ng2LoadingSpinnerModule, typeof LoaderModule, typeof CustomPipesModule, typeof NgxStarsModule, typeof i23.TooltipModule, typeof i24.TabsModule, typeof i25.AccordionModule, typeof GooglePlaceModule, typeof i27.GoogleMapsModule, typeof TextMaskModule, typeof SignaturePadModule, typeof CommonPipesModule], [typeof InitialProcessComponent]>;
|
|
2532
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<InitialProcessModule>;
|
|
2533
|
+
}
|
|
2534
|
+
|
|
2535
|
+
declare class MustChangePasswordComponent {
|
|
2536
|
+
private fb;
|
|
2537
|
+
private auth;
|
|
2538
|
+
userService: UserDetailService;
|
|
2539
|
+
private tokenService;
|
|
2540
|
+
changePasswordForm: FormGroup;
|
|
2541
|
+
submitted: boolean;
|
|
2542
|
+
isLoading: boolean;
|
|
2543
|
+
errorMessage: string;
|
|
2544
|
+
constructor(fb: FormBuilder, auth: AuthService, userService: UserDetailService, tokenService: TokenService);
|
|
2545
|
+
get f(): {
|
|
2546
|
+
[key: string]: AbstractControl;
|
|
2547
|
+
};
|
|
2548
|
+
passwordMatchValidator(form: AbstractControl): {
|
|
2549
|
+
mismatch: boolean;
|
|
2550
|
+
} | null;
|
|
2551
|
+
onSubmit(): Promise<void>;
|
|
2552
|
+
logout(): Promise<void>;
|
|
2553
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MustChangePasswordComponent, never>;
|
|
2554
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MustChangePasswordComponent, "app-must-change-password", never, {}, {}, never, never, true, never>;
|
|
2555
|
+
}
|
|
2556
|
+
|
|
2557
|
+
export { InitialProcessComponent, InitialProcessModule, MustChangePasswordComponent };
|