@infrab4a/connect 4.9.7-beta.33 → 4.9.7-beta.34

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@infrab4a/connect",
3
- "version": "4.9.7-beta.33",
3
+ "version": "4.9.7-beta.34",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org"
6
6
  },
@@ -25,5 +25,5 @@ export interface ProductRepository extends CrudRepository<Product> {
25
25
  fetchProductReviews(filters: PaginatedReviewFilters): Promise<ReviewWithProductData[]>;
26
26
  cleanShoppingCountFromIds(ids: string[]): Promise<any>;
27
27
  findCatalog(params: FindRepositoryParams<Product>, mainGender?: Extract<ProductGender, 'female' | 'male' | 'unisex'>): Promise<RepositoryFindResult<Product>>;
28
- productVariantFullReport(): Promise<ProductVariantReport>;
28
+ productVariantFullReport(): Promise<ProductVariantReport[]>;
29
29
  }
@@ -10,6 +10,6 @@ export declare class ProductFirestoreRepository extends ProductFirestoreReposito
10
10
  cleanShoppingCountFromIds(): Promise<void>;
11
11
  findCatalog(params: FindRepositoryParams<Product>): Promise<RepositoryFindResult<Product>>;
12
12
  fetchPaginatedReviews(): Promise<ReviewWithProductData[]>;
13
- productVariantFullReport(): Promise<ProductVariantReport>;
13
+ productVariantFullReport(): Promise<ProductVariantReport[]>;
14
14
  }
15
15
  export {};
@@ -27,6 +27,6 @@ export declare class ProductHasuraGraphQLRepository extends ProductHasuraGraphQL
27
27
  private getReviewByAuthorAndEmail;
28
28
  private bindReviewToModel;
29
29
  private bindReviewToHasura;
30
- productVariantFullReport(): Promise<ProductVariantReport>;
30
+ productVariantFullReport(): Promise<ProductVariantReport[]>;
31
31
  }
32
32
  export {};