@idsoftsource/initial-process 2.9.6 → 2.9.7
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/index.d.ts
CHANGED
|
@@ -1822,10 +1822,6 @@ declare class StepperComponent implements AfterViewInit {
|
|
|
1822
1822
|
get completedCount(): number;
|
|
1823
1823
|
get progressPercent(): number;
|
|
1824
1824
|
get progressOffset(): number;
|
|
1825
|
-
/**
|
|
1826
|
-
* A tab is locked when it is an optional step (index > BASIC_DETAILS_INDEX)
|
|
1827
|
-
* and the user has not yet completed Basic Details.
|
|
1828
|
-
*/
|
|
1829
1825
|
isLocked(index: number): boolean;
|
|
1830
1826
|
goToStep(index: number): void;
|
|
1831
1827
|
private triggerLockWarning;
|
|
@@ -2175,8 +2171,6 @@ declare class SkillsComponent {
|
|
|
2175
2171
|
skillDetailList?: ElementRef;
|
|
2176
2172
|
private professionService;
|
|
2177
2173
|
constructor(skillSetService: SkillSetService, userSkillSetService: UserSkillSetService, userService: UserService, formBuilder: UntypedFormBuilder, utils: UtilsService, roleContextService: RoleContextService, store: CredentialingStore, tokenService: TokenService);
|
|
2178
|
-
private ctxProviderName;
|
|
2179
|
-
private ctxProviderId;
|
|
2180
2174
|
private markTabPristine;
|
|
2181
2175
|
goToAddSkillsMode(): void;
|
|
2182
2176
|
createGroup(skillSetId?: any, skillName?: any): UntypedFormGroup;
|
|
@@ -2419,8 +2413,6 @@ declare class ToolsComponent {
|
|
|
2419
2413
|
signatureFileId: any;
|
|
2420
2414
|
constructor(toolService: ToolService, userToolService: UserToolService, formBuilder: UntypedFormBuilder, userService: UserService, utils: UtilsService, store: CredentialingStore, tokenService: TokenService, roleContextService: RoleContextService, userDetailService: UserDetailService, professionService: ProfessionService, libConfig: LibraryConfig);
|
|
2421
2415
|
ngOnInit(): Promise<void>;
|
|
2422
|
-
private ctxProviderName;
|
|
2423
|
-
private ctxProviderId;
|
|
2424
2416
|
createGroup(toolId: string | null | undefined, toolName: string): UntypedFormGroup;
|
|
2425
2417
|
AddGroup(toolId: null, toolName: string): UntypedFormGroup;
|
|
2426
2418
|
setDefault(): void;
|
|
@@ -2631,7 +2623,7 @@ declare class RoleSelectComponent implements OnInit {
|
|
|
2631
2623
|
userCounty: string | null | undefined;
|
|
2632
2624
|
userMobile: string | null | undefined;
|
|
2633
2625
|
userEmailId: string | null | undefined;
|
|
2634
|
-
emailId:
|
|
2626
|
+
emailId: string | null | undefined;
|
|
2635
2627
|
headshotUrl: any;
|
|
2636
2628
|
logoId: any;
|
|
2637
2629
|
logoFileName: any;
|
|
@@ -2717,7 +2709,6 @@ declare class UserCoverageAreaService {
|
|
|
2717
2709
|
declare class Step2CoverageComponent {
|
|
2718
2710
|
store: CredentialingStore;
|
|
2719
2711
|
private usMapService;
|
|
2720
|
-
private postalCodeService;
|
|
2721
2712
|
private userCoverageAreaService;
|
|
2722
2713
|
private alertService;
|
|
2723
2714
|
private roleContextService;
|
|
@@ -2753,7 +2744,7 @@ declare class Step2CoverageComponent {
|
|
|
2753
2744
|
userDetail: any;
|
|
2754
2745
|
existingCoverageIds: string[];
|
|
2755
2746
|
private initialCoverageSnapshot;
|
|
2756
|
-
constructor(store: CredentialingStore, usMapService: UsMapLatestService,
|
|
2747
|
+
constructor(store: CredentialingStore, usMapService: UsMapLatestService, userCoverageAreaService: UserCoverageAreaService, alertService: AlertService, roleContextService: RoleContextService, tokenService: TokenService);
|
|
2757
2748
|
ngOnInit(): Promise<void>;
|
|
2758
2749
|
toggleMap(): void;
|
|
2759
2750
|
setSelectedStates(values: StateModel[]): void;
|
|
@@ -2865,73 +2856,6 @@ declare class FirstComponent implements OnInit {
|
|
|
2865
2856
|
userId: any;
|
|
2866
2857
|
isDragOver: boolean;
|
|
2867
2858
|
uploadError: string | null;
|
|
2868
|
-
sample: {
|
|
2869
|
-
basicDetails: {
|
|
2870
|
-
firstName: string;
|
|
2871
|
-
lastName: string;
|
|
2872
|
-
email: string;
|
|
2873
|
-
phone: string;
|
|
2874
|
-
address: string;
|
|
2875
|
-
city: string;
|
|
2876
|
-
state: string;
|
|
2877
|
-
zipCode: string;
|
|
2878
|
-
country: string;
|
|
2879
|
-
jobTitle: string;
|
|
2880
|
-
yearsOfExperience: number;
|
|
2881
|
-
summary: string;
|
|
2882
|
-
};
|
|
2883
|
-
workExperience: {
|
|
2884
|
-
company: string;
|
|
2885
|
-
jobTitle: string;
|
|
2886
|
-
country: string;
|
|
2887
|
-
state: string;
|
|
2888
|
-
city: string;
|
|
2889
|
-
startDate: string;
|
|
2890
|
-
endDate: string;
|
|
2891
|
-
isCurrent: boolean;
|
|
2892
|
-
responsibilities: string[];
|
|
2893
|
-
}[];
|
|
2894
|
-
education: ({
|
|
2895
|
-
degree: string;
|
|
2896
|
-
degreeType: string;
|
|
2897
|
-
institution: string;
|
|
2898
|
-
country: string;
|
|
2899
|
-
state: string;
|
|
2900
|
-
city: string;
|
|
2901
|
-
startDate: string;
|
|
2902
|
-
endDate: string;
|
|
2903
|
-
achievements: string[];
|
|
2904
|
-
} | {
|
|
2905
|
-
degree: string;
|
|
2906
|
-
degreeType: string;
|
|
2907
|
-
institution: string;
|
|
2908
|
-
country: string;
|
|
2909
|
-
state: string;
|
|
2910
|
-
city: null;
|
|
2911
|
-
startDate: string;
|
|
2912
|
-
endDate: string;
|
|
2913
|
-
achievements: never[];
|
|
2914
|
-
})[];
|
|
2915
|
-
certifications: {
|
|
2916
|
-
name: string;
|
|
2917
|
-
issuingOrganization: null;
|
|
2918
|
-
state: null;
|
|
2919
|
-
issueDate: null;
|
|
2920
|
-
expiryDate: null;
|
|
2921
|
-
credentialId: null;
|
|
2922
|
-
}[];
|
|
2923
|
-
licenses: {
|
|
2924
|
-
name: string;
|
|
2925
|
-
issuingAuthority: null;
|
|
2926
|
-
licenseNumber: null;
|
|
2927
|
-
state: null;
|
|
2928
|
-
issueDate: null;
|
|
2929
|
-
expiryDate: null;
|
|
2930
|
-
}[];
|
|
2931
|
-
skills: string[];
|
|
2932
|
-
tools: string[];
|
|
2933
|
-
id: string;
|
|
2934
|
-
};
|
|
2935
2859
|
fileData: any;
|
|
2936
2860
|
resumeName: any;
|
|
2937
2861
|
fileDataUser: any;
|