@idsoftsource/initial-process 2.5.6 → 2.5.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
@@ -1266,6 +1266,12 @@ declare class ClaimProcessComponent implements OnInit, OnDestroy {
1266
1266
  isInitializing: boolean;
1267
1267
  noEmailError: boolean;
1268
1268
  showAccountNotFound: boolean;
1269
+ isLookingUpAccount: boolean;
1270
+ auth0UserData: {
1271
+ email: string;
1272
+ auth0Id: string | null;
1273
+ userDetails: any;
1274
+ } | null;
1269
1275
  userEmail: string;
1270
1276
  isLoadingUser: boolean;
1271
1277
  isSubmitting: boolean;
@@ -1340,6 +1346,7 @@ declare class ClaimProcessComponent implements OnInit, OnDestroy {
1340
1346
  * Called when token returns a userId — fetches the full DB profile and
1341
1347
  * pre-fills the form so the user can update or complete their profile.
1342
1348
  */
1349
+ private lookupAuth0Account;
1343
1350
  private loadUserProfile;
1344
1351
  getRoles(): void;
1345
1352
  private applyUserRole;
@@ -1363,6 +1370,9 @@ declare class ClaimProcessComponent implements OnInit, OnDestroy {
1363
1370
  private startOtpTimer;
1364
1371
  private stopOtpTimer;
1365
1372
  logout(): Promise<void>;
1373
+ navigateTo(url: string | undefined | null): void;
1374
+ navigateToDashboard(): void;
1375
+ navigateToLogin(): void;
1366
1376
  ngOnDestroy(): void;
1367
1377
  static ɵfac: i0.ɵɵFactoryDeclaration<ClaimProcessComponent, never>;
1368
1378
  static ɵcmp: i0.ɵɵComponentDeclaration<ClaimProcessComponent, "app-claim-process", never, {}, {}, never, never, false, never>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@idsoftsource/initial-process",
3
- "version": "2.5.6",
3
+ "version": "2.5.7",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.0.0",
6
6
  "@angular/core": "^20.0.0",