@hmcts/ccd-case-ui-toolkit 6.10.9-configure-linked-cases → 6.10.10-configure-linked-cases

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.
@@ -8648,22 +8648,6 @@
8648
8648
  payload.requestedRoles[0].notes[0] = Object.assign(Object.assign({}, payload.requestedRoles[0].notes[0]), { userId: payload.requestedRoles[0].actorId });
8649
8649
  return this.http.post("/api/specific-access-request", payload);
8650
8650
  };
8651
- CasesService.prototype.getCaseLinkResponses = function () {
8652
- var _this = this;
8653
- var headers = new i1$2.HttpHeaders()
8654
- .set('experimental', 'true')
8655
- .set('Accept', CasesService.V2_MEDIATYPE_CASE_VIEW)
8656
- .set('Content-Type', 'application/json');
8657
- var loadingToken = this.loadingService.register();
8658
- return this.http
8659
- .get('assets/getCaseReasons.json', { headers: headers, observe: 'body' })
8660
- .pipe(operators.map(function (reasons) {
8661
- return reasons.sort(function (reasonA, reasonB) { return reasonA.value_en > reasonB.value_en ? 1 : -1; });
8662
- }), operators.catchError(function (error) {
8663
- _this.errorService.setError(error);
8664
- return rxjs.throwError(error);
8665
- }), operators.finalize(function () { return _this.loadingService.unregister(loadingToken); }));
8666
- };
8667
8651
  CasesService.prototype.getLinkedCases = function (caseId) {
8668
8652
  var url = this.appConfig.getCaseDataStoreApiUrl() + "/" + caseId;
8669
8653
  return this.http