@aurigma/ng-storefront-api-client 2.60.2 → 2.62.12

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.
@@ -2900,7 +2900,7 @@ class ProductsApiClient extends ApiClientBase {
2900
2900
  /**
2901
2901
  * Returns a list of product links.
2902
2902
  * @param id Product identifier.
2903
- * @param productVersionId (optional)
2903
+ * @param productVersionId (optional) Product version identifier.
2904
2904
  * @param skip (optional) Defines page start offset from beginning of sorted result list.
2905
2905
  * @param take (optional) Defines page length (how many consequent items of sorted result list should be taken).
2906
2906
  * @param sorting (optional) Defines sorting order of result list e.g.: "Title ASC, LastModified DESC".
@@ -3002,7 +3002,7 @@ class ProductsApiClient extends ApiClientBase {
3002
3002
  * Returns a product link.
3003
3003
  * @param id Product identifier.
3004
3004
  * @param productLinkId Product link identifier.
3005
- * @param productVersionId (optional)
3005
+ * @param productVersionId (optional) Product version identifier.
3006
3006
  * @param tenantId (optional) Tenant identifier.
3007
3007
  * @return Success
3008
3008
  */
@@ -5329,6 +5329,13 @@ class ProjectsApiClient extends ApiClientBase {
5329
5329
  return of(result200);
5330
5330
  }));
5331
5331
  }
5332
+ else if (status === 404) {
5333
+ return blobToText(responseBlob).pipe(mergeMap(_responseText => {
5334
+ let result404 = null;
5335
+ result404 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
5336
+ return throwException("Not Found", status, _responseText, _headers, result404);
5337
+ }));
5338
+ }
5332
5339
  else if (status === 401) {
5333
5340
  return blobToText(responseBlob).pipe(mergeMap(_responseText => {
5334
5341
  return throwException("Unauthorized", status, _responseText, _headers);