@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.
- package/esm2020/lib/services/catalog-api.service.mjs +3 -3
- package/fesm2015/veloceapps-api.mjs +2 -2
- package/fesm2015/veloceapps-api.mjs.map +1 -1
- package/fesm2020/veloceapps-api.mjs +2 -2
- package/fesm2020/veloceapps-api.mjs.map +1 -1
- package/lib/services/catalog-api.service.d.ts +2 -2
- package/package.json +1 -1
@@ -325,7 +325,7 @@ class CatalogApiService {
|
|
325
325
|
body: context,
|
326
326
|
});
|
327
327
|
}
|
328
|
-
searchCategoryProducts$(catalogId, categoryId, searchParams,
|
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:
|
336
|
+
request: searchRequest,
|
337
337
|
},
|
338
338
|
});
|
339
339
|
}
|