nextemos 3.7.6 → 3.7.7

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.
@@ -118,20 +118,20 @@ export interface DisplayType {
118
118
  }
119
119
  export interface ICategory {
120
120
  id: number;
121
- name: string;
122
- description: string;
123
- sort: number;
124
- parentId: number;
125
- catalogId: number;
126
- integrationCode: string;
127
- className: string;
128
- isDefault: boolean;
129
- routePath: string;
130
- routeTitle: string;
131
- routeDescription: string;
132
- parameterName: string;
133
- hierarchy: number[];
134
- extensionData: any;
121
+ name?: string;
122
+ description?: string;
123
+ sort?: number;
124
+ parentId?: number;
125
+ catalogId?: number;
126
+ integrationCode?: string;
127
+ className?: string;
128
+ isDefault?: boolean;
129
+ routePath?: string;
130
+ routeTitle?: string;
131
+ routeDescription?: string;
132
+ parameterName?: string;
133
+ hierarchy?: number[];
134
+ extensionData?: any;
135
135
  }
136
136
  export interface ICategoryWithChilds extends ICategory {
137
137
  childCategories: ICategory[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nextemos",
3
- "version": "3.7.6",
3
+ "version": "3.7.7",
4
4
  "description": "For helpers and hooks used in NextJS projects",
5
5
  "main": "dist/index.js",
6
6
  "types": "./dist/index.d.ts",