@idsoftsource/initial-process 0.0.3 → 0.0.6

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
@@ -12,10 +12,11 @@ import { HttpClient } from '@angular/common/http';
12
12
  import * as i2 from '@angular/common';
13
13
  import { ViewportScroller } from '@angular/common';
14
14
  import * as i18 from '@ng-select/ng-select';
15
- import * as i23 from 'ngx-bootstrap/tooltip';
16
- import * as i24 from 'ngx-bootstrap/tabs';
17
- import * as i25 from 'ngx-bootstrap/accordion';
18
- import * as i27 from '@angular/google-maps';
15
+ import * as i19 from 'ngx-bootstrap/datepicker';
16
+ import * as i24 from 'ngx-bootstrap/tooltip';
17
+ import * as i25 from 'ngx-bootstrap/tabs';
18
+ import * as i26 from 'ngx-bootstrap/accordion';
19
+ import * as i28 from '@angular/google-maps';
19
20
 
20
21
  interface MasterModel {
21
22
  }
@@ -166,6 +167,7 @@ interface PrivacyAndTerms {
166
167
  country?: string | null;
167
168
  email?: string | null;
168
169
  websiteurl?: string | null;
170
+ currentYear?: any | null;
169
171
  }
170
172
 
171
173
  interface GridResult<TReadModel> {
@@ -203,6 +205,9 @@ interface UserDetailReadModel extends MasterModel {
203
205
  email: string;
204
206
  phoneNumber: string;
205
207
  employeeType?: any;
208
+ yearsOfExperince?: any;
209
+ userJobTitle?: any;
210
+ userIndustryNames?: any;
206
211
  id?: any;
207
212
  officeNumber: string;
208
213
  userBio: string;
@@ -278,6 +283,7 @@ declare class UserDetailService {
278
283
  private http;
279
284
  private readonly baseUrl;
280
285
  updateMyProfile(model: UserUpdateModel): Observable<Result>;
286
+ AddUserIndustry(payload: any[]): Observable<Result>;
281
287
  initialSetUpCreateUserDetail(model: any): Observable<Result>;
282
288
  getUserAccounts(query: any): Observable<GridResult<UserAccountReadModel>>;
283
289
  resetPassword(model: any): Observable<Result>;
@@ -412,6 +418,9 @@ interface UserDetailModel extends MasterModel {
412
418
  address2?: any;
413
419
  city?: any;
414
420
  state?: any;
421
+ yearsOfExperince?: any;
422
+ industries?: any;
423
+ userJobTitle?: any;
415
424
  zipcode?: any;
416
425
  county?: any;
417
426
  subDivision?: string;
@@ -625,6 +634,7 @@ declare class ProviderContractorSubCategoryService {
625
634
  private http;
626
635
  private buildParams;
627
636
  getContractorSubCategories(query: any): Observable<GridResult<ProviderContractorSubCategoryReadModel>>;
637
+ get(query: any): Observable<GridResult<any>>;
628
638
  getUserAccounts(query: any): Observable<GridResult<UserAccountReadModel>>;
629
639
  bulkDelete(ids: any[]): Observable<Result>;
630
640
  bulkInsert(models: any[]): Observable<Result>;
@@ -648,6 +658,7 @@ declare enum AppType {
648
658
 
649
659
  interface LibraryConfig {
650
660
  appType: AppType;
661
+ dashboardUrl: any;
651
662
  }
652
663
  declare const LIBRARY_CONFIG: InjectionToken<LibraryConfig>;
653
664
 
@@ -669,6 +680,7 @@ declare class InitialProcessComponent implements OnInit {
669
680
  private tokenService;
670
681
  private roleContextService;
671
682
  private libConfig;
683
+ isAgreeEnabled: boolean;
672
684
  private readonly uploadToAws;
673
685
  selectedRoleValue: string | null;
674
686
  selectedRole: any;
@@ -851,6 +863,7 @@ declare class InitialProcessComponent implements OnInit {
851
863
  saveFinal(): void;
852
864
  dashboard(): void;
853
865
  changeAddressUser(): void;
866
+ onTermsScroll(event: Event): void;
854
867
  openModal(template: TemplateRef<any>, title: string, event: any): void;
855
868
  agree(title: string): void;
856
869
  decline(title: string): void;
@@ -1698,6 +1711,7 @@ declare class ToolsComponent {
1698
1711
  store: CredentialingStore;
1699
1712
  private tokenService;
1700
1713
  private userDetailService;
1714
+ private libConfig;
1701
1715
  roleData: any;
1702
1716
  form: UntypedFormGroup;
1703
1717
  submitted: boolean;
@@ -1735,7 +1749,7 @@ declare class ToolsComponent {
1735
1749
  userToolsPreview: any[];
1736
1750
  userDetails: any;
1737
1751
  userdata: any;
1738
- constructor(toolService: ToolService, userToolService: UserToolService, formBuilder: UntypedFormBuilder, utils: UtilsService, store: CredentialingStore, tokenService: TokenService, userDetailService: UserDetailService);
1752
+ constructor(toolService: ToolService, userToolService: UserToolService, formBuilder: UntypedFormBuilder, utils: UtilsService, store: CredentialingStore, tokenService: TokenService, userDetailService: UserDetailService, libConfig: LibraryConfig);
1739
1753
  ngOnInit(): Promise<void>;
1740
1754
  private ctxProviderName;
1741
1755
  private ctxProviderId;
@@ -1783,6 +1797,15 @@ declare class ToolsComponent {
1783
1797
  static ɵcmp: i0.ɵɵComponentDeclaration<ToolsComponent, "app-tools", never, { "roleData": { "alias": "roleData"; "required": false; }; }, {}, never, never, false, never>;
1784
1798
  }
1785
1799
 
1800
+ declare class IndustryService {
1801
+ private http;
1802
+ private readonly baseUrl;
1803
+ getUserIndustry(query: any): Observable<GridResult<any>>;
1804
+ private buildParams;
1805
+ static ɵfac: i0.ɵɵFactoryDeclaration<IndustryService, never>;
1806
+ static ɵprov: i0.ɵɵInjectableDeclaration<IndustryService>;
1807
+ }
1808
+
1786
1809
  interface UserFormControls {
1787
1810
  firstName: FormControl<string | null>;
1788
1811
  lastName: FormControl<string | null>;
@@ -1797,14 +1820,27 @@ interface UserFormControls {
1797
1820
  latitude: FormControl<any | null>;
1798
1821
  longitude: FormControl<any | null>;
1799
1822
  phoneNumber: FormControl<string | null>;
1823
+ userJobTitle: FormControl<string | null>;
1824
+ yearsOfExperince: FormControl<any | null>;
1825
+ industries: FormControl<any | null>;
1800
1826
  }
1801
1827
  declare class RoleSelectionComponent implements OnInit {
1802
1828
  store: CredentialingStore;
1803
1829
  router: Router;
1830
+ private industrydata;
1804
1831
  private userDetailService;
1805
1832
  private fileService;
1806
1833
  private tokenService;
1807
1834
  private fb;
1835
+ previewUrl: string | null;
1836
+ selectedTab: any;
1837
+ industries: any[];
1838
+ selectedIndustries: any[];
1839
+ isIndustriesLoading: boolean;
1840
+ expYears: LookupItem[];
1841
+ jobTitles: LookupItem1<number>[];
1842
+ selectedIndustryIds: string[];
1843
+ selectedIndustryObjects: any[];
1808
1844
  private readonly uploadToAws;
1809
1845
  backToParent: EventEmitter<void>;
1810
1846
  roleData: any;
@@ -1836,10 +1872,15 @@ declare class RoleSelectionComponent implements OnInit {
1836
1872
  selectedJobs: i0.WritableSignal<string[]>;
1837
1873
  selectedJobValues: number[];
1838
1874
  provider: ProviderModel;
1839
- constructor(store: CredentialingStore, router: Router, userDetailService: UserDetailService, fileService: FileService, tokenService: TokenService, fb: FormBuilder);
1875
+ constructor(store: CredentialingStore, router: Router, industrydata: IndustryService, userDetailService: UserDetailService, fileService: FileService, tokenService: TokenService, fb: FormBuilder);
1840
1876
  ngOnInit(): Promise<void>;
1877
+ getYears(): void;
1878
+ getIndustries(): void;
1879
+ saveUserIndustries(): void;
1880
+ setSelectedIndustries(ids: string[]): void;
1841
1881
  onBackClick(): void;
1842
1882
  getUserDetail(): void;
1883
+ onYearChange(group: any): void;
1843
1884
  hasChanges(): boolean;
1844
1885
  toggleJob(job: any): void;
1845
1886
  isSelected(job: any): boolean;
@@ -2547,7 +2588,7 @@ declare class CommonPipesModule {
2547
2588
 
2548
2589
  declare class InitialProcessModule {
2549
2590
  static ɵfac: i0.ɵɵFactoryDeclaration<InitialProcessModule, never>;
2550
- 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 RoleSelectionComponent, typeof Step2CoverageComponent, typeof WorkexperienceComponent], [typeof i2.CommonModule, typeof _angular_forms.FormsModule, typeof _angular_forms.ReactiveFormsModule, typeof i16.RouterModule, typeof UsMapModule, typeof i18.NgSelectModule, typeof Ng2LoadingSpinnerModule, typeof LoaderModule, typeof CustomPipesModule, typeof NgxStarsModule, typeof i23.TooltipModule, typeof i24.TabsModule, typeof i25.AccordionModule, typeof GooglePlaceModule, typeof i27.GoogleMapsModule, typeof TextMaskModule, typeof SignaturePadModule, typeof CommonPipesModule], [typeof InitialProcessComponent]>;
2591
+ 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 RoleSelectionComponent, 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]>;
2551
2592
  static ɵinj: i0.ɵɵInjectorDeclaration<InitialProcessModule>;
2552
2593
  }
2553
2594
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@idsoftsource/initial-process",
3
- "version": "0.0.3",
3
+ "version": "0.0.6",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.0.0",
6
6
  "@angular/core": "^20.0.0",
@@ -11,6 +11,9 @@
11
11
  "tslib": "^2.3.0"
12
12
  },
13
13
  "sideEffects": false,
14
+ "publishConfig": {
15
+ "access": "public"
16
+ },
14
17
  "module": "fesm2022/idsoftsource-initial-process.mjs",
15
18
  "typings": "index.d.ts",
16
19
  "exports": {