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.
- package/dist/interfaces/product.d.ts +14 -14
- package/package.json +1 -1
|
@@ -118,20 +118,20 @@ export interface DisplayType {
|
|
|
118
118
|
}
|
|
119
119
|
export interface ICategory {
|
|
120
120
|
id: number;
|
|
121
|
-
name
|
|
122
|
-
description
|
|
123
|
-
sort
|
|
124
|
-
parentId
|
|
125
|
-
catalogId
|
|
126
|
-
integrationCode
|
|
127
|
-
className
|
|
128
|
-
isDefault
|
|
129
|
-
routePath
|
|
130
|
-
routeTitle
|
|
131
|
-
routeDescription
|
|
132
|
-
parameterName
|
|
133
|
-
hierarchy
|
|
134
|
-
extensionData
|
|
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[];
|