@idsoftsource/initial-process 1.4.9 → 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
|
@@ -2391,7 +2391,6 @@ declare class FirstComponent implements OnInit {
|
|
|
2391
2391
|
openFile(fileInput: HTMLInputElement, event: Event): void;
|
|
2392
2392
|
handleAutoNavigation(): void;
|
|
2393
2393
|
manual(): void;
|
|
2394
|
-
private saveAWSFile;
|
|
2395
2394
|
uploadresume(): void;
|
|
2396
2395
|
onBackClick(): void;
|
|
2397
2396
|
static ɵfac: i0.ɵɵFactoryDeclaration<FirstComponent, never>;
|
|
@@ -2421,7 +2420,6 @@ declare class PreviewComponent {
|
|
|
2421
2420
|
providerId: string;
|
|
2422
2421
|
providerName: string;
|
|
2423
2422
|
roleData: any;
|
|
2424
|
-
cloudfrontUrl: string;
|
|
2425
2423
|
backToParent: EventEmitter<void>;
|
|
2426
2424
|
fileData: any;
|
|
2427
2425
|
model: any;
|
|
@@ -2432,18 +2430,34 @@ declare class PreviewComponent {
|
|
|
2432
2430
|
isSavingEducation: boolean;
|
|
2433
2431
|
isSavingCertification: boolean;
|
|
2434
2432
|
isSavingLicense: boolean;
|
|
2433
|
+
isSavingBasic: boolean;
|
|
2434
|
+
basicDetailsSaved: boolean;
|
|
2435
|
+
hasUserDetailData: boolean;
|
|
2436
|
+
isSavingSkill: boolean;
|
|
2437
|
+
isSavingTool: boolean;
|
|
2435
2438
|
payloadUserId: any;
|
|
2436
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;
|
|
2437
2454
|
resumeData: ResumeProfile | null;
|
|
2438
2455
|
statusList: any[];
|
|
2439
2456
|
showPopup: boolean;
|
|
2440
2457
|
showBackConfirmPopup: boolean;
|
|
2441
|
-
|
|
2442
|
-
userName: any;
|
|
2458
|
+
showDashboardConfirmPopup: boolean;
|
|
2443
2459
|
constructor(store: CredentialingStore, fileService: FileService, userSkillSetService: UserSkillSetService, userToolService: UserToolService, userDocumentService: UserDocumentService, userEducation: UserEducationService, userDetailService: UserDetailService, userExperienceService: UserExperienceService, tokenService: TokenService, libConfig: LibraryConfig);
|
|
2444
2460
|
email: any;
|
|
2445
|
-
showLoader: boolean;
|
|
2446
|
-
private readonly uploadFolderBySection;
|
|
2447
2461
|
expYears: number[];
|
|
2448
2462
|
details: i0.WritableSignal<BasicDetails | undefined>;
|
|
2449
2463
|
ngOnInit(): Promise<void>;
|
|
@@ -2456,6 +2470,7 @@ declare class PreviewComponent {
|
|
|
2456
2470
|
private isBlank;
|
|
2457
2471
|
private isBlankOrNull;
|
|
2458
2472
|
sanitizePhone(value: string | null | undefined): string;
|
|
2473
|
+
sanitizeZipCode(value: string | null | undefined): string;
|
|
2459
2474
|
isMonthRangeInvalid(start: string | null | undefined, end: string | null | undefined): boolean;
|
|
2460
2475
|
private compareMonth;
|
|
2461
2476
|
private prefillSectionFieldsFromBasicDetails;
|
|
@@ -2482,13 +2497,50 @@ declare class PreviewComponent {
|
|
|
2482
2497
|
licensesSectionHasIssues: i0.Signal<boolean>;
|
|
2483
2498
|
skillsSectionHasIssues: i0.Signal<boolean>;
|
|
2484
2499
|
toolsSectionHasIssues: i0.Signal<boolean>;
|
|
2485
|
-
|
|
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;
|
|
2486
2508
|
expandedIndex: i0.WritableSignal<number>;
|
|
2487
2509
|
toggleJob(index: number): void;
|
|
2488
2510
|
private commitProfile;
|
|
2489
2511
|
private appendToMainModel;
|
|
2490
2512
|
private updateInMainModel;
|
|
2491
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;
|
|
2492
2544
|
formatMonthYear(value: string | null | undefined): string;
|
|
2493
2545
|
private confirmDelete;
|
|
2494
2546
|
private jobEditor;
|
|
@@ -2499,10 +2551,10 @@ declare class PreviewComponent {
|
|
|
2499
2551
|
startEditJob(jobIndex: number): void;
|
|
2500
2552
|
cancelEditJob(): void;
|
|
2501
2553
|
saveEditJob(): Promise<void>;
|
|
2502
|
-
onWorkExperienceFileSelected(event: Event): void;
|
|
2503
2554
|
deleteJob(index: number): void;
|
|
2504
2555
|
updateTempResponsibilities(value: string): void;
|
|
2505
2556
|
patchTempJob(patch: Partial<WorkExperience$1>): void;
|
|
2557
|
+
onWorkExperienceFileSelected(event: Event): void;
|
|
2506
2558
|
setTempJobIsCurrent(isCurrent: boolean): void;
|
|
2507
2559
|
private skillEditor;
|
|
2508
2560
|
isSkillEditorOpen(): boolean;
|
|
@@ -2514,7 +2566,7 @@ declare class PreviewComponent {
|
|
|
2514
2566
|
addSkill(): void;
|
|
2515
2567
|
closeSkillEditor(): void;
|
|
2516
2568
|
setTempSkillStars(stars: number): void;
|
|
2517
|
-
saveSkillEditor(): void
|
|
2569
|
+
saveSkillEditor(): Promise<void>;
|
|
2518
2570
|
private reindexSkillMetaAfterDelete;
|
|
2519
2571
|
deleteSkill(index: number): void;
|
|
2520
2572
|
private toolEditor;
|
|
@@ -2527,7 +2579,7 @@ declare class PreviewComponent {
|
|
|
2527
2579
|
addTool(): void;
|
|
2528
2580
|
closeToolEditor(): void;
|
|
2529
2581
|
setTempToolStars(stars: number): void;
|
|
2530
|
-
saveToolEditor(): void
|
|
2582
|
+
saveToolEditor(): Promise<void>;
|
|
2531
2583
|
private reindexToolMetaAfterDelete;
|
|
2532
2584
|
deleteTool(index: number): void;
|
|
2533
2585
|
private certificationEditor;
|
|
@@ -2537,10 +2589,10 @@ declare class PreviewComponent {
|
|
|
2537
2589
|
private normalizeNullableString;
|
|
2538
2590
|
private normalizeMonthInput;
|
|
2539
2591
|
addCertification(): void;
|
|
2540
|
-
onCertificationFileSelected(event: Event): void;
|
|
2541
2592
|
startEditCertification(index: number): void;
|
|
2542
2593
|
cancelEditCertification(): void;
|
|
2543
2594
|
patchTempCertification(patch: Partial<Certification$3>): void;
|
|
2595
|
+
onCertificationFileSelected(event: Event): void;
|
|
2544
2596
|
saveCertificationEditor(): Promise<void>;
|
|
2545
2597
|
deleteCertification(index: number): void;
|
|
2546
2598
|
private licenseEditor;
|
|
@@ -2548,10 +2600,10 @@ declare class PreviewComponent {
|
|
|
2548
2600
|
editingLicenseIndex(): number | null;
|
|
2549
2601
|
tempLicense(): License$1 | null;
|
|
2550
2602
|
addLicense(): void;
|
|
2551
|
-
onLicenseFileSelected(event: Event): void;
|
|
2552
2603
|
startEditLicense(index: number): void;
|
|
2553
2604
|
cancelEditLicense(): void;
|
|
2554
2605
|
patchTempLicense(patch: Partial<License$1>): void;
|
|
2606
|
+
onLicenseFileSelected(event: Event): void;
|
|
2555
2607
|
saveLicenseEditor(): Promise<void>;
|
|
2556
2608
|
deleteLicense(index: number): void;
|
|
2557
2609
|
private educationEditor;
|
|
@@ -2559,18 +2611,35 @@ declare class PreviewComponent {
|
|
|
2559
2611
|
editingEducationIndex(): number | null;
|
|
2560
2612
|
tempEducation(): Education$1 | null;
|
|
2561
2613
|
addEducation(): void;
|
|
2562
|
-
onEducationFileSelected(event: Event): void;
|
|
2563
2614
|
startEditEducation(index: number): void;
|
|
2564
2615
|
cancelEditEducation(): void;
|
|
2565
2616
|
patchTempEducation(patch: Partial<Education$1>): void;
|
|
2617
|
+
onEducationFileSelected(event: Event): void;
|
|
2566
2618
|
saveEducation(): Promise<void>;
|
|
2567
2619
|
deleteEducation(index: number): void;
|
|
2568
2620
|
onBackClick(): void;
|
|
2569
2621
|
stayOnPreview(): void;
|
|
2570
|
-
|
|
2571
|
-
|
|
2572
|
-
|
|
2573
|
-
|
|
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): {
|
|
2574
2643
|
providerName: string;
|
|
2575
2644
|
providerId: string;
|
|
2576
2645
|
UserRoleId: any;
|
|
@@ -2600,19 +2669,7 @@ declare class PreviewComponent {
|
|
|
2600
2669
|
timePattern: string;
|
|
2601
2670
|
};
|
|
2602
2671
|
};
|
|
2603
|
-
|
|
2604
|
-
tempProfile: BasicDetails;
|
|
2605
|
-
isEditMode: i0.WritableSignal<boolean>;
|
|
2606
|
-
toggleEdit(): void;
|
|
2607
|
-
cancel(): void;
|
|
2608
|
-
save(): void;
|
|
2609
|
-
saveResumedetails(): Promise<void>;
|
|
2610
|
-
private saveAWSFile;
|
|
2611
|
-
selectFile(event: any): void;
|
|
2612
|
-
private toAbsoluteFileUrl;
|
|
2613
|
-
private revokeObjectUrl;
|
|
2614
|
-
previewSelectedFile(item: any): void;
|
|
2615
|
-
mapBasicDetailsToUserDetail(data: any): {
|
|
2672
|
+
mapBasicDetailsDashboard(data: any): {
|
|
2616
2673
|
providerName: string;
|
|
2617
2674
|
providerId: string;
|
|
2618
2675
|
UserRoleId: any;
|
|
@@ -2642,6 +2699,8 @@ declare class PreviewComponent {
|
|
|
2642
2699
|
timePattern: string;
|
|
2643
2700
|
};
|
|
2644
2701
|
};
|
|
2702
|
+
private mapSavedBasicDetailsToPreview;
|
|
2703
|
+
private hasUserDetailPayload;
|
|
2645
2704
|
mapWorkExperience(data: any): any;
|
|
2646
2705
|
mapEducation(data: any): any;
|
|
2647
2706
|
mapCertifications(data: any): any;
|
|
@@ -2649,6 +2708,12 @@ declare class PreviewComponent {
|
|
|
2649
2708
|
mapSkills(data: any): any;
|
|
2650
2709
|
mapTools(data: any): any;
|
|
2651
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;
|
|
2652
2717
|
static ɵfac: i0.ɵɵFactoryDeclaration<PreviewComponent, never>;
|
|
2653
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>;
|
|
2654
2719
|
}
|