@idsoftsource/initial-process 1.4.7 → 1.5.0
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
|
@@ -828,7 +828,6 @@ declare class InitialProcessComponent implements OnInit {
|
|
|
828
828
|
saveSignature(): void;
|
|
829
829
|
private saveInitial;
|
|
830
830
|
bindProviderDetails(): {
|
|
831
|
-
targetUserId: any;
|
|
832
831
|
userName: string;
|
|
833
832
|
providerType: ProviderType;
|
|
834
833
|
providerName: any;
|
|
@@ -2392,7 +2391,6 @@ declare class FirstComponent implements OnInit {
|
|
|
2392
2391
|
openFile(fileInput: HTMLInputElement, event: Event): void;
|
|
2393
2392
|
handleAutoNavigation(): void;
|
|
2394
2393
|
manual(): void;
|
|
2395
|
-
private saveAWSFile;
|
|
2396
2394
|
uploadresume(): void;
|
|
2397
2395
|
onBackClick(): void;
|
|
2398
2396
|
static ɵfac: i0.ɵɵFactoryDeclaration<FirstComponent, never>;
|
|
@@ -2422,7 +2420,6 @@ declare class PreviewComponent {
|
|
|
2422
2420
|
providerId: string;
|
|
2423
2421
|
providerName: string;
|
|
2424
2422
|
roleData: any;
|
|
2425
|
-
cloudfrontUrl: string;
|
|
2426
2423
|
backToParent: EventEmitter<void>;
|
|
2427
2424
|
fileData: any;
|
|
2428
2425
|
model: any;
|
|
@@ -2433,18 +2430,34 @@ declare class PreviewComponent {
|
|
|
2433
2430
|
isSavingEducation: boolean;
|
|
2434
2431
|
isSavingCertification: boolean;
|
|
2435
2432
|
isSavingLicense: boolean;
|
|
2433
|
+
isSavingBasic: boolean;
|
|
2434
|
+
basicDetailsSaved: boolean;
|
|
2435
|
+
hasUserDetailData: boolean;
|
|
2436
|
+
isSavingSkill: boolean;
|
|
2437
|
+
isSavingTool: boolean;
|
|
2436
2438
|
payloadUserId: any;
|
|
2437
2439
|
payloadUserName: any;
|
|
2440
|
+
cloudfrontUrl: string;
|
|
2441
|
+
workExperienceServerIds: Record<number, string>;
|
|
2442
|
+
educationServerIds: Record<number, string>;
|
|
2443
|
+
certificationServerIds: Record<number, string>;
|
|
2444
|
+
licenseServerIds: Record<number, string>;
|
|
2445
|
+
skillServerIds: Record<number, string>;
|
|
2446
|
+
toolServerIds: Record<number, string>;
|
|
2447
|
+
workExperienceLocallySaved: Record<number, boolean>;
|
|
2448
|
+
educationLocallySaved: Record<number, boolean>;
|
|
2449
|
+
certificationLocallySaved: Record<number, boolean>;
|
|
2450
|
+
licenseLocallySaved: Record<number, boolean>;
|
|
2451
|
+
skillLocallySaved: Record<number, boolean>;
|
|
2452
|
+
toolLocallySaved: Record<number, boolean>;
|
|
2453
|
+
private readonly uploadFolderBySection;
|
|
2438
2454
|
resumeData: ResumeProfile | null;
|
|
2439
2455
|
statusList: any[];
|
|
2440
2456
|
showPopup: boolean;
|
|
2441
2457
|
showBackConfirmPopup: boolean;
|
|
2442
|
-
|
|
2443
|
-
userName: any;
|
|
2458
|
+
showDashboardConfirmPopup: boolean;
|
|
2444
2459
|
constructor(store: CredentialingStore, fileService: FileService, userSkillSetService: UserSkillSetService, userToolService: UserToolService, userDocumentService: UserDocumentService, userEducation: UserEducationService, userDetailService: UserDetailService, userExperienceService: UserExperienceService, tokenService: TokenService, libConfig: LibraryConfig);
|
|
2445
2460
|
email: any;
|
|
2446
|
-
showLoader: boolean;
|
|
2447
|
-
private readonly uploadFolderBySection;
|
|
2448
2461
|
expYears: number[];
|
|
2449
2462
|
details: i0.WritableSignal<BasicDetails | undefined>;
|
|
2450
2463
|
ngOnInit(): Promise<void>;
|
|
@@ -2457,6 +2470,7 @@ declare class PreviewComponent {
|
|
|
2457
2470
|
private isBlank;
|
|
2458
2471
|
private isBlankOrNull;
|
|
2459
2472
|
sanitizePhone(value: string | null | undefined): string;
|
|
2473
|
+
sanitizeZipCode(value: string | null | undefined): string;
|
|
2460
2474
|
isMonthRangeInvalid(start: string | null | undefined, end: string | null | undefined): boolean;
|
|
2461
2475
|
private compareMonth;
|
|
2462
2476
|
private prefillSectionFieldsFromBasicDetails;
|
|
@@ -2483,13 +2497,50 @@ declare class PreviewComponent {
|
|
|
2483
2497
|
licensesSectionHasIssues: i0.Signal<boolean>;
|
|
2484
2498
|
skillsSectionHasIssues: i0.Signal<boolean>;
|
|
2485
2499
|
toolsSectionHasIssues: i0.Signal<boolean>;
|
|
2486
|
-
|
|
2500
|
+
workSectionHasUnsavedItems(): boolean;
|
|
2501
|
+
educationSectionHasUnsavedItems(): boolean;
|
|
2502
|
+
certificationSectionHasUnsavedItems(): boolean;
|
|
2503
|
+
licenseSectionHasUnsavedItems(): boolean;
|
|
2504
|
+
skillsSectionHasUnsavedItems(): boolean;
|
|
2505
|
+
toolsSectionHasUnsavedItems(): boolean;
|
|
2506
|
+
isAnyEditorOpen: i0.Signal<boolean>;
|
|
2507
|
+
canConfirmAndContinue(): boolean;
|
|
2487
2508
|
expandedIndex: i0.WritableSignal<number>;
|
|
2488
2509
|
toggleJob(index: number): void;
|
|
2489
2510
|
private commitProfile;
|
|
2490
2511
|
private appendToMainModel;
|
|
2491
2512
|
private updateInMainModel;
|
|
2492
2513
|
private toMonthInput;
|
|
2514
|
+
private buildSectionQuery;
|
|
2515
|
+
private buildUserName;
|
|
2516
|
+
private getCreatedId;
|
|
2517
|
+
private getEntityId;
|
|
2518
|
+
private reindexServerIdsAfterDelete;
|
|
2519
|
+
private reindexSavedFlagsAfterDelete;
|
|
2520
|
+
private markItemSaved;
|
|
2521
|
+
hasUnsavedWorkItem(index: number): boolean;
|
|
2522
|
+
hasUnsavedEducationItem(index: number): boolean;
|
|
2523
|
+
hasUnsavedCertificationItem(index: number): boolean;
|
|
2524
|
+
hasUnsavedLicenseItem(index: number): boolean;
|
|
2525
|
+
hasUnsavedSkillItem(index: number): boolean;
|
|
2526
|
+
hasUnsavedToolItem(index: number): boolean;
|
|
2527
|
+
private mapSavedWorkToPreview;
|
|
2528
|
+
private mapSavedEducationToPreview;
|
|
2529
|
+
private mapSavedCertificationToPreview;
|
|
2530
|
+
private mapSavedLicenseToPreview;
|
|
2531
|
+
private normalizedText;
|
|
2532
|
+
private workSignature;
|
|
2533
|
+
private educationSignature;
|
|
2534
|
+
private certificationSignature;
|
|
2535
|
+
private licenseSignature;
|
|
2536
|
+
private mergeSavedAndCurrent;
|
|
2537
|
+
private ensureWorkServerId;
|
|
2538
|
+
private ensureEducationServerId;
|
|
2539
|
+
private ensureCertificationServerId;
|
|
2540
|
+
private ensureLicenseServerId;
|
|
2541
|
+
private ensureSkillServerId;
|
|
2542
|
+
private ensureToolServerId;
|
|
2543
|
+
private loadSavedSectionsFromApis;
|
|
2493
2544
|
formatMonthYear(value: string | null | undefined): string;
|
|
2494
2545
|
private confirmDelete;
|
|
2495
2546
|
private jobEditor;
|
|
@@ -2500,10 +2551,10 @@ declare class PreviewComponent {
|
|
|
2500
2551
|
startEditJob(jobIndex: number): void;
|
|
2501
2552
|
cancelEditJob(): void;
|
|
2502
2553
|
saveEditJob(): Promise<void>;
|
|
2503
|
-
onWorkExperienceFileSelected(event: Event): void;
|
|
2504
2554
|
deleteJob(index: number): void;
|
|
2505
2555
|
updateTempResponsibilities(value: string): void;
|
|
2506
2556
|
patchTempJob(patch: Partial<WorkExperience$1>): void;
|
|
2557
|
+
onWorkExperienceFileSelected(event: Event): void;
|
|
2507
2558
|
setTempJobIsCurrent(isCurrent: boolean): void;
|
|
2508
2559
|
private skillEditor;
|
|
2509
2560
|
isSkillEditorOpen(): boolean;
|
|
@@ -2515,7 +2566,7 @@ declare class PreviewComponent {
|
|
|
2515
2566
|
addSkill(): void;
|
|
2516
2567
|
closeSkillEditor(): void;
|
|
2517
2568
|
setTempSkillStars(stars: number): void;
|
|
2518
|
-
saveSkillEditor(): void
|
|
2569
|
+
saveSkillEditor(): Promise<void>;
|
|
2519
2570
|
private reindexSkillMetaAfterDelete;
|
|
2520
2571
|
deleteSkill(index: number): void;
|
|
2521
2572
|
private toolEditor;
|
|
@@ -2528,7 +2579,7 @@ declare class PreviewComponent {
|
|
|
2528
2579
|
addTool(): void;
|
|
2529
2580
|
closeToolEditor(): void;
|
|
2530
2581
|
setTempToolStars(stars: number): void;
|
|
2531
|
-
saveToolEditor(): void
|
|
2582
|
+
saveToolEditor(): Promise<void>;
|
|
2532
2583
|
private reindexToolMetaAfterDelete;
|
|
2533
2584
|
deleteTool(index: number): void;
|
|
2534
2585
|
private certificationEditor;
|
|
@@ -2538,10 +2589,10 @@ declare class PreviewComponent {
|
|
|
2538
2589
|
private normalizeNullableString;
|
|
2539
2590
|
private normalizeMonthInput;
|
|
2540
2591
|
addCertification(): void;
|
|
2541
|
-
onCertificationFileSelected(event: Event): void;
|
|
2542
2592
|
startEditCertification(index: number): void;
|
|
2543
2593
|
cancelEditCertification(): void;
|
|
2544
2594
|
patchTempCertification(patch: Partial<Certification$3>): void;
|
|
2595
|
+
onCertificationFileSelected(event: Event): void;
|
|
2545
2596
|
saveCertificationEditor(): Promise<void>;
|
|
2546
2597
|
deleteCertification(index: number): void;
|
|
2547
2598
|
private licenseEditor;
|
|
@@ -2549,10 +2600,10 @@ declare class PreviewComponent {
|
|
|
2549
2600
|
editingLicenseIndex(): number | null;
|
|
2550
2601
|
tempLicense(): License$1 | null;
|
|
2551
2602
|
addLicense(): void;
|
|
2552
|
-
onLicenseFileSelected(event: Event): void;
|
|
2553
2603
|
startEditLicense(index: number): void;
|
|
2554
2604
|
cancelEditLicense(): void;
|
|
2555
2605
|
patchTempLicense(patch: Partial<License$1>): void;
|
|
2606
|
+
onLicenseFileSelected(event: Event): void;
|
|
2556
2607
|
saveLicenseEditor(): Promise<void>;
|
|
2557
2608
|
deleteLicense(index: number): void;
|
|
2558
2609
|
private educationEditor;
|
|
@@ -2560,18 +2611,35 @@ declare class PreviewComponent {
|
|
|
2560
2611
|
editingEducationIndex(): number | null;
|
|
2561
2612
|
tempEducation(): Education$1 | null;
|
|
2562
2613
|
addEducation(): void;
|
|
2563
|
-
onEducationFileSelected(event: Event): void;
|
|
2564
2614
|
startEditEducation(index: number): void;
|
|
2565
2615
|
cancelEditEducation(): void;
|
|
2566
2616
|
patchTempEducation(patch: Partial<Education$1>): void;
|
|
2617
|
+
onEducationFileSelected(event: Event): void;
|
|
2567
2618
|
saveEducation(): Promise<void>;
|
|
2568
2619
|
deleteEducation(index: number): void;
|
|
2569
2620
|
onBackClick(): void;
|
|
2570
2621
|
stayOnPreview(): void;
|
|
2571
|
-
|
|
2572
|
-
|
|
2573
|
-
|
|
2574
|
-
|
|
2622
|
+
goToDashboard(): Promise<void>;
|
|
2623
|
+
proceedBack(): void;
|
|
2624
|
+
onGoToDashboardClick(): void;
|
|
2625
|
+
cancelDashboardRedirect(): void;
|
|
2626
|
+
tempProfile: BasicDetails;
|
|
2627
|
+
isEditMode: i0.WritableSignal<boolean>;
|
|
2628
|
+
toggleEdit(): void;
|
|
2629
|
+
cancel(): void;
|
|
2630
|
+
save(): Promise<void>;
|
|
2631
|
+
private persistWorkExperience;
|
|
2632
|
+
private persistEducation;
|
|
2633
|
+
private persistCertification;
|
|
2634
|
+
private persistLicense;
|
|
2635
|
+
private persistSkill;
|
|
2636
|
+
private persistTool;
|
|
2637
|
+
private saveAWSFile;
|
|
2638
|
+
selectFile(event: any): void;
|
|
2639
|
+
private toAbsoluteFileUrl;
|
|
2640
|
+
private revokeObjectUrl;
|
|
2641
|
+
previewSelectedFile(item: any): void;
|
|
2642
|
+
mapBasicDetailsToUserDetail(data: any): {
|
|
2575
2643
|
providerName: string;
|
|
2576
2644
|
providerId: string;
|
|
2577
2645
|
UserRoleId: any;
|
|
@@ -2601,19 +2669,7 @@ declare class PreviewComponent {
|
|
|
2601
2669
|
timePattern: string;
|
|
2602
2670
|
};
|
|
2603
2671
|
};
|
|
2604
|
-
|
|
2605
|
-
tempProfile: BasicDetails;
|
|
2606
|
-
isEditMode: i0.WritableSignal<boolean>;
|
|
2607
|
-
toggleEdit(): void;
|
|
2608
|
-
cancel(): void;
|
|
2609
|
-
save(): void;
|
|
2610
|
-
saveResumedetails(): Promise<void>;
|
|
2611
|
-
private saveAWSFile;
|
|
2612
|
-
selectFile(event: any): void;
|
|
2613
|
-
private toAbsoluteFileUrl;
|
|
2614
|
-
private revokeObjectUrl;
|
|
2615
|
-
previewSelectedFile(item: any): void;
|
|
2616
|
-
mapBasicDetailsToUserDetail(data: any): {
|
|
2672
|
+
mapBasicDetailsDashboard(data: any): {
|
|
2617
2673
|
providerName: string;
|
|
2618
2674
|
providerId: string;
|
|
2619
2675
|
UserRoleId: any;
|
|
@@ -2643,6 +2699,8 @@ declare class PreviewComponent {
|
|
|
2643
2699
|
timePattern: string;
|
|
2644
2700
|
};
|
|
2645
2701
|
};
|
|
2702
|
+
private mapSavedBasicDetailsToPreview;
|
|
2703
|
+
private hasUserDetailPayload;
|
|
2646
2704
|
mapWorkExperience(data: any): any;
|
|
2647
2705
|
mapEducation(data: any): any;
|
|
2648
2706
|
mapCertifications(data: any): any;
|
|
@@ -2650,6 +2708,12 @@ declare class PreviewComponent {
|
|
|
2650
2708
|
mapSkills(data: any): any;
|
|
2651
2709
|
mapTools(data: any): any;
|
|
2652
2710
|
formatDate(date: string): string | null;
|
|
2711
|
+
workActionLabel(index: number | null): string;
|
|
2712
|
+
educationActionLabel(index: number | null): string;
|
|
2713
|
+
certificationActionLabel(index: number | null): string;
|
|
2714
|
+
licenseActionLabel(index: number | null): string;
|
|
2715
|
+
skillActionLabel(index: number | null): string;
|
|
2716
|
+
toolActionLabel(index: number | null): string;
|
|
2653
2717
|
static ɵfac: i0.ɵɵFactoryDeclaration<PreviewComponent, never>;
|
|
2654
2718
|
static ɵcmp: i0.ɵɵComponentDeclaration<PreviewComponent, "app-preview", never, { "providerId": { "alias": "providerId"; "required": false; }; "providerName": { "alias": "providerName"; "required": false; }; "roleData": { "alias": "roleData"; "required": false; }; "cloudfrontUrl": { "alias": "cloudfrontUrl"; "required": false; }; }, { "backToParent": "backToParent"; }, never, never, false, never>;
|
|
2655
2719
|
}
|