@hmcts/ccd-case-ui-toolkit 7.3.49-tmp2 → 7.3.49-user-by-idam-testrev

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
@@ -4106,17 +4106,13 @@ interface Caseworker {
4106
4106
  roleCategory: string;
4107
4107
  service?: string;
4108
4108
  }
4109
- interface CaseworkersByService {
4110
- service: string;
4111
- caseworkers: Caseworker[];
4112
- }
4113
4109
 
4114
4110
  declare class CaseworkerService {
4115
4111
  private readonly http;
4116
4112
  private readonly appConfig;
4117
4113
  private readonly errorService;
4118
4114
  constructor(http: HttpService, appConfig: AbstractAppConfig, errorService: HttpErrorService);
4119
- getCaseworkers(serviceId: any): Observable<CaseworkersByService[]>;
4115
+ getUserByIdamId(idamId: string): Observable<Caseworker>;
4120
4116
  static ɵfac: i0.ɵɵFactoryDeclaration<CaseworkerService, never>;
4121
4117
  static ɵprov: i0.ɵɵInjectableDeclaration<CaseworkerService>;
4122
4118
  }