@idsoftsource/initial-process 1.0.7 → 1.0.8
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
|
@@ -1509,6 +1509,7 @@ declare class SkillsComponent {
|
|
|
1509
1509
|
private userSkillsSub?;
|
|
1510
1510
|
providerId: string;
|
|
1511
1511
|
providerName: string;
|
|
1512
|
+
userdata: any;
|
|
1512
1513
|
tab: FormArray;
|
|
1513
1514
|
showLoading: boolean;
|
|
1514
1515
|
showLoader: boolean;
|
|
@@ -2680,15 +2681,20 @@ declare class MustChangePasswordComponent {
|
|
|
2680
2681
|
static ɵcmp: i0.ɵɵComponentDeclaration<MustChangePasswordComponent, "app-must-change-password", never, {}, {}, never, never, true, never>;
|
|
2681
2682
|
}
|
|
2682
2683
|
|
|
2683
|
-
declare class VerifyEmailComponent implements OnDestroy {
|
|
2684
|
+
declare class VerifyEmailComponent implements OnInit, OnDestroy {
|
|
2685
|
+
private libConfig;
|
|
2684
2686
|
userService: UserDetailService;
|
|
2685
2687
|
private authLogoutService;
|
|
2688
|
+
private tokenService;
|
|
2689
|
+
private router;
|
|
2686
2690
|
loading: boolean;
|
|
2687
2691
|
successMessage: boolean;
|
|
2688
2692
|
errorMessage: boolean;
|
|
2693
|
+
pageLoader: boolean;
|
|
2689
2694
|
cooldown: number;
|
|
2690
2695
|
interval: any;
|
|
2691
|
-
constructor(userService: UserDetailService, authLogoutService: AuthLogoutService);
|
|
2696
|
+
constructor(libConfig: LibraryConfig, userService: UserDetailService, authLogoutService: AuthLogoutService, tokenService: TokenService, router: Router);
|
|
2697
|
+
ngOnInit(): Promise<void>;
|
|
2692
2698
|
resendVerification(): Promise<void>;
|
|
2693
2699
|
startCooldown(): void;
|
|
2694
2700
|
logout(): Promise<void>;
|