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