@infrab4a/connect-angular 4.0.0-beta.48 → 4.0.0-beta.49
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/wishlist.service.mjs +7 -4
- package/fesm2015/infrab4a-connect-angular.mjs +6 -3
- package/fesm2015/infrab4a-connect-angular.mjs.map +1 -1
- package/fesm2020/infrab4a-connect-angular.mjs +6 -3
- package/fesm2020/infrab4a-connect-angular.mjs.map +1 -1
- package/package.json +1 -1
- package/services/catalog/wishlist.service.d.ts +1 -1
|
@@ -1675,7 +1675,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImpor
|
|
|
1675
1675
|
}] }]; } });
|
|
1676
1676
|
|
|
1677
1677
|
class WishlistService {
|
|
1678
|
-
constructor(wishlistRepository, productRepository, categoryFilterRepository, categoryCollectionChildrenRepository, categoryStructureAdapter = new NewCategoryStructureAdapter(wishlistRepository, categoryCollectionChildrenRepository),
|
|
1678
|
+
constructor(wishlistRepository, productRepository, categoryFilterRepository, categoryCollectionChildrenRepository, shop, categoryStructureAdapter = new NewCategoryStructureAdapter(wishlistRepository, categoryCollectionChildrenRepository), catalogService = new CatalogService(productRepository, categoryStructureAdapter, shop), categoryService = new CategoryService(productRepository, wishlistRepository, categoryFilterRepository, categoryStructureAdapter, shop), utilService) {
|
|
1679
1679
|
this.wishlistRepository = wishlistRepository;
|
|
1680
1680
|
this.shop = shop;
|
|
1681
1681
|
this.catalogService = catalogService;
|
|
@@ -1762,10 +1762,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImpor
|
|
|
1762
1762
|
}] }, { type: undefined, decorators: [{
|
|
1763
1763
|
type: Inject,
|
|
1764
1764
|
args: ['CategoryFilterRepository']
|
|
1765
|
-
}] }, { type: undefined
|
|
1765
|
+
}] }, { type: undefined, decorators: [{
|
|
1766
|
+
type: Inject,
|
|
1767
|
+
args: ['CategoryCollectionChildrenRepository']
|
|
1768
|
+
}] }, { type: i1$3.Shops, decorators: [{
|
|
1766
1769
|
type: Inject,
|
|
1767
1770
|
args: [DEFAULT_SHOP]
|
|
1768
|
-
}] }, { type: undefined }, { type: undefined }, { type: UtilService }]; } });
|
|
1771
|
+
}] }, { type: undefined }, { type: undefined }, { type: undefined }, { type: UtilService }]; } });
|
|
1769
1772
|
|
|
1770
1773
|
class CheckoutSubscriptionService {
|
|
1771
1774
|
constructor(checkoutSubscriptionRepository, subscriptionRepository, couponService) {
|