@idsoftsource/initial-process 2.6.3 → 2.7.0

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
@@ -1224,17 +1224,30 @@ declare class InitialProcessComponent implements OnInit {
1224
1224
  static ɵcmp: i0.ɵɵComponentDeclaration<InitialProcessComponent, "app-initial-process", never, {}, {}, never, never, false, never>;
1225
1225
  }
1226
1226
 
1227
+ declare class FrontEndProvidersService {
1228
+ private http;
1229
+ private baseUrl;
1230
+ constructor(http: HttpClient);
1231
+ private generateParams;
1232
+ getProviderDetails(id: any): Observable<any[]>;
1233
+ static ɵfac: i0.ɵɵFactoryDeclaration<FrontEndProvidersService, never>;
1234
+ static ɵprov: i0.ɵɵInjectableDeclaration<FrontEndProvidersService>;
1235
+ }
1236
+
1227
1237
  declare class ClaimProcessService {
1228
1238
  private userDetailService;
1229
1239
  private roleService;
1230
1240
  private providerService;
1241
+ private frontEndProviderService;
1231
1242
  private fileService;
1232
- constructor(userDetailService: UserDetailService, roleService: RolesService, providerService: ProvidersService, fileService: FileService);
1243
+ constructor(userDetailService: UserDetailService, roleService: RolesService, providerService: ProvidersService, frontEndProviderService: FrontEndProvidersService, fileService: FileService);
1233
1244
  getPrivacyConfig(appType: string): PrivacyAndTerms;
1234
1245
  /** Load existing profile by token userId (ref: initial-process getUser + getByUserId) */
1235
1246
  getUserById(userId: string): Observable<any>;
1236
1247
  /** Fallback: auth0 account lookup by email (for invite-link without active session) */
1237
1248
  lookupUser(email: string): Observable<any>;
1249
+ /** Provider/business details by providerId (ref: role-select getprovider) */
1250
+ getProviderDetails(providerId: string): Observable<any>;
1238
1251
  getRoles(): Observable<any>;
1239
1252
  uploadFile(file: File, pathPrefix: string): Promise<{
1240
1253
  fileId: string;
@@ -1354,6 +1367,7 @@ declare class ClaimProcessComponent implements OnInit, OnDestroy {
1354
1367
  */
1355
1368
  private lookupAuth0Account;
1356
1369
  private loadUserProfile;
1370
+ private loadProviderDetails;
1357
1371
  getRoles(): void;
1358
1372
  private applyUserRole;
1359
1373
  private updateRoleValidator;
@@ -2371,16 +2385,6 @@ declare class IndustryService {
2371
2385
  static ɵprov: i0.ɵɵInjectableDeclaration<IndustryService>;
2372
2386
  }
2373
2387
 
2374
- declare class FrontEndProvidersService {
2375
- private http;
2376
- private baseUrl;
2377
- constructor(http: HttpClient);
2378
- private generateParams;
2379
- getProviderDetails(id: any): Observable<any[]>;
2380
- static ɵfac: i0.ɵɵFactoryDeclaration<FrontEndProvidersService, never>;
2381
- static ɵprov: i0.ɵɵInjectableDeclaration<FrontEndProvidersService>;
2382
- }
2383
-
2384
2388
  interface UserFormControls {
2385
2389
  firstName: FormControl<any | null>;
2386
2390
  lastName: FormControl<any | null>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@idsoftsource/initial-process",
3
- "version": "2.6.3",
3
+ "version": "2.7.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.0.0",
6
6
  "@angular/core": "^20.0.0",