@idsoftsource/initial-process 2.4.1 → 2.4.4
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
|
@@ -896,7 +896,7 @@ declare class CredentialingStore {
|
|
|
896
896
|
clearStorage(): void;
|
|
897
897
|
resetAll(): void;
|
|
898
898
|
toolsList: i0.WritableSignal<Tool[]>;
|
|
899
|
-
uploadOption: i0.WritableSignal<"
|
|
899
|
+
uploadOption: i0.WritableSignal<"upload" | "manual" | null>;
|
|
900
900
|
certifications: i0.WritableSignal<Certification$2[]>;
|
|
901
901
|
licenses: i0.WritableSignal<License[]>;
|
|
902
902
|
stepView: i0.WritableSignal<"add" | "preview">;
|
|
@@ -928,7 +928,8 @@ declare class CredentialingStore {
|
|
|
928
928
|
currentCoverage: i0.WritableSignal<boolean>;
|
|
929
929
|
notApplicable: i0.WritableSignal<boolean>;
|
|
930
930
|
selectedStates: i0.WritableSignal<string[]>;
|
|
931
|
-
isUploadSuccess: i0.WritableSignal<
|
|
931
|
+
isUploadSuccess: i0.WritableSignal<boolean>;
|
|
932
|
+
sectionDataLoaded: i0.WritableSignal<boolean>;
|
|
932
933
|
uploadedResumeFile: i0.WritableSignal<{
|
|
933
934
|
name: string;
|
|
934
935
|
size: number;
|
|
@@ -963,7 +964,7 @@ declare class CredentialingStore {
|
|
|
963
964
|
nextStep(): void;
|
|
964
965
|
previousStep(): void;
|
|
965
966
|
updateToolDetails(toolName: string, data: Partial<Tool>): void;
|
|
966
|
-
addSuccess(value:
|
|
967
|
+
addSuccess(value: boolean): void;
|
|
967
968
|
setProfile(data: ResumeProfile): void;
|
|
968
969
|
static ɵfac: i0.ɵɵFactoryDeclaration<CredentialingStore, never>;
|
|
969
970
|
static ɵprov: i0.ɵɵInjectableDeclaration<CredentialingStore>;
|
|
@@ -1209,6 +1210,7 @@ declare class InitialProcessComponent implements OnInit {
|
|
|
1209
1210
|
private saveState;
|
|
1210
1211
|
private restoreState;
|
|
1211
1212
|
private clearState;
|
|
1213
|
+
onBeforeUnload(event: BeforeUnloadEvent): void;
|
|
1212
1214
|
ngOnDestroy(): void;
|
|
1213
1215
|
static ɵfac: i0.ɵɵFactoryDeclaration<InitialProcessComponent, never>;
|
|
1214
1216
|
static ɵcmp: i0.ɵɵComponentDeclaration<InitialProcessComponent, "app-initial-process", never, {}, {}, never, never, false, never>;
|
|
@@ -1658,15 +1660,6 @@ declare class EducationComponent implements OnInit {
|
|
|
1658
1660
|
static ɵcmp: i0.ɵɵComponentDeclaration<EducationComponent, "app-education", never, { "providerId": { "alias": "providerId"; "required": false; }; "providerName": { "alias": "providerName"; "required": false; }; "cloudfrontUrl": { "alias": "cloudfrontUrl"; "required": false; }; }, {}, never, never, false, never>;
|
|
1659
1661
|
}
|
|
1660
1662
|
|
|
1661
|
-
declare class ProfessionService {
|
|
1662
|
-
private http;
|
|
1663
|
-
private readonly baseUrl;
|
|
1664
|
-
getProfessions(query?: any): Observable<any>;
|
|
1665
|
-
private buildParams;
|
|
1666
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ProfessionService, never>;
|
|
1667
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<ProfessionService>;
|
|
1668
|
-
}
|
|
1669
|
-
|
|
1670
1663
|
declare class CertificationComponent {
|
|
1671
1664
|
roleContextService: RoleContextService;
|
|
1672
1665
|
userDocumentService: UserDocumentService;
|
|
@@ -1678,7 +1671,6 @@ declare class CertificationComponent {
|
|
|
1678
1671
|
private fb;
|
|
1679
1672
|
private fileService;
|
|
1680
1673
|
private http;
|
|
1681
|
-
private professionService;
|
|
1682
1674
|
originalFormValue: any;
|
|
1683
1675
|
states: any[];
|
|
1684
1676
|
isAdding: i0.WritableSignal<boolean>;
|
|
@@ -1722,7 +1714,8 @@ declare class CertificationComponent {
|
|
|
1722
1714
|
professions: any[];
|
|
1723
1715
|
selectedProfessionId: string | null;
|
|
1724
1716
|
selectedProfessionValue: string;
|
|
1725
|
-
|
|
1717
|
+
private professionService;
|
|
1718
|
+
constructor(roleContextService: RoleContextService, userDocumentService: UserDocumentService, userService: UserService, store: CredentialingStore, workStore: CertificationStore, tokenService: TokenService, postalCodeService: PostalCodeServices, fb: FormBuilder, fileService: FileService, http: HttpClient);
|
|
1726
1719
|
ngOnInit(): Promise<void>;
|
|
1727
1720
|
loadProfessions(): void;
|
|
1728
1721
|
onProfessionChange(profession: any): void;
|
|
@@ -1849,7 +1842,6 @@ declare class SkillsComponent {
|
|
|
1849
1842
|
private roleContextService;
|
|
1850
1843
|
store: CredentialingStore;
|
|
1851
1844
|
private tokenService;
|
|
1852
|
-
private professionService;
|
|
1853
1845
|
private userSkillsSub?;
|
|
1854
1846
|
providerId: string;
|
|
1855
1847
|
providerName: string;
|
|
@@ -1894,7 +1886,8 @@ declare class SkillsComponent {
|
|
|
1894
1886
|
selectedProfessionId: string | null;
|
|
1895
1887
|
selectedProfessionValue: string;
|
|
1896
1888
|
skillDetailList?: ElementRef;
|
|
1897
|
-
|
|
1889
|
+
private professionService;
|
|
1890
|
+
constructor(skillSetService: SkillSetService, userSkillSetService: UserSkillSetService, userService: UserService, formBuilder: UntypedFormBuilder, utils: UtilsService, roleContextService: RoleContextService, store: CredentialingStore, tokenService: TokenService);
|
|
1898
1891
|
private ctxProviderName;
|
|
1899
1892
|
private ctxProviderId;
|
|
1900
1893
|
private markTabPristine;
|
|
@@ -2068,6 +2061,15 @@ declare class ToolService {
|
|
|
2068
2061
|
static ɵprov: i0.ɵɵInjectableDeclaration<ToolService>;
|
|
2069
2062
|
}
|
|
2070
2063
|
|
|
2064
|
+
declare class ProfessionService {
|
|
2065
|
+
private http;
|
|
2066
|
+
private readonly baseUrl;
|
|
2067
|
+
getProfessions(query?: any): Observable<any>;
|
|
2068
|
+
private buildParams;
|
|
2069
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProfessionService, never>;
|
|
2070
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ProfessionService>;
|
|
2071
|
+
}
|
|
2072
|
+
|
|
2071
2073
|
declare class ToolsComponent {
|
|
2072
2074
|
private toolService;
|
|
2073
2075
|
private userToolService;
|