@veloceapps/api 7.0.2-57 → 7.0.2-59

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.
@@ -325,7 +325,7 @@ class CatalogApiService {
325
325
  body: context,
326
326
  });
327
327
  }
328
- searchCategoryProducts$(catalogId, categoryId, searchParams, searchCriteria, context) {
328
+ searchCategoryProducts$(catalogId, categoryId, searchParams, searchRequest, context) {
329
329
  const params = new HttpParams({ fromObject: searchParams });
330
330
  return this.service.api({
331
331
  method: 'post',
@@ -333,7 +333,7 @@ class CatalogApiService {
333
333
  params,
334
334
  body: {
335
335
  configurationContext: context,
336
- request: { searchCriteria },
336
+ request: searchRequest,
337
337
  },
338
338
  });
339
339
  }