@aurigma/ng-storefront-api-client 2.32.1 → 2.34.1

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.
@@ -1530,14 +1530,14 @@ class ProjectsApiClient extends ApiClientBase {
1530
1530
  if (status === 200) {
1531
1531
  return blobToText(responseBlob).pipe(mergeMap(_responseText => {
1532
1532
  let result200 = null;
1533
- result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
1533
+ result200 = _responseText === "" ? null : _responseText;
1534
1534
  return of(result200);
1535
1535
  }));
1536
1536
  }
1537
1537
  else if (status === 404) {
1538
1538
  return blobToText(responseBlob).pipe(mergeMap(_responseText => {
1539
1539
  let result404 = null;
1540
- result404 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
1540
+ result404 = _responseText === "" ? null : _responseText;
1541
1541
  return throwException("Not Found", status, _responseText, _headers, result404);
1542
1542
  }));
1543
1543
  }