@idsoftsource/initial-process 1.6.6 → 1.6.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
@@ -2066,6 +2066,7 @@ interface CompanyFormControls {
2066
2066
  state: FormControl<string | null>;
2067
2067
  zipcode: FormControl<string | null>;
2068
2068
  country: FormControl<string | null>;
2069
+ county: FormControl<string | null>;
2069
2070
  }
2070
2071
  declare class RoleSelectComponent implements OnInit {
2071
2072
  store: CredentialingStore;
@@ -2174,6 +2175,7 @@ declare class RoleSelectComponent implements OnInit {
2174
2175
  state: string | null | undefined;
2175
2176
  zipcode: string | null | undefined;
2176
2177
  country: string | null | undefined;
2178
+ county: string | null | undefined;
2177
2179
  phoneNumber: string | null | undefined;
2178
2180
  userAddress1: string | null | undefined;
2179
2181
  userAddress2: string | null | undefined;
@@ -3298,7 +3300,37 @@ declare class PreviewComponent {
3298
3300
  previewSelectedFile(item: any): void;
3299
3301
  mapBasicDetailsToUserDetail(data: any): {
3300
3302
  providerName: string;
3301
- providerId: string;
3303
+ targetProviderId: string;
3304
+ UserRoleId: any;
3305
+ userDetail: {
3306
+ userBio: any;
3307
+ firstName: any;
3308
+ lastName: any;
3309
+ email: any;
3310
+ address1: any;
3311
+ address2: string;
3312
+ city: any;
3313
+ state: any;
3314
+ zipcode: any;
3315
+ county: string;
3316
+ country: any;
3317
+ latitude: null;
3318
+ longitude: null;
3319
+ yearsActive: number;
3320
+ isInitialSetupCompleted: boolean;
3321
+ id: any;
3322
+ phoneNumber: any;
3323
+ yearsOfExperince: any;
3324
+ userJobTitle: any[];
3325
+ timeZone: string;
3326
+ datePattern: string;
3327
+ dateTimePattern: string;
3328
+ timePattern: string;
3329
+ };
3330
+ };
3331
+ mapCompanyDetail(data: any): {
3332
+ providerName: string;
3333
+ targetProviderId: string | null;
3302
3334
  UserRoleId: any;
3303
3335
  userDetail: {
3304
3336
  userBio: any;
@@ -3328,7 +3360,7 @@ declare class PreviewComponent {
3328
3360
  };
3329
3361
  mapBasicDetailsDashboard(data: any): {
3330
3362
  providerName: string;
3331
- providerId: string;
3363
+ targetProviderId: string;
3332
3364
  UserRoleId: any;
3333
3365
  userDetail: {
3334
3366
  userBio: any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@idsoftsource/initial-process",
3
- "version": "1.6.6",
3
+ "version": "1.6.8",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.0.0",
6
6
  "@angular/core": "^20.0.0",