@idsoftsource/initial-process 2.3.8 → 2.3.9
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<"manual" | "upload" | null>;
|
|
900
900
|
certifications: i0.WritableSignal<Certification$2[]>;
|
|
901
901
|
licenses: i0.WritableSignal<License[]>;
|
|
902
902
|
stepView: i0.WritableSignal<"add" | "preview">;
|
|
@@ -1450,7 +1450,7 @@ declare class UserDocumentService {
|
|
|
1450
1450
|
}>;
|
|
1451
1451
|
bulkDelete(ids: string[]): Observable<Result>;
|
|
1452
1452
|
private buildParams;
|
|
1453
|
-
getDocumentTypes(maintype: any, providerId: string, searchText?: string): Observable<any>;
|
|
1453
|
+
getDocumentTypes(maintype: any, providerId: string, searchText?: string, professionId?: string | null): Observable<any>;
|
|
1454
1454
|
static ɵfac: i0.ɵɵFactoryDeclaration<UserDocumentService, never>;
|
|
1455
1455
|
static ɵprov: i0.ɵɵInjectableDeclaration<UserDocumentService>;
|
|
1456
1456
|
}
|
|
@@ -1657,6 +1657,15 @@ declare class EducationComponent implements OnInit {
|
|
|
1657
1657
|
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>;
|
|
1658
1658
|
}
|
|
1659
1659
|
|
|
1660
|
+
declare class ProfessionService {
|
|
1661
|
+
private http;
|
|
1662
|
+
private readonly baseUrl;
|
|
1663
|
+
getProfessions(query?: any): Observable<any>;
|
|
1664
|
+
private buildParams;
|
|
1665
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProfessionService, never>;
|
|
1666
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ProfessionService>;
|
|
1667
|
+
}
|
|
1668
|
+
|
|
1660
1669
|
declare class CertificationComponent {
|
|
1661
1670
|
roleContextService: RoleContextService;
|
|
1662
1671
|
userDocumentService: UserDocumentService;
|
|
@@ -1668,6 +1677,7 @@ declare class CertificationComponent {
|
|
|
1668
1677
|
private fb;
|
|
1669
1678
|
private fileService;
|
|
1670
1679
|
private http;
|
|
1680
|
+
private professionService;
|
|
1671
1681
|
originalFormValue: any;
|
|
1672
1682
|
states: any[];
|
|
1673
1683
|
isAdding: i0.WritableSignal<boolean>;
|
|
@@ -1708,8 +1718,13 @@ declare class CertificationComponent {
|
|
|
1708
1718
|
showpreview: i0.Signal<boolean>;
|
|
1709
1719
|
userdata: any;
|
|
1710
1720
|
maxDate: Date;
|
|
1711
|
-
|
|
1721
|
+
professions: any[];
|
|
1722
|
+
selectedProfessionId: string | null;
|
|
1723
|
+
selectedProfessionValue: string;
|
|
1724
|
+
constructor(roleContextService: RoleContextService, userDocumentService: UserDocumentService, userService: UserService, store: CredentialingStore, workStore: CertificationStore, tokenService: TokenService, postalCodeService: PostalCodeServices, fb: FormBuilder, fileService: FileService, http: HttpClient, professionService: ProfessionService);
|
|
1712
1725
|
ngOnInit(): Promise<void>;
|
|
1726
|
+
loadProfessions(): void;
|
|
1727
|
+
onProfessionChange(profession: any): void;
|
|
1713
1728
|
loadDocumentTypes(searchText?: string): void;
|
|
1714
1729
|
loadDocumentTypesDefault(searchText?: string): void;
|
|
1715
1730
|
isChecked(id: string): boolean;
|
|
@@ -1833,6 +1848,7 @@ declare class SkillsComponent {
|
|
|
1833
1848
|
private roleContextService;
|
|
1834
1849
|
store: CredentialingStore;
|
|
1835
1850
|
private tokenService;
|
|
1851
|
+
private professionService;
|
|
1836
1852
|
private userSkillsSub?;
|
|
1837
1853
|
providerId: string;
|
|
1838
1854
|
providerName: string;
|
|
@@ -1873,8 +1889,11 @@ declare class SkillsComponent {
|
|
|
1873
1889
|
emailId: any;
|
|
1874
1890
|
userId: any;
|
|
1875
1891
|
showAllSkills: boolean;
|
|
1892
|
+
professions: any[];
|
|
1893
|
+
selectedProfessionId: string | null;
|
|
1894
|
+
selectedProfessionValue: string;
|
|
1876
1895
|
skillDetailList?: ElementRef;
|
|
1877
|
-
constructor(skillSetService: SkillSetService, userSkillSetService: UserSkillSetService, userService: UserService, formBuilder: UntypedFormBuilder, utils: UtilsService, roleContextService: RoleContextService, store: CredentialingStore, tokenService: TokenService);
|
|
1896
|
+
constructor(skillSetService: SkillSetService, userSkillSetService: UserSkillSetService, userService: UserService, formBuilder: UntypedFormBuilder, utils: UtilsService, roleContextService: RoleContextService, store: CredentialingStore, tokenService: TokenService, professionService: ProfessionService);
|
|
1878
1897
|
private ctxProviderName;
|
|
1879
1898
|
private ctxProviderId;
|
|
1880
1899
|
private markTabPristine;
|
|
@@ -1901,6 +1920,8 @@ declare class SkillsComponent {
|
|
|
1901
1920
|
private scrollToDetailList;
|
|
1902
1921
|
onSelectedSkillsets(event: Event, skill: SkillSetModel): void;
|
|
1903
1922
|
createNewSkills(): void;
|
|
1923
|
+
loadProfessions(): void;
|
|
1924
|
+
onProfessionChange(profession: any): void;
|
|
1904
1925
|
getSkillSets(): void;
|
|
1905
1926
|
setDefault(): void;
|
|
1906
1927
|
onContinue(): void;
|
|
@@ -2056,6 +2077,7 @@ declare class ToolsComponent {
|
|
|
2056
2077
|
private tokenService;
|
|
2057
2078
|
private roleContextService;
|
|
2058
2079
|
private userDetailService;
|
|
2080
|
+
private professionService;
|
|
2059
2081
|
private libConfig;
|
|
2060
2082
|
roleData: any;
|
|
2061
2083
|
providerId: any;
|
|
@@ -2097,12 +2119,15 @@ declare class ToolsComponent {
|
|
|
2097
2119
|
userToolsPreview: any[];
|
|
2098
2120
|
showDashboardModal: boolean;
|
|
2099
2121
|
showAllTools: boolean;
|
|
2122
|
+
professions: any[];
|
|
2123
|
+
selectedProfessionId: string | null;
|
|
2124
|
+
selectedProfessionValue: string;
|
|
2100
2125
|
toolDetailList?: ElementRef;
|
|
2101
2126
|
userDetails: any;
|
|
2102
2127
|
userdata: any;
|
|
2103
2128
|
signatureUrl: any;
|
|
2104
2129
|
signatureFileId: any;
|
|
2105
|
-
constructor(toolService: ToolService, userToolService: UserToolService, formBuilder: UntypedFormBuilder, userService: UserService, utils: UtilsService, store: CredentialingStore, tokenService: TokenService, roleContextService: RoleContextService, userDetailService: UserDetailService, libConfig: LibraryConfig);
|
|
2130
|
+
constructor(toolService: ToolService, userToolService: UserToolService, formBuilder: UntypedFormBuilder, userService: UserService, utils: UtilsService, store: CredentialingStore, tokenService: TokenService, roleContextService: RoleContextService, userDetailService: UserDetailService, professionService: ProfessionService, libConfig: LibraryConfig);
|
|
2106
2131
|
ngOnInit(): Promise<void>;
|
|
2107
2132
|
private ctxProviderName;
|
|
2108
2133
|
private ctxProviderId;
|
|
@@ -2138,6 +2163,8 @@ declare class ToolsComponent {
|
|
|
2138
2163
|
createNewTools(): void;
|
|
2139
2164
|
cancel(): void;
|
|
2140
2165
|
goToAddSkillsMode(): void;
|
|
2166
|
+
loadProfessions(): void;
|
|
2167
|
+
onProfessionChange(profession: any): void;
|
|
2141
2168
|
getTools(): void;
|
|
2142
2169
|
onToolContinue(): void;
|
|
2143
2170
|
saveUserTools(): void;
|