@idsoftsource/initial-process 2.5.6 → 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,11 +1263,20 @@ 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;
|
|
1267
1272
|
noEmailError: boolean;
|
|
1268
1273
|
showAccountNotFound: boolean;
|
|
1274
|
+
isLookingUpAccount: boolean;
|
|
1275
|
+
auth0UserData: {
|
|
1276
|
+
email: string;
|
|
1277
|
+
auth0Id: string | null;
|
|
1278
|
+
userDetails: any;
|
|
1279
|
+
} | null;
|
|
1269
1280
|
userEmail: string;
|
|
1270
1281
|
isLoadingUser: boolean;
|
|
1271
1282
|
isSubmitting: boolean;
|
|
@@ -1277,6 +1288,7 @@ declare class ClaimProcessComponent implements OnInit, OnDestroy {
|
|
|
1277
1288
|
showConfirmPassword: boolean;
|
|
1278
1289
|
validatePage: number;
|
|
1279
1290
|
userHasExistingDetails: boolean;
|
|
1291
|
+
isInitialSetupCompleted: boolean;
|
|
1280
1292
|
resetPasswordEnabled: boolean;
|
|
1281
1293
|
showRoleSelect: boolean;
|
|
1282
1294
|
setPasswordEnabled: boolean;
|
|
@@ -1340,6 +1352,7 @@ declare class ClaimProcessComponent implements OnInit, OnDestroy {
|
|
|
1340
1352
|
* Called when token returns a userId — fetches the full DB profile and
|
|
1341
1353
|
* pre-fills the form so the user can update or complete their profile.
|
|
1342
1354
|
*/
|
|
1355
|
+
private lookupAuth0Account;
|
|
1343
1356
|
private loadUserProfile;
|
|
1344
1357
|
getRoles(): void;
|
|
1345
1358
|
private applyUserRole;
|
|
@@ -1363,9 +1376,13 @@ declare class ClaimProcessComponent implements OnInit, OnDestroy {
|
|
|
1363
1376
|
private startOtpTimer;
|
|
1364
1377
|
private stopOtpTimer;
|
|
1365
1378
|
logout(): Promise<void>;
|
|
1379
|
+
navigateTo(url: string | undefined | null): void;
|
|
1380
|
+
navigateToDashboard(): void;
|
|
1381
|
+
navigateToLogin(): void;
|
|
1382
|
+
navigateToInitialProcess(): void;
|
|
1366
1383
|
ngOnDestroy(): void;
|
|
1367
1384
|
static ɵfac: i0.ɵɵFactoryDeclaration<ClaimProcessComponent, never>;
|
|
1368
|
-
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>;
|
|
1369
1386
|
}
|
|
1370
1387
|
|
|
1371
1388
|
interface ProcessedSection$1 {
|
|
@@ -3355,6 +3372,7 @@ declare class PreviewComponent {
|
|
|
3355
3372
|
private tokenService;
|
|
3356
3373
|
private roleContextService;
|
|
3357
3374
|
private providerService;
|
|
3375
|
+
private frontendProviderService;
|
|
3358
3376
|
private libConfig;
|
|
3359
3377
|
providerId: string;
|
|
3360
3378
|
useremail: any;
|
|
@@ -3464,7 +3482,7 @@ declare class PreviewComponent {
|
|
|
3464
3482
|
id: string;
|
|
3465
3483
|
roleId: string;
|
|
3466
3484
|
})[];
|
|
3467
|
-
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);
|
|
3468
3486
|
email: any;
|
|
3469
3487
|
expYears: number[];
|
|
3470
3488
|
details: i0.WritableSignal<BasicDetails | undefined>;
|