@idsoftsource/initial-process 1.8.4 → 1.8.6
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/fesm2022/idsoftsource-initial-process.mjs +554 -218
- package/fesm2022/idsoftsource-initial-process.mjs.map +1 -1
- package/index.d.ts +139 -103
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1138,7 +1138,7 @@ declare class CredentialingStore {
|
|
|
1138
1138
|
private loadFromStorage;
|
|
1139
1139
|
clearStorage(): void;
|
|
1140
1140
|
toolsList: i0.WritableSignal<Tool[]>;
|
|
1141
|
-
uploadOption: i0.WritableSignal<"
|
|
1141
|
+
uploadOption: i0.WritableSignal<"manual" | "upload" | null>;
|
|
1142
1142
|
certifications: i0.WritableSignal<Certification$2[]>;
|
|
1143
1143
|
licenses: i0.WritableSignal<License[]>;
|
|
1144
1144
|
stepView: i0.WritableSignal<"add" | "preview">;
|
|
@@ -1269,28 +1269,6 @@ declare class CredentialingComponent implements OnInit {
|
|
|
1269
1269
|
static ɵcmp: i0.ɵɵComponentDeclaration<CredentialingComponent, "app-credentialing", never, { "signatureFileId": { "alias": "signatureFileId"; "required": false; }; "signatureUrl": { "alias": "signatureUrl"; "required": false; }; "data": { "alias": "data"; "required": false; }; }, { "back": "back"; }, never, never, false, never>;
|
|
1270
1270
|
}
|
|
1271
1271
|
|
|
1272
|
-
declare class StepperComponent implements AfterViewInit {
|
|
1273
|
-
store: CredentialingStore;
|
|
1274
|
-
tabsRow: ElementRef<HTMLElement>;
|
|
1275
|
-
steps: string[];
|
|
1276
|
-
showLockWarning: boolean;
|
|
1277
|
-
private warningTimer;
|
|
1278
|
-
constructor(store: CredentialingStore);
|
|
1279
|
-
ngAfterViewInit(): void;
|
|
1280
|
-
private scrollActiveTab;
|
|
1281
|
-
/** True when Basic Details (step 2) has been completed */
|
|
1282
|
-
get basicDetailsCompleted(): boolean;
|
|
1283
|
-
/**
|
|
1284
|
-
* A tab is locked when it is an optional step (index > BASIC_DETAILS_INDEX)
|
|
1285
|
-
* and the user has not yet completed Basic Details.
|
|
1286
|
-
*/
|
|
1287
|
-
isLocked(index: number): boolean;
|
|
1288
|
-
goToStep(index: number): void;
|
|
1289
|
-
private triggerLockWarning;
|
|
1290
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<StepperComponent, never>;
|
|
1291
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<StepperComponent, "app-stepper", never, {}, {}, never, never, false, never>;
|
|
1292
|
-
}
|
|
1293
|
-
|
|
1294
1272
|
declare class UserExperienceService {
|
|
1295
1273
|
private httpClient;
|
|
1296
1274
|
private readonly baseUrl;
|
|
@@ -1382,6 +1360,115 @@ declare class EducationStore {
|
|
|
1382
1360
|
static ɵprov: i0.ɵɵInjectableDeclaration<EducationStore>;
|
|
1383
1361
|
}
|
|
1384
1362
|
|
|
1363
|
+
declare class UserDocumentService {
|
|
1364
|
+
private httpClient;
|
|
1365
|
+
private readonly baseUrl;
|
|
1366
|
+
private readonly baseUrlUpdated;
|
|
1367
|
+
constructor(httpClient: HttpClient);
|
|
1368
|
+
createUserDocument(model: any): Observable<Result>;
|
|
1369
|
+
updateUserDocument(model: any): Observable<Result>;
|
|
1370
|
+
getUserDocument(query: GridifyQuery): Observable<{
|
|
1371
|
+
data: any[];
|
|
1372
|
+
}>;
|
|
1373
|
+
private buildParams;
|
|
1374
|
+
getDocumentTypes(maintype: any, providerId: string, searchText?: string): Observable<any>;
|
|
1375
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UserDocumentService, never>;
|
|
1376
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UserDocumentService>;
|
|
1377
|
+
}
|
|
1378
|
+
|
|
1379
|
+
interface Certification$1 {
|
|
1380
|
+
id?: string;
|
|
1381
|
+
number: string;
|
|
1382
|
+
issuedBy: string;
|
|
1383
|
+
issuedState: string;
|
|
1384
|
+
expiryDate: string;
|
|
1385
|
+
issueDate: string;
|
|
1386
|
+
mainType: string;
|
|
1387
|
+
forUser: string;
|
|
1388
|
+
status: string;
|
|
1389
|
+
fileId?: any;
|
|
1390
|
+
fileUrl?: string;
|
|
1391
|
+
fileName?: string;
|
|
1392
|
+
notes: string;
|
|
1393
|
+
documentTypeId?: string;
|
|
1394
|
+
documentTypeName?: string;
|
|
1395
|
+
}
|
|
1396
|
+
declare class CertificationStore {
|
|
1397
|
+
userDocumentService: UserDocumentService;
|
|
1398
|
+
private certifications;
|
|
1399
|
+
readonly experiences: i0.Signal<Certification$1[]>;
|
|
1400
|
+
API_URL: any;
|
|
1401
|
+
constructor(userDocumentService: UserDocumentService);
|
|
1402
|
+
loadFromApi(userId: string): void;
|
|
1403
|
+
addExperience(exp: Certification$1): void;
|
|
1404
|
+
updateExperience(index: number, exp: Certification$1): void;
|
|
1405
|
+
getExperience(index: number): Certification$1;
|
|
1406
|
+
clear(): void;
|
|
1407
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CertificationStore, never>;
|
|
1408
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CertificationStore>;
|
|
1409
|
+
}
|
|
1410
|
+
|
|
1411
|
+
interface Certification {
|
|
1412
|
+
id?: string;
|
|
1413
|
+
number: string;
|
|
1414
|
+
issuedBy: string;
|
|
1415
|
+
issuedState: string;
|
|
1416
|
+
expiryDate: string;
|
|
1417
|
+
issueDate: string;
|
|
1418
|
+
mainType: string;
|
|
1419
|
+
forUser: string;
|
|
1420
|
+
status: string;
|
|
1421
|
+
fileId?: any;
|
|
1422
|
+
fileUrl?: string;
|
|
1423
|
+
fileName?: string;
|
|
1424
|
+
notes: string;
|
|
1425
|
+
documentTypeId?: string;
|
|
1426
|
+
documentTypeName?: string;
|
|
1427
|
+
}
|
|
1428
|
+
declare class LicenseStore {
|
|
1429
|
+
userDocumentService: UserDocumentService;
|
|
1430
|
+
private certifications;
|
|
1431
|
+
readonly experiences: i0.Signal<Certification[]>;
|
|
1432
|
+
API_URL: any;
|
|
1433
|
+
constructor(userDocumentService: UserDocumentService);
|
|
1434
|
+
loadFromApi(userId: string): void;
|
|
1435
|
+
addExperience(exp: Certification): void;
|
|
1436
|
+
updateExperience(index: number, exp: Certification): void;
|
|
1437
|
+
getExperience(index: number): Certification;
|
|
1438
|
+
clear(): void;
|
|
1439
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LicenseStore, never>;
|
|
1440
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LicenseStore>;
|
|
1441
|
+
}
|
|
1442
|
+
|
|
1443
|
+
declare class StepperComponent implements AfterViewInit {
|
|
1444
|
+
store: CredentialingStore;
|
|
1445
|
+
private workExperienceStore;
|
|
1446
|
+
private educationStore;
|
|
1447
|
+
private certificationStore;
|
|
1448
|
+
private licenseStore;
|
|
1449
|
+
tabsRow: ElementRef<HTMLElement>;
|
|
1450
|
+
steps: string[];
|
|
1451
|
+
showLockWarning: boolean;
|
|
1452
|
+
private warningTimer;
|
|
1453
|
+
constructor(store: CredentialingStore, workExperienceStore: WorkExperienceStore, educationStore: EducationStore, certificationStore: CertificationStore, licenseStore: LicenseStore);
|
|
1454
|
+
isStepComplete(step: number): boolean;
|
|
1455
|
+
ngAfterViewInit(): void;
|
|
1456
|
+
private scrollActiveTab;
|
|
1457
|
+
get basicDetailsCompleted(): boolean;
|
|
1458
|
+
get completedCount(): number;
|
|
1459
|
+
get progressPercent(): number;
|
|
1460
|
+
get progressOffset(): number;
|
|
1461
|
+
/**
|
|
1462
|
+
* A tab is locked when it is an optional step (index > BASIC_DETAILS_INDEX)
|
|
1463
|
+
* and the user has not yet completed Basic Details.
|
|
1464
|
+
*/
|
|
1465
|
+
isLocked(index: number): boolean;
|
|
1466
|
+
goToStep(index: number): void;
|
|
1467
|
+
private triggerLockWarning;
|
|
1468
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StepperComponent, never>;
|
|
1469
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StepperComponent, "app-stepper", never, {}, {}, never, never, false, never>;
|
|
1470
|
+
}
|
|
1471
|
+
|
|
1385
1472
|
interface CountryModel {
|
|
1386
1473
|
countryCode2: string;
|
|
1387
1474
|
countryCode3: string;
|
|
@@ -1474,6 +1561,7 @@ declare class EducationComponent implements OnInit {
|
|
|
1474
1561
|
getstates(countryCode: any): void;
|
|
1475
1562
|
onCountryChange(countryCode: string): void;
|
|
1476
1563
|
onPreferredDateChange(date: Date): void;
|
|
1564
|
+
private getFileExtension;
|
|
1477
1565
|
private saveAWSFile;
|
|
1478
1566
|
saveAndContinue(): void;
|
|
1479
1567
|
refreshForEdit(): void;
|
|
@@ -1487,54 +1575,6 @@ declare class EducationComponent implements OnInit {
|
|
|
1487
1575
|
static ɵcmp: i0.ɵɵComponentDeclaration<EducationComponent, "app-education", never, { "providerId": { "alias": "providerId"; "required": false; }; "providerName": { "alias": "providerName"; "required": false; }; "cloudfrontUrl": { "alias": "cloudfrontUrl"; "required": false; }; }, {}, never, never, false, never>;
|
|
1488
1576
|
}
|
|
1489
1577
|
|
|
1490
|
-
declare class UserDocumentService {
|
|
1491
|
-
private httpClient;
|
|
1492
|
-
private readonly baseUrl;
|
|
1493
|
-
private readonly baseUrlUpdated;
|
|
1494
|
-
constructor(httpClient: HttpClient);
|
|
1495
|
-
createUserDocument(model: any): Observable<Result>;
|
|
1496
|
-
updateUserDocument(model: any): Observable<Result>;
|
|
1497
|
-
getUserDocument(query: GridifyQuery): Observable<{
|
|
1498
|
-
data: any[];
|
|
1499
|
-
}>;
|
|
1500
|
-
private buildParams;
|
|
1501
|
-
getDocumentTypes(maintype: any, providerId: string, searchText?: string): Observable<any>;
|
|
1502
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<UserDocumentService, never>;
|
|
1503
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<UserDocumentService>;
|
|
1504
|
-
}
|
|
1505
|
-
|
|
1506
|
-
interface Certification$1 {
|
|
1507
|
-
id?: string;
|
|
1508
|
-
number: string;
|
|
1509
|
-
issuedBy: string;
|
|
1510
|
-
issuedState: string;
|
|
1511
|
-
expiryDate: string;
|
|
1512
|
-
issueDate: string;
|
|
1513
|
-
mainType: string;
|
|
1514
|
-
forUser: string;
|
|
1515
|
-
status: string;
|
|
1516
|
-
fileId?: any;
|
|
1517
|
-
fileUrl?: string;
|
|
1518
|
-
fileName?: string;
|
|
1519
|
-
notes: string;
|
|
1520
|
-
documentTypeId?: string;
|
|
1521
|
-
documentTypeName?: string;
|
|
1522
|
-
}
|
|
1523
|
-
declare class CertificationStore {
|
|
1524
|
-
userDocumentService: UserDocumentService;
|
|
1525
|
-
private certifications;
|
|
1526
|
-
readonly experiences: i0.Signal<Certification$1[]>;
|
|
1527
|
-
API_URL: any;
|
|
1528
|
-
constructor(userDocumentService: UserDocumentService);
|
|
1529
|
-
loadFromApi(userId: string): void;
|
|
1530
|
-
addExperience(exp: Certification$1): void;
|
|
1531
|
-
updateExperience(index: number, exp: Certification$1): void;
|
|
1532
|
-
getExperience(index: number): Certification$1;
|
|
1533
|
-
clear(): void;
|
|
1534
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CertificationStore, never>;
|
|
1535
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<CertificationStore>;
|
|
1536
|
-
}
|
|
1537
|
-
|
|
1538
1578
|
declare class CertificationComponent {
|
|
1539
1579
|
roleContextService: RoleContextService;
|
|
1540
1580
|
userDocumentService: UserDocumentService;
|
|
@@ -1581,6 +1621,7 @@ declare class CertificationComponent {
|
|
|
1581
1621
|
userName: any;
|
|
1582
1622
|
cloudfront: any;
|
|
1583
1623
|
proposalLoader: boolean;
|
|
1624
|
+
manualTypeError: string;
|
|
1584
1625
|
showpreview: i0.Signal<boolean>;
|
|
1585
1626
|
userdata: any;
|
|
1586
1627
|
maxDate: Date;
|
|
@@ -1597,12 +1638,14 @@ declare class CertificationComponent {
|
|
|
1597
1638
|
selectFile(event: any): void;
|
|
1598
1639
|
removeFile(): void;
|
|
1599
1640
|
hasChanges(): boolean;
|
|
1641
|
+
private getFileExtension;
|
|
1600
1642
|
private saveAWSFile;
|
|
1601
1643
|
saveAndContinue(): void;
|
|
1602
1644
|
back(): void;
|
|
1603
1645
|
nextStep(): void;
|
|
1604
1646
|
handleLeftButton(): void;
|
|
1605
1647
|
add(): void;
|
|
1648
|
+
addManualDocumentType(): void;
|
|
1606
1649
|
cancelForm(): void;
|
|
1607
1650
|
static ɵfac: i0.ɵɵFactoryDeclaration<CertificationComponent, never>;
|
|
1608
1651
|
static ɵcmp: i0.ɵɵComponentDeclaration<CertificationComponent, "app-certification", never, { "states": { "alias": "states"; "required": false; }; "providerId": { "alias": "providerId"; "required": false; }; "providerName": { "alias": "providerName"; "required": false; }; "cloudfrontUrl": { "alias": "cloudfrontUrl"; "required": false; }; }, {}, never, never, false, never>;
|
|
@@ -1784,38 +1827,6 @@ declare class SkillsComponent {
|
|
|
1784
1827
|
static ɵcmp: i0.ɵɵComponentDeclaration<SkillsComponent, "app-skills", never, { "providerId": { "alias": "providerId"; "required": false; }; "providerName": { "alias": "providerName"; "required": false; }; }, {}, never, never, false, never>;
|
|
1785
1828
|
}
|
|
1786
1829
|
|
|
1787
|
-
interface Certification {
|
|
1788
|
-
id?: string;
|
|
1789
|
-
number: string;
|
|
1790
|
-
issuedBy: string;
|
|
1791
|
-
issuedState: string;
|
|
1792
|
-
expiryDate: string;
|
|
1793
|
-
issueDate: string;
|
|
1794
|
-
mainType: string;
|
|
1795
|
-
forUser: string;
|
|
1796
|
-
status: string;
|
|
1797
|
-
fileId?: any;
|
|
1798
|
-
fileUrl?: string;
|
|
1799
|
-
fileName?: string;
|
|
1800
|
-
notes: string;
|
|
1801
|
-
documentTypeId?: string;
|
|
1802
|
-
documentTypeName?: string;
|
|
1803
|
-
}
|
|
1804
|
-
declare class LicenseStore {
|
|
1805
|
-
userDocumentService: UserDocumentService;
|
|
1806
|
-
private certifications;
|
|
1807
|
-
readonly experiences: i0.Signal<Certification[]>;
|
|
1808
|
-
API_URL: any;
|
|
1809
|
-
constructor(userDocumentService: UserDocumentService);
|
|
1810
|
-
loadFromApi(userId: string): void;
|
|
1811
|
-
addExperience(exp: Certification): void;
|
|
1812
|
-
updateExperience(index: number, exp: Certification): void;
|
|
1813
|
-
getExperience(index: number): Certification;
|
|
1814
|
-
clear(): void;
|
|
1815
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LicenseStore, never>;
|
|
1816
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<LicenseStore>;
|
|
1817
|
-
}
|
|
1818
|
-
|
|
1819
1830
|
declare class LicensesComponent {
|
|
1820
1831
|
userDocumentService: UserDocumentService;
|
|
1821
1832
|
private userService;
|
|
@@ -1860,6 +1871,7 @@ declare class LicensesComponent {
|
|
|
1860
1871
|
userName: any;
|
|
1861
1872
|
cloudfront: any;
|
|
1862
1873
|
proposalLoader: boolean;
|
|
1874
|
+
manualTypeError: string;
|
|
1863
1875
|
showpreview: i0.Signal<boolean>;
|
|
1864
1876
|
userdata: any;
|
|
1865
1877
|
maxDate: Date;
|
|
@@ -1875,6 +1887,7 @@ declare class LicensesComponent {
|
|
|
1875
1887
|
selectFile(event: any): void;
|
|
1876
1888
|
removeFile(): void;
|
|
1877
1889
|
hasChanges(): boolean;
|
|
1890
|
+
private getFileExtension;
|
|
1878
1891
|
private saveAWSFile;
|
|
1879
1892
|
saveAndContinue(): void;
|
|
1880
1893
|
isChecked(id: string): boolean;
|
|
@@ -1882,6 +1895,7 @@ declare class LicensesComponent {
|
|
|
1882
1895
|
nextStep(): void;
|
|
1883
1896
|
handleLeftButton(): void;
|
|
1884
1897
|
add(): void;
|
|
1898
|
+
addManualDocumentType(): void;
|
|
1885
1899
|
cancelForm(): void;
|
|
1886
1900
|
static ɵfac: i0.ɵɵFactoryDeclaration<LicensesComponent, never>;
|
|
1887
1901
|
static ɵcmp: i0.ɵɵComponentDeclaration<LicensesComponent, "app-licenses", never, { "providerId": { "alias": "providerId"; "required": false; }; "providerName": { "alias": "providerName"; "required": false; }; "cloudfrontUrl": { "alias": "cloudfrontUrl"; "required": false; }; "states": { "alias": "states"; "required": false; }; }, {}, never, never, false, never>;
|
|
@@ -1987,6 +2001,7 @@ declare class ToolsComponent {
|
|
|
1987
2001
|
emailId: any;
|
|
1988
2002
|
isEditMode: boolean;
|
|
1989
2003
|
userToolsPreview: any[];
|
|
2004
|
+
showDashboardModal: boolean;
|
|
1990
2005
|
userDetails: any;
|
|
1991
2006
|
userdata: any;
|
|
1992
2007
|
signatureUrl: any;
|
|
@@ -2036,6 +2051,8 @@ declare class ToolsComponent {
|
|
|
2036
2051
|
onYearChange(group: any): void;
|
|
2037
2052
|
setTabGroup(g: any): void;
|
|
2038
2053
|
goBack(): void;
|
|
2054
|
+
openDashboardModal(): void;
|
|
2055
|
+
closeDashboardModal(): void;
|
|
2039
2056
|
saveFinal(): void;
|
|
2040
2057
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToolsComponent, never>;
|
|
2041
2058
|
static ɵcmp: i0.ɵɵComponentDeclaration<ToolsComponent, "app-tools", never, { "roleData": { "alias": "roleData"; "required": false; }; "providerId": { "alias": "providerId"; "required": false; }; "providerName": { "alias": "providerName"; "required": false; }; "signatureUrl": { "alias": "signatureUrl"; "required": false; }; "signatureFileId": { "alias": "signatureFileId"; "required": false; }; }, {}, never, never, false, never>;
|
|
@@ -2406,6 +2423,7 @@ declare class WorkexperienceComponent implements OnInit {
|
|
|
2406
2423
|
selectFile(event: any): void;
|
|
2407
2424
|
hasChanges(): boolean;
|
|
2408
2425
|
saveFile(): void;
|
|
2426
|
+
private getFileExtension;
|
|
2409
2427
|
private saveAWSFile;
|
|
2410
2428
|
removeFile(): void;
|
|
2411
2429
|
edit(index: number): void;
|
|
@@ -3088,6 +3106,14 @@ declare class PreviewComponent {
|
|
|
3088
3106
|
hasUserDetailData: boolean;
|
|
3089
3107
|
isSavingSkill: boolean;
|
|
3090
3108
|
isSavingTool: boolean;
|
|
3109
|
+
showBulkSkillConfirm: boolean;
|
|
3110
|
+
bulkSkillStars: number;
|
|
3111
|
+
bulkSkillYear: number | null;
|
|
3112
|
+
showBulkToolConfirm: boolean;
|
|
3113
|
+
bulkToolStars: number;
|
|
3114
|
+
bulkToolYear: number | null;
|
|
3115
|
+
private workConfirmAllQueue;
|
|
3116
|
+
private educationConfirmAllQueue;
|
|
3091
3117
|
payloadUserId: any;
|
|
3092
3118
|
payloadUserName: any;
|
|
3093
3119
|
cloudfrontUrl: string;
|
|
@@ -3243,6 +3269,8 @@ declare class PreviewComponent {
|
|
|
3243
3269
|
addJob(): void;
|
|
3244
3270
|
startEditJob(jobIndex: number): void;
|
|
3245
3271
|
cancelEditJob(): void;
|
|
3272
|
+
private advanceWorkConfirmQueue;
|
|
3273
|
+
confirmAllWork(): Promise<void>;
|
|
3246
3274
|
saveEditJob(): Promise<void>;
|
|
3247
3275
|
deleteJob(index: number): void;
|
|
3248
3276
|
updateTempResponsibilities(value: string): void;
|
|
@@ -3273,7 +3301,11 @@ declare class PreviewComponent {
|
|
|
3273
3301
|
closeToolEditor(): void;
|
|
3274
3302
|
setTempToolStars(stars: number): void;
|
|
3275
3303
|
confirmAllSkills(): Promise<void>;
|
|
3304
|
+
cancelBulkSkillConfirm(): void;
|
|
3305
|
+
applyBulkSkillConfirm(): Promise<void>;
|
|
3276
3306
|
confirmAllTools(): Promise<void>;
|
|
3307
|
+
cancelBulkToolConfirm(): void;
|
|
3308
|
+
applyBulkToolConfirm(): Promise<void>;
|
|
3277
3309
|
saveToolEditor(): Promise<void>;
|
|
3278
3310
|
private reindexToolMetaAfterDelete;
|
|
3279
3311
|
deleteTool(index: number): void;
|
|
@@ -3308,6 +3340,8 @@ declare class PreviewComponent {
|
|
|
3308
3340
|
addEducation(): void;
|
|
3309
3341
|
startEditEducation(index: number): void;
|
|
3310
3342
|
cancelEditEducation(): void;
|
|
3343
|
+
private advanceEducationConfirmQueue;
|
|
3344
|
+
confirmAllEducation(): Promise<void>;
|
|
3311
3345
|
patchTempEducation(patch: Partial<Education$1>): void;
|
|
3312
3346
|
onEducationFileSelected(event: Event): void;
|
|
3313
3347
|
saveEducation(): Promise<void>;
|
|
@@ -3328,7 +3362,9 @@ declare class PreviewComponent {
|
|
|
3328
3362
|
private persistCertification;
|
|
3329
3363
|
private persistLicense;
|
|
3330
3364
|
private persistSkill;
|
|
3365
|
+
private batchPersistSkills;
|
|
3331
3366
|
private persistTool;
|
|
3367
|
+
private batchPersistTools;
|
|
3332
3368
|
private saveAWSFile;
|
|
3333
3369
|
selectFile(event: any): void;
|
|
3334
3370
|
private toAbsoluteFileUrl;
|