@infrab4a/connect-angular 4.1.5-beta.3 → 4.1.5-beta.4
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/services/catalog/catalog.service.mjs +2 -3
- package/fesm2015/infrab4a-connect-angular.mjs +1 -2
- package/fesm2015/infrab4a-connect-angular.mjs.map +1 -1
- package/fesm2020/infrab4a-connect-angular.mjs +1 -2
- package/fesm2020/infrab4a-connect-angular.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1557,9 +1557,8 @@ class CatalogService {
|
|
|
1557
1557
|
const productResult = await this.productRepository.findCatalog({
|
|
1558
1558
|
filters: {
|
|
1559
1559
|
id: { operator: Where.IN, value: orderedId },
|
|
1560
|
-
// ...this.buildFilterQuery(options?.filters || {}),
|
|
1561
1560
|
},
|
|
1562
|
-
}
|
|
1561
|
+
});
|
|
1563
1562
|
return {
|
|
1564
1563
|
data: limitedProductId.map((id) => productResult.data.find((product) => product.id === id)).filter(Boolean),
|
|
1565
1564
|
count: totalResult.count,
|