@idsoftsource/initial-process 3.6.2 → 3.6.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
|
@@ -739,7 +739,7 @@ interface UserSkillSetModel extends MasterModel {
|
|
|
739
739
|
|
|
740
740
|
interface UserToolModel extends MasterModel {
|
|
741
741
|
showOption?: boolean;
|
|
742
|
-
forUser:
|
|
742
|
+
forUser: any;
|
|
743
743
|
providerId?: string;
|
|
744
744
|
providerName?: string;
|
|
745
745
|
userId?: string;
|
|
@@ -1834,7 +1834,7 @@ declare class CertificationStore {
|
|
|
1834
1834
|
readonly experiences: i0.Signal<Certification$1[]>;
|
|
1835
1835
|
API_URL: any;
|
|
1836
1836
|
constructor(userDocumentService: UserDocumentService);
|
|
1837
|
-
loadFromApi(userId: string): void;
|
|
1837
|
+
loadFromApi(userId: string, targetProviderId?: string): void;
|
|
1838
1838
|
addExperience(exp: Certification$1): void;
|
|
1839
1839
|
updateExperience(index: number, exp: Certification$1): void;
|
|
1840
1840
|
getExperience(index: number): Certification$1;
|
|
@@ -1866,7 +1866,7 @@ declare class LicenseStore {
|
|
|
1866
1866
|
readonly experiences: i0.Signal<Certification[]>;
|
|
1867
1867
|
API_URL: any;
|
|
1868
1868
|
constructor(userDocumentService: UserDocumentService);
|
|
1869
|
-
loadFromApi(userId: string): void;
|
|
1869
|
+
loadFromApi(userId: string, targetProviderId?: string): void;
|
|
1870
1870
|
addExperience(exp: Certification): void;
|
|
1871
1871
|
updateExperience(index: number, exp: Certification): void;
|
|
1872
1872
|
getExperience(index: number): Certification;
|