@idsoftsource/initial-process 1.2.6 → 1.2.8
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
|
@@ -1062,8 +1062,50 @@ declare class CredentialingStore {
|
|
|
1062
1062
|
static ɵprov: i0.ɵɵInjectableDeclaration<CredentialingStore>;
|
|
1063
1063
|
}
|
|
1064
1064
|
|
|
1065
|
+
interface StateModel {
|
|
1066
|
+
stateCode: string;
|
|
1067
|
+
stateName: string;
|
|
1068
|
+
}
|
|
1069
|
+
interface CountyModel extends StateModel {
|
|
1070
|
+
countyName: string;
|
|
1071
|
+
}
|
|
1072
|
+
interface ZipCodeModel extends CountyModel {
|
|
1073
|
+
countryCode: string;
|
|
1074
|
+
postalCode: string;
|
|
1075
|
+
placeName: string;
|
|
1076
|
+
countyCode: string;
|
|
1077
|
+
communityCode: string;
|
|
1078
|
+
communityName: string;
|
|
1079
|
+
latitude: number;
|
|
1080
|
+
longitude: number;
|
|
1081
|
+
accuracy: number;
|
|
1082
|
+
}
|
|
1083
|
+
|
|
1084
|
+
declare class PostalCodeServices {
|
|
1085
|
+
protected httpClient: HttpClient;
|
|
1086
|
+
protected readonly apiUrl?: string | undefined;
|
|
1087
|
+
private selectedCountryCode;
|
|
1088
|
+
private endpoint;
|
|
1089
|
+
private cachedStates;
|
|
1090
|
+
private statesRequestCache;
|
|
1091
|
+
private get url();
|
|
1092
|
+
constructor(httpClient: HttpClient, apiUrl?: string | undefined);
|
|
1093
|
+
getCountryCode(): string;
|
|
1094
|
+
GetStatesByCountryCode(countryCode: string): Observable<StateModel[]>;
|
|
1095
|
+
GetCountiesByState(countryCode: string, stateCode: string): Observable<CountyModel[]>;
|
|
1096
|
+
getCountiesByStates(countryCode: string, stateCodes: string[]): Observable<CountyModel[]>;
|
|
1097
|
+
GetZipcodesByCounty(countryCode: string, countyName: string): Observable<ZipCodeModel[]>;
|
|
1098
|
+
SearchZipcodeDetails(countryCode: string, zipCode: string): Observable<ZipCodeModel[]>;
|
|
1099
|
+
GetNearestZipcodeDetails(countryCode: string, zipCode: string, totalCount: number): Observable<ZipCodeModel[]>;
|
|
1100
|
+
GetZipcodeDetails(countryCode: string, zipCode: string): Observable<ZipCodeModel>;
|
|
1101
|
+
GetZipcodeDetailsByCoordinate(countryCode: string, latitude: number, longitude: number): Observable<ZipCodeModel>;
|
|
1102
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PostalCodeServices, [null, { optional: true; }]>;
|
|
1103
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PostalCodeServices>;
|
|
1104
|
+
}
|
|
1105
|
+
|
|
1065
1106
|
declare class CredentialingComponent implements OnInit {
|
|
1066
1107
|
store: CredentialingStore;
|
|
1108
|
+
private postalCodeService;
|
|
1067
1109
|
private libConfig;
|
|
1068
1110
|
private viewport;
|
|
1069
1111
|
animation: string | undefined;
|
|
@@ -1073,9 +1115,11 @@ declare class CredentialingComponent implements OnInit {
|
|
|
1073
1115
|
data: any;
|
|
1074
1116
|
back: EventEmitter<void>;
|
|
1075
1117
|
onActivate(outlet: RouterOutlet): void;
|
|
1076
|
-
|
|
1118
|
+
states: any;
|
|
1119
|
+
constructor(store: CredentialingStore, postalCodeService: PostalCodeServices, libConfig: LibraryConfig, viewport: ViewportScroller);
|
|
1077
1120
|
ngOnInit(): void;
|
|
1078
1121
|
goBackToInitialProcess(): void;
|
|
1122
|
+
getstates(countryCode: any): void;
|
|
1079
1123
|
static ɵfac: i0.ɵɵFactoryDeclaration<CredentialingComponent, never>;
|
|
1080
1124
|
static ɵcmp: i0.ɵɵComponentDeclaration<CredentialingComponent, "app-credentialing", never, { "data": { "alias": "data"; "required": false; }; }, { "back": "back"; }, never, never, false, never>;
|
|
1081
1125
|
}
|
|
@@ -1180,45 +1224,6 @@ declare class EducationStore {
|
|
|
1180
1224
|
static ɵprov: i0.ɵɵInjectableDeclaration<EducationStore>;
|
|
1181
1225
|
}
|
|
1182
1226
|
|
|
1183
|
-
interface StateModel {
|
|
1184
|
-
stateCode: string;
|
|
1185
|
-
stateName: string;
|
|
1186
|
-
}
|
|
1187
|
-
interface CountyModel extends StateModel {
|
|
1188
|
-
countyName: string;
|
|
1189
|
-
}
|
|
1190
|
-
interface ZipCodeModel extends CountyModel {
|
|
1191
|
-
countryCode: string;
|
|
1192
|
-
postalCode: string;
|
|
1193
|
-
placeName: string;
|
|
1194
|
-
countyCode: string;
|
|
1195
|
-
communityCode: string;
|
|
1196
|
-
communityName: string;
|
|
1197
|
-
latitude: number;
|
|
1198
|
-
longitude: number;
|
|
1199
|
-
accuracy: number;
|
|
1200
|
-
}
|
|
1201
|
-
|
|
1202
|
-
declare class PostalCodeServices {
|
|
1203
|
-
protected httpClient: HttpClient;
|
|
1204
|
-
protected readonly apiUrl?: string | undefined;
|
|
1205
|
-
private selectedCountryCode;
|
|
1206
|
-
private endpoint;
|
|
1207
|
-
private get url();
|
|
1208
|
-
constructor(httpClient: HttpClient, apiUrl?: string | undefined);
|
|
1209
|
-
getCountryCode(): string;
|
|
1210
|
-
GetStatesByCountryCode(countryCode: string): Observable<StateModel[]>;
|
|
1211
|
-
GetCountiesByState(countryCode: string, stateCode: string): Observable<CountyModel[]>;
|
|
1212
|
-
getCountiesByStates(countryCode: string, stateCodes: string[]): Observable<CountyModel[]>;
|
|
1213
|
-
GetZipcodesByCounty(countryCode: string, countyName: string): Observable<ZipCodeModel[]>;
|
|
1214
|
-
SearchZipcodeDetails(countryCode: string, zipCode: string): Observable<ZipCodeModel[]>;
|
|
1215
|
-
GetNearestZipcodeDetails(countryCode: string, zipCode: string, totalCount: number): Observable<ZipCodeModel[]>;
|
|
1216
|
-
GetZipcodeDetails(countryCode: string, zipCode: string): Observable<ZipCodeModel>;
|
|
1217
|
-
GetZipcodeDetailsByCoordinate(countryCode: string, latitude: number, longitude: number): Observable<ZipCodeModel>;
|
|
1218
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PostalCodeServices, [null, { optional: true; }]>;
|
|
1219
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<PostalCodeServices>;
|
|
1220
|
-
}
|
|
1221
|
-
|
|
1222
1227
|
interface CountryModel {
|
|
1223
1228
|
countryCode2: string;
|
|
1224
1229
|
countryCode3: string;
|
|
@@ -1250,8 +1255,17 @@ declare class CountryServices {
|
|
|
1250
1255
|
static ɵprov: i0.ɵɵInjectableDeclaration<CountryServices>;
|
|
1251
1256
|
}
|
|
1252
1257
|
|
|
1258
|
+
declare class UserService {
|
|
1259
|
+
userDetails: any;
|
|
1260
|
+
setUserDetails(data: any): void;
|
|
1261
|
+
getUserDetails(): any;
|
|
1262
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UserService, never>;
|
|
1263
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UserService>;
|
|
1264
|
+
}
|
|
1265
|
+
|
|
1253
1266
|
declare class EducationComponent implements OnInit {
|
|
1254
1267
|
userEducation: UserEducationService;
|
|
1268
|
+
private userService;
|
|
1255
1269
|
store: CredentialingStore;
|
|
1256
1270
|
workStore: EducationStore;
|
|
1257
1271
|
private countryService;
|
|
@@ -1260,6 +1274,9 @@ declare class EducationComponent implements OnInit {
|
|
|
1260
1274
|
private fb;
|
|
1261
1275
|
private fileService;
|
|
1262
1276
|
private http;
|
|
1277
|
+
originalFormValue: any;
|
|
1278
|
+
fileChanged: boolean;
|
|
1279
|
+
user: any;
|
|
1263
1280
|
private readonly uploadToAws;
|
|
1264
1281
|
educationForm: FormGroup;
|
|
1265
1282
|
providerId: string;
|
|
@@ -1286,14 +1303,16 @@ declare class EducationComponent implements OnInit {
|
|
|
1286
1303
|
showpreview: i0.Signal<boolean>;
|
|
1287
1304
|
maxDate: Date;
|
|
1288
1305
|
userdata: any;
|
|
1289
|
-
constructor(userEducation: UserEducationService, store: CredentialingStore, workStore: EducationStore, countryService: CountryServices, postalCodeService: PostalCodeServices, tokenService: TokenService, fb: FormBuilder, fileService: FileService, http: HttpClient);
|
|
1306
|
+
constructor(userEducation: UserEducationService, userService: UserService, store: CredentialingStore, workStore: EducationStore, countryService: CountryServices, postalCodeService: PostalCodeServices, tokenService: TokenService, fb: FormBuilder, fileService: FileService, http: HttpClient);
|
|
1290
1307
|
ngOnInit(): Promise<void>;
|
|
1308
|
+
selectFile(event: any): void;
|
|
1309
|
+
hasChanges(): boolean;
|
|
1310
|
+
removeFile(): void;
|
|
1311
|
+
saveFile(): void;
|
|
1291
1312
|
getcountry(): void;
|
|
1292
1313
|
getstates(countryCode: any): void;
|
|
1293
1314
|
onCountryChange(countryCode: string): void;
|
|
1294
1315
|
onPreferredDateChange(date: Date): void;
|
|
1295
|
-
selectFile(event: any): void;
|
|
1296
|
-
saveFile(): void;
|
|
1297
1316
|
private saveAWSFile;
|
|
1298
1317
|
saveAndContinue(): void;
|
|
1299
1318
|
refreshForEdit(): void;
|
|
@@ -1355,6 +1374,7 @@ declare class CertificationStore {
|
|
|
1355
1374
|
|
|
1356
1375
|
declare class CertificationComponent {
|
|
1357
1376
|
userDocumentService: UserDocumentService;
|
|
1377
|
+
private userService;
|
|
1358
1378
|
store: CredentialingStore;
|
|
1359
1379
|
workStore: CertificationStore;
|
|
1360
1380
|
private tokenService;
|
|
@@ -1362,14 +1382,18 @@ declare class CertificationComponent {
|
|
|
1362
1382
|
private fb;
|
|
1363
1383
|
private fileService;
|
|
1364
1384
|
private http;
|
|
1385
|
+
originalFormValue: any;
|
|
1386
|
+
states: any[];
|
|
1387
|
+
fileChanged: boolean;
|
|
1388
|
+
user: any;
|
|
1365
1389
|
private readonly uploadToAws;
|
|
1366
1390
|
providerId: string;
|
|
1367
1391
|
providerName: string;
|
|
1368
1392
|
cloudfrontUrl: string;
|
|
1369
1393
|
editingIndex: number;
|
|
1370
1394
|
selectedDocumentTypeId: string | null;
|
|
1371
|
-
selectedDocumentId:
|
|
1372
|
-
selectedDocumentName:
|
|
1395
|
+
selectedDocumentId: any | null;
|
|
1396
|
+
selectedDocumentName: any | null;
|
|
1373
1397
|
isEditing: i0.WritableSignal<boolean>;
|
|
1374
1398
|
searchControl: FormControl<string | null>;
|
|
1375
1399
|
documentTypes: any[];
|
|
@@ -1386,7 +1410,6 @@ declare class CertificationComponent {
|
|
|
1386
1410
|
model: any;
|
|
1387
1411
|
fileName: any;
|
|
1388
1412
|
preferredStartDate: string | null;
|
|
1389
|
-
states: any[];
|
|
1390
1413
|
selectedCountry: string;
|
|
1391
1414
|
selectedStates: string | null;
|
|
1392
1415
|
userName: any;
|
|
@@ -1395,7 +1418,7 @@ declare class CertificationComponent {
|
|
|
1395
1418
|
showpreview: i0.Signal<boolean>;
|
|
1396
1419
|
userdata: any;
|
|
1397
1420
|
maxDate: Date;
|
|
1398
|
-
constructor(userDocumentService: UserDocumentService, store: CredentialingStore, workStore: CertificationStore, tokenService: TokenService, postalCodeService: PostalCodeServices, fb: FormBuilder, fileService: FileService, http: HttpClient);
|
|
1421
|
+
constructor(userDocumentService: UserDocumentService, userService: UserService, store: CredentialingStore, workStore: CertificationStore, tokenService: TokenService, postalCodeService: PostalCodeServices, fb: FormBuilder, fileService: FileService, http: HttpClient);
|
|
1399
1422
|
ngOnInit(): Promise<void>;
|
|
1400
1423
|
loadDocumentTypes(searchText?: string): void;
|
|
1401
1424
|
loadDocumentTypesDefault(searchText?: string): void;
|
|
@@ -1404,15 +1427,17 @@ declare class CertificationComponent {
|
|
|
1404
1427
|
getstates(): void;
|
|
1405
1428
|
onPreferredDateChange(date: Date): void;
|
|
1406
1429
|
saveFile(): void;
|
|
1430
|
+
edit(index: number): void;
|
|
1431
|
+
selectFile(event: any): void;
|
|
1432
|
+
removeFile(): void;
|
|
1433
|
+
hasChanges(): boolean;
|
|
1407
1434
|
private saveAWSFile;
|
|
1408
1435
|
saveAndContinue(): void;
|
|
1409
1436
|
add(): void;
|
|
1410
|
-
edit(index: number): void;
|
|
1411
|
-
selectFile(event: any): void;
|
|
1412
1437
|
back(): void;
|
|
1413
1438
|
nextStep(): void;
|
|
1414
1439
|
static ɵfac: i0.ɵɵFactoryDeclaration<CertificationComponent, never>;
|
|
1415
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CertificationComponent, "app-certification", never, { "providerId": { "alias": "providerId"; "required": false; }; "providerName": { "alias": "providerName"; "required": false; }; "cloudfrontUrl": { "alias": "cloudfrontUrl"; "required": false; }; }, {}, never, never, false, never>;
|
|
1440
|
+
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>;
|
|
1416
1441
|
}
|
|
1417
1442
|
|
|
1418
1443
|
interface SkillSetModel extends MasterModel {
|
|
@@ -1505,6 +1530,7 @@ declare class UtilsService {
|
|
|
1505
1530
|
declare class SkillsComponent {
|
|
1506
1531
|
private skillSetService;
|
|
1507
1532
|
private userSkillSetService;
|
|
1533
|
+
private userService;
|
|
1508
1534
|
private formBuilder;
|
|
1509
1535
|
private utils;
|
|
1510
1536
|
private roleContextService;
|
|
@@ -1514,6 +1540,7 @@ declare class SkillsComponent {
|
|
|
1514
1540
|
providerId: string;
|
|
1515
1541
|
providerName: string;
|
|
1516
1542
|
userdata: any;
|
|
1543
|
+
user: any;
|
|
1517
1544
|
tab: FormArray;
|
|
1518
1545
|
showLoading: boolean;
|
|
1519
1546
|
showLoader: boolean;
|
|
@@ -1548,7 +1575,7 @@ declare class SkillsComponent {
|
|
|
1548
1575
|
isEditMode: boolean;
|
|
1549
1576
|
emailId: any;
|
|
1550
1577
|
userId: any;
|
|
1551
|
-
constructor(skillSetService: SkillSetService, userSkillSetService: UserSkillSetService, formBuilder: UntypedFormBuilder, utils: UtilsService, roleContextService: RoleContextService, store: CredentialingStore, tokenService: TokenService);
|
|
1578
|
+
constructor(skillSetService: SkillSetService, userSkillSetService: UserSkillSetService, userService: UserService, formBuilder: UntypedFormBuilder, utils: UtilsService, roleContextService: RoleContextService, store: CredentialingStore, tokenService: TokenService);
|
|
1552
1579
|
private ctxProviderName;
|
|
1553
1580
|
private ctxProviderId;
|
|
1554
1581
|
private markTabPristine;
|
|
@@ -1621,6 +1648,7 @@ declare class LicenseStore {
|
|
|
1621
1648
|
|
|
1622
1649
|
declare class LicensesComponent {
|
|
1623
1650
|
userDocumentService: UserDocumentService;
|
|
1651
|
+
private userService;
|
|
1624
1652
|
store: CredentialingStore;
|
|
1625
1653
|
workStore: LicenseStore;
|
|
1626
1654
|
private tokenService;
|
|
@@ -1631,11 +1659,15 @@ declare class LicensesComponent {
|
|
|
1631
1659
|
providerId: string;
|
|
1632
1660
|
providerName: string;
|
|
1633
1661
|
cloudfrontUrl: string;
|
|
1662
|
+
originalFormValue: any;
|
|
1663
|
+
fileChanged: boolean;
|
|
1664
|
+
user: any;
|
|
1665
|
+
states: any[];
|
|
1634
1666
|
private readonly uploadToAws;
|
|
1635
1667
|
editingIndex: number;
|
|
1636
1668
|
selectedDocumentTypeId: string | null;
|
|
1637
1669
|
selectedDocumentId: any | null;
|
|
1638
|
-
selectedDocumentName:
|
|
1670
|
+
selectedDocumentName: any | null;
|
|
1639
1671
|
isEditing: i0.WritableSignal<boolean>;
|
|
1640
1672
|
searchControl: FormControl<string | null>;
|
|
1641
1673
|
documentTypes: any[];
|
|
@@ -1650,7 +1682,6 @@ declare class LicensesComponent {
|
|
|
1650
1682
|
model: any;
|
|
1651
1683
|
fileName: any;
|
|
1652
1684
|
preferredStartDate: string | null;
|
|
1653
|
-
states: any[];
|
|
1654
1685
|
selectedCountry: string;
|
|
1655
1686
|
selectedStates: string | null;
|
|
1656
1687
|
userName: any;
|
|
@@ -1659,7 +1690,7 @@ declare class LicensesComponent {
|
|
|
1659
1690
|
showpreview: i0.Signal<boolean>;
|
|
1660
1691
|
userdata: any;
|
|
1661
1692
|
maxDate: Date;
|
|
1662
|
-
constructor(userDocumentService: UserDocumentService, store: CredentialingStore, workStore: LicenseStore, tokenService: TokenService, postalCodeService: PostalCodeServices, fb: FormBuilder, fileService: FileService, http: HttpClient);
|
|
1693
|
+
constructor(userDocumentService: UserDocumentService, userService: UserService, store: CredentialingStore, workStore: LicenseStore, tokenService: TokenService, postalCodeService: PostalCodeServices, fb: FormBuilder, fileService: FileService, http: HttpClient);
|
|
1663
1694
|
ngOnInit(): Promise<void>;
|
|
1664
1695
|
loadDocumentTypes(searchText?: string): void;
|
|
1665
1696
|
loadDocumentTypesDefault(searchText?: string): void;
|
|
@@ -1667,16 +1698,18 @@ declare class LicensesComponent {
|
|
|
1667
1698
|
getstates(): void;
|
|
1668
1699
|
onPreferredDateChange(date: Date): void;
|
|
1669
1700
|
saveFile(): void;
|
|
1701
|
+
edit(index: number): void;
|
|
1702
|
+
selectFile(event: any): void;
|
|
1703
|
+
removeFile(): void;
|
|
1704
|
+
hasChanges(): boolean;
|
|
1670
1705
|
private saveAWSFile;
|
|
1671
1706
|
saveAndContinue(): void;
|
|
1672
1707
|
add(): void;
|
|
1673
|
-
edit(index: number): void;
|
|
1674
|
-
selectFile(event: any): void;
|
|
1675
1708
|
isChecked(id: string): boolean;
|
|
1676
1709
|
back(): void;
|
|
1677
1710
|
nextStep(): void;
|
|
1678
1711
|
static ɵfac: i0.ɵɵFactoryDeclaration<LicensesComponent, never>;
|
|
1679
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LicensesComponent, "app-licenses", never, { "providerId": { "alias": "providerId"; "required": false; }; "providerName": { "alias": "providerName"; "required": false; }; "cloudfrontUrl": { "alias": "cloudfrontUrl"; "required": false; }; }, {}, never, never, false, never>;
|
|
1712
|
+
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>;
|
|
1680
1713
|
}
|
|
1681
1714
|
|
|
1682
1715
|
interface ToolModel extends MasterModel {
|
|
@@ -1734,6 +1767,7 @@ declare class ToolsComponent {
|
|
|
1734
1767
|
private toolService;
|
|
1735
1768
|
private userToolService;
|
|
1736
1769
|
private formBuilder;
|
|
1770
|
+
private userService;
|
|
1737
1771
|
private utils;
|
|
1738
1772
|
store: CredentialingStore;
|
|
1739
1773
|
private tokenService;
|
|
@@ -1742,6 +1776,7 @@ declare class ToolsComponent {
|
|
|
1742
1776
|
roleData: any;
|
|
1743
1777
|
providerId: string;
|
|
1744
1778
|
providerName: string;
|
|
1779
|
+
user: any;
|
|
1745
1780
|
form: UntypedFormGroup;
|
|
1746
1781
|
submitted: boolean;
|
|
1747
1782
|
apiSubmit: boolean;
|
|
@@ -1778,7 +1813,7 @@ declare class ToolsComponent {
|
|
|
1778
1813
|
userToolsPreview: any[];
|
|
1779
1814
|
userDetails: any;
|
|
1780
1815
|
userdata: any;
|
|
1781
|
-
constructor(toolService: ToolService, userToolService: UserToolService, formBuilder: UntypedFormBuilder, utils: UtilsService, store: CredentialingStore, tokenService: TokenService, userDetailService: UserDetailService, libConfig: LibraryConfig);
|
|
1816
|
+
constructor(toolService: ToolService, userToolService: UserToolService, formBuilder: UntypedFormBuilder, userService: UserService, utils: UtilsService, store: CredentialingStore, tokenService: TokenService, userDetailService: UserDetailService, libConfig: LibraryConfig);
|
|
1782
1817
|
ngOnInit(): Promise<void>;
|
|
1783
1818
|
private ctxProviderName;
|
|
1784
1819
|
private ctxProviderId;
|
|
@@ -1875,6 +1910,7 @@ interface UserFormControls {
|
|
|
1875
1910
|
}
|
|
1876
1911
|
declare class RoleSelectComponent implements OnInit {
|
|
1877
1912
|
store: CredentialingStore;
|
|
1913
|
+
private userService;
|
|
1878
1914
|
userDocumentService: UserDocumentService;
|
|
1879
1915
|
router: Router;
|
|
1880
1916
|
private industrydata;
|
|
@@ -1931,7 +1967,7 @@ declare class RoleSelectComponent implements OnInit {
|
|
|
1931
1967
|
selectedJobs: i0.WritableSignal<string[]>;
|
|
1932
1968
|
selectedJobValues: number[];
|
|
1933
1969
|
provider: ProviderModel;
|
|
1934
|
-
constructor(store: CredentialingStore, userDocumentService: UserDocumentService, router: Router, industrydata: IndustryService, userDetailService: UserDetailService, fileService: FileService, provideruser: ProvidersService, tokenService: TokenService, fb: FormBuilder);
|
|
1970
|
+
constructor(store: CredentialingStore, userService: UserService, userDocumentService: UserDocumentService, router: Router, industrydata: IndustryService, userDetailService: UserDetailService, fileService: FileService, provideruser: ProvidersService, tokenService: TokenService, fb: FormBuilder);
|
|
1935
1971
|
cloudfrontUrl: string;
|
|
1936
1972
|
providerId: string;
|
|
1937
1973
|
providerName: string;
|
|
@@ -2021,6 +2057,7 @@ declare class Step2CoverageComponent {
|
|
|
2021
2057
|
private tokenService;
|
|
2022
2058
|
providerId: string;
|
|
2023
2059
|
providerName: string;
|
|
2060
|
+
states: any;
|
|
2024
2061
|
city: i0.WritableSignal<string>;
|
|
2025
2062
|
state: i0.WritableSignal<string>;
|
|
2026
2063
|
showMap: boolean;
|
|
@@ -2030,7 +2067,6 @@ declare class Step2CoverageComponent {
|
|
|
2030
2067
|
coverages: any[];
|
|
2031
2068
|
usCoordinates: Coordinate;
|
|
2032
2069
|
filteredLocations: CoordinateLocationDetail[];
|
|
2033
|
-
states: StateModel[];
|
|
2034
2070
|
showCoverage: boolean;
|
|
2035
2071
|
showLoading: boolean;
|
|
2036
2072
|
userCoverageArea: {
|
|
@@ -2052,7 +2088,6 @@ declare class Step2CoverageComponent {
|
|
|
2052
2088
|
private initialCoverageSnapshot;
|
|
2053
2089
|
constructor(store: CredentialingStore, usMapService: UsMapLatestService, postalCodeService: PostalCodeServices, userCoverageAreaService: UserCoverageAreaService, alertService: AlertService, tokenService: TokenService);
|
|
2054
2090
|
ngOnInit(): Promise<void>;
|
|
2055
|
-
getData(): void;
|
|
2056
2091
|
toggleMap(): void;
|
|
2057
2092
|
setSelectedStates(values: StateModel[]): void;
|
|
2058
2093
|
onChangedCounty(event: any, stateCode: string, countyName: string, lat?: number, lng?: number): void;
|
|
@@ -2069,11 +2104,12 @@ declare class Step2CoverageComponent {
|
|
|
2069
2104
|
buildMapLocations(data: any[]): void;
|
|
2070
2105
|
private buildCoveragePayload;
|
|
2071
2106
|
static ɵfac: i0.ɵɵFactoryDeclaration<Step2CoverageComponent, never>;
|
|
2072
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<Step2CoverageComponent, "app-coverage", never, { "providerId": { "alias": "providerId"; "required": false; }; "providerName": { "alias": "providerName"; "required": false; }; }, {}, never, never, false, never>;
|
|
2107
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<Step2CoverageComponent, "app-coverage", never, { "providerId": { "alias": "providerId"; "required": false; }; "providerName": { "alias": "providerName"; "required": false; }; "states": { "alias": "states"; "required": false; }; }, {}, never, never, false, never>;
|
|
2073
2108
|
}
|
|
2074
2109
|
|
|
2075
2110
|
declare class WorkexperienceComponent implements OnInit {
|
|
2076
2111
|
userExperienceService: UserExperienceService;
|
|
2112
|
+
private userService;
|
|
2077
2113
|
workStore: WorkExperienceStore;
|
|
2078
2114
|
store: CredentialingStore;
|
|
2079
2115
|
private countryService;
|
|
@@ -2082,6 +2118,9 @@ declare class WorkexperienceComponent implements OnInit {
|
|
|
2082
2118
|
private fb;
|
|
2083
2119
|
private fileService;
|
|
2084
2120
|
private http;
|
|
2121
|
+
originalFormValue: any;
|
|
2122
|
+
fileChanged: boolean;
|
|
2123
|
+
user: any;
|
|
2085
2124
|
providerId: string;
|
|
2086
2125
|
maxDate: Date;
|
|
2087
2126
|
providerName: string;
|
|
@@ -2108,18 +2147,20 @@ declare class WorkexperienceComponent implements OnInit {
|
|
|
2108
2147
|
proposalLoader: boolean;
|
|
2109
2148
|
showpreview: i0.Signal<boolean>;
|
|
2110
2149
|
userdata: any;
|
|
2111
|
-
constructor(userExperienceService: UserExperienceService, workStore: WorkExperienceStore, store: CredentialingStore, countryService: CountryServices, postalCodeService: PostalCodeServices, tokenService: TokenService, fb: FormBuilder, fileService: FileService, http: HttpClient);
|
|
2150
|
+
constructor(userExperienceService: UserExperienceService, userService: UserService, workStore: WorkExperienceStore, store: CredentialingStore, countryService: CountryServices, postalCodeService: PostalCodeServices, tokenService: TokenService, fb: FormBuilder, fileService: FileService, http: HttpClient);
|
|
2112
2151
|
ngOnInit(): Promise<void>;
|
|
2113
2152
|
getcountry(): void;
|
|
2114
2153
|
getstates(countryCode: any): void;
|
|
2115
2154
|
onCountryChange(countryCode: string): void;
|
|
2116
2155
|
onPreferredDateChange(date: Date): void;
|
|
2117
2156
|
selectFile(event: any): void;
|
|
2157
|
+
hasChanges(): boolean;
|
|
2118
2158
|
saveFile(): void;
|
|
2119
2159
|
private saveAWSFile;
|
|
2160
|
+
removeFile(): void;
|
|
2161
|
+
edit(index: number): void;
|
|
2120
2162
|
saveAndContinue(): void;
|
|
2121
2163
|
add(): void;
|
|
2122
|
-
edit(index: number): void;
|
|
2123
2164
|
back(): void;
|
|
2124
2165
|
nextStep(): void;
|
|
2125
2166
|
static ɵfac: i0.ɵɵFactoryDeclaration<WorkexperienceComponent, never>;
|