nextemos 6.4.3 → 6.4.4

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.
@@ -147,6 +147,11 @@ export interface ICartItem {
147
147
  scopeTypeId: number;
148
148
  criterias: number[];
149
149
  tags: string[];
150
+ cartOfferInfo: {
151
+ cartOfferId: number;
152
+ cartOfferName: string;
153
+ discountRate: number;
154
+ };
150
155
  }
151
156
  export interface ITotal {
152
157
  customType: string;
@@ -13,6 +13,7 @@ export interface IAddToCartRequest {
13
13
  requestInfo?: IRequestInfo;
14
14
  language?: string;
15
15
  tags?: string[];
16
+ cartOfferId?: number;
16
17
  }
17
18
  export interface IProductChild {
18
19
  productId: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nextemos",
3
- "version": "6.4.3",
3
+ "version": "6.4.4",
4
4
  "description": "For helpers and hooks used in NextJS projects",
5
5
  "main": "dist/index.js",
6
6
  "types": "./dist/index.d.ts",