@idsoftsource/initial-process 3.5.8 → 3.5.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
|
@@ -590,7 +590,7 @@ declare class SignaturePad {
|
|
|
590
590
|
private _toSVG;
|
|
591
591
|
}
|
|
592
592
|
|
|
593
|
-
declare class ProvidersService
|
|
593
|
+
declare class ProvidersService {
|
|
594
594
|
private http;
|
|
595
595
|
private baseUrl;
|
|
596
596
|
constructor(http: HttpClient);
|
|
@@ -600,8 +600,8 @@ declare class ProvidersService$1 {
|
|
|
600
600
|
adminCreateProvider(model: any): Observable<Result>;
|
|
601
601
|
updateInitialSetUpProvider(model: any): Observable<Result>;
|
|
602
602
|
changeStatus(model: any): Observable<Result>;
|
|
603
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ProvidersService
|
|
604
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<ProvidersService
|
|
603
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProvidersService, never>;
|
|
604
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ProvidersService>;
|
|
605
605
|
}
|
|
606
606
|
|
|
607
607
|
declare enum UserProviderMappingStatus {
|
|
@@ -1191,7 +1191,7 @@ declare class InitialProcessComponent implements OnInit {
|
|
|
1191
1191
|
contractorCategories: ContractorSubCategoryReadModel[];
|
|
1192
1192
|
isLoadingSubCategories: boolean;
|
|
1193
1193
|
appBrandingMap: Record<string, AppBranding>;
|
|
1194
|
-
constructor(router: Router, route: ActivatedRoute, userDetailService: UserDetailService, formBuilder: FormBuilder, fileService: FileService, providerService: ProvidersService
|
|
1194
|
+
constructor(router: Router, route: ActivatedRoute, userDetailService: UserDetailService, formBuilder: FormBuilder, fileService: FileService, providerService: ProvidersService, roleService: RolesService, modalService: BsModalService, contractorSubCategoryService: ProviderContractorSubCategoryService, providerContractorSubCategoryService: ProviderContractorSubCategoryService, authService: AuthService, tokenService: TokenService, roleContextService: RoleContextService, authLogoutService: AuthLogoutService, credStore: CredentialingStore, libConfig: LibraryConfig);
|
|
1195
1195
|
selectedContract: any;
|
|
1196
1196
|
changeContractor(event?: any[]): void;
|
|
1197
1197
|
selectAll(event: any, items: any[]): void;
|
|
@@ -1331,7 +1331,7 @@ declare class ClaimProcessService {
|
|
|
1331
1331
|
private providerService;
|
|
1332
1332
|
private frontEndProviderService;
|
|
1333
1333
|
private fileService;
|
|
1334
|
-
constructor(userDetailService: UserDetailService, roleService: RolesService, providerService: ProvidersService
|
|
1334
|
+
constructor(userDetailService: UserDetailService, roleService: RolesService, providerService: ProvidersService, frontEndProviderService: FrontEndProvidersService, fileService: FileService);
|
|
1335
1335
|
getPrivacyConfig(appType: string): PrivacyAndTerms;
|
|
1336
1336
|
/** Load existing profile by token userId (ref: initial-process getUser + getByUserId) */
|
|
1337
1337
|
getUserById(userId: string): Observable<any>;
|
|
@@ -2785,7 +2785,7 @@ declare class RoleSelectComponent implements OnInit {
|
|
|
2785
2785
|
roleId: string;
|
|
2786
2786
|
})[];
|
|
2787
2787
|
provider: any;
|
|
2788
|
-
constructor(store: CredentialingStore, providerService: ProvidersService
|
|
2788
|
+
constructor(store: CredentialingStore, providerService: ProvidersService, userService: UserService, router: Router, industrydata: IndustryService, userDetailService: UserDetailService, fileService: FileService, tokenService: TokenService, roleContextService: RoleContextService, providerdetail: FrontEndProvidersService, fb: FormBuilder, cdr: ChangeDetectorRef);
|
|
2789
2789
|
cloudfrontUrl: string;
|
|
2790
2790
|
providerId: any;
|
|
2791
2791
|
providerName: string;
|
|
@@ -3679,19 +3679,6 @@ interface ProfessionEditorData {
|
|
|
3679
3679
|
notes: string;
|
|
3680
3680
|
}
|
|
3681
3681
|
|
|
3682
|
-
declare class ProvidersService {
|
|
3683
|
-
private http;
|
|
3684
|
-
private baseUrl;
|
|
3685
|
-
constructor(http: HttpClient);
|
|
3686
|
-
private generateParams;
|
|
3687
|
-
getProviderUserMapping(query: any): Observable<GridResult<UserDetailReadModel>>;
|
|
3688
|
-
changeStatus(model: any): Observable<Result>;
|
|
3689
|
-
createProviderUserMapping(model: any): Observable<Result>;
|
|
3690
|
-
updateProviderUserMapping(model: any): Observable<Result>;
|
|
3691
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ProvidersService, never>;
|
|
3692
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<ProvidersService>;
|
|
3693
|
-
}
|
|
3694
|
-
|
|
3695
3682
|
declare class PreviewComponent implements OnDestroy {
|
|
3696
3683
|
store: CredentialingStore;
|
|
3697
3684
|
private fileService;
|
|
@@ -3706,7 +3693,6 @@ declare class PreviewComponent implements OnDestroy {
|
|
|
3706
3693
|
private tokenService;
|
|
3707
3694
|
private roleContextService;
|
|
3708
3695
|
private providerService;
|
|
3709
|
-
private providerUserMappingService;
|
|
3710
3696
|
private frontendProviderService;
|
|
3711
3697
|
private cdr;
|
|
3712
3698
|
private libConfig;
|
|
@@ -3829,7 +3815,7 @@ declare class PreviewComponent implements OnDestroy {
|
|
|
3829
3815
|
id: string;
|
|
3830
3816
|
roleId: string;
|
|
3831
3817
|
})[];
|
|
3832
|
-
constructor(store: CredentialingStore, fileService: FileService, userSkillSetService: UserSkillSetService, userToolService: UserToolService, professionService: ProfessionService, userProfessionService: UserProfessionService, userDocumentService: UserDocumentService, userEducation: UserEducationService, userDetailService: UserDetailService, userExperienceService: UserExperienceService, tokenService: TokenService, roleContextService: RoleContextService, providerService: ProvidersService
|
|
3818
|
+
constructor(store: CredentialingStore, fileService: FileService, userSkillSetService: UserSkillSetService, userToolService: UserToolService, professionService: ProfessionService, userProfessionService: UserProfessionService, userDocumentService: UserDocumentService, userEducation: UserEducationService, userDetailService: UserDetailService, userExperienceService: UserExperienceService, tokenService: TokenService, roleContextService: RoleContextService, providerService: ProvidersService, frontendProviderService: FrontEndProvidersService, cdr: ChangeDetectorRef, libConfig: LibraryConfig);
|
|
3833
3819
|
email: any;
|
|
3834
3820
|
expYears: number[];
|
|
3835
3821
|
details: i0.WritableSignal<BasicDetails | undefined>;
|
|
@@ -4318,7 +4304,9 @@ declare class PreviewComponent implements OnDestroy {
|
|
|
4318
4304
|
logoFileName: any;
|
|
4319
4305
|
logoUrl: any;
|
|
4320
4306
|
};
|
|
4321
|
-
private
|
|
4307
|
+
private providerCacheKey;
|
|
4308
|
+
private restoreProviderIdFromLocalCache;
|
|
4309
|
+
private cacheProviderIdLocally;
|
|
4322
4310
|
saveProvider(): Promise<void>;
|
|
4323
4311
|
validateCompanyDetails(): boolean;
|
|
4324
4312
|
saveCompanyDetails(): Promise<void>;
|