@idsoftsource/initial-process 0.0.4 → 0.0.7
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
|
@@ -167,6 +167,7 @@ interface PrivacyAndTerms {
|
|
|
167
167
|
country?: string | null;
|
|
168
168
|
email?: string | null;
|
|
169
169
|
websiteurl?: string | null;
|
|
170
|
+
currentYear?: any | null;
|
|
170
171
|
}
|
|
171
172
|
|
|
172
173
|
interface GridResult<TReadModel> {
|
|
@@ -204,6 +205,9 @@ interface UserDetailReadModel extends MasterModel {
|
|
|
204
205
|
email: string;
|
|
205
206
|
phoneNumber: string;
|
|
206
207
|
employeeType?: any;
|
|
208
|
+
yearsOfExperince?: any;
|
|
209
|
+
userJobTitle?: any;
|
|
210
|
+
userIndustryNames?: any;
|
|
207
211
|
id?: any;
|
|
208
212
|
officeNumber: string;
|
|
209
213
|
userBio: string;
|
|
@@ -279,6 +283,7 @@ declare class UserDetailService {
|
|
|
279
283
|
private http;
|
|
280
284
|
private readonly baseUrl;
|
|
281
285
|
updateMyProfile(model: UserUpdateModel): Observable<Result>;
|
|
286
|
+
AddUserIndustry(payload: any[]): Observable<Result>;
|
|
282
287
|
initialSetUpCreateUserDetail(model: any): Observable<Result>;
|
|
283
288
|
getUserAccounts(query: any): Observable<GridResult<UserAccountReadModel>>;
|
|
284
289
|
resetPassword(model: any): Observable<Result>;
|
|
@@ -413,6 +418,9 @@ interface UserDetailModel extends MasterModel {
|
|
|
413
418
|
address2?: any;
|
|
414
419
|
city?: any;
|
|
415
420
|
state?: any;
|
|
421
|
+
yearsOfExperince?: any;
|
|
422
|
+
industries?: any;
|
|
423
|
+
userJobTitle?: any;
|
|
416
424
|
zipcode?: any;
|
|
417
425
|
county?: any;
|
|
418
426
|
subDivision?: string;
|
|
@@ -626,6 +634,7 @@ declare class ProviderContractorSubCategoryService {
|
|
|
626
634
|
private http;
|
|
627
635
|
private buildParams;
|
|
628
636
|
getContractorSubCategories(query: any): Observable<GridResult<ProviderContractorSubCategoryReadModel>>;
|
|
637
|
+
get(query: any): Observable<GridResult<any>>;
|
|
629
638
|
getUserAccounts(query: any): Observable<GridResult<UserAccountReadModel>>;
|
|
630
639
|
bulkDelete(ids: any[]): Observable<Result>;
|
|
631
640
|
bulkInsert(models: any[]): Observable<Result>;
|
|
@@ -649,6 +658,8 @@ declare enum AppType {
|
|
|
649
658
|
|
|
650
659
|
interface LibraryConfig {
|
|
651
660
|
appType: AppType;
|
|
661
|
+
dashboardUrl: any;
|
|
662
|
+
cloudfrontUrl: any;
|
|
652
663
|
}
|
|
653
664
|
declare const LIBRARY_CONFIG: InjectionToken<LibraryConfig>;
|
|
654
665
|
|
|
@@ -670,6 +681,7 @@ declare class InitialProcessComponent implements OnInit {
|
|
|
670
681
|
private tokenService;
|
|
671
682
|
private roleContextService;
|
|
672
683
|
private libConfig;
|
|
684
|
+
isAgreeEnabled: boolean;
|
|
673
685
|
private readonly uploadToAws;
|
|
674
686
|
selectedRoleValue: string | null;
|
|
675
687
|
selectedRole: any;
|
|
@@ -852,6 +864,7 @@ declare class InitialProcessComponent implements OnInit {
|
|
|
852
864
|
saveFinal(): void;
|
|
853
865
|
dashboard(): void;
|
|
854
866
|
changeAddressUser(): void;
|
|
867
|
+
onTermsScroll(event: Event): void;
|
|
855
868
|
openModal(template: TemplateRef<any>, title: string, event: any): void;
|
|
856
869
|
agree(title: string): void;
|
|
857
870
|
decline(title: string): void;
|
|
@@ -1045,12 +1058,14 @@ declare class CredentialingStore {
|
|
|
1045
1058
|
|
|
1046
1059
|
declare class CredentialingComponent implements OnInit {
|
|
1047
1060
|
store: CredentialingStore;
|
|
1061
|
+
private libConfig;
|
|
1048
1062
|
private viewport;
|
|
1049
1063
|
animation: string | undefined;
|
|
1064
|
+
cloudfrontUrl: any;
|
|
1050
1065
|
data: any;
|
|
1051
1066
|
back: EventEmitter<void>;
|
|
1052
1067
|
onActivate(outlet: RouterOutlet): void;
|
|
1053
|
-
constructor(store: CredentialingStore, viewport: ViewportScroller);
|
|
1068
|
+
constructor(store: CredentialingStore, libConfig: LibraryConfig, viewport: ViewportScroller);
|
|
1054
1069
|
ngOnInit(): void;
|
|
1055
1070
|
goBackToInitialProcess(): void;
|
|
1056
1071
|
static ɵfac: i0.ɵɵFactoryDeclaration<CredentialingComponent, never>;
|
|
@@ -1699,6 +1714,7 @@ declare class ToolsComponent {
|
|
|
1699
1714
|
store: CredentialingStore;
|
|
1700
1715
|
private tokenService;
|
|
1701
1716
|
private userDetailService;
|
|
1717
|
+
private libConfig;
|
|
1702
1718
|
roleData: any;
|
|
1703
1719
|
form: UntypedFormGroup;
|
|
1704
1720
|
submitted: boolean;
|
|
@@ -1736,7 +1752,7 @@ declare class ToolsComponent {
|
|
|
1736
1752
|
userToolsPreview: any[];
|
|
1737
1753
|
userDetails: any;
|
|
1738
1754
|
userdata: any;
|
|
1739
|
-
constructor(toolService: ToolService, userToolService: UserToolService, formBuilder: UntypedFormBuilder, utils: UtilsService, store: CredentialingStore, tokenService: TokenService, userDetailService: UserDetailService);
|
|
1755
|
+
constructor(toolService: ToolService, userToolService: UserToolService, formBuilder: UntypedFormBuilder, utils: UtilsService, store: CredentialingStore, tokenService: TokenService, userDetailService: UserDetailService, libConfig: LibraryConfig);
|
|
1740
1756
|
ngOnInit(): Promise<void>;
|
|
1741
1757
|
private ctxProviderName;
|
|
1742
1758
|
private ctxProviderId;
|
|
@@ -1784,6 +1800,15 @@ declare class ToolsComponent {
|
|
|
1784
1800
|
static ɵcmp: i0.ɵɵComponentDeclaration<ToolsComponent, "app-tools", never, { "roleData": { "alias": "roleData"; "required": false; }; }, {}, never, never, false, never>;
|
|
1785
1801
|
}
|
|
1786
1802
|
|
|
1803
|
+
declare class IndustryService {
|
|
1804
|
+
private http;
|
|
1805
|
+
private readonly baseUrl;
|
|
1806
|
+
getUserIndustry(query: any): Observable<GridResult<any>>;
|
|
1807
|
+
private buildParams;
|
|
1808
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IndustryService, never>;
|
|
1809
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<IndustryService>;
|
|
1810
|
+
}
|
|
1811
|
+
|
|
1787
1812
|
interface UserFormControls {
|
|
1788
1813
|
firstName: FormControl<string | null>;
|
|
1789
1814
|
lastName: FormControl<string | null>;
|
|
@@ -1798,14 +1823,27 @@ interface UserFormControls {
|
|
|
1798
1823
|
latitude: FormControl<any | null>;
|
|
1799
1824
|
longitude: FormControl<any | null>;
|
|
1800
1825
|
phoneNumber: FormControl<string | null>;
|
|
1826
|
+
userJobTitle: FormControl<string | null>;
|
|
1827
|
+
yearsOfExperince: FormControl<any | null>;
|
|
1828
|
+
industries: FormControl<any | null>;
|
|
1801
1829
|
}
|
|
1802
|
-
declare class
|
|
1830
|
+
declare class RoleSelectComponent implements OnInit {
|
|
1803
1831
|
store: CredentialingStore;
|
|
1804
1832
|
router: Router;
|
|
1833
|
+
private industrydata;
|
|
1805
1834
|
private userDetailService;
|
|
1806
1835
|
private fileService;
|
|
1807
1836
|
private tokenService;
|
|
1808
1837
|
private fb;
|
|
1838
|
+
previewUrl: string | null;
|
|
1839
|
+
selectedTab: any;
|
|
1840
|
+
industries: any[];
|
|
1841
|
+
selectedIndustries: any[];
|
|
1842
|
+
isIndustriesLoading: boolean;
|
|
1843
|
+
expYears: LookupItem[];
|
|
1844
|
+
jobTitles: LookupItem1<number>[];
|
|
1845
|
+
selectedIndustryIds: string[];
|
|
1846
|
+
selectedIndustryObjects: any[];
|
|
1809
1847
|
private readonly uploadToAws;
|
|
1810
1848
|
backToParent: EventEmitter<void>;
|
|
1811
1849
|
roleData: any;
|
|
@@ -1837,10 +1875,16 @@ declare class RoleSelectionComponent implements OnInit {
|
|
|
1837
1875
|
selectedJobs: i0.WritableSignal<string[]>;
|
|
1838
1876
|
selectedJobValues: number[];
|
|
1839
1877
|
provider: ProviderModel;
|
|
1840
|
-
constructor(store: CredentialingStore, router: Router, userDetailService: UserDetailService, fileService: FileService, tokenService: TokenService, fb: FormBuilder);
|
|
1878
|
+
constructor(store: CredentialingStore, router: Router, industrydata: IndustryService, userDetailService: UserDetailService, fileService: FileService, tokenService: TokenService, fb: FormBuilder);
|
|
1879
|
+
cloudfrontUrl: string;
|
|
1841
1880
|
ngOnInit(): Promise<void>;
|
|
1881
|
+
getYears(): void;
|
|
1882
|
+
getIndustries(): void;
|
|
1883
|
+
saveUserIndustries(): void;
|
|
1884
|
+
setSelectedIndustries(ids: string[]): void;
|
|
1842
1885
|
onBackClick(): void;
|
|
1843
1886
|
getUserDetail(): void;
|
|
1887
|
+
onYearChange(group: any): void;
|
|
1844
1888
|
hasChanges(): boolean;
|
|
1845
1889
|
toggleJob(job: any): void;
|
|
1846
1890
|
isSelected(job: any): boolean;
|
|
@@ -1860,8 +1904,8 @@ declare class RoleSelectionComponent implements OnInit {
|
|
|
1860
1904
|
removeRole(role: string): void;
|
|
1861
1905
|
phoneMask(event: Event): void;
|
|
1862
1906
|
AddressChangeUser(address: any): void;
|
|
1863
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
1864
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
1907
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RoleSelectComponent, never>;
|
|
1908
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RoleSelectComponent, "app-role-select", never, { "roleData": { "alias": "roleData"; "required": false; }; "cloudfrontUrl": { "alias": "cloudfrontUrl"; "required": false; }; }, { "backToParent": "backToParent"; }, never, never, false, never>;
|
|
1865
1909
|
}
|
|
1866
1910
|
|
|
1867
1911
|
interface CoordinateLocation {
|
|
@@ -2548,7 +2592,7 @@ declare class CommonPipesModule {
|
|
|
2548
2592
|
|
|
2549
2593
|
declare class InitialProcessModule {
|
|
2550
2594
|
static ɵfac: i0.ɵɵFactoryDeclaration<InitialProcessModule, never>;
|
|
2551
|
-
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
|
|
2595
|
+
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 i16.RouterModule, typeof UsMapModule, typeof i18.NgSelectModule, typeof i19.BsDatepickerModule, typeof Ng2LoadingSpinnerModule, typeof LoaderModule, typeof CustomPipesModule, typeof NgxStarsModule, typeof i24.TooltipModule, typeof i25.TabsModule, typeof i26.AccordionModule, typeof GooglePlaceModule, typeof i28.GoogleMapsModule, typeof TextMaskModule, typeof SignaturePadModule, typeof CommonPipesModule], [typeof InitialProcessComponent]>;
|
|
2552
2596
|
static ɵinj: i0.ɵɵInjectorDeclaration<InitialProcessModule>;
|
|
2553
2597
|
}
|
|
2554
2598
|
|