@idsoftsource/initial-process 1.1.5 → 1.1.7
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
|
@@ -6,7 +6,7 @@ import * as i16 from '@angular/router';
|
|
|
6
6
|
import { Router, RouterOutlet } from '@angular/router';
|
|
7
7
|
import { Observable, Subscription } from 'rxjs';
|
|
8
8
|
import { BsModalRef, BsModalService } from 'ngx-bootstrap/modal';
|
|
9
|
-
import { TokenService, RoleContextService,
|
|
9
|
+
import { TokenService, RoleContextService, AuthLogoutService, RoleContextModel } from '@rangs/auth0-lib';
|
|
10
10
|
import { AuthService } from '@auth0/auth0-angular';
|
|
11
11
|
import { HttpClient } from '@angular/common/http';
|
|
12
12
|
import * as i2 from '@angular/common';
|
|
@@ -282,6 +282,7 @@ interface UserUpdateModel {
|
|
|
282
282
|
declare class UserDetailService {
|
|
283
283
|
private http;
|
|
284
284
|
private readonly baseUrl;
|
|
285
|
+
isInitialSetupCompleted(): Observable<boolean>;
|
|
285
286
|
updateMyProfile(model: UserUpdateModel): Observable<Result>;
|
|
286
287
|
AddUserIndustry(payload: any[]): Observable<Result>;
|
|
287
288
|
reSendVerificationEmail(): Observable<Result>;
|
|
@@ -672,6 +673,7 @@ declare class InitialProcessComponent implements OnInit {
|
|
|
672
673
|
private authService;
|
|
673
674
|
private tokenService;
|
|
674
675
|
private roleContextService;
|
|
676
|
+
private authLogoutService;
|
|
675
677
|
private libConfig;
|
|
676
678
|
isAgreeEnabled: boolean;
|
|
677
679
|
isLogoRequired: boolean;
|
|
@@ -790,7 +792,7 @@ declare class InitialProcessComponent implements OnInit {
|
|
|
790
792
|
}[];
|
|
791
793
|
contractorCategories: ContractorSubCategoryReadModel[];
|
|
792
794
|
appBrandingMap: Record<string, AppBranding>;
|
|
793
|
-
constructor(router: Router, userDetailService: UserDetailService, formBuilder: FormBuilder, fileService: FileService, providerService: ProvidersService$1, roleService: RolesService, modalService: BsModalService, contractorSubCategoryService: ProviderContractorSubCategoryService, providerContractorSubCategoryService: ProviderContractorSubCategoryService, authService: AuthService, tokenService: TokenService, roleContextService: RoleContextService, libConfig: LibraryConfig);
|
|
795
|
+
constructor(router: Router, userDetailService: UserDetailService, formBuilder: FormBuilder, fileService: FileService, providerService: ProvidersService$1, roleService: RolesService, modalService: BsModalService, contractorSubCategoryService: ProviderContractorSubCategoryService, providerContractorSubCategoryService: ProviderContractorSubCategoryService, authService: AuthService, tokenService: TokenService, roleContextService: RoleContextService, authLogoutService: AuthLogoutService, libConfig: LibraryConfig);
|
|
794
796
|
selectedContract: any;
|
|
795
797
|
changeContractor(event?: any[]): void;
|
|
796
798
|
selectAll(event: any, items: any[]): void;
|
|
@@ -2665,11 +2667,12 @@ declare class MustChangePasswordComponent {
|
|
|
2665
2667
|
private auth;
|
|
2666
2668
|
userService: UserDetailService;
|
|
2667
2669
|
private tokenService;
|
|
2670
|
+
private authLogoutService;
|
|
2668
2671
|
changePasswordForm: FormGroup;
|
|
2669
2672
|
submitted: boolean;
|
|
2670
2673
|
isLoading: boolean;
|
|
2671
2674
|
errorMessage: string;
|
|
2672
|
-
constructor(fb: FormBuilder, auth: AuthService, userService: UserDetailService, tokenService: TokenService);
|
|
2675
|
+
constructor(fb: FormBuilder, auth: AuthService, userService: UserDetailService, tokenService: TokenService, authLogoutService: AuthLogoutService);
|
|
2673
2676
|
get f(): {
|
|
2674
2677
|
[key: string]: AbstractControl;
|
|
2675
2678
|
};
|