@idsoftsource/initial-process 3.6.7 → 3.6.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
|
@@ -1804,7 +1804,7 @@ declare class UserDocumentService {
|
|
|
1804
1804
|
getUserDocument(query: GridifyQuery): Observable<{
|
|
1805
1805
|
data: any[];
|
|
1806
1806
|
}>;
|
|
1807
|
-
|
|
1807
|
+
deleteUserDocument(ids: string[]): Observable<Result>;
|
|
1808
1808
|
private buildParams;
|
|
1809
1809
|
getDocumentTypes(maintype: any, providerId: string, searchText?: string, professionId?: string | null): Observable<any>;
|
|
1810
1810
|
static ɵfac: i0.ɵɵFactoryDeclaration<UserDocumentService, never>;
|
|
@@ -2163,9 +2163,8 @@ declare class UserSkillSetService {
|
|
|
2163
2163
|
constructor(httpClient: HttpClient);
|
|
2164
2164
|
changeStatus(model: any): Observable<Result>;
|
|
2165
2165
|
createUserSkillSet(models: UserSkillSetModel[]): Observable<any>;
|
|
2166
|
-
updateUserSkillSet(
|
|
2166
|
+
updateUserSkillSet(models: UserSkillSetModel[]): Observable<any>;
|
|
2167
2167
|
bulkDelete(ids: string[]): Observable<Result>;
|
|
2168
|
-
deleteUserSkillSet(ids: string[]): Observable<Result>;
|
|
2169
2168
|
getUserSkillSet(query: GridifyQuery): Observable<any>;
|
|
2170
2169
|
private generateParams;
|
|
2171
2170
|
static ɵfac: i0.ɵɵFactoryDeclaration<UserSkillSetService, never>;
|
|
@@ -2490,7 +2489,7 @@ declare class UserToolService {
|
|
|
2490
2489
|
changeStatus(model: any): Observable<Result>;
|
|
2491
2490
|
sendUserToolsRequest(model: any): Observable<Result>;
|
|
2492
2491
|
createUserTool(model: any): Observable<any>;
|
|
2493
|
-
updateUserTool(
|
|
2492
|
+
updateUserTool(models: UserToolModel[]): Observable<any>;
|
|
2494
2493
|
bulkDelete(ids: string[]): Observable<Result>;
|
|
2495
2494
|
getUserTool(query: GridifyQuery): Observable<any>;
|
|
2496
2495
|
private buildParams;
|
|
@@ -2793,6 +2792,11 @@ declare class RoleSelectComponent implements OnInit {
|
|
|
2793
2792
|
providerdata: any;
|
|
2794
2793
|
randomId: string;
|
|
2795
2794
|
ngOnInit(): Promise<void>;
|
|
2795
|
+
private providerCacheKey;
|
|
2796
|
+
private restoreProviderMappingFromServer;
|
|
2797
|
+
private restoreProviderId;
|
|
2798
|
+
private restoreProviderIdFromLocalCache;
|
|
2799
|
+
private cacheProviderIdLocally;
|
|
2796
2800
|
getprovider(): void;
|
|
2797
2801
|
private mappingKey;
|
|
2798
2802
|
getYears(): void;
|
|
@@ -2829,9 +2833,7 @@ declare class RoleSelectComponent implements OnInit {
|
|
|
2829
2833
|
logoUrl: any;
|
|
2830
2834
|
};
|
|
2831
2835
|
saveProvider(): Promise<string | null>;
|
|
2832
|
-
/** address1 itself is owned by im-address-verify-field; patch the sibling fields it resolved. */
|
|
2833
2836
|
onCompanyAddressResolved(address: GoogleAddressResult): void;
|
|
2834
|
-
/** Hand-typed edits invalidate the previously resolved coordinates so a stale lat/lng isn't saved. */
|
|
2835
2837
|
onCompanyAddressManualEdit(): void;
|
|
2836
2838
|
saveUserIndustries(): void;
|
|
2837
2839
|
setSelectedIndustries(ids: string[]): void;
|
|
@@ -2855,9 +2857,7 @@ declare class RoleSelectComponent implements OnInit {
|
|
|
2855
2857
|
};
|
|
2856
2858
|
removeRole(role: string): void;
|
|
2857
2859
|
phoneMask(event: Event, formType?: 'user' | 'company'): void;
|
|
2858
|
-
/** address1 itself is owned by im-address-verify-field; patch the sibling fields it resolved. */
|
|
2859
2860
|
onUserAddressResolved(address: GoogleAddressResult): void;
|
|
2860
|
-
/** Hand-typed edits invalidate the previously resolved coordinates so a stale lat/lng isn't saved. */
|
|
2861
2861
|
onUserAddressManualEdit(): void;
|
|
2862
2862
|
back(): void;
|
|
2863
2863
|
static ɵfac: i0.ɵɵFactoryDeclaration<RoleSelectComponent, never>;
|