@idsoftsource/initial-process 1.0.5 → 1.0.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, RoleContextModel } from '@rangs/auth0-lib';
9
+ import { TokenService, RoleContextService, RoleContextModel, AuthLogoutService } 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';
@@ -284,6 +284,7 @@ declare class UserDetailService {
284
284
  private readonly baseUrl;
285
285
  updateMyProfile(model: UserUpdateModel): Observable<Result>;
286
286
  AddUserIndustry(payload: any[]): Observable<Result>;
287
+ reSendVerificationEmail(): Observable<Result>;
287
288
  initialSetUpCreateUserDetail(model: any): Observable<Result>;
288
289
  getUserAccounts(query: any): Observable<GridResult<UserAccountReadModel>>;
289
290
  resetPassword(model: any): Observable<Result>;
@@ -2679,5 +2680,22 @@ declare class MustChangePasswordComponent {
2679
2680
  static ɵcmp: i0.ɵɵComponentDeclaration<MustChangePasswordComponent, "app-must-change-password", never, {}, {}, never, never, true, never>;
2680
2681
  }
2681
2682
 
2682
- export { AppType, InitialProcessComponent, InitialProcessModule, LIBRARY_CONFIG, MustChangePasswordComponent };
2683
+ declare class VerifyEmailComponent implements OnDestroy {
2684
+ userService: UserDetailService;
2685
+ private authLogoutService;
2686
+ loading: boolean;
2687
+ successMessage: boolean;
2688
+ errorMessage: boolean;
2689
+ cooldown: number;
2690
+ interval: any;
2691
+ constructor(userService: UserDetailService, authLogoutService: AuthLogoutService);
2692
+ resendVerification(): Promise<void>;
2693
+ startCooldown(): void;
2694
+ logout(): Promise<void>;
2695
+ ngOnDestroy(): void;
2696
+ static ɵfac: i0.ɵɵFactoryDeclaration<VerifyEmailComponent, never>;
2697
+ static ɵcmp: i0.ɵɵComponentDeclaration<VerifyEmailComponent, "app-verify-email", never, {}, {}, never, never, true, never>;
2698
+ }
2699
+
2700
+ export { AppType, InitialProcessComponent, InitialProcessModule, LIBRARY_CONFIG, MustChangePasswordComponent, VerifyEmailComponent };
2683
2701
  export type { LibraryConfig };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@idsoftsource/initial-process",
3
- "version": "1.0.5",
3
+ "version": "1.0.7",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.0.0",
6
6
  "@angular/core": "^20.0.0",