@idsoftsource/initial-process 2.5.5 → 2.5.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
@@ -1259,10 +1259,13 @@ declare class ClaimProcessComponent implements OnInit, OnDestroy {
1259
1259
  private claimService;
1260
1260
  private modalService;
1261
1261
  private tokenService;
1262
+ private authLogoutService;
1262
1263
  libConfig: LibraryConfig;
1263
1264
  claimForm: FormGroup;
1264
1265
  roles: any[];
1266
+ isInitializing: boolean;
1265
1267
  noEmailError: boolean;
1268
+ showAccountNotFound: boolean;
1266
1269
  userEmail: string;
1267
1270
  isLoadingUser: boolean;
1268
1271
  isSubmitting: boolean;
@@ -1276,6 +1279,7 @@ declare class ClaimProcessComponent implements OnInit, OnDestroy {
1276
1279
  userHasExistingDetails: boolean;
1277
1280
  resetPasswordEnabled: boolean;
1278
1281
  showRoleSelect: boolean;
1282
+ setPasswordEnabled: boolean;
1279
1283
  passwordStep: number;
1280
1284
  otpValue: string;
1281
1285
  isPasswordChanging: boolean;
@@ -1315,7 +1319,14 @@ declare class ClaimProcessComponent implements OnInit, OnDestroy {
1315
1319
  };
1316
1320
  get isBusinessRole(): boolean;
1317
1321
  get showPasswordFields(): boolean;
1318
- constructor(fb: FormBuilder, route: ActivatedRoute, router: Router, claimService: ClaimProcessService, modalService: BsModalService, tokenService: TokenService, libConfig: LibraryConfig);
1322
+ get sectionPersonalDone(): boolean;
1323
+ get sectionAddressDone(): boolean;
1324
+ get sectionRoleDone(): boolean;
1325
+ get sectionPasswordDone(): boolean;
1326
+ get sectionBusinessDone(): boolean;
1327
+ get sectionPhotoDone(): boolean;
1328
+ get overallProgress(): number;
1329
+ constructor(fb: FormBuilder, route: ActivatedRoute, router: Router, claimService: ClaimProcessService, modalService: BsModalService, tokenService: TokenService, authLogoutService: AuthLogoutService, libConfig: LibraryConfig);
1319
1330
  private static readonly SESSION_KEY;
1320
1331
  ngOnInit(): Promise<void>;
1321
1332
  get f(): {
@@ -1330,15 +1341,11 @@ declare class ClaimProcessComponent implements OnInit, OnDestroy {
1330
1341
  * pre-fills the form so the user can update or complete their profile.
1331
1342
  */
1332
1343
  private loadUserProfile;
1333
- /**
1334
- * Fallback path: invite-link without an active session.
1335
- * Uses auth0 email lookup when no userId is present in the token.
1336
- */
1337
- private lookupUser;
1338
1344
  getRoles(): void;
1339
1345
  private applyUserRole;
1340
1346
  private updateRoleValidator;
1341
1347
  private updatePasswordValidators;
1348
+ toggleSetPassword(): void;
1342
1349
  private updateBusinessRoleValidators;
1343
1350
  toggleResetPassword(): void;
1344
1351
  onAddressChange(address: any): void;
@@ -1355,6 +1362,7 @@ declare class ClaimProcessComponent implements OnInit, OnDestroy {
1355
1362
  cancelPasswordChange(): void;
1356
1363
  private startOtpTimer;
1357
1364
  private stopOtpTimer;
1365
+ logout(): Promise<void>;
1358
1366
  ngOnDestroy(): void;
1359
1367
  static ɵfac: i0.ɵɵFactoryDeclaration<ClaimProcessComponent, never>;
1360
1368
  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.5",
3
+ "version": "2.5.6",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.0.0",
6
6
  "@angular/core": "^20.0.0",