@idsoftsource/initial-process 1.5.8 → 1.6.0
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/fesm2022/idsoftsource-initial-process.mjs +29566 -29522
- package/fesm2022/idsoftsource-initial-process.mjs.map +1 -1
- package/index.d.ts +493 -474
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import * as i0 from '@angular/core';
|
|
|
2
2
|
import { InjectionToken, OnInit, ElementRef, EventEmitter, TemplateRef, Injector, OnChanges, AfterViewInit, ChangeDetectorRef, SimpleChanges, ViewContainerRef, OnDestroy, ComponentFactoryResolver, Renderer2, ModuleWithProviders, PipeTransform, NgZone } from '@angular/core';
|
|
3
3
|
import * as _angular_forms from '@angular/forms';
|
|
4
4
|
import { FormGroup, FormBuilder, FormControl, FormArray, UntypedFormGroup, UntypedFormBuilder, ControlValueAccessor, AbstractControl } from '@angular/forms';
|
|
5
|
-
import * as
|
|
5
|
+
import * as i17 from '@angular/router';
|
|
6
6
|
import { Router, RouterOutlet } from '@angular/router';
|
|
7
7
|
import { Observable, Subscription } from 'rxjs';
|
|
8
8
|
import { BsModalRef, BsModalService } from 'ngx-bootstrap/modal';
|
|
@@ -11,12 +11,12 @@ import { AuthService } from '@auth0/auth0-angular';
|
|
|
11
11
|
import { HttpClient } from '@angular/common/http';
|
|
12
12
|
import * as i2 from '@angular/common';
|
|
13
13
|
import { ViewportScroller } from '@angular/common';
|
|
14
|
-
import * as
|
|
15
|
-
import * as
|
|
16
|
-
import * as
|
|
17
|
-
import * as
|
|
18
|
-
import * as
|
|
19
|
-
import * as
|
|
14
|
+
import * as i19 from '@ng-select/ng-select';
|
|
15
|
+
import * as i20 from 'ngx-bootstrap/datepicker';
|
|
16
|
+
import * as i25 from 'ngx-bootstrap/tooltip';
|
|
17
|
+
import * as i26 from 'ngx-bootstrap/tabs';
|
|
18
|
+
import * as i27 from 'ngx-bootstrap/accordion';
|
|
19
|
+
import * as i29 from '@angular/google-maps';
|
|
20
20
|
|
|
21
21
|
interface MasterModel {
|
|
22
22
|
}
|
|
@@ -180,6 +180,8 @@ interface GridifyQuery {
|
|
|
180
180
|
pageSize?: number;
|
|
181
181
|
orderBy?: string;
|
|
182
182
|
filter?: any;
|
|
183
|
+
targetUserId?: string;
|
|
184
|
+
targetProviderId?: string;
|
|
183
185
|
}
|
|
184
186
|
|
|
185
187
|
interface ValidationFailure {
|
|
@@ -656,6 +658,91 @@ interface LibraryConfig {
|
|
|
656
658
|
}
|
|
657
659
|
declare const LIBRARY_CONFIG: InjectionToken<LibraryConfig>;
|
|
658
660
|
|
|
661
|
+
/**
|
|
662
|
+
* Represents the complete resume profile for a candidate.
|
|
663
|
+
*/
|
|
664
|
+
interface ResumeProfile {
|
|
665
|
+
id: string;
|
|
666
|
+
targetProviderId?: string;
|
|
667
|
+
targetProviderName?: string;
|
|
668
|
+
cloudfrontUrl?: string;
|
|
669
|
+
targetUserId?: string;
|
|
670
|
+
basicDetails: BasicDetails;
|
|
671
|
+
workExperience: WorkExperience$1[];
|
|
672
|
+
education: Education$1[];
|
|
673
|
+
certifications: Certification$3[];
|
|
674
|
+
licenses: License$1[];
|
|
675
|
+
skills: string[];
|
|
676
|
+
tools: string[];
|
|
677
|
+
}
|
|
678
|
+
/**
|
|
679
|
+
* Personal and contact information including a professional summary.
|
|
680
|
+
*/
|
|
681
|
+
interface BasicDetails {
|
|
682
|
+
firstName: string;
|
|
683
|
+
lastName: string;
|
|
684
|
+
email: string;
|
|
685
|
+
phone: string;
|
|
686
|
+
address: string;
|
|
687
|
+
city: string;
|
|
688
|
+
state: string;
|
|
689
|
+
zipCode: string;
|
|
690
|
+
country: string;
|
|
691
|
+
jobTitle: string;
|
|
692
|
+
yearsOfExperience: number;
|
|
693
|
+
summary: string;
|
|
694
|
+
}
|
|
695
|
+
/**
|
|
696
|
+
* Details regarding professional work history.
|
|
697
|
+
*/
|
|
698
|
+
interface WorkExperience$1 {
|
|
699
|
+
company: string;
|
|
700
|
+
jobTitle: string;
|
|
701
|
+
country: string;
|
|
702
|
+
state: string;
|
|
703
|
+
city: string;
|
|
704
|
+
startDate: string;
|
|
705
|
+
endDate: string | null;
|
|
706
|
+
isCurrent: boolean;
|
|
707
|
+
responsibilities: string[];
|
|
708
|
+
}
|
|
709
|
+
/**
|
|
710
|
+
* Educational background, including degrees, certificates, and specific courses.
|
|
711
|
+
*/
|
|
712
|
+
interface Education$1 {
|
|
713
|
+
degree: string;
|
|
714
|
+
degreeType: 'Associate' | 'Certificate' | 'Course' | 'Bachelors' | 'Masters' | string;
|
|
715
|
+
institution: string;
|
|
716
|
+
country: string;
|
|
717
|
+
state: string | null;
|
|
718
|
+
city: string | null;
|
|
719
|
+
startDate: string;
|
|
720
|
+
endDate: string;
|
|
721
|
+
achievements: string[];
|
|
722
|
+
}
|
|
723
|
+
/**
|
|
724
|
+
* Professional certifications and credentials.
|
|
725
|
+
*/
|
|
726
|
+
interface Certification$3 {
|
|
727
|
+
name: string;
|
|
728
|
+
issuingOrganization: string | null;
|
|
729
|
+
state: string | null;
|
|
730
|
+
issueDate: string | null;
|
|
731
|
+
expiryDate: string | null;
|
|
732
|
+
credentialId: string | null;
|
|
733
|
+
}
|
|
734
|
+
/**
|
|
735
|
+
* Legal licenses, such as driver's or professional operating licenses.
|
|
736
|
+
*/
|
|
737
|
+
interface License$1 {
|
|
738
|
+
name: string;
|
|
739
|
+
issuingAuthority: string | null;
|
|
740
|
+
licenseNumber: string | null;
|
|
741
|
+
state: string | null;
|
|
742
|
+
issueDate: string | null;
|
|
743
|
+
expiryDate: string | null;
|
|
744
|
+
}
|
|
745
|
+
|
|
659
746
|
interface AppBranding {
|
|
660
747
|
logo: string;
|
|
661
748
|
displayName: string;
|
|
@@ -675,6 +762,8 @@ declare class InitialProcessComponent implements OnInit {
|
|
|
675
762
|
private roleContextService;
|
|
676
763
|
private authLogoutService;
|
|
677
764
|
private libConfig;
|
|
765
|
+
isResume: boolean;
|
|
766
|
+
resumeModel: ResumeProfile | null;
|
|
678
767
|
signatureFileId: any;
|
|
679
768
|
signatureUrl: any;
|
|
680
769
|
isAgreeEnabled: boolean;
|
|
@@ -882,7 +971,7 @@ declare class InitialProcessComponent implements OnInit {
|
|
|
882
971
|
saveContractorSubCategory(id: any): void;
|
|
883
972
|
ngOnDestroy(): void;
|
|
884
973
|
static ɵfac: i0.ɵɵFactoryDeclaration<InitialProcessComponent, never>;
|
|
885
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InitialProcessComponent, "app-initial-process", never, {}, {}, never, never, false, never>;
|
|
974
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InitialProcessComponent, "app-initial-process", never, { "isResume": { "alias": "isResume"; "required": false; }; "resumeModel": { "alias": "resumeModel"; "required": false; }; }, {}, never, never, false, never>;
|
|
886
975
|
}
|
|
887
976
|
|
|
888
977
|
declare class TermsConditionsComponent {
|
|
@@ -951,6 +1040,7 @@ interface UserToolModel extends MasterModel {
|
|
|
951
1040
|
providerId?: string;
|
|
952
1041
|
providerName?: string;
|
|
953
1042
|
userId?: string;
|
|
1043
|
+
targetUserId?: string;
|
|
954
1044
|
userName?: string;
|
|
955
1045
|
id?: any;
|
|
956
1046
|
toolName?: string;
|
|
@@ -975,87 +1065,6 @@ interface UserToolModel extends MasterModel {
|
|
|
975
1065
|
isOpen?: boolean;
|
|
976
1066
|
}
|
|
977
1067
|
|
|
978
|
-
/**
|
|
979
|
-
* Represents the complete resume profile for a candidate.
|
|
980
|
-
*/
|
|
981
|
-
interface ResumeProfile {
|
|
982
|
-
id: string;
|
|
983
|
-
basicDetails: BasicDetails;
|
|
984
|
-
workExperience: WorkExperience$1[];
|
|
985
|
-
education: Education$1[];
|
|
986
|
-
certifications: Certification$3[];
|
|
987
|
-
licenses: License$1[];
|
|
988
|
-
skills: string[];
|
|
989
|
-
tools: string[];
|
|
990
|
-
}
|
|
991
|
-
/**
|
|
992
|
-
* Personal and contact information including a professional summary.
|
|
993
|
-
*/
|
|
994
|
-
interface BasicDetails {
|
|
995
|
-
firstName: string;
|
|
996
|
-
lastName: string;
|
|
997
|
-
email: string;
|
|
998
|
-
phone: string;
|
|
999
|
-
address: string;
|
|
1000
|
-
city: string;
|
|
1001
|
-
state: string;
|
|
1002
|
-
zipCode: string;
|
|
1003
|
-
country: string;
|
|
1004
|
-
jobTitle: string;
|
|
1005
|
-
yearsOfExperience: number;
|
|
1006
|
-
summary: string;
|
|
1007
|
-
}
|
|
1008
|
-
/**
|
|
1009
|
-
* Details regarding professional work history.
|
|
1010
|
-
*/
|
|
1011
|
-
interface WorkExperience$1 {
|
|
1012
|
-
company: string;
|
|
1013
|
-
jobTitle: string;
|
|
1014
|
-
country: string;
|
|
1015
|
-
state: string;
|
|
1016
|
-
city: string;
|
|
1017
|
-
startDate: string;
|
|
1018
|
-
endDate: string | null;
|
|
1019
|
-
isCurrent: boolean;
|
|
1020
|
-
responsibilities: string[];
|
|
1021
|
-
}
|
|
1022
|
-
/**
|
|
1023
|
-
* Educational background, including degrees, certificates, and specific courses.
|
|
1024
|
-
*/
|
|
1025
|
-
interface Education$1 {
|
|
1026
|
-
degree: string;
|
|
1027
|
-
degreeType: 'Associate' | 'Certificate' | 'Course' | 'Bachelors' | 'Masters' | string;
|
|
1028
|
-
institution: string;
|
|
1029
|
-
country: string;
|
|
1030
|
-
state: string | null;
|
|
1031
|
-
city: string | null;
|
|
1032
|
-
startDate: string;
|
|
1033
|
-
endDate: string;
|
|
1034
|
-
achievements: string[];
|
|
1035
|
-
}
|
|
1036
|
-
/**
|
|
1037
|
-
* Professional certifications and credentials.
|
|
1038
|
-
*/
|
|
1039
|
-
interface Certification$3 {
|
|
1040
|
-
name: string;
|
|
1041
|
-
issuingOrganization: string | null;
|
|
1042
|
-
state: string | null;
|
|
1043
|
-
issueDate: string | null;
|
|
1044
|
-
expiryDate: string | null;
|
|
1045
|
-
credentialId: string | null;
|
|
1046
|
-
}
|
|
1047
|
-
/**
|
|
1048
|
-
* Legal licenses, such as driver's or professional operating licenses.
|
|
1049
|
-
*/
|
|
1050
|
-
interface License$1 {
|
|
1051
|
-
name: string;
|
|
1052
|
-
issuingAuthority: string | null;
|
|
1053
|
-
licenseNumber: string | null;
|
|
1054
|
-
state: string | null;
|
|
1055
|
-
issueDate: string | null;
|
|
1056
|
-
expiryDate: string | null;
|
|
1057
|
-
}
|
|
1058
|
-
|
|
1059
1068
|
interface ResumeSkillMeta {
|
|
1060
1069
|
providerName?: string;
|
|
1061
1070
|
starRating?: number;
|
|
@@ -1373,6 +1382,7 @@ declare class UserService {
|
|
|
1373
1382
|
}
|
|
1374
1383
|
|
|
1375
1384
|
declare class EducationComponent implements OnInit {
|
|
1385
|
+
private roleContextService;
|
|
1376
1386
|
userEducation: UserEducationService;
|
|
1377
1387
|
private userService;
|
|
1378
1388
|
store: CredentialingStore;
|
|
@@ -1414,7 +1424,7 @@ declare class EducationComponent implements OnInit {
|
|
|
1414
1424
|
showpreview: i0.Signal<boolean>;
|
|
1415
1425
|
maxDate: Date;
|
|
1416
1426
|
userdata: any;
|
|
1417
|
-
constructor(userEducation: UserEducationService, userService: UserService, store: CredentialingStore, workStore: EducationStore, countryService: CountryServices, postalCodeService: PostalCodeServices, tokenService: TokenService, fb: FormBuilder, fileService: FileService, http: HttpClient);
|
|
1427
|
+
constructor(roleContextService: RoleContextService, userEducation: UserEducationService, userService: UserService, store: CredentialingStore, workStore: EducationStore, countryService: CountryServices, postalCodeService: PostalCodeServices, tokenService: TokenService, fb: FormBuilder, fileService: FileService, http: HttpClient);
|
|
1418
1428
|
ngOnInit(): Promise<void>;
|
|
1419
1429
|
selectFile(event: any): void;
|
|
1420
1430
|
hasChanges(): boolean;
|
|
@@ -1486,6 +1496,7 @@ declare class CertificationStore {
|
|
|
1486
1496
|
}
|
|
1487
1497
|
|
|
1488
1498
|
declare class CertificationComponent {
|
|
1499
|
+
roleContextService: RoleContextService;
|
|
1489
1500
|
userDocumentService: UserDocumentService;
|
|
1490
1501
|
private userService;
|
|
1491
1502
|
store: CredentialingStore;
|
|
@@ -1533,7 +1544,7 @@ declare class CertificationComponent {
|
|
|
1533
1544
|
showpreview: i0.Signal<boolean>;
|
|
1534
1545
|
userdata: any;
|
|
1535
1546
|
maxDate: Date;
|
|
1536
|
-
constructor(userDocumentService: UserDocumentService, userService: UserService, store: CredentialingStore, workStore: CertificationStore, tokenService: TokenService, postalCodeService: PostalCodeServices, fb: FormBuilder, fileService: FileService, http: HttpClient);
|
|
1547
|
+
constructor(roleContextService: RoleContextService, userDocumentService: UserDocumentService, userService: UserService, store: CredentialingStore, workStore: CertificationStore, tokenService: TokenService, postalCodeService: PostalCodeServices, fb: FormBuilder, fileService: FileService, http: HttpClient);
|
|
1537
1548
|
ngOnInit(): Promise<void>;
|
|
1538
1549
|
loadDocumentTypes(searchText?: string): void;
|
|
1539
1550
|
loadDocumentTypesDefault(searchText?: string): void;
|
|
@@ -1768,6 +1779,7 @@ declare class LicenseStore {
|
|
|
1768
1779
|
declare class LicensesComponent {
|
|
1769
1780
|
userDocumentService: UserDocumentService;
|
|
1770
1781
|
private userService;
|
|
1782
|
+
private roleContextService;
|
|
1771
1783
|
store: CredentialingStore;
|
|
1772
1784
|
workStore: LicenseStore;
|
|
1773
1785
|
private tokenService;
|
|
@@ -1811,7 +1823,7 @@ declare class LicensesComponent {
|
|
|
1811
1823
|
showpreview: i0.Signal<boolean>;
|
|
1812
1824
|
userdata: any;
|
|
1813
1825
|
maxDate: Date;
|
|
1814
|
-
constructor(userDocumentService: UserDocumentService, userService: UserService, store: CredentialingStore, workStore: LicenseStore, tokenService: TokenService, postalCodeService: PostalCodeServices, fb: FormBuilder, fileService: FileService, http: HttpClient);
|
|
1826
|
+
constructor(userDocumentService: UserDocumentService, userService: UserService, roleContextService: RoleContextService, store: CredentialingStore, workStore: LicenseStore, tokenService: TokenService, postalCodeService: PostalCodeServices, fb: FormBuilder, fileService: FileService, http: HttpClient);
|
|
1815
1827
|
ngOnInit(): Promise<void>;
|
|
1816
1828
|
loadDocumentTypes(searchText?: string): void;
|
|
1817
1829
|
loadDocumentTypesDefault(searchText?: string): void;
|
|
@@ -1894,6 +1906,7 @@ declare class ToolsComponent {
|
|
|
1894
1906
|
private utils;
|
|
1895
1907
|
store: CredentialingStore;
|
|
1896
1908
|
private tokenService;
|
|
1909
|
+
private roleContextService;
|
|
1897
1910
|
private userDetailService;
|
|
1898
1911
|
private libConfig;
|
|
1899
1912
|
roleData: any;
|
|
@@ -1938,7 +1951,7 @@ declare class ToolsComponent {
|
|
|
1938
1951
|
userdata: any;
|
|
1939
1952
|
signatureUrl: any;
|
|
1940
1953
|
signatureFileId: any;
|
|
1941
|
-
constructor(toolService: ToolService, userToolService: UserToolService, formBuilder: UntypedFormBuilder, userService: UserService, utils: UtilsService, store: CredentialingStore, tokenService: TokenService, userDetailService: UserDetailService, libConfig: LibraryConfig);
|
|
1954
|
+
constructor(toolService: ToolService, userToolService: UserToolService, formBuilder: UntypedFormBuilder, userService: UserService, utils: UtilsService, store: CredentialingStore, tokenService: TokenService, roleContextService: RoleContextService, userDetailService: UserDetailService, libConfig: LibraryConfig);
|
|
1942
1955
|
ngOnInit(): Promise<void>;
|
|
1943
1956
|
private ctxProviderName;
|
|
1944
1957
|
private ctxProviderId;
|
|
@@ -2045,6 +2058,7 @@ declare class RoleSelectComponent implements OnInit {
|
|
|
2045
2058
|
private fileService;
|
|
2046
2059
|
private provideruser;
|
|
2047
2060
|
private tokenService;
|
|
2061
|
+
private roleContextService;
|
|
2048
2062
|
private fb;
|
|
2049
2063
|
isLoaded: boolean;
|
|
2050
2064
|
previewUrl: string | null;
|
|
@@ -2094,7 +2108,7 @@ declare class RoleSelectComponent implements OnInit {
|
|
|
2094
2108
|
selectedJobs: i0.WritableSignal<string[]>;
|
|
2095
2109
|
selectedJobValues: number[];
|
|
2096
2110
|
provider: ProviderModel;
|
|
2097
|
-
constructor(store: CredentialingStore, userService: UserService, userDocumentService: UserDocumentService, router: Router, industrydata: IndustryService, userDetailService: UserDetailService, fileService: FileService, provideruser: ProvidersService, tokenService: TokenService, fb: FormBuilder);
|
|
2111
|
+
constructor(store: CredentialingStore, userService: UserService, userDocumentService: UserDocumentService, router: Router, industrydata: IndustryService, userDetailService: UserDetailService, fileService: FileService, provideruser: ProvidersService, tokenService: TokenService, roleContextService: RoleContextService, fb: FormBuilder);
|
|
2098
2112
|
cloudfrontUrl: string;
|
|
2099
2113
|
providerId: string;
|
|
2100
2114
|
providerName: string;
|
|
@@ -2183,6 +2197,7 @@ declare class Step2CoverageComponent {
|
|
|
2183
2197
|
private postalCodeService;
|
|
2184
2198
|
private userCoverageAreaService;
|
|
2185
2199
|
private alertService;
|
|
2200
|
+
private roleContextService;
|
|
2186
2201
|
private tokenService;
|
|
2187
2202
|
providerId: string;
|
|
2188
2203
|
providerName: string;
|
|
@@ -2215,7 +2230,7 @@ declare class Step2CoverageComponent {
|
|
|
2215
2230
|
userDetail: any;
|
|
2216
2231
|
existingCoverageIds: string[];
|
|
2217
2232
|
private initialCoverageSnapshot;
|
|
2218
|
-
constructor(store: CredentialingStore, usMapService: UsMapLatestService, postalCodeService: PostalCodeServices, userCoverageAreaService: UserCoverageAreaService, alertService: AlertService, tokenService: TokenService);
|
|
2233
|
+
constructor(store: CredentialingStore, usMapService: UsMapLatestService, postalCodeService: PostalCodeServices, userCoverageAreaService: UserCoverageAreaService, alertService: AlertService, roleContextService: RoleContextService, tokenService: TokenService);
|
|
2219
2234
|
ngOnInit(): Promise<void>;
|
|
2220
2235
|
toggleMap(): void;
|
|
2221
2236
|
setSelectedStates(values: StateModel[]): void;
|
|
@@ -2244,6 +2259,7 @@ declare class WorkexperienceComponent implements OnInit {
|
|
|
2244
2259
|
private countryService;
|
|
2245
2260
|
private postalCodeService;
|
|
2246
2261
|
private tokenService;
|
|
2262
|
+
private roleContextService;
|
|
2247
2263
|
private fb;
|
|
2248
2264
|
private fileService;
|
|
2249
2265
|
private http;
|
|
@@ -2278,7 +2294,7 @@ declare class WorkexperienceComponent implements OnInit {
|
|
|
2278
2294
|
proposalLoader: boolean;
|
|
2279
2295
|
showpreview: i0.Signal<boolean>;
|
|
2280
2296
|
userdata: any;
|
|
2281
|
-
constructor(userExperienceService: UserExperienceService, userService: UserService, workStore: WorkExperienceStore, store: CredentialingStore, countryService: CountryServices, postalCodeService: PostalCodeServices, tokenService: TokenService, fb: FormBuilder, fileService: FileService, http: HttpClient);
|
|
2297
|
+
constructor(userExperienceService: UserExperienceService, userService: UserService, workStore: WorkExperienceStore, store: CredentialingStore, countryService: CountryServices, postalCodeService: PostalCodeServices, tokenService: TokenService, roleContextService: RoleContextService, fb: FormBuilder, fileService: FileService, http: HttpClient);
|
|
2282
2298
|
ngOnInit(): Promise<void>;
|
|
2283
2299
|
getcountry(): void;
|
|
2284
2300
|
getstates(countryCode: any): void;
|
|
@@ -2311,6 +2327,7 @@ declare class ResumeDetailService {
|
|
|
2311
2327
|
|
|
2312
2328
|
declare class FirstComponent implements OnInit {
|
|
2313
2329
|
store: CredentialingStore;
|
|
2330
|
+
private roleContextService;
|
|
2314
2331
|
private tokenService;
|
|
2315
2332
|
private resumedetail;
|
|
2316
2333
|
private fileService;
|
|
@@ -2393,7 +2410,7 @@ declare class FirstComponent implements OnInit {
|
|
|
2393
2410
|
fileDataUser: any;
|
|
2394
2411
|
model: any;
|
|
2395
2412
|
nextStep: EventEmitter<void>;
|
|
2396
|
-
constructor(store: CredentialingStore, tokenService: TokenService, resumedetail: ResumeDetailService, fileService: FileService);
|
|
2413
|
+
constructor(store: CredentialingStore, roleContextService: RoleContextService, tokenService: TokenService, resumedetail: ResumeDetailService, fileService: FileService);
|
|
2397
2414
|
ngOnInit(): Promise<void>;
|
|
2398
2415
|
selectedRole: 'producer' | 'serviceProvider' | null;
|
|
2399
2416
|
select(role: 'producer' | 'serviceProvider'): void;
|
|
@@ -2414,380 +2431,37 @@ declare class FirstComponent implements OnInit {
|
|
|
2414
2431
|
static ɵcmp: i0.ɵɵComponentDeclaration<FirstComponent, "app-first", never, {}, { "backToParent": "backToParent"; "nextStep": "nextStep"; }, never, never, false, never>;
|
|
2415
2432
|
}
|
|
2416
2433
|
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
|
|
2439
|
-
|
|
2440
|
-
|
|
2441
|
-
|
|
2442
|
-
|
|
2443
|
-
|
|
2444
|
-
|
|
2445
|
-
|
|
2446
|
-
|
|
2447
|
-
};
|
|
2448
|
-
maxDate: Date;
|
|
2449
|
-
providerName: string;
|
|
2450
|
-
roleData: any;
|
|
2451
|
-
backToParent: EventEmitter<void>;
|
|
2452
|
-
fileData: any;
|
|
2453
|
-
model: any;
|
|
2454
|
-
awsFileUpdate: UpdateAwsFileModelModel[];
|
|
2455
|
-
fileName: string;
|
|
2456
|
-
fileChanged: boolean;
|
|
2457
|
-
isSavingWork: boolean;
|
|
2458
|
-
isSavingEducation: boolean;
|
|
2459
|
-
isSavingCertification: boolean;
|
|
2460
|
-
isSavingLicense: boolean;
|
|
2461
|
-
isSavingBasic: boolean;
|
|
2462
|
-
basicDetailsSaved: boolean;
|
|
2463
|
-
hasUserDetailData: boolean;
|
|
2464
|
-
isSavingSkill: boolean;
|
|
2465
|
-
isSavingTool: boolean;
|
|
2466
|
-
payloadUserId: any;
|
|
2467
|
-
payloadUserName: any;
|
|
2468
|
-
cloudfrontUrl: string;
|
|
2469
|
-
workExperienceServerIds: Record<number, string>;
|
|
2470
|
-
educationServerIds: Record<number, string>;
|
|
2471
|
-
certificationServerIds: Record<number, string>;
|
|
2472
|
-
licenseServerIds: Record<number, string>;
|
|
2473
|
-
skillServerIds: Record<number, string>;
|
|
2474
|
-
toolServerIds: Record<number, string>;
|
|
2475
|
-
workExperienceLocallySaved: Record<number, boolean>;
|
|
2476
|
-
educationLocallySaved: Record<number, boolean>;
|
|
2477
|
-
certificationLocallySaved: Record<number, boolean>;
|
|
2478
|
-
licenseLocallySaved: Record<number, boolean>;
|
|
2479
|
-
skillLocallySaved: Record<number, boolean>;
|
|
2480
|
-
toolLocallySaved: Record<number, boolean>;
|
|
2481
|
-
private readonly monthDateCache;
|
|
2482
|
-
private readonly uploadFolderBySection;
|
|
2483
|
-
resumeData: ResumeProfile | null;
|
|
2484
|
-
statusList: any[];
|
|
2485
|
-
showPopup: boolean;
|
|
2486
|
-
showBackConfirmPopup: boolean;
|
|
2487
|
-
showDashboardConfirmPopup: boolean;
|
|
2488
|
-
constructor(store: CredentialingStore, fileService: FileService, userSkillSetService: UserSkillSetService, userToolService: UserToolService, userDocumentService: UserDocumentService, userEducation: UserEducationService, userDetailService: UserDetailService, userExperienceService: UserExperienceService, tokenService: TokenService, libConfig: LibraryConfig);
|
|
2489
|
-
email: any;
|
|
2490
|
-
expYears: number[];
|
|
2491
|
-
details: i0.WritableSignal<BasicDetails | undefined>;
|
|
2492
|
-
ngOnInit(): Promise<void>;
|
|
2493
|
-
experience: i0.Signal<WorkExperience$1[]>;
|
|
2494
|
-
educationList: i0.Signal<Education$1[]>;
|
|
2495
|
-
certs: i0.Signal<Certification$3[]>;
|
|
2496
|
-
licenses: i0.Signal<License$1[]>;
|
|
2497
|
-
skills: i0.Signal<string[]>;
|
|
2498
|
-
tools: i0.Signal<string[]>;
|
|
2499
|
-
private isBlank;
|
|
2500
|
-
private isBlankOrNull;
|
|
2501
|
-
sanitizePhone(value: string | null | undefined): string;
|
|
2502
|
-
sanitizeZipCode(value: string | null | undefined): string;
|
|
2503
|
-
isMonthRangeInvalid(start: string | null | undefined, end: string | null | undefined): boolean;
|
|
2504
|
-
private compareMonth;
|
|
2505
|
-
private prefillSectionFieldsFromBasicDetails;
|
|
2506
|
-
private basicDetailsIssues;
|
|
2507
|
-
private workItemIssues;
|
|
2508
|
-
private educationItemIssues;
|
|
2509
|
-
private certificationItemIssues;
|
|
2510
|
-
private licenseItemIssues;
|
|
2511
|
-
private skillItemIssues;
|
|
2512
|
-
private toolItemIssues;
|
|
2513
|
-
basicIssues: i0.Signal<string[]>;
|
|
2514
|
-
basicSectionHasIssues: i0.Signal<boolean>;
|
|
2515
|
-
workIssuesByIndex: i0.Signal<string[][]>;
|
|
2516
|
-
educationIssuesByIndex: i0.Signal<string[][]>;
|
|
2517
|
-
certIssuesByIndex: i0.Signal<string[][]>;
|
|
2518
|
-
licenseIssuesByIndex: i0.Signal<string[][]>;
|
|
2519
|
-
skillIssuesByIndex: i0.Signal<string[][]>;
|
|
2520
|
-
toolIssuesByIndex: i0.Signal<string[][]>;
|
|
2521
|
-
skillFormIssues: i0.Signal<string[]>;
|
|
2522
|
-
toolFormIssues: i0.Signal<string[]>;
|
|
2523
|
-
workSectionHasIssues: i0.Signal<boolean>;
|
|
2524
|
-
educationSectionHasIssues: i0.Signal<boolean>;
|
|
2525
|
-
certificationsSectionHasIssues: i0.Signal<boolean>;
|
|
2526
|
-
licensesSectionHasIssues: i0.Signal<boolean>;
|
|
2527
|
-
skillsSectionHasIssues: i0.Signal<boolean>;
|
|
2528
|
-
toolsSectionHasIssues: i0.Signal<boolean>;
|
|
2529
|
-
workSectionHasUnsavedItems(): boolean;
|
|
2530
|
-
educationSectionHasUnsavedItems(): boolean;
|
|
2531
|
-
certificationSectionHasUnsavedItems(): boolean;
|
|
2532
|
-
licenseSectionHasUnsavedItems(): boolean;
|
|
2533
|
-
skillsSectionHasUnsavedItems(): boolean;
|
|
2534
|
-
toolsSectionHasUnsavedItems(): boolean;
|
|
2535
|
-
isAnyEditorOpen: i0.Signal<boolean>;
|
|
2536
|
-
canConfirmAndContinue(): boolean;
|
|
2537
|
-
expandedIndex: i0.WritableSignal<number>;
|
|
2538
|
-
toggleJob(index: number): void;
|
|
2539
|
-
private commitProfile;
|
|
2540
|
-
private appendToMainModel;
|
|
2541
|
-
private updateInMainModel;
|
|
2542
|
-
private toMonthInput;
|
|
2543
|
-
monthInputToDate(value: string | null | undefined): Date | null;
|
|
2544
|
-
private dateToMonthInput;
|
|
2545
|
-
setTempJobMonth(field: 'startDate' | 'endDate', value: Date | null | undefined): void;
|
|
2546
|
-
setTempCertificationMonth(field: 'issueDate' | 'expiryDate', value: Date | null | undefined): void;
|
|
2547
|
-
setTempLicenseMonth(field: 'issueDate' | 'expiryDate', value: Date | null | undefined): void;
|
|
2548
|
-
setTempEducationMonth(field: 'startDate' | 'endDate', value: Date | null | undefined): void;
|
|
2549
|
-
confirmAllCertifications(): Promise<void>;
|
|
2550
|
-
confirmAllLicenses(): Promise<void>;
|
|
2551
|
-
private buildSectionQuery;
|
|
2552
|
-
private buildUserName;
|
|
2553
|
-
private getCreatedId;
|
|
2554
|
-
private getEntityId;
|
|
2555
|
-
private reindexServerIdsAfterDelete;
|
|
2556
|
-
private reindexSavedFlagsAfterDelete;
|
|
2557
|
-
private markItemSaved;
|
|
2558
|
-
hasUnsavedWorkItem(index: number): boolean;
|
|
2559
|
-
hasUnsavedEducationItem(index: number): boolean;
|
|
2560
|
-
hasUnsavedCertificationItem(index: number): boolean;
|
|
2561
|
-
hasUnsavedLicenseItem(index: number): boolean;
|
|
2562
|
-
hasUnsavedSkillItem(index: number): boolean;
|
|
2563
|
-
hasUnsavedToolItem(index: number): boolean;
|
|
2564
|
-
private mapSavedWorkToPreview;
|
|
2565
|
-
private mapSavedEducationToPreview;
|
|
2566
|
-
private mapSavedCertificationToPreview;
|
|
2567
|
-
private mapSavedLicenseToPreview;
|
|
2568
|
-
private normalizedText;
|
|
2569
|
-
private workSignature;
|
|
2570
|
-
private educationSignature;
|
|
2571
|
-
private certificationSignature;
|
|
2572
|
-
private licenseSignature;
|
|
2573
|
-
private mergeSavedAndCurrent;
|
|
2574
|
-
private ensureWorkServerId;
|
|
2575
|
-
private ensureEducationServerId;
|
|
2576
|
-
private ensureCertificationServerId;
|
|
2577
|
-
private ensureLicenseServerId;
|
|
2578
|
-
private ensureSkillServerId;
|
|
2579
|
-
private ensureToolServerId;
|
|
2580
|
-
private loadSavedSectionsFromApis;
|
|
2581
|
-
formatMonthYear(value: string | null | undefined): string;
|
|
2582
|
-
private confirmDelete;
|
|
2583
|
-
private jobEditor;
|
|
2584
|
-
isAddingJob(): boolean;
|
|
2585
|
-
editingJobIndex(): number | null;
|
|
2586
|
-
tempJob(): WorkExperience$1 | null;
|
|
2587
|
-
addJob(): void;
|
|
2588
|
-
startEditJob(jobIndex: number): void;
|
|
2589
|
-
cancelEditJob(): void;
|
|
2590
|
-
saveEditJob(): Promise<void>;
|
|
2591
|
-
deleteJob(index: number): void;
|
|
2592
|
-
updateTempResponsibilities(value: string): void;
|
|
2593
|
-
patchTempJob(patch: Partial<WorkExperience$1>): void;
|
|
2594
|
-
onWorkExperienceFileSelected(event: Event): void;
|
|
2595
|
-
setTempJobIsCurrent(isCurrent: boolean): void;
|
|
2596
|
-
private skillEditor;
|
|
2597
|
-
isSkillEditorOpen(): boolean;
|
|
2598
|
-
isAddingSkill(): boolean;
|
|
2599
|
-
editingSkillIndex(): number | null;
|
|
2600
|
-
skillForm(): SkillToolEditorData | null;
|
|
2601
|
-
patchSkillForm(patch: Partial<SkillToolEditorData>): void;
|
|
2602
|
-
openSkillEditor(index: number): void;
|
|
2603
|
-
addSkill(): void;
|
|
2604
|
-
closeSkillEditor(): void;
|
|
2605
|
-
setTempSkillStars(stars: number): void;
|
|
2606
|
-
saveSkillEditor(): Promise<void>;
|
|
2607
|
-
private reindexSkillMetaAfterDelete;
|
|
2608
|
-
deleteSkill(index: number): void;
|
|
2609
|
-
private toolEditor;
|
|
2610
|
-
isToolEditorOpen(): boolean;
|
|
2611
|
-
isAddingTool(): boolean;
|
|
2612
|
-
editingToolIndex(): number | null;
|
|
2613
|
-
toolForm(): SkillToolEditorData | null;
|
|
2614
|
-
patchToolForm(patch: Partial<SkillToolEditorData>): void;
|
|
2615
|
-
openToolEditor(index: number): void;
|
|
2616
|
-
addTool(): void;
|
|
2617
|
-
closeToolEditor(): void;
|
|
2618
|
-
setTempToolStars(stars: number): void;
|
|
2619
|
-
confirmAllSkills(): Promise<void>;
|
|
2620
|
-
confirmAllTools(): Promise<void>;
|
|
2621
|
-
saveToolEditor(): Promise<void>;
|
|
2622
|
-
private reindexToolMetaAfterDelete;
|
|
2623
|
-
deleteTool(index: number): void;
|
|
2624
|
-
private certificationEditor;
|
|
2625
|
-
isAddingCertification(): boolean;
|
|
2626
|
-
editingCertificationIndex(): number | null;
|
|
2627
|
-
tempCertification(): Certification$3 | null;
|
|
2628
|
-
private normalizeNullableString;
|
|
2629
|
-
private normalizeMonthInput;
|
|
2630
|
-
addCertification(): void;
|
|
2631
|
-
startEditCertification(index: number): void;
|
|
2632
|
-
cancelEditCertification(): void;
|
|
2633
|
-
patchTempCertification(patch: Partial<Certification$3>): void;
|
|
2634
|
-
onCertificationFileSelected(event: Event): void;
|
|
2635
|
-
saveCertificationEditor(): Promise<void>;
|
|
2636
|
-
deleteCertification(index: number): void;
|
|
2637
|
-
private licenseEditor;
|
|
2638
|
-
isAddingLicense(): boolean;
|
|
2639
|
-
editingLicenseIndex(): number | null;
|
|
2640
|
-
tempLicense(): License$1 | null;
|
|
2641
|
-
addLicense(): void;
|
|
2642
|
-
startEditLicense(index: number): void;
|
|
2643
|
-
cancelEditLicense(): void;
|
|
2644
|
-
patchTempLicense(patch: Partial<License$1>): void;
|
|
2645
|
-
onLicenseFileSelected(event: Event): void;
|
|
2646
|
-
saveLicenseEditor(): Promise<void>;
|
|
2647
|
-
deleteLicense(index: number): void;
|
|
2648
|
-
private educationEditor;
|
|
2649
|
-
isAddingEducation(): boolean;
|
|
2650
|
-
editingEducationIndex(): number | null;
|
|
2651
|
-
tempEducation(): Education$1 | null;
|
|
2652
|
-
addEducation(): void;
|
|
2653
|
-
startEditEducation(index: number): void;
|
|
2654
|
-
cancelEditEducation(): void;
|
|
2655
|
-
patchTempEducation(patch: Partial<Education$1>): void;
|
|
2656
|
-
onEducationFileSelected(event: Event): void;
|
|
2657
|
-
saveEducation(): Promise<void>;
|
|
2658
|
-
deleteEducation(index: number): void;
|
|
2659
|
-
onBackClick(): void;
|
|
2660
|
-
stayOnPreview(): void;
|
|
2661
|
-
goToDashboard(): Promise<void>;
|
|
2662
|
-
proceedBack(): void;
|
|
2663
|
-
onGoToDashboardClick(): void;
|
|
2664
|
-
cancelDashboardRedirect(): void;
|
|
2665
|
-
tempProfile: BasicDetails;
|
|
2666
|
-
isEditMode: i0.WritableSignal<boolean>;
|
|
2667
|
-
toggleEdit(): void;
|
|
2668
|
-
cancel(): void;
|
|
2669
|
-
save(): Promise<void>;
|
|
2670
|
-
private persistWorkExperience;
|
|
2671
|
-
private persistEducation;
|
|
2672
|
-
private persistCertification;
|
|
2673
|
-
private persistLicense;
|
|
2674
|
-
private persistSkill;
|
|
2675
|
-
private persistTool;
|
|
2676
|
-
private saveAWSFile;
|
|
2677
|
-
selectFile(event: any): void;
|
|
2678
|
-
private toAbsoluteFileUrl;
|
|
2679
|
-
private revokeObjectUrl;
|
|
2680
|
-
previewSelectedFile(item: any): void;
|
|
2681
|
-
mapBasicDetailsToUserDetail(data: any): {
|
|
2682
|
-
providerName: string;
|
|
2683
|
-
providerId: string;
|
|
2684
|
-
UserRoleId: any;
|
|
2685
|
-
userDetail: {
|
|
2686
|
-
userBio: any;
|
|
2687
|
-
firstName: any;
|
|
2688
|
-
lastName: any;
|
|
2689
|
-
email: any;
|
|
2690
|
-
address1: any;
|
|
2691
|
-
address2: string;
|
|
2692
|
-
city: any;
|
|
2693
|
-
state: any;
|
|
2694
|
-
zipcode: any;
|
|
2695
|
-
county: string;
|
|
2696
|
-
country: any;
|
|
2697
|
-
latitude: null;
|
|
2698
|
-
longitude: null;
|
|
2699
|
-
yearsActive: number;
|
|
2700
|
-
isInitialSetupCompleted: boolean;
|
|
2701
|
-
id: any;
|
|
2702
|
-
phoneNumber: any;
|
|
2703
|
-
yearsOfExperince: any;
|
|
2704
|
-
userJobTitle: any[];
|
|
2705
|
-
timeZone: string;
|
|
2706
|
-
datePattern: string;
|
|
2707
|
-
dateTimePattern: string;
|
|
2708
|
-
timePattern: string;
|
|
2709
|
-
};
|
|
2710
|
-
};
|
|
2711
|
-
mapBasicDetailsDashboard(data: any): {
|
|
2712
|
-
providerName: string;
|
|
2713
|
-
providerId: string;
|
|
2714
|
-
UserRoleId: any;
|
|
2715
|
-
userDetail: {
|
|
2716
|
-
userBio: any;
|
|
2717
|
-
firstName: any;
|
|
2718
|
-
lastName: any;
|
|
2719
|
-
email: any;
|
|
2720
|
-
address1: any;
|
|
2721
|
-
address2: string;
|
|
2722
|
-
city: any;
|
|
2723
|
-
state: any;
|
|
2724
|
-
zipcode: any;
|
|
2725
|
-
county: string;
|
|
2726
|
-
country: any;
|
|
2727
|
-
latitude: null;
|
|
2728
|
-
longitude: null;
|
|
2729
|
-
yearsActive: number;
|
|
2730
|
-
isInitialSetupCompleted: boolean;
|
|
2731
|
-
id: any;
|
|
2732
|
-
phoneNumber: any;
|
|
2733
|
-
yearsOfExperince: any;
|
|
2734
|
-
userJobTitle: any[];
|
|
2735
|
-
timeZone: string;
|
|
2736
|
-
datePattern: string;
|
|
2737
|
-
dateTimePattern: string;
|
|
2738
|
-
timePattern: string;
|
|
2739
|
-
};
|
|
2740
|
-
};
|
|
2741
|
-
private mapSavedBasicDetailsToPreview;
|
|
2742
|
-
private hasUserDetailPayload;
|
|
2743
|
-
mapWorkExperience(data: any): any;
|
|
2744
|
-
mapEducation(data: any): any;
|
|
2745
|
-
mapCertifications(data: any): any;
|
|
2746
|
-
mapLicenses(data: any): any;
|
|
2747
|
-
mapSkills(data: any): any;
|
|
2748
|
-
mapTools(data: any): any;
|
|
2749
|
-
formatDate(date: string): string | null;
|
|
2750
|
-
workActionLabel(index: number | null): string;
|
|
2751
|
-
educationActionLabel(index: number | null): string;
|
|
2752
|
-
certificationActionLabel(index: number | null): string;
|
|
2753
|
-
licenseActionLabel(index: number | null): string;
|
|
2754
|
-
skillActionLabel(index: number | null): string;
|
|
2755
|
-
toolActionLabel(index: number | null): string;
|
|
2756
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PreviewComponent, never>;
|
|
2757
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PreviewComponent, "app-preview", never, { "providerId": { "alias": "providerId"; "required": false; }; "providerName": { "alias": "providerName"; "required": false; }; "roleData": { "alias": "roleData"; "required": false; }; "cloudfrontUrl": { "alias": "cloudfrontUrl"; "required": false; }; }, { "backToParent": "backToParent"; }, never, never, false, never>;
|
|
2758
|
-
}
|
|
2759
|
-
|
|
2760
|
-
declare class UsMapComponent implements OnChanges, OnInit, AfterViewInit {
|
|
2761
|
-
private cdr;
|
|
2762
|
-
private usMapService;
|
|
2763
|
-
viewinisialized: boolean;
|
|
2764
|
-
coordinates: any;
|
|
2765
|
-
selectedCoordinates: string[];
|
|
2766
|
-
selectedStates: any;
|
|
2767
|
-
changedSelectedStates: any;
|
|
2768
|
-
allowedStates: any;
|
|
2769
|
-
changedAllowedStates: any;
|
|
2770
|
-
isReadOnly: boolean;
|
|
2771
|
-
fillColor: string;
|
|
2772
|
-
fillStateColor: string;
|
|
2773
|
-
strokeColor: string;
|
|
2774
|
-
fillSelected: string;
|
|
2775
|
-
removeStateColor: string;
|
|
2776
|
-
click: EventEmitter<any>;
|
|
2777
|
-
usCoordinates: Coordinate;
|
|
2778
|
-
allCoordinates: Coordinate;
|
|
2779
|
-
filteredLocations: CoordinateLocationDetail[];
|
|
2780
|
-
usFillColor: string;
|
|
2781
|
-
usStrokeColor: string;
|
|
2782
|
-
constructor(cdr: ChangeDetectorRef, usMapService: UsMapLatestService);
|
|
2783
|
-
ngOnInit(): void;
|
|
2784
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
2785
|
-
ngAfterViewInit(): void;
|
|
2786
|
-
fetchData(): void;
|
|
2787
|
-
modelValueChanged(): void;
|
|
2788
|
-
onUsMapClick(state: any, check?: boolean): void;
|
|
2789
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<UsMapComponent, never>;
|
|
2790
|
-
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>;
|
|
2434
|
+
declare class UsMapComponent implements OnChanges, OnInit, AfterViewInit {
|
|
2435
|
+
private cdr;
|
|
2436
|
+
private usMapService;
|
|
2437
|
+
viewinisialized: boolean;
|
|
2438
|
+
coordinates: any;
|
|
2439
|
+
selectedCoordinates: string[];
|
|
2440
|
+
selectedStates: any;
|
|
2441
|
+
changedSelectedStates: any;
|
|
2442
|
+
allowedStates: any;
|
|
2443
|
+
changedAllowedStates: any;
|
|
2444
|
+
isReadOnly: boolean;
|
|
2445
|
+
fillColor: string;
|
|
2446
|
+
fillStateColor: string;
|
|
2447
|
+
strokeColor: string;
|
|
2448
|
+
fillSelected: string;
|
|
2449
|
+
removeStateColor: string;
|
|
2450
|
+
click: EventEmitter<any>;
|
|
2451
|
+
usCoordinates: Coordinate;
|
|
2452
|
+
allCoordinates: Coordinate;
|
|
2453
|
+
filteredLocations: CoordinateLocationDetail[];
|
|
2454
|
+
usFillColor: string;
|
|
2455
|
+
usStrokeColor: string;
|
|
2456
|
+
constructor(cdr: ChangeDetectorRef, usMapService: UsMapLatestService);
|
|
2457
|
+
ngOnInit(): void;
|
|
2458
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
2459
|
+
ngAfterViewInit(): void;
|
|
2460
|
+
fetchData(): void;
|
|
2461
|
+
modelValueChanged(): void;
|
|
2462
|
+
onUsMapClick(state: any, check?: boolean): void;
|
|
2463
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UsMapComponent, never>;
|
|
2464
|
+
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>;
|
|
2791
2465
|
}
|
|
2792
2466
|
|
|
2793
2467
|
declare class UsMapModule {
|
|
@@ -3250,6 +2924,350 @@ declare class SignaturePadModule {
|
|
|
3250
2924
|
static ɵinj: i0.ɵɵInjectorDeclaration<SignaturePadModule>;
|
|
3251
2925
|
}
|
|
3252
2926
|
|
|
2927
|
+
interface SkillToolEditorData {
|
|
2928
|
+
name: string;
|
|
2929
|
+
providerName: string;
|
|
2930
|
+
stars: number;
|
|
2931
|
+
year: number | null;
|
|
2932
|
+
profileVisibility: boolean;
|
|
2933
|
+
notes: string;
|
|
2934
|
+
}
|
|
2935
|
+
|
|
2936
|
+
declare class PreviewComponent {
|
|
2937
|
+
store: CredentialingStore;
|
|
2938
|
+
private fileService;
|
|
2939
|
+
private userSkillSetService;
|
|
2940
|
+
private userToolService;
|
|
2941
|
+
userDocumentService: UserDocumentService;
|
|
2942
|
+
userEducation: UserEducationService;
|
|
2943
|
+
private userDetailService;
|
|
2944
|
+
userExperienceService: UserExperienceService;
|
|
2945
|
+
private tokenService;
|
|
2946
|
+
private roleContextService;
|
|
2947
|
+
private libConfig;
|
|
2948
|
+
providerId: string;
|
|
2949
|
+
useremail: any;
|
|
2950
|
+
readonly educationDegreeTypeOptions: string[];
|
|
2951
|
+
readonly monthPickerConfig: {
|
|
2952
|
+
minMode: string;
|
|
2953
|
+
adaptivePosition: boolean;
|
|
2954
|
+
showWeekNumbers: boolean;
|
|
2955
|
+
isAnimated: boolean;
|
|
2956
|
+
dateInputFormat: string;
|
|
2957
|
+
containerClass: string;
|
|
2958
|
+
};
|
|
2959
|
+
maxDate: Date;
|
|
2960
|
+
providerName: string;
|
|
2961
|
+
roleData: any;
|
|
2962
|
+
backToParent: EventEmitter<void>;
|
|
2963
|
+
fileData: any;
|
|
2964
|
+
model: any;
|
|
2965
|
+
awsFileUpdate: UpdateAwsFileModelModel[];
|
|
2966
|
+
fileName: string;
|
|
2967
|
+
fileChanged: boolean;
|
|
2968
|
+
isSavingWork: boolean;
|
|
2969
|
+
isSavingEducation: boolean;
|
|
2970
|
+
isSavingCertification: boolean;
|
|
2971
|
+
isSavingLicense: boolean;
|
|
2972
|
+
isSavingBasic: boolean;
|
|
2973
|
+
basicDetailsSaved: boolean;
|
|
2974
|
+
hasUserDetailData: boolean;
|
|
2975
|
+
isSavingSkill: boolean;
|
|
2976
|
+
isSavingTool: boolean;
|
|
2977
|
+
payloadUserId: any;
|
|
2978
|
+
payloadUserName: any;
|
|
2979
|
+
cloudfrontUrl: string;
|
|
2980
|
+
workExperienceServerIds: Record<number, string>;
|
|
2981
|
+
educationServerIds: Record<number, string>;
|
|
2982
|
+
certificationServerIds: Record<number, string>;
|
|
2983
|
+
licenseServerIds: Record<number, string>;
|
|
2984
|
+
skillServerIds: Record<number, string>;
|
|
2985
|
+
toolServerIds: Record<number, string>;
|
|
2986
|
+
workExperienceLocallySaved: Record<number, boolean>;
|
|
2987
|
+
educationLocallySaved: Record<number, boolean>;
|
|
2988
|
+
certificationLocallySaved: Record<number, boolean>;
|
|
2989
|
+
licenseLocallySaved: Record<number, boolean>;
|
|
2990
|
+
skillLocallySaved: Record<number, boolean>;
|
|
2991
|
+
toolLocallySaved: Record<number, boolean>;
|
|
2992
|
+
private readonly monthDateCache;
|
|
2993
|
+
private readonly uploadFolderBySection;
|
|
2994
|
+
resumeData: ResumeProfile | null;
|
|
2995
|
+
statusList: any[];
|
|
2996
|
+
showPopup: boolean;
|
|
2997
|
+
showBackConfirmPopup: boolean;
|
|
2998
|
+
showDashboardConfirmPopup: boolean;
|
|
2999
|
+
constructor(store: CredentialingStore, fileService: FileService, userSkillSetService: UserSkillSetService, userToolService: UserToolService, userDocumentService: UserDocumentService, userEducation: UserEducationService, userDetailService: UserDetailService, userExperienceService: UserExperienceService, tokenService: TokenService, roleContextService: RoleContextService, libConfig: LibraryConfig);
|
|
3000
|
+
email: any;
|
|
3001
|
+
expYears: number[];
|
|
3002
|
+
details: i0.WritableSignal<BasicDetails | undefined>;
|
|
3003
|
+
ngOnInit(): Promise<void>;
|
|
3004
|
+
experience: i0.Signal<WorkExperience$1[]>;
|
|
3005
|
+
educationList: i0.Signal<Education$1[]>;
|
|
3006
|
+
certs: i0.Signal<Certification$3[]>;
|
|
3007
|
+
licenses: i0.Signal<License$1[]>;
|
|
3008
|
+
skills: i0.Signal<string[]>;
|
|
3009
|
+
tools: i0.Signal<string[]>;
|
|
3010
|
+
private isBlank;
|
|
3011
|
+
private isBlankOrNull;
|
|
3012
|
+
sanitizePhone(value: string | null | undefined): string;
|
|
3013
|
+
sanitizeZipCode(value: string | null | undefined): string;
|
|
3014
|
+
isMonthRangeInvalid(start: string | null | undefined, end: string | null | undefined): boolean;
|
|
3015
|
+
private compareMonth;
|
|
3016
|
+
private prefillSectionFieldsFromBasicDetails;
|
|
3017
|
+
private basicDetailsIssues;
|
|
3018
|
+
private workItemIssues;
|
|
3019
|
+
private educationItemIssues;
|
|
3020
|
+
private certificationItemIssues;
|
|
3021
|
+
private licenseItemIssues;
|
|
3022
|
+
private skillItemIssues;
|
|
3023
|
+
private toolItemIssues;
|
|
3024
|
+
basicIssues: i0.Signal<string[]>;
|
|
3025
|
+
basicSectionHasIssues: i0.Signal<boolean>;
|
|
3026
|
+
workIssuesByIndex: i0.Signal<string[][]>;
|
|
3027
|
+
educationIssuesByIndex: i0.Signal<string[][]>;
|
|
3028
|
+
certIssuesByIndex: i0.Signal<string[][]>;
|
|
3029
|
+
licenseIssuesByIndex: i0.Signal<string[][]>;
|
|
3030
|
+
skillIssuesByIndex: i0.Signal<string[][]>;
|
|
3031
|
+
toolIssuesByIndex: i0.Signal<string[][]>;
|
|
3032
|
+
skillFormIssues: i0.Signal<string[]>;
|
|
3033
|
+
toolFormIssues: i0.Signal<string[]>;
|
|
3034
|
+
workSectionHasIssues: i0.Signal<boolean>;
|
|
3035
|
+
educationSectionHasIssues: i0.Signal<boolean>;
|
|
3036
|
+
certificationsSectionHasIssues: i0.Signal<boolean>;
|
|
3037
|
+
licensesSectionHasIssues: i0.Signal<boolean>;
|
|
3038
|
+
skillsSectionHasIssues: i0.Signal<boolean>;
|
|
3039
|
+
toolsSectionHasIssues: i0.Signal<boolean>;
|
|
3040
|
+
workSectionHasUnsavedItems(): boolean;
|
|
3041
|
+
educationSectionHasUnsavedItems(): boolean;
|
|
3042
|
+
certificationSectionHasUnsavedItems(): boolean;
|
|
3043
|
+
licenseSectionHasUnsavedItems(): boolean;
|
|
3044
|
+
skillsSectionHasUnsavedItems(): boolean;
|
|
3045
|
+
toolsSectionHasUnsavedItems(): boolean;
|
|
3046
|
+
isAnyEditorOpen: i0.Signal<boolean>;
|
|
3047
|
+
canConfirmAndContinue(): boolean;
|
|
3048
|
+
expandedIndex: i0.WritableSignal<number>;
|
|
3049
|
+
toggleJob(index: number): void;
|
|
3050
|
+
private commitProfile;
|
|
3051
|
+
private appendToMainModel;
|
|
3052
|
+
private updateInMainModel;
|
|
3053
|
+
private toMonthInput;
|
|
3054
|
+
monthInputToDate(value: string | null | undefined): Date | null;
|
|
3055
|
+
private dateToMonthInput;
|
|
3056
|
+
setTempJobMonth(field: 'startDate' | 'endDate', value: Date | null | undefined): void;
|
|
3057
|
+
setTempCertificationMonth(field: 'issueDate' | 'expiryDate', value: Date | null | undefined): void;
|
|
3058
|
+
setTempLicenseMonth(field: 'issueDate' | 'expiryDate', value: Date | null | undefined): void;
|
|
3059
|
+
setTempEducationMonth(field: 'startDate' | 'endDate', value: Date | null | undefined): void;
|
|
3060
|
+
confirmAllCertifications(): Promise<void>;
|
|
3061
|
+
confirmAllLicenses(): Promise<void>;
|
|
3062
|
+
private buildSectionQuery;
|
|
3063
|
+
private buildUserName;
|
|
3064
|
+
private getCreatedId;
|
|
3065
|
+
private getEntityId;
|
|
3066
|
+
private reindexServerIdsAfterDelete;
|
|
3067
|
+
private reindexSavedFlagsAfterDelete;
|
|
3068
|
+
private markItemSaved;
|
|
3069
|
+
hasUnsavedWorkItem(index: number): boolean;
|
|
3070
|
+
hasUnsavedEducationItem(index: number): boolean;
|
|
3071
|
+
hasUnsavedCertificationItem(index: number): boolean;
|
|
3072
|
+
hasUnsavedLicenseItem(index: number): boolean;
|
|
3073
|
+
hasUnsavedSkillItem(index: number): boolean;
|
|
3074
|
+
hasUnsavedToolItem(index: number): boolean;
|
|
3075
|
+
private mapSavedWorkToPreview;
|
|
3076
|
+
private mapSavedEducationToPreview;
|
|
3077
|
+
private mapSavedCertificationToPreview;
|
|
3078
|
+
private mapSavedLicenseToPreview;
|
|
3079
|
+
private normalizedText;
|
|
3080
|
+
private workSignature;
|
|
3081
|
+
private educationSignature;
|
|
3082
|
+
private certificationSignature;
|
|
3083
|
+
private licenseSignature;
|
|
3084
|
+
private mergeSavedAndCurrent;
|
|
3085
|
+
private ensureWorkServerId;
|
|
3086
|
+
private ensureEducationServerId;
|
|
3087
|
+
private ensureCertificationServerId;
|
|
3088
|
+
private ensureLicenseServerId;
|
|
3089
|
+
private ensureSkillServerId;
|
|
3090
|
+
private ensureToolServerId;
|
|
3091
|
+
private loadSavedSectionsFromApis;
|
|
3092
|
+
formatMonthYear(value: string | null | undefined): string;
|
|
3093
|
+
private confirmDelete;
|
|
3094
|
+
private jobEditor;
|
|
3095
|
+
isAddingJob(): boolean;
|
|
3096
|
+
editingJobIndex(): number | null;
|
|
3097
|
+
tempJob(): WorkExperience$1 | null;
|
|
3098
|
+
addJob(): void;
|
|
3099
|
+
startEditJob(jobIndex: number): void;
|
|
3100
|
+
cancelEditJob(): void;
|
|
3101
|
+
saveEditJob(): Promise<void>;
|
|
3102
|
+
deleteJob(index: number): void;
|
|
3103
|
+
updateTempResponsibilities(value: string): void;
|
|
3104
|
+
patchTempJob(patch: Partial<WorkExperience$1>): void;
|
|
3105
|
+
onWorkExperienceFileSelected(event: Event): void;
|
|
3106
|
+
setTempJobIsCurrent(isCurrent: boolean): void;
|
|
3107
|
+
private skillEditor;
|
|
3108
|
+
isSkillEditorOpen(): boolean;
|
|
3109
|
+
isAddingSkill(): boolean;
|
|
3110
|
+
editingSkillIndex(): number | null;
|
|
3111
|
+
skillForm(): SkillToolEditorData | null;
|
|
3112
|
+
patchSkillForm(patch: Partial<SkillToolEditorData>): void;
|
|
3113
|
+
openSkillEditor(index: number): void;
|
|
3114
|
+
addSkill(): void;
|
|
3115
|
+
closeSkillEditor(): void;
|
|
3116
|
+
setTempSkillStars(stars: number): void;
|
|
3117
|
+
saveSkillEditor(): Promise<void>;
|
|
3118
|
+
private reindexSkillMetaAfterDelete;
|
|
3119
|
+
deleteSkill(index: number): void;
|
|
3120
|
+
private toolEditor;
|
|
3121
|
+
isToolEditorOpen(): boolean;
|
|
3122
|
+
isAddingTool(): boolean;
|
|
3123
|
+
editingToolIndex(): number | null;
|
|
3124
|
+
toolForm(): SkillToolEditorData | null;
|
|
3125
|
+
patchToolForm(patch: Partial<SkillToolEditorData>): void;
|
|
3126
|
+
openToolEditor(index: number): void;
|
|
3127
|
+
addTool(): void;
|
|
3128
|
+
closeToolEditor(): void;
|
|
3129
|
+
setTempToolStars(stars: number): void;
|
|
3130
|
+
confirmAllSkills(): Promise<void>;
|
|
3131
|
+
confirmAllTools(): Promise<void>;
|
|
3132
|
+
saveToolEditor(): Promise<void>;
|
|
3133
|
+
private reindexToolMetaAfterDelete;
|
|
3134
|
+
deleteTool(index: number): void;
|
|
3135
|
+
private certificationEditor;
|
|
3136
|
+
isAddingCertification(): boolean;
|
|
3137
|
+
editingCertificationIndex(): number | null;
|
|
3138
|
+
tempCertification(): Certification$3 | null;
|
|
3139
|
+
private normalizeNullableString;
|
|
3140
|
+
private normalizeMonthInput;
|
|
3141
|
+
addCertification(): void;
|
|
3142
|
+
startEditCertification(index: number): void;
|
|
3143
|
+
cancelEditCertification(): void;
|
|
3144
|
+
patchTempCertification(patch: Partial<Certification$3>): void;
|
|
3145
|
+
onCertificationFileSelected(event: Event): void;
|
|
3146
|
+
saveCertificationEditor(): Promise<void>;
|
|
3147
|
+
deleteCertification(index: number): void;
|
|
3148
|
+
private licenseEditor;
|
|
3149
|
+
isAddingLicense(): boolean;
|
|
3150
|
+
editingLicenseIndex(): number | null;
|
|
3151
|
+
tempLicense(): License$1 | null;
|
|
3152
|
+
addLicense(): void;
|
|
3153
|
+
startEditLicense(index: number): void;
|
|
3154
|
+
cancelEditLicense(): void;
|
|
3155
|
+
patchTempLicense(patch: Partial<License$1>): void;
|
|
3156
|
+
onLicenseFileSelected(event: Event): void;
|
|
3157
|
+
saveLicenseEditor(): Promise<void>;
|
|
3158
|
+
deleteLicense(index: number): void;
|
|
3159
|
+
private educationEditor;
|
|
3160
|
+
isAddingEducation(): boolean;
|
|
3161
|
+
editingEducationIndex(): number | null;
|
|
3162
|
+
tempEducation(): Education$1 | null;
|
|
3163
|
+
addEducation(): void;
|
|
3164
|
+
startEditEducation(index: number): void;
|
|
3165
|
+
cancelEditEducation(): void;
|
|
3166
|
+
patchTempEducation(patch: Partial<Education$1>): void;
|
|
3167
|
+
onEducationFileSelected(event: Event): void;
|
|
3168
|
+
saveEducation(): Promise<void>;
|
|
3169
|
+
deleteEducation(index: number): void;
|
|
3170
|
+
onBackClick(): void;
|
|
3171
|
+
stayOnPreview(): void;
|
|
3172
|
+
goToDashboard(): Promise<void>;
|
|
3173
|
+
proceedBack(): void;
|
|
3174
|
+
onGoToDashboardClick(): void;
|
|
3175
|
+
cancelDashboardRedirect(): void;
|
|
3176
|
+
tempProfile: BasicDetails;
|
|
3177
|
+
isEditMode: i0.WritableSignal<boolean>;
|
|
3178
|
+
toggleEdit(): void;
|
|
3179
|
+
cancel(): void;
|
|
3180
|
+
save(): Promise<void>;
|
|
3181
|
+
private persistWorkExperience;
|
|
3182
|
+
private persistEducation;
|
|
3183
|
+
private persistCertification;
|
|
3184
|
+
private persistLicense;
|
|
3185
|
+
private persistSkill;
|
|
3186
|
+
private persistTool;
|
|
3187
|
+
private saveAWSFile;
|
|
3188
|
+
selectFile(event: any): void;
|
|
3189
|
+
private toAbsoluteFileUrl;
|
|
3190
|
+
private revokeObjectUrl;
|
|
3191
|
+
previewSelectedFile(item: any): void;
|
|
3192
|
+
mapBasicDetailsToUserDetail(data: any): {
|
|
3193
|
+
providerName: string;
|
|
3194
|
+
providerId: string;
|
|
3195
|
+
UserRoleId: any;
|
|
3196
|
+
userDetail: {
|
|
3197
|
+
userBio: any;
|
|
3198
|
+
firstName: any;
|
|
3199
|
+
lastName: any;
|
|
3200
|
+
email: any;
|
|
3201
|
+
address1: any;
|
|
3202
|
+
address2: string;
|
|
3203
|
+
city: any;
|
|
3204
|
+
state: any;
|
|
3205
|
+
zipcode: any;
|
|
3206
|
+
county: string;
|
|
3207
|
+
country: any;
|
|
3208
|
+
latitude: null;
|
|
3209
|
+
longitude: null;
|
|
3210
|
+
yearsActive: number;
|
|
3211
|
+
isInitialSetupCompleted: boolean;
|
|
3212
|
+
id: any;
|
|
3213
|
+
phoneNumber: any;
|
|
3214
|
+
yearsOfExperince: any;
|
|
3215
|
+
userJobTitle: any[];
|
|
3216
|
+
timeZone: string;
|
|
3217
|
+
datePattern: string;
|
|
3218
|
+
dateTimePattern: string;
|
|
3219
|
+
timePattern: string;
|
|
3220
|
+
};
|
|
3221
|
+
};
|
|
3222
|
+
mapBasicDetailsDashboard(data: any): {
|
|
3223
|
+
providerName: string;
|
|
3224
|
+
providerId: string;
|
|
3225
|
+
UserRoleId: any;
|
|
3226
|
+
userDetail: {
|
|
3227
|
+
userBio: any;
|
|
3228
|
+
firstName: any;
|
|
3229
|
+
lastName: any;
|
|
3230
|
+
email: any;
|
|
3231
|
+
address1: any;
|
|
3232
|
+
address2: string;
|
|
3233
|
+
city: any;
|
|
3234
|
+
state: any;
|
|
3235
|
+
zipcode: any;
|
|
3236
|
+
county: string;
|
|
3237
|
+
country: any;
|
|
3238
|
+
latitude: null;
|
|
3239
|
+
longitude: null;
|
|
3240
|
+
yearsActive: number;
|
|
3241
|
+
isInitialSetupCompleted: boolean;
|
|
3242
|
+
id: any;
|
|
3243
|
+
phoneNumber: any;
|
|
3244
|
+
yearsOfExperince: any;
|
|
3245
|
+
userJobTitle: any[];
|
|
3246
|
+
timeZone: string;
|
|
3247
|
+
datePattern: string;
|
|
3248
|
+
dateTimePattern: string;
|
|
3249
|
+
timePattern: string;
|
|
3250
|
+
};
|
|
3251
|
+
};
|
|
3252
|
+
private mapSavedBasicDetailsToPreview;
|
|
3253
|
+
private hasUserDetailPayload;
|
|
3254
|
+
mapWorkExperience(data: any): any;
|
|
3255
|
+
mapEducation(data: any): any;
|
|
3256
|
+
mapCertifications(data: any): any;
|
|
3257
|
+
mapLicenses(data: any): any;
|
|
3258
|
+
mapSkills(data: any): any;
|
|
3259
|
+
mapTools(data: any): any;
|
|
3260
|
+
formatDate(date: string): string | null;
|
|
3261
|
+
workActionLabel(index: number | null): string;
|
|
3262
|
+
educationActionLabel(index: number | null): string;
|
|
3263
|
+
certificationActionLabel(index: number | null): string;
|
|
3264
|
+
licenseActionLabel(index: number | null): string;
|
|
3265
|
+
skillActionLabel(index: number | null): string;
|
|
3266
|
+
toolActionLabel(index: number | null): string;
|
|
3267
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PreviewComponent, never>;
|
|
3268
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PreviewComponent, "app-preview", never, { "providerId": { "alias": "providerId"; "required": false; }; "providerName": { "alias": "providerName"; "required": false; }; "roleData": { "alias": "roleData"; "required": false; }; "cloudfrontUrl": { "alias": "cloudfrontUrl"; "required": false; }; }, { "backToParent": "backToParent"; }, never, never, true, never>;
|
|
3269
|
+
}
|
|
3270
|
+
|
|
3253
3271
|
declare class AssetUrlsService {
|
|
3254
3272
|
private roleContextService;
|
|
3255
3273
|
private readonly base;
|
|
@@ -3296,7 +3314,7 @@ declare class CommonPipesModule {
|
|
|
3296
3314
|
|
|
3297
3315
|
declare class InitialProcessModule {
|
|
3298
3316
|
static ɵfac: i0.ɵɵFactoryDeclaration<InitialProcessModule, never>;
|
|
3299
|
-
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 RoleSelectComponent, typeof Step2CoverageComponent, typeof WorkexperienceComponent, typeof FirstComponent
|
|
3317
|
+
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 RoleSelectComponent, typeof Step2CoverageComponent, typeof WorkexperienceComponent, typeof FirstComponent], [typeof i2.CommonModule, typeof _angular_forms.FormsModule, typeof _angular_forms.ReactiveFormsModule, typeof i17.RouterModule, typeof UsMapModule, typeof i19.NgSelectModule, typeof i20.BsDatepickerModule, typeof Ng2LoadingSpinnerModule, typeof LoaderModule, typeof CustomPipesModule, typeof NgxStarsModule, typeof i25.TooltipModule, typeof i26.TabsModule, typeof i27.AccordionModule, typeof GooglePlaceModule, typeof i29.GoogleMapsModule, typeof TextMaskModule, typeof SignaturePadModule, typeof PreviewComponent, typeof CommonPipesModule], [typeof InitialProcessComponent]>;
|
|
3300
3318
|
static ɵinj: i0.ɵɵInjectorDeclaration<InitialProcessModule>;
|
|
3301
3319
|
}
|
|
3302
3320
|
|
|
@@ -3305,12 +3323,13 @@ declare class MustChangePasswordComponent {
|
|
|
3305
3323
|
private auth;
|
|
3306
3324
|
userService: UserDetailService;
|
|
3307
3325
|
private tokenService;
|
|
3326
|
+
private roleContextService;
|
|
3308
3327
|
private authLogoutService;
|
|
3309
3328
|
changePasswordForm: FormGroup;
|
|
3310
3329
|
submitted: boolean;
|
|
3311
3330
|
isLoading: boolean;
|
|
3312
3331
|
errorMessage: string;
|
|
3313
|
-
constructor(fb: FormBuilder, auth: AuthService, userService: UserDetailService, tokenService: TokenService, authLogoutService: AuthLogoutService);
|
|
3332
|
+
constructor(fb: FormBuilder, auth: AuthService, userService: UserDetailService, tokenService: TokenService, roleContextService: RoleContextService, authLogoutService: AuthLogoutService);
|
|
3314
3333
|
get f(): {
|
|
3315
3334
|
[key: string]: AbstractControl;
|
|
3316
3335
|
};
|
|
@@ -3346,5 +3365,5 @@ declare class VerifyEmailComponent implements OnInit, OnDestroy {
|
|
|
3346
3365
|
static ɵcmp: i0.ɵɵComponentDeclaration<VerifyEmailComponent, "app-verify-email", never, {}, {}, never, never, true, never>;
|
|
3347
3366
|
}
|
|
3348
3367
|
|
|
3349
|
-
export { AppType, InitialProcessComponent, InitialProcessModule, LIBRARY_CONFIG, MustChangePasswordComponent, VerifyEmailComponent };
|
|
3368
|
+
export { AppType, InitialProcessComponent, InitialProcessModule, LIBRARY_CONFIG, MustChangePasswordComponent, PreviewComponent, VerifyEmailComponent };
|
|
3350
3369
|
export type { LibraryConfig };
|