@idsoftsource/initial-process 1.4.5 → 1.4.7
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
|
@@ -2410,6 +2410,7 @@ interface SkillToolEditorData {
|
|
|
2410
2410
|
|
|
2411
2411
|
declare class PreviewComponent {
|
|
2412
2412
|
store: CredentialingStore;
|
|
2413
|
+
private fileService;
|
|
2413
2414
|
private userSkillSetService;
|
|
2414
2415
|
private userToolService;
|
|
2415
2416
|
userDocumentService: UserDocumentService;
|
|
@@ -2421,7 +2422,17 @@ declare class PreviewComponent {
|
|
|
2421
2422
|
providerId: string;
|
|
2422
2423
|
providerName: string;
|
|
2423
2424
|
roleData: any;
|
|
2425
|
+
cloudfrontUrl: string;
|
|
2424
2426
|
backToParent: EventEmitter<void>;
|
|
2427
|
+
fileData: any;
|
|
2428
|
+
model: any;
|
|
2429
|
+
awsFileUpdate: UpdateAwsFileModelModel[];
|
|
2430
|
+
fileName: string;
|
|
2431
|
+
fileChanged: boolean;
|
|
2432
|
+
isSavingWork: boolean;
|
|
2433
|
+
isSavingEducation: boolean;
|
|
2434
|
+
isSavingCertification: boolean;
|
|
2435
|
+
isSavingLicense: boolean;
|
|
2425
2436
|
payloadUserId: any;
|
|
2426
2437
|
payloadUserName: any;
|
|
2427
2438
|
resumeData: ResumeProfile | null;
|
|
@@ -2430,9 +2441,10 @@ declare class PreviewComponent {
|
|
|
2430
2441
|
showBackConfirmPopup: boolean;
|
|
2431
2442
|
userId: any;
|
|
2432
2443
|
userName: any;
|
|
2433
|
-
constructor(store: CredentialingStore, userSkillSetService: UserSkillSetService, userToolService: UserToolService, userDocumentService: UserDocumentService, userEducation: UserEducationService, userDetailService: UserDetailService, userExperienceService: UserExperienceService, tokenService: TokenService, libConfig: LibraryConfig);
|
|
2444
|
+
constructor(store: CredentialingStore, fileService: FileService, userSkillSetService: UserSkillSetService, userToolService: UserToolService, userDocumentService: UserDocumentService, userEducation: UserEducationService, userDetailService: UserDetailService, userExperienceService: UserExperienceService, tokenService: TokenService, libConfig: LibraryConfig);
|
|
2434
2445
|
email: any;
|
|
2435
2446
|
showLoader: boolean;
|
|
2447
|
+
private readonly uploadFolderBySection;
|
|
2436
2448
|
expYears: number[];
|
|
2437
2449
|
details: i0.WritableSignal<BasicDetails | undefined>;
|
|
2438
2450
|
ngOnInit(): Promise<void>;
|
|
@@ -2487,7 +2499,8 @@ declare class PreviewComponent {
|
|
|
2487
2499
|
addJob(): void;
|
|
2488
2500
|
startEditJob(jobIndex: number): void;
|
|
2489
2501
|
cancelEditJob(): void;
|
|
2490
|
-
saveEditJob(): void
|
|
2502
|
+
saveEditJob(): Promise<void>;
|
|
2503
|
+
onWorkExperienceFileSelected(event: Event): void;
|
|
2491
2504
|
deleteJob(index: number): void;
|
|
2492
2505
|
updateTempResponsibilities(value: string): void;
|
|
2493
2506
|
patchTempJob(patch: Partial<WorkExperience$1>): void;
|
|
@@ -2525,30 +2538,33 @@ declare class PreviewComponent {
|
|
|
2525
2538
|
private normalizeNullableString;
|
|
2526
2539
|
private normalizeMonthInput;
|
|
2527
2540
|
addCertification(): void;
|
|
2541
|
+
onCertificationFileSelected(event: Event): void;
|
|
2528
2542
|
startEditCertification(index: number): void;
|
|
2529
2543
|
cancelEditCertification(): void;
|
|
2530
2544
|
patchTempCertification(patch: Partial<Certification$3>): void;
|
|
2531
|
-
saveCertificationEditor(): void
|
|
2545
|
+
saveCertificationEditor(): Promise<void>;
|
|
2532
2546
|
deleteCertification(index: number): void;
|
|
2533
2547
|
private licenseEditor;
|
|
2534
2548
|
isAddingLicense(): boolean;
|
|
2535
2549
|
editingLicenseIndex(): number | null;
|
|
2536
2550
|
tempLicense(): License$1 | null;
|
|
2537
2551
|
addLicense(): void;
|
|
2552
|
+
onLicenseFileSelected(event: Event): void;
|
|
2538
2553
|
startEditLicense(index: number): void;
|
|
2539
2554
|
cancelEditLicense(): void;
|
|
2540
2555
|
patchTempLicense(patch: Partial<License$1>): void;
|
|
2541
|
-
saveLicenseEditor(): void
|
|
2556
|
+
saveLicenseEditor(): Promise<void>;
|
|
2542
2557
|
deleteLicense(index: number): void;
|
|
2543
2558
|
private educationEditor;
|
|
2544
2559
|
isAddingEducation(): boolean;
|
|
2545
2560
|
editingEducationIndex(): number | null;
|
|
2546
2561
|
tempEducation(): Education$1 | null;
|
|
2547
2562
|
addEducation(): void;
|
|
2563
|
+
onEducationFileSelected(event: Event): void;
|
|
2548
2564
|
startEditEducation(index: number): void;
|
|
2549
2565
|
cancelEditEducation(): void;
|
|
2550
2566
|
patchTempEducation(patch: Partial<Education$1>): void;
|
|
2551
|
-
saveEducation(): void
|
|
2567
|
+
saveEducation(): Promise<void>;
|
|
2552
2568
|
deleteEducation(index: number): void;
|
|
2553
2569
|
onBackClick(): void;
|
|
2554
2570
|
stayOnPreview(): void;
|
|
@@ -2591,7 +2607,12 @@ declare class PreviewComponent {
|
|
|
2591
2607
|
toggleEdit(): void;
|
|
2592
2608
|
cancel(): void;
|
|
2593
2609
|
save(): void;
|
|
2594
|
-
saveResumedetails(): void
|
|
2610
|
+
saveResumedetails(): Promise<void>;
|
|
2611
|
+
private saveAWSFile;
|
|
2612
|
+
selectFile(event: any): void;
|
|
2613
|
+
private toAbsoluteFileUrl;
|
|
2614
|
+
private revokeObjectUrl;
|
|
2615
|
+
previewSelectedFile(item: any): void;
|
|
2595
2616
|
mapBasicDetailsToUserDetail(data: any): {
|
|
2596
2617
|
providerName: string;
|
|
2597
2618
|
providerId: string;
|
|
@@ -2630,7 +2651,7 @@ declare class PreviewComponent {
|
|
|
2630
2651
|
mapTools(data: any): any;
|
|
2631
2652
|
formatDate(date: string): string | null;
|
|
2632
2653
|
static ɵfac: i0.ɵɵFactoryDeclaration<PreviewComponent, never>;
|
|
2633
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PreviewComponent, "app-preview", never, { "providerId": { "alias": "providerId"; "required": false; }; "providerName": { "alias": "providerName"; "required": false; }; "roleData": { "alias": "roleData"; "required": false; }; }, { "backToParent": "backToParent"; }, never, never, false, never>;
|
|
2654
|
+
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>;
|
|
2634
2655
|
}
|
|
2635
2656
|
|
|
2636
2657
|
declare class UsMapComponent implements OnChanges, OnInit, AfterViewInit {
|