@idsoftsource/initial-process 1.0.4 → 1.0.6

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>;
@@ -1279,6 +1280,7 @@ declare class EducationComponent implements OnInit {
1279
1280
  cloudfront: any;
1280
1281
  proposalLoader: boolean;
1281
1282
  showpreview: i0.Signal<boolean>;
1283
+ maxDate: Date;
1282
1284
  userdata: any;
1283
1285
  constructor(userEducation: UserEducationService, store: CredentialingStore, workStore: EducationStore, countryService: CountryServices, postalCodeService: PostalCodeServices, tokenService: TokenService, fb: FormBuilder, fileService: FileService, http: HttpClient);
1284
1286
  ngOnInit(): Promise<void>;
@@ -1388,6 +1390,7 @@ declare class CertificationComponent {
1388
1390
  proposalLoader: boolean;
1389
1391
  showpreview: i0.Signal<boolean>;
1390
1392
  userdata: any;
1393
+ maxDate: Date;
1391
1394
  constructor(userDocumentService: UserDocumentService, store: CredentialingStore, workStore: CertificationStore, tokenService: TokenService, postalCodeService: PostalCodeServices, fb: FormBuilder, fileService: FileService, http: HttpClient);
1392
1395
  ngOnInit(): Promise<void>;
1393
1396
  loadDocumentTypes(searchText?: string): void;
@@ -1650,6 +1653,7 @@ declare class LicensesComponent {
1650
1653
  proposalLoader: boolean;
1651
1654
  showpreview: i0.Signal<boolean>;
1652
1655
  userdata: any;
1656
+ maxDate: Date;
1653
1657
  constructor(userDocumentService: UserDocumentService, store: CredentialingStore, workStore: LicenseStore, tokenService: TokenService, postalCodeService: PostalCodeServices, fb: FormBuilder, fileService: FileService, http: HttpClient);
1654
1658
  ngOnInit(): Promise<void>;
1655
1659
  loadDocumentTypes(searchText?: string): void;
@@ -2073,6 +2077,7 @@ declare class WorkexperienceComponent implements OnInit {
2073
2077
  private fileService;
2074
2078
  private http;
2075
2079
  providerId: string;
2080
+ maxDate: Date;
2076
2081
  providerName: string;
2077
2082
  cloudfrontUrl: string;
2078
2083
  private readonly uploadToAws;
@@ -2675,5 +2680,22 @@ declare class MustChangePasswordComponent {
2675
2680
  static ɵcmp: i0.ɵɵComponentDeclaration<MustChangePasswordComponent, "app-must-change-password", never, {}, {}, never, never, true, never>;
2676
2681
  }
2677
2682
 
2678
- 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 };
2679
2701
  export type { LibraryConfig };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@idsoftsource/initial-process",
3
- "version": "1.0.4",
3
+ "version": "1.0.6",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.0.0",
6
6
  "@angular/core": "^20.0.0",