@idsoftsource/initial-process 2.5.2 → 2.5.3
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
|
@@ -675,6 +675,7 @@ interface LibraryConfig {
|
|
|
675
675
|
providerName: any;
|
|
676
676
|
isLogout: any;
|
|
677
677
|
navigateUrl?: string;
|
|
678
|
+
loginUrl?: string;
|
|
678
679
|
}
|
|
679
680
|
declare const LIBRARY_CONFIG: InjectionToken<LibraryConfig>;
|
|
680
681
|
|
|
@@ -1225,15 +1226,16 @@ declare class ClaimProcessComponent implements OnInit {
|
|
|
1225
1226
|
private router;
|
|
1226
1227
|
private userDetailService;
|
|
1227
1228
|
private roleService;
|
|
1229
|
+
private fileService;
|
|
1228
1230
|
private modalService;
|
|
1229
1231
|
libConfig: LibraryConfig;
|
|
1230
1232
|
claimForm: FormGroup;
|
|
1231
1233
|
roles: any[];
|
|
1232
1234
|
noEmailError: boolean;
|
|
1233
|
-
accountNotFound: boolean;
|
|
1234
1235
|
userEmail: string;
|
|
1235
1236
|
isLoadingUser: boolean;
|
|
1236
1237
|
isSubmitting: boolean;
|
|
1238
|
+
uploadStatus: string;
|
|
1237
1239
|
userLookupError: string | null;
|
|
1238
1240
|
submitError: string | null;
|
|
1239
1241
|
submitSuccess: boolean;
|
|
@@ -1244,6 +1246,7 @@ declare class ClaimProcessComponent implements OnInit {
|
|
|
1244
1246
|
resetPasswordEnabled: boolean;
|
|
1245
1247
|
isAuthenticated: boolean;
|
|
1246
1248
|
existingUserData: any;
|
|
1249
|
+
showRoleSelect: boolean;
|
|
1247
1250
|
private pendingUserRole;
|
|
1248
1251
|
private rolesLoaded;
|
|
1249
1252
|
profileFileName: string;
|
|
@@ -1271,7 +1274,7 @@ declare class ClaimProcessComponent implements OnInit {
|
|
|
1271
1274
|
get isBusinessRole(): boolean;
|
|
1272
1275
|
/** Password fields are shown when there are no existing details OR when the reset toggle is on. */
|
|
1273
1276
|
get showPasswordFields(): boolean;
|
|
1274
|
-
constructor(fb: FormBuilder, route: ActivatedRoute, router: Router, userDetailService: UserDetailService, roleService: RolesService, modalService: BsModalService, libConfig: LibraryConfig);
|
|
1277
|
+
constructor(fb: FormBuilder, route: ActivatedRoute, router: Router, userDetailService: UserDetailService, roleService: RolesService, fileService: FileService, modalService: BsModalService, libConfig: LibraryConfig);
|
|
1275
1278
|
private static readonly SESSION_KEY;
|
|
1276
1279
|
ngOnInit(): void;
|
|
1277
1280
|
get f(): {
|
|
@@ -1291,6 +1294,7 @@ declare class ClaimProcessComponent implements OnInit {
|
|
|
1291
1294
|
* dropdown still shows the correct value.
|
|
1292
1295
|
*/
|
|
1293
1296
|
private applyUserRole;
|
|
1297
|
+
private updateRoleValidator;
|
|
1294
1298
|
private updatePasswordValidators;
|
|
1295
1299
|
private updateBusinessRoleValidators;
|
|
1296
1300
|
toggleResetPassword(): void;
|
|
@@ -1299,7 +1303,10 @@ declare class ClaimProcessComponent implements OnInit {
|
|
|
1299
1303
|
onProfileFileChange(event: Event): void;
|
|
1300
1304
|
onBusinessLogoChange(event: Event): void;
|
|
1301
1305
|
formatPhone(event: Event): void;
|
|
1302
|
-
onSubmit(): void
|
|
1306
|
+
onSubmit(): Promise<void>;
|
|
1307
|
+
private generateGuid;
|
|
1308
|
+
private isValidGuid;
|
|
1309
|
+
private uploadToAws;
|
|
1303
1310
|
static ɵfac: i0.ɵɵFactoryDeclaration<ClaimProcessComponent, never>;
|
|
1304
1311
|
static ɵcmp: i0.ɵɵComponentDeclaration<ClaimProcessComponent, "app-claim-process", never, {}, {}, never, never, false, never>;
|
|
1305
1312
|
}
|