@idsoftsource/initial-process 1.6.7 → 1.7.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
|
@@ -3032,8 +3032,14 @@ declare class PreviewComponent {
|
|
|
3032
3032
|
dateInputFormat: string;
|
|
3033
3033
|
containerClass: string;
|
|
3034
3034
|
};
|
|
3035
|
+
futureMaxDate: Date;
|
|
3035
3036
|
maxDate: Date;
|
|
3036
3037
|
companyForm: NgForm;
|
|
3038
|
+
options: {
|
|
3039
|
+
componentRestrictions: {
|
|
3040
|
+
country: string[];
|
|
3041
|
+
};
|
|
3042
|
+
};
|
|
3037
3043
|
isResume: boolean;
|
|
3038
3044
|
resumeModel: ResumeProfile | null;
|
|
3039
3045
|
providerName: string;
|
|
@@ -3169,6 +3175,7 @@ declare class PreviewComponent {
|
|
|
3169
3175
|
confirmAllCertifications(): Promise<void>;
|
|
3170
3176
|
confirmAllLicenses(): Promise<void>;
|
|
3171
3177
|
private buildSectionQuery;
|
|
3178
|
+
private buildSectionForUserQuery;
|
|
3172
3179
|
private buildUserName;
|
|
3173
3180
|
private getCreatedId;
|
|
3174
3181
|
private getEntityId;
|
|
@@ -3300,7 +3307,37 @@ declare class PreviewComponent {
|
|
|
3300
3307
|
previewSelectedFile(item: any): void;
|
|
3301
3308
|
mapBasicDetailsToUserDetail(data: any): {
|
|
3302
3309
|
providerName: string;
|
|
3303
|
-
|
|
3310
|
+
targetProviderId: string;
|
|
3311
|
+
UserRoleId: any;
|
|
3312
|
+
userDetail: {
|
|
3313
|
+
userBio: any;
|
|
3314
|
+
firstName: any;
|
|
3315
|
+
lastName: any;
|
|
3316
|
+
email: any;
|
|
3317
|
+
address1: any;
|
|
3318
|
+
address2: string;
|
|
3319
|
+
city: any;
|
|
3320
|
+
state: any;
|
|
3321
|
+
zipcode: any;
|
|
3322
|
+
county: string;
|
|
3323
|
+
country: any;
|
|
3324
|
+
latitude: null;
|
|
3325
|
+
longitude: null;
|
|
3326
|
+
yearsActive: number;
|
|
3327
|
+
isInitialSetupCompleted: boolean;
|
|
3328
|
+
id: any;
|
|
3329
|
+
phoneNumber: any;
|
|
3330
|
+
yearsOfExperince: any;
|
|
3331
|
+
userJobTitle: any[];
|
|
3332
|
+
timeZone: string;
|
|
3333
|
+
datePattern: string;
|
|
3334
|
+
dateTimePattern: string;
|
|
3335
|
+
timePattern: string;
|
|
3336
|
+
};
|
|
3337
|
+
};
|
|
3338
|
+
mapCompanyDetail(data: any): {
|
|
3339
|
+
providerName: string;
|
|
3340
|
+
targetProviderId: string | null;
|
|
3304
3341
|
UserRoleId: any;
|
|
3305
3342
|
userDetail: {
|
|
3306
3343
|
userBio: any;
|
|
@@ -3330,7 +3367,7 @@ declare class PreviewComponent {
|
|
|
3330
3367
|
};
|
|
3331
3368
|
mapBasicDetailsDashboard(data: any): {
|
|
3332
3369
|
providerName: string;
|
|
3333
|
-
|
|
3370
|
+
targetProviderId: string;
|
|
3334
3371
|
UserRoleId: any;
|
|
3335
3372
|
userDetail: {
|
|
3336
3373
|
userBio: any;
|
|
@@ -3405,6 +3442,11 @@ declare class PreviewComponent {
|
|
|
3405
3442
|
saveProvider(): Promise<void>;
|
|
3406
3443
|
validateCompanyDetails(): boolean;
|
|
3407
3444
|
saveCompanyDetails(): Promise<void>;
|
|
3445
|
+
AddressChangeCompany(address: any): void;
|
|
3446
|
+
phoneMask(event: Event, type: 'profile' | 'company'): void;
|
|
3447
|
+
formatPhone(phone: string): string;
|
|
3448
|
+
AddressChangeUser(address: any): void;
|
|
3449
|
+
allowOnlyNumbers(event: KeyboardEvent): void;
|
|
3408
3450
|
static ɵfac: i0.ɵɵFactoryDeclaration<PreviewComponent, never>;
|
|
3409
3451
|
static ɵcmp: i0.ɵɵComponentDeclaration<PreviewComponent, "app-preview", never, { "providerId": { "alias": "providerId"; "required": false; }; "isResume": { "alias": "isResume"; "required": false; }; "resumeModel": { "alias": "resumeModel"; "required": false; }; "providerName": { "alias": "providerName"; "required": false; }; "roleData": { "alias": "roleData"; "required": false; }; "cloudfrontUrl": { "alias": "cloudfrontUrl"; "required": false; }; }, { "backToParent": "backToParent"; }, never, never, true, never>;
|
|
3410
3452
|
}
|