@idsoftsource/initial-process 1.4.0 → 1.4.2
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
|
@@ -2,7 +2,7 @@ import * as i0 from '@angular/core';
|
|
|
2
2
|
import { InjectionToken, OnInit, ElementRef, EventEmitter, TemplateRef, Injector, OnChanges, AfterViewInit, ChangeDetectorRef, SimpleChanges, ViewContainerRef, OnDestroy, ComponentFactoryResolver, Renderer2, ModuleWithProviders, PipeTransform, NgZone } from '@angular/core';
|
|
3
3
|
import * as _angular_forms from '@angular/forms';
|
|
4
4
|
import { FormGroup, FormBuilder, FormControl, FormArray, UntypedFormGroup, UntypedFormBuilder, ControlValueAccessor, AbstractControl } from '@angular/forms';
|
|
5
|
-
import * as
|
|
5
|
+
import * as i17 from '@angular/router';
|
|
6
6
|
import { Router, RouterOutlet } from '@angular/router';
|
|
7
7
|
import { Observable, Subscription } from 'rxjs';
|
|
8
8
|
import { BsModalRef, BsModalService } from 'ngx-bootstrap/modal';
|
|
@@ -11,12 +11,12 @@ import { AuthService } from '@auth0/auth0-angular';
|
|
|
11
11
|
import { HttpClient } from '@angular/common/http';
|
|
12
12
|
import * as i2 from '@angular/common';
|
|
13
13
|
import { ViewportScroller } from '@angular/common';
|
|
14
|
-
import * as
|
|
15
|
-
import * as
|
|
16
|
-
import * as
|
|
17
|
-
import * as
|
|
18
|
-
import * as
|
|
19
|
-
import * as
|
|
14
|
+
import * as i19 from '@ng-select/ng-select';
|
|
15
|
+
import * as i20 from 'ngx-bootstrap/datepicker';
|
|
16
|
+
import * as i25 from 'ngx-bootstrap/tooltip';
|
|
17
|
+
import * as i26 from 'ngx-bootstrap/tabs';
|
|
18
|
+
import * as i27 from 'ngx-bootstrap/accordion';
|
|
19
|
+
import * as i29 from '@angular/google-maps';
|
|
20
20
|
|
|
21
21
|
interface MasterModel {
|
|
22
22
|
}
|
|
@@ -1099,7 +1099,7 @@ interface Tool {
|
|
|
1099
1099
|
}
|
|
1100
1100
|
declare class CredentialingStore {
|
|
1101
1101
|
toolsList: i0.WritableSignal<Tool[]>;
|
|
1102
|
-
uploadOption: i0.WritableSignal<"
|
|
1102
|
+
uploadOption: i0.WritableSignal<"manual" | "upload" | null>;
|
|
1103
1103
|
certifications: i0.WritableSignal<Certification$2[]>;
|
|
1104
1104
|
licenses: i0.WritableSignal<License[]>;
|
|
1105
1105
|
stepView: i0.WritableSignal<"add" | "preview">;
|
|
@@ -2292,6 +2292,113 @@ declare class WorkexperienceComponent implements OnInit {
|
|
|
2292
2292
|
static ɵcmp: i0.ɵɵComponentDeclaration<WorkexperienceComponent, "app-workexperience", never, { "providerId": { "alias": "providerId"; "required": false; }; "providerName": { "alias": "providerName"; "required": false; }; "cloudfrontUrl": { "alias": "cloudfrontUrl"; "required": false; }; }, {}, never, never, false, never>;
|
|
2293
2293
|
}
|
|
2294
2294
|
|
|
2295
|
+
declare class ResumeDetailService {
|
|
2296
|
+
private httpClient;
|
|
2297
|
+
private readonly baseUrl;
|
|
2298
|
+
constructor(httpClient: HttpClient);
|
|
2299
|
+
uploadResume(model: any): Observable<any>;
|
|
2300
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ResumeDetailService, never>;
|
|
2301
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ResumeDetailService>;
|
|
2302
|
+
}
|
|
2303
|
+
|
|
2304
|
+
declare class FirstComponent implements OnInit {
|
|
2305
|
+
store: CredentialingStore;
|
|
2306
|
+
private tokenService;
|
|
2307
|
+
private resumedetail;
|
|
2308
|
+
private fileService;
|
|
2309
|
+
isUploading: boolean;
|
|
2310
|
+
resumeData: ResumeProfile | null;
|
|
2311
|
+
awsFileUpdate: UpdateAwsFileModelModel[];
|
|
2312
|
+
backToParent: EventEmitter<void>;
|
|
2313
|
+
userId: any;
|
|
2314
|
+
sample: {
|
|
2315
|
+
basicDetails: {
|
|
2316
|
+
firstName: string;
|
|
2317
|
+
lastName: string;
|
|
2318
|
+
email: string;
|
|
2319
|
+
phone: string;
|
|
2320
|
+
address: string;
|
|
2321
|
+
city: string;
|
|
2322
|
+
state: string;
|
|
2323
|
+
zipCode: string;
|
|
2324
|
+
country: string;
|
|
2325
|
+
jobTitle: string;
|
|
2326
|
+
yearsOfExperience: number;
|
|
2327
|
+
summary: string;
|
|
2328
|
+
};
|
|
2329
|
+
workExperience: {
|
|
2330
|
+
company: string;
|
|
2331
|
+
jobTitle: string;
|
|
2332
|
+
country: string;
|
|
2333
|
+
state: string;
|
|
2334
|
+
city: string;
|
|
2335
|
+
startDate: string;
|
|
2336
|
+
endDate: string;
|
|
2337
|
+
isCurrent: boolean;
|
|
2338
|
+
responsibilities: string[];
|
|
2339
|
+
}[];
|
|
2340
|
+
education: ({
|
|
2341
|
+
degree: string;
|
|
2342
|
+
degreeType: string;
|
|
2343
|
+
institution: string;
|
|
2344
|
+
country: string;
|
|
2345
|
+
state: string;
|
|
2346
|
+
city: string;
|
|
2347
|
+
startDate: string;
|
|
2348
|
+
endDate: string;
|
|
2349
|
+
achievements: string[];
|
|
2350
|
+
} | {
|
|
2351
|
+
degree: string;
|
|
2352
|
+
degreeType: string;
|
|
2353
|
+
institution: string;
|
|
2354
|
+
country: string;
|
|
2355
|
+
state: string;
|
|
2356
|
+
city: null;
|
|
2357
|
+
startDate: string;
|
|
2358
|
+
endDate: string;
|
|
2359
|
+
achievements: never[];
|
|
2360
|
+
})[];
|
|
2361
|
+
certifications: {
|
|
2362
|
+
name: string;
|
|
2363
|
+
issuingOrganization: null;
|
|
2364
|
+
state: null;
|
|
2365
|
+
issueDate: null;
|
|
2366
|
+
expiryDate: null;
|
|
2367
|
+
credentialId: null;
|
|
2368
|
+
}[];
|
|
2369
|
+
licenses: {
|
|
2370
|
+
name: string;
|
|
2371
|
+
issuingAuthority: null;
|
|
2372
|
+
licenseNumber: null;
|
|
2373
|
+
state: null;
|
|
2374
|
+
issueDate: null;
|
|
2375
|
+
expiryDate: null;
|
|
2376
|
+
}[];
|
|
2377
|
+
skills: string[];
|
|
2378
|
+
tools: string[];
|
|
2379
|
+
id: string;
|
|
2380
|
+
};
|
|
2381
|
+
fileData: any;
|
|
2382
|
+
resumeName: any;
|
|
2383
|
+
fileDataUser: any;
|
|
2384
|
+
model: any;
|
|
2385
|
+
nextStep: EventEmitter<void>;
|
|
2386
|
+
constructor(store: CredentialingStore, tokenService: TokenService, resumedetail: ResumeDetailService, fileService: FileService);
|
|
2387
|
+
ngOnInit(): Promise<void>;
|
|
2388
|
+
selectedRole: 'producer' | 'serviceProvider' | null;
|
|
2389
|
+
select(role: 'producer' | 'serviceProvider'): void;
|
|
2390
|
+
next(role: any): void;
|
|
2391
|
+
onFileSelected(event: any): void;
|
|
2392
|
+
openFile(fileInput: HTMLInputElement, event: Event): void;
|
|
2393
|
+
handleAutoNavigation(): void;
|
|
2394
|
+
uploadresume(): void;
|
|
2395
|
+
manual(): void;
|
|
2396
|
+
private saveAWSFile;
|
|
2397
|
+
onBackClick(): void;
|
|
2398
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FirstComponent, never>;
|
|
2399
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FirstComponent, "app-first", never, {}, { "backToParent": "backToParent"; "nextStep": "nextStep"; }, never, never, false, never>;
|
|
2400
|
+
}
|
|
2401
|
+
|
|
2295
2402
|
declare class UsMapComponent implements OnChanges, OnInit, AfterViewInit {
|
|
2296
2403
|
private cdr;
|
|
2297
2404
|
private usMapService;
|
|
@@ -2831,7 +2938,7 @@ declare class CommonPipesModule {
|
|
|
2831
2938
|
|
|
2832
2939
|
declare class InitialProcessModule {
|
|
2833
2940
|
static ɵfac: i0.ɵɵFactoryDeclaration<InitialProcessModule, never>;
|
|
2834
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<InitialProcessModule, [typeof InitialProcessComponent, typeof TermsConditionsComponent, typeof PrivacyPolicyComponent, typeof CredentialingComponent, typeof StepperComponent, typeof EducationComponent, typeof CertificationComponent, typeof SkillsComponent, typeof LicensesComponent, typeof ToolsComponent, typeof RoleSelectComponent, typeof Step2CoverageComponent, typeof WorkexperienceComponent], [typeof i2.CommonModule, typeof _angular_forms.FormsModule, typeof _angular_forms.ReactiveFormsModule, typeof
|
|
2941
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<InitialProcessModule, [typeof InitialProcessComponent, typeof TermsConditionsComponent, typeof PrivacyPolicyComponent, typeof CredentialingComponent, typeof StepperComponent, typeof EducationComponent, typeof CertificationComponent, typeof SkillsComponent, typeof LicensesComponent, typeof ToolsComponent, typeof RoleSelectComponent, typeof Step2CoverageComponent, typeof WorkexperienceComponent, typeof FirstComponent], [typeof i2.CommonModule, typeof _angular_forms.FormsModule, typeof _angular_forms.ReactiveFormsModule, typeof i17.RouterModule, typeof UsMapModule, typeof i19.NgSelectModule, typeof i20.BsDatepickerModule, typeof Ng2LoadingSpinnerModule, typeof LoaderModule, typeof CustomPipesModule, typeof NgxStarsModule, typeof i25.TooltipModule, typeof i26.TabsModule, typeof i27.AccordionModule, typeof GooglePlaceModule, typeof i29.GoogleMapsModule, typeof TextMaskModule, typeof SignaturePadModule, typeof CommonPipesModule], [typeof InitialProcessComponent]>;
|
|
2835
2942
|
static ɵinj: i0.ɵɵInjectorDeclaration<InitialProcessModule>;
|
|
2836
2943
|
}
|
|
2837
2944
|
|