nextemos 4.2.9 → 4.3.1

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.
@@ -103,6 +103,8 @@ export interface IChildCategory {
103
103
  hierarchyField?: string;
104
104
  path?: string;
105
105
  extensionData?: any;
106
+ productCount?: number;
107
+ childProductCount?: number;
106
108
  childCategories?: IChildCategory[];
107
109
  }
108
110
  export interface ICategoryTreeItem {
@@ -121,6 +123,8 @@ export interface ICategoryTreeItem {
121
123
  hierarchy?: number[];
122
124
  blogPostBlogCategoryMappings?: BlogPostBlogCategoryMapping[];
123
125
  extensionData?: any;
126
+ productCount?: number;
127
+ childProductCount?: number;
124
128
  childCategories?: IChildCategory[];
125
129
  }
126
130
  export interface IBlogPostsResponse extends IResponsePaging {
@@ -135,6 +135,8 @@ export interface ICategory {
135
135
  parameterName?: string;
136
136
  hierarchy?: number[];
137
137
  extensionData?: any;
138
+ productCount?: number;
139
+ childProductCount?: number;
138
140
  }
139
141
  export interface ICategoryWithChilds extends ICategory {
140
142
  childCategories: ICategory[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nextemos",
3
- "version": "4.2.9",
3
+ "version": "4.3.1",
4
4
  "description": "For helpers and hooks used in NextJS projects",
5
5
  "main": "dist/index.js",
6
6
  "types": "./dist/index.d.ts",