@idsoftsource/initial-process 1.5.8 → 1.5.9

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
@@ -180,6 +180,8 @@ interface GridifyQuery {
180
180
  pageSize?: number;
181
181
  orderBy?: string;
182
182
  filter?: any;
183
+ targetUserId?: string;
184
+ targetProviderId?: string;
183
185
  }
184
186
 
185
187
  interface ValidationFailure {
@@ -951,6 +953,7 @@ interface UserToolModel extends MasterModel {
951
953
  providerId?: string;
952
954
  providerName?: string;
953
955
  userId?: string;
956
+ targetUserId?: string;
954
957
  userName?: string;
955
958
  id?: any;
956
959
  toolName?: string;
@@ -1373,6 +1376,7 @@ declare class UserService {
1373
1376
  }
1374
1377
 
1375
1378
  declare class EducationComponent implements OnInit {
1379
+ private roleContextService;
1376
1380
  userEducation: UserEducationService;
1377
1381
  private userService;
1378
1382
  store: CredentialingStore;
@@ -1414,7 +1418,7 @@ declare class EducationComponent implements OnInit {
1414
1418
  showpreview: i0.Signal<boolean>;
1415
1419
  maxDate: Date;
1416
1420
  userdata: any;
1417
- constructor(userEducation: UserEducationService, userService: UserService, store: CredentialingStore, workStore: EducationStore, countryService: CountryServices, postalCodeService: PostalCodeServices, tokenService: TokenService, fb: FormBuilder, fileService: FileService, http: HttpClient);
1421
+ constructor(roleContextService: RoleContextService, userEducation: UserEducationService, userService: UserService, store: CredentialingStore, workStore: EducationStore, countryService: CountryServices, postalCodeService: PostalCodeServices, tokenService: TokenService, fb: FormBuilder, fileService: FileService, http: HttpClient);
1418
1422
  ngOnInit(): Promise<void>;
1419
1423
  selectFile(event: any): void;
1420
1424
  hasChanges(): boolean;
@@ -1486,6 +1490,7 @@ declare class CertificationStore {
1486
1490
  }
1487
1491
 
1488
1492
  declare class CertificationComponent {
1493
+ roleContextService: RoleContextService;
1489
1494
  userDocumentService: UserDocumentService;
1490
1495
  private userService;
1491
1496
  store: CredentialingStore;
@@ -1533,7 +1538,7 @@ declare class CertificationComponent {
1533
1538
  showpreview: i0.Signal<boolean>;
1534
1539
  userdata: any;
1535
1540
  maxDate: Date;
1536
- constructor(userDocumentService: UserDocumentService, userService: UserService, store: CredentialingStore, workStore: CertificationStore, tokenService: TokenService, postalCodeService: PostalCodeServices, fb: FormBuilder, fileService: FileService, http: HttpClient);
1541
+ constructor(roleContextService: RoleContextService, userDocumentService: UserDocumentService, userService: UserService, store: CredentialingStore, workStore: CertificationStore, tokenService: TokenService, postalCodeService: PostalCodeServices, fb: FormBuilder, fileService: FileService, http: HttpClient);
1537
1542
  ngOnInit(): Promise<void>;
1538
1543
  loadDocumentTypes(searchText?: string): void;
1539
1544
  loadDocumentTypesDefault(searchText?: string): void;
@@ -1768,6 +1773,7 @@ declare class LicenseStore {
1768
1773
  declare class LicensesComponent {
1769
1774
  userDocumentService: UserDocumentService;
1770
1775
  private userService;
1776
+ private roleContextService;
1771
1777
  store: CredentialingStore;
1772
1778
  workStore: LicenseStore;
1773
1779
  private tokenService;
@@ -1811,7 +1817,7 @@ declare class LicensesComponent {
1811
1817
  showpreview: i0.Signal<boolean>;
1812
1818
  userdata: any;
1813
1819
  maxDate: Date;
1814
- constructor(userDocumentService: UserDocumentService, userService: UserService, store: CredentialingStore, workStore: LicenseStore, tokenService: TokenService, postalCodeService: PostalCodeServices, fb: FormBuilder, fileService: FileService, http: HttpClient);
1820
+ constructor(userDocumentService: UserDocumentService, userService: UserService, roleContextService: RoleContextService, store: CredentialingStore, workStore: LicenseStore, tokenService: TokenService, postalCodeService: PostalCodeServices, fb: FormBuilder, fileService: FileService, http: HttpClient);
1815
1821
  ngOnInit(): Promise<void>;
1816
1822
  loadDocumentTypes(searchText?: string): void;
1817
1823
  loadDocumentTypesDefault(searchText?: string): void;
@@ -1894,6 +1900,7 @@ declare class ToolsComponent {
1894
1900
  private utils;
1895
1901
  store: CredentialingStore;
1896
1902
  private tokenService;
1903
+ private roleContextService;
1897
1904
  private userDetailService;
1898
1905
  private libConfig;
1899
1906
  roleData: any;
@@ -1938,7 +1945,7 @@ declare class ToolsComponent {
1938
1945
  userdata: any;
1939
1946
  signatureUrl: any;
1940
1947
  signatureFileId: any;
1941
- constructor(toolService: ToolService, userToolService: UserToolService, formBuilder: UntypedFormBuilder, userService: UserService, utils: UtilsService, store: CredentialingStore, tokenService: TokenService, userDetailService: UserDetailService, libConfig: LibraryConfig);
1948
+ constructor(toolService: ToolService, userToolService: UserToolService, formBuilder: UntypedFormBuilder, userService: UserService, utils: UtilsService, store: CredentialingStore, tokenService: TokenService, roleContextService: RoleContextService, userDetailService: UserDetailService, libConfig: LibraryConfig);
1942
1949
  ngOnInit(): Promise<void>;
1943
1950
  private ctxProviderName;
1944
1951
  private ctxProviderId;
@@ -2045,6 +2052,7 @@ declare class RoleSelectComponent implements OnInit {
2045
2052
  private fileService;
2046
2053
  private provideruser;
2047
2054
  private tokenService;
2055
+ private roleContextService;
2048
2056
  private fb;
2049
2057
  isLoaded: boolean;
2050
2058
  previewUrl: string | null;
@@ -2094,7 +2102,7 @@ declare class RoleSelectComponent implements OnInit {
2094
2102
  selectedJobs: i0.WritableSignal<string[]>;
2095
2103
  selectedJobValues: number[];
2096
2104
  provider: ProviderModel;
2097
- constructor(store: CredentialingStore, userService: UserService, userDocumentService: UserDocumentService, router: Router, industrydata: IndustryService, userDetailService: UserDetailService, fileService: FileService, provideruser: ProvidersService, tokenService: TokenService, fb: FormBuilder);
2105
+ constructor(store: CredentialingStore, userService: UserService, userDocumentService: UserDocumentService, router: Router, industrydata: IndustryService, userDetailService: UserDetailService, fileService: FileService, provideruser: ProvidersService, tokenService: TokenService, roleContextService: RoleContextService, fb: FormBuilder);
2098
2106
  cloudfrontUrl: string;
2099
2107
  providerId: string;
2100
2108
  providerName: string;
@@ -2183,6 +2191,7 @@ declare class Step2CoverageComponent {
2183
2191
  private postalCodeService;
2184
2192
  private userCoverageAreaService;
2185
2193
  private alertService;
2194
+ private roleContextService;
2186
2195
  private tokenService;
2187
2196
  providerId: string;
2188
2197
  providerName: string;
@@ -2215,7 +2224,7 @@ declare class Step2CoverageComponent {
2215
2224
  userDetail: any;
2216
2225
  existingCoverageIds: string[];
2217
2226
  private initialCoverageSnapshot;
2218
- constructor(store: CredentialingStore, usMapService: UsMapLatestService, postalCodeService: PostalCodeServices, userCoverageAreaService: UserCoverageAreaService, alertService: AlertService, tokenService: TokenService);
2227
+ constructor(store: CredentialingStore, usMapService: UsMapLatestService, postalCodeService: PostalCodeServices, userCoverageAreaService: UserCoverageAreaService, alertService: AlertService, roleContextService: RoleContextService, tokenService: TokenService);
2219
2228
  ngOnInit(): Promise<void>;
2220
2229
  toggleMap(): void;
2221
2230
  setSelectedStates(values: StateModel[]): void;
@@ -2244,6 +2253,7 @@ declare class WorkexperienceComponent implements OnInit {
2244
2253
  private countryService;
2245
2254
  private postalCodeService;
2246
2255
  private tokenService;
2256
+ private roleContextService;
2247
2257
  private fb;
2248
2258
  private fileService;
2249
2259
  private http;
@@ -2278,7 +2288,7 @@ declare class WorkexperienceComponent implements OnInit {
2278
2288
  proposalLoader: boolean;
2279
2289
  showpreview: i0.Signal<boolean>;
2280
2290
  userdata: any;
2281
- constructor(userExperienceService: UserExperienceService, userService: UserService, workStore: WorkExperienceStore, store: CredentialingStore, countryService: CountryServices, postalCodeService: PostalCodeServices, tokenService: TokenService, fb: FormBuilder, fileService: FileService, http: HttpClient);
2291
+ constructor(userExperienceService: UserExperienceService, userService: UserService, workStore: WorkExperienceStore, store: CredentialingStore, countryService: CountryServices, postalCodeService: PostalCodeServices, tokenService: TokenService, roleContextService: RoleContextService, fb: FormBuilder, fileService: FileService, http: HttpClient);
2282
2292
  ngOnInit(): Promise<void>;
2283
2293
  getcountry(): void;
2284
2294
  getstates(countryCode: any): void;
@@ -2311,6 +2321,7 @@ declare class ResumeDetailService {
2311
2321
 
2312
2322
  declare class FirstComponent implements OnInit {
2313
2323
  store: CredentialingStore;
2324
+ private roleContextService;
2314
2325
  private tokenService;
2315
2326
  private resumedetail;
2316
2327
  private fileService;
@@ -2393,7 +2404,7 @@ declare class FirstComponent implements OnInit {
2393
2404
  fileDataUser: any;
2394
2405
  model: any;
2395
2406
  nextStep: EventEmitter<void>;
2396
- constructor(store: CredentialingStore, tokenService: TokenService, resumedetail: ResumeDetailService, fileService: FileService);
2407
+ constructor(store: CredentialingStore, roleContextService: RoleContextService, tokenService: TokenService, resumedetail: ResumeDetailService, fileService: FileService);
2397
2408
  ngOnInit(): Promise<void>;
2398
2409
  selectedRole: 'producer' | 'serviceProvider' | null;
2399
2410
  select(role: 'producer' | 'serviceProvider'): void;
@@ -2433,6 +2444,7 @@ declare class PreviewComponent {
2433
2444
  private userDetailService;
2434
2445
  userExperienceService: UserExperienceService;
2435
2446
  private tokenService;
2447
+ private roleContextService;
2436
2448
  private libConfig;
2437
2449
  providerId: string;
2438
2450
  useremail: any;
@@ -2485,7 +2497,7 @@ declare class PreviewComponent {
2485
2497
  showPopup: boolean;
2486
2498
  showBackConfirmPopup: boolean;
2487
2499
  showDashboardConfirmPopup: boolean;
2488
- constructor(store: CredentialingStore, fileService: FileService, userSkillSetService: UserSkillSetService, userToolService: UserToolService, userDocumentService: UserDocumentService, userEducation: UserEducationService, userDetailService: UserDetailService, userExperienceService: UserExperienceService, tokenService: TokenService, libConfig: LibraryConfig);
2500
+ constructor(store: CredentialingStore, fileService: FileService, userSkillSetService: UserSkillSetService, userToolService: UserToolService, userDocumentService: UserDocumentService, userEducation: UserEducationService, userDetailService: UserDetailService, userExperienceService: UserExperienceService, tokenService: TokenService, roleContextService: RoleContextService, libConfig: LibraryConfig);
2489
2501
  email: any;
2490
2502
  expYears: number[];
2491
2503
  details: i0.WritableSignal<BasicDetails | undefined>;
@@ -3305,12 +3317,13 @@ declare class MustChangePasswordComponent {
3305
3317
  private auth;
3306
3318
  userService: UserDetailService;
3307
3319
  private tokenService;
3320
+ private roleContextService;
3308
3321
  private authLogoutService;
3309
3322
  changePasswordForm: FormGroup;
3310
3323
  submitted: boolean;
3311
3324
  isLoading: boolean;
3312
3325
  errorMessage: string;
3313
- constructor(fb: FormBuilder, auth: AuthService, userService: UserDetailService, tokenService: TokenService, authLogoutService: AuthLogoutService);
3326
+ constructor(fb: FormBuilder, auth: AuthService, userService: UserDetailService, tokenService: TokenService, roleContextService: RoleContextService, authLogoutService: AuthLogoutService);
3314
3327
  get f(): {
3315
3328
  [key: string]: AbstractControl;
3316
3329
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@idsoftsource/initial-process",
3
- "version": "1.5.8",
3
+ "version": "1.5.9",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.0.0",
6
6
  "@angular/core": "^20.0.0",