@idsoftsource/initial-process 1.8.4 → 1.8.5
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 +419 -207
- package/fesm2022/idsoftsource-initial-process.mjs.map +1 -1
- package/index.d.ts +130 -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;
|
|
@@ -1597,6 +1637,7 @@ declare class CertificationComponent {
|
|
|
1597
1637
|
selectFile(event: any): void;
|
|
1598
1638
|
removeFile(): void;
|
|
1599
1639
|
hasChanges(): boolean;
|
|
1640
|
+
private getFileExtension;
|
|
1600
1641
|
private saveAWSFile;
|
|
1601
1642
|
saveAndContinue(): void;
|
|
1602
1643
|
back(): void;
|
|
@@ -1784,38 +1825,6 @@ declare class SkillsComponent {
|
|
|
1784
1825
|
static ɵcmp: i0.ɵɵComponentDeclaration<SkillsComponent, "app-skills", never, { "providerId": { "alias": "providerId"; "required": false; }; "providerName": { "alias": "providerName"; "required": false; }; }, {}, never, never, false, never>;
|
|
1785
1826
|
}
|
|
1786
1827
|
|
|
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
1828
|
declare class LicensesComponent {
|
|
1820
1829
|
userDocumentService: UserDocumentService;
|
|
1821
1830
|
private userService;
|
|
@@ -1875,6 +1884,7 @@ declare class LicensesComponent {
|
|
|
1875
1884
|
selectFile(event: any): void;
|
|
1876
1885
|
removeFile(): void;
|
|
1877
1886
|
hasChanges(): boolean;
|
|
1887
|
+
private getFileExtension;
|
|
1878
1888
|
private saveAWSFile;
|
|
1879
1889
|
saveAndContinue(): void;
|
|
1880
1890
|
isChecked(id: string): boolean;
|
|
@@ -2406,6 +2416,7 @@ declare class WorkexperienceComponent implements OnInit {
|
|
|
2406
2416
|
selectFile(event: any): void;
|
|
2407
2417
|
hasChanges(): boolean;
|
|
2408
2418
|
saveFile(): void;
|
|
2419
|
+
private getFileExtension;
|
|
2409
2420
|
private saveAWSFile;
|
|
2410
2421
|
removeFile(): void;
|
|
2411
2422
|
edit(index: number): void;
|
|
@@ -3088,6 +3099,14 @@ declare class PreviewComponent {
|
|
|
3088
3099
|
hasUserDetailData: boolean;
|
|
3089
3100
|
isSavingSkill: boolean;
|
|
3090
3101
|
isSavingTool: boolean;
|
|
3102
|
+
showBulkSkillConfirm: boolean;
|
|
3103
|
+
bulkSkillStars: number;
|
|
3104
|
+
bulkSkillYear: number | null;
|
|
3105
|
+
showBulkToolConfirm: boolean;
|
|
3106
|
+
bulkToolStars: number;
|
|
3107
|
+
bulkToolYear: number | null;
|
|
3108
|
+
private workConfirmAllQueue;
|
|
3109
|
+
private educationConfirmAllQueue;
|
|
3091
3110
|
payloadUserId: any;
|
|
3092
3111
|
payloadUserName: any;
|
|
3093
3112
|
cloudfrontUrl: string;
|
|
@@ -3243,6 +3262,8 @@ declare class PreviewComponent {
|
|
|
3243
3262
|
addJob(): void;
|
|
3244
3263
|
startEditJob(jobIndex: number): void;
|
|
3245
3264
|
cancelEditJob(): void;
|
|
3265
|
+
private advanceWorkConfirmQueue;
|
|
3266
|
+
confirmAllWork(): Promise<void>;
|
|
3246
3267
|
saveEditJob(): Promise<void>;
|
|
3247
3268
|
deleteJob(index: number): void;
|
|
3248
3269
|
updateTempResponsibilities(value: string): void;
|
|
@@ -3273,7 +3294,11 @@ declare class PreviewComponent {
|
|
|
3273
3294
|
closeToolEditor(): void;
|
|
3274
3295
|
setTempToolStars(stars: number): void;
|
|
3275
3296
|
confirmAllSkills(): Promise<void>;
|
|
3297
|
+
cancelBulkSkillConfirm(): void;
|
|
3298
|
+
applyBulkSkillConfirm(): Promise<void>;
|
|
3276
3299
|
confirmAllTools(): Promise<void>;
|
|
3300
|
+
cancelBulkToolConfirm(): void;
|
|
3301
|
+
applyBulkToolConfirm(): Promise<void>;
|
|
3277
3302
|
saveToolEditor(): Promise<void>;
|
|
3278
3303
|
private reindexToolMetaAfterDelete;
|
|
3279
3304
|
deleteTool(index: number): void;
|
|
@@ -3308,6 +3333,8 @@ declare class PreviewComponent {
|
|
|
3308
3333
|
addEducation(): void;
|
|
3309
3334
|
startEditEducation(index: number): void;
|
|
3310
3335
|
cancelEditEducation(): void;
|
|
3336
|
+
private advanceEducationConfirmQueue;
|
|
3337
|
+
confirmAllEducation(): Promise<void>;
|
|
3311
3338
|
patchTempEducation(patch: Partial<Education$1>): void;
|
|
3312
3339
|
onEducationFileSelected(event: Event): void;
|
|
3313
3340
|
saveEducation(): Promise<void>;
|