@infrab4a/connect-angular 5.2.2-beta.0 → 5.2.2-beta.2
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 +11 -12
- package/fesm2015/infrab4a-connect-angular.mjs +10 -11
- package/fesm2015/infrab4a-connect-angular.mjs.map +1 -1
- package/fesm2020/infrab4a-connect-angular.mjs +10 -11
- package/fesm2020/infrab4a-connect-angular.mjs.map +1 -1
- package/package.json +2 -2
- package/services/catalog/wishlist.service.d.ts +4 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infrab4a/connect-angular",
|
|
3
|
-
"version": "5.2.2-beta.
|
|
3
|
+
"version": "5.2.2-beta.2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org"
|
|
6
6
|
},
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"@angular/common": "^15.1.4",
|
|
13
13
|
"@angular/core": "^15.1.4",
|
|
14
14
|
"@angular/fire": "7.5.0",
|
|
15
|
-
"@infrab4a/connect": "5.1.1-beta.
|
|
15
|
+
"@infrab4a/connect": "5.1.1-beta.2",
|
|
16
16
|
"class-transformer": "^0.5.1",
|
|
17
17
|
"js-cookie": "^3.0.1",
|
|
18
18
|
"rxjs": "^6.6.7",
|
|
@@ -1,15 +1,16 @@
|
|
|
1
|
-
import { LogRepository, PersonType, Shops, Wishlist, WishlistRepository } from '@infrab4a/connect';
|
|
1
|
+
import { LogRepository, PersonType, ProductRepository, Shops, Wishlist, WishlistRepository } from '@infrab4a/connect';
|
|
2
2
|
import { CatalogService } from './catalog.service';
|
|
3
3
|
import { CategoryService } from './category.service';
|
|
4
4
|
import { CatalogServiceFacade, CategoryServiceFacade } from './facades';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class WishlistService {
|
|
7
7
|
private readonly wishlistRepository;
|
|
8
|
-
private readonly
|
|
8
|
+
private readonly productRepository;
|
|
9
9
|
private readonly logRepository;
|
|
10
|
+
private readonly shop;
|
|
10
11
|
private catalogService;
|
|
11
12
|
private categoryService;
|
|
12
|
-
constructor(wishlistRepository: WishlistRepository,
|
|
13
|
+
constructor(wishlistRepository: WishlistRepository, productRepository: ProductRepository, logRepository: LogRepository, shop: Shops);
|
|
13
14
|
initializeServices(catalogServiceFacade: CatalogServiceFacade, categoryServiceFacade: CategoryServiceFacade): void;
|
|
14
15
|
getCatalogService(): CatalogService<import("@infrab4a/connect").Category>;
|
|
15
16
|
getCategoryService(): CategoryService;
|