@idsoftsource/initial-process 2.5.7 → 2.6.1

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
@@ -678,6 +678,7 @@ interface LibraryConfig {
678
678
  isLogout: any;
679
679
  navigateUrl?: string;
680
680
  loginUrl?: string;
681
+ initialUrl?: string;
681
682
  }
682
683
  declare const LIBRARY_CONFIG: InjectionToken<LibraryConfig>;
683
684
 
@@ -761,6 +762,7 @@ interface CompanyDetails {
761
762
  state: string;
762
763
  zipcode: string;
763
764
  country: string;
765
+ county?: string;
764
766
  logoId?: string;
765
767
  logoUrl?: string;
766
768
  logoFileName?: string;
@@ -1261,6 +1263,9 @@ declare class ClaimProcessComponent implements OnInit, OnDestroy {
1261
1263
  private tokenService;
1262
1264
  private authLogoutService;
1263
1265
  libConfig: LibraryConfig;
1266
+ useEmitter: boolean;
1267
+ loginNavigate: EventEmitter<void>;
1268
+ initialProcessNavigate: EventEmitter<void>;
1264
1269
  claimForm: FormGroup;
1265
1270
  roles: any[];
1266
1271
  isInitializing: boolean;
@@ -1283,6 +1288,7 @@ declare class ClaimProcessComponent implements OnInit, OnDestroy {
1283
1288
  showConfirmPassword: boolean;
1284
1289
  validatePage: number;
1285
1290
  userHasExistingDetails: boolean;
1291
+ isInitialSetupCompleted: boolean;
1286
1292
  resetPasswordEnabled: boolean;
1287
1293
  showRoleSelect: boolean;
1288
1294
  setPasswordEnabled: boolean;
@@ -1373,9 +1379,10 @@ declare class ClaimProcessComponent implements OnInit, OnDestroy {
1373
1379
  navigateTo(url: string | undefined | null): void;
1374
1380
  navigateToDashboard(): void;
1375
1381
  navigateToLogin(): void;
1382
+ navigateToInitialProcess(): void;
1376
1383
  ngOnDestroy(): void;
1377
1384
  static ɵfac: i0.ɵɵFactoryDeclaration<ClaimProcessComponent, never>;
1378
- static ɵcmp: i0.ɵɵComponentDeclaration<ClaimProcessComponent, "app-claim-process", never, {}, {}, never, never, false, never>;
1385
+ static ɵcmp: i0.ɵɵComponentDeclaration<ClaimProcessComponent, "app-claim-process", never, { "useEmitter": { "alias": "useEmitter"; "required": false; }; }, { "loginNavigate": "loginNavigate"; "initialProcessNavigate": "initialProcessNavigate"; }, never, never, false, never>;
1379
1386
  }
1380
1387
 
1381
1388
  interface ProcessedSection$1 {
@@ -3365,6 +3372,7 @@ declare class PreviewComponent {
3365
3372
  private tokenService;
3366
3373
  private roleContextService;
3367
3374
  private providerService;
3375
+ private frontendProviderService;
3368
3376
  private libConfig;
3369
3377
  providerId: string;
3370
3378
  useremail: any;
@@ -3474,7 +3482,7 @@ declare class PreviewComponent {
3474
3482
  id: string;
3475
3483
  roleId: string;
3476
3484
  })[];
3477
- constructor(store: CredentialingStore, fileService: FileService, userSkillSetService: UserSkillSetService, userToolService: UserToolService, userDocumentService: UserDocumentService, userEducation: UserEducationService, userDetailService: UserDetailService, userExperienceService: UserExperienceService, tokenService: TokenService, roleContextService: RoleContextService, providerService: ProvidersService, libConfig: LibraryConfig);
3485
+ constructor(store: CredentialingStore, fileService: FileService, userSkillSetService: UserSkillSetService, userToolService: UserToolService, userDocumentService: UserDocumentService, userEducation: UserEducationService, userDetailService: UserDetailService, userExperienceService: UserExperienceService, tokenService: TokenService, roleContextService: RoleContextService, providerService: ProvidersService, frontendProviderService: FrontEndProvidersService, libConfig: LibraryConfig);
3478
3486
  email: any;
3479
3487
  expYears: number[];
3480
3488
  details: i0.WritableSignal<BasicDetails | undefined>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@idsoftsource/initial-process",
3
- "version": "2.5.7",
3
+ "version": "2.6.1",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.0.0",
6
6
  "@angular/core": "^20.0.0",