nextemos 6.1.12 → 6.1.14

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,7 @@ export interface IGetProductRelationsRequest extends IRequestBase {
147
147
  relatedType: "Complementary" | "Recommended" | "Alternatives";
148
148
  categoryIds?: number[];
149
149
  productIds?: number[];
150
+ includes?: string[];
150
151
  }
151
152
  export interface IProductService extends IService {
152
153
  Product: (data: IProductRequest, options?: IRequestInit) => Promise<IApiResponse<IProductResponse>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nextemos",
3
- "version": "6.1.12",
3
+ "version": "6.1.14",
4
4
  "description": "For helpers and hooks used in NextJS projects",
5
5
  "main": "dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -9,12 +9,6 @@
9
9
  "LICENSE",
10
10
  "README.md"
11
11
  ],
12
- "exports": {
13
- ".": {
14
- "types": "./dist/index.d.ts",
15
- "default": "./dist/index.js"
16
- }
17
- },
18
12
  "scripts": {
19
13
  "clean": "rimraf dist",
20
14
  "prebuild": "npm run clean",