@agrada_digital/pbm 0.0.55 → 0.0.57

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/dist/index.d.mts CHANGED
@@ -2,11 +2,10 @@ import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
 
3
3
  interface PBMProps {
4
4
  originalProductPrice: number | string;
5
- industryLogo?: string;
6
5
  clientID: string;
7
6
  eanProduct: string;
8
7
  }
9
- declare function PBM({ originalProductPrice, industryLogo, clientID, eanProduct, }: PBMProps): react_jsx_runtime.JSX.Element;
8
+ declare function PBM({ originalProductPrice, clientID, eanProduct, }: PBMProps): react_jsx_runtime.JSX.Element;
10
9
 
11
10
  interface discountTypes {
12
11
  unit: number;
@@ -25,7 +24,17 @@ interface usePBMTypes {
25
24
  }
26
25
  interface IProduct {
27
26
  ean: string;
28
- quantity: number;
27
+ quantity?: number;
28
+ sku?: string;
29
+ skuId?: string;
30
+ price?: number;
31
+ listPrice?: number;
32
+ stockBalance?: number;
33
+ productName?: string;
34
+ productId?: string;
35
+ availabilityText?: string;
36
+ brandName?: string;
37
+ categoryName?: string;
29
38
  }
30
39
 
31
40
  interface PBMStore extends usePBMTypes {
package/dist/index.d.ts CHANGED
@@ -2,11 +2,10 @@ import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
 
3
3
  interface PBMProps {
4
4
  originalProductPrice: number | string;
5
- industryLogo?: string;
6
5
  clientID: string;
7
6
  eanProduct: string;
8
7
  }
9
- declare function PBM({ originalProductPrice, industryLogo, clientID, eanProduct, }: PBMProps): react_jsx_runtime.JSX.Element;
8
+ declare function PBM({ originalProductPrice, clientID, eanProduct, }: PBMProps): react_jsx_runtime.JSX.Element;
10
9
 
11
10
  interface discountTypes {
12
11
  unit: number;
@@ -25,7 +24,17 @@ interface usePBMTypes {
25
24
  }
26
25
  interface IProduct {
27
26
  ean: string;
28
- quantity: number;
27
+ quantity?: number;
28
+ sku?: string;
29
+ skuId?: string;
30
+ price?: number;
31
+ listPrice?: number;
32
+ stockBalance?: number;
33
+ productName?: string;
34
+ productId?: string;
35
+ availabilityText?: string;
36
+ brandName?: string;
37
+ categoryName?: string;
29
38
  }
30
39
 
31
40
  interface PBMStore extends usePBMTypes {