@infrab4a/connect-angular 5.3.1-beta.4 → 5.3.1-beta.5

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.
@@ -3010,6 +3010,10 @@ class OrderProductReviewService {
3010
3010
  filters: {
3011
3011
  orderId: { operator: Where.IN, value: [order.id, order.orderNumber].filter(Boolean) },
3012
3012
  productId: item.id,
3013
+ createdAt: {
3014
+ operator: Where.GTE,
3015
+ value: new Date(2024, 0, 0, 0, 0, 0),
3016
+ },
3013
3017
  },
3014
3018
  })
3015
3019
  .then((res) => res.data.at(0));