nextemos 5.8.11 → 5.8.12
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 +1 -14
- package/package.json +1 -1
|
@@ -72,7 +72,7 @@ export interface IProduct {
|
|
|
72
72
|
categories?: ICategory[];
|
|
73
73
|
variations?: number[];
|
|
74
74
|
channelProperties?: ChannelProperty[];
|
|
75
|
-
types?:
|
|
75
|
+
types?: IProductType[];
|
|
76
76
|
barcodes?: Barcode[];
|
|
77
77
|
documents?: IDocument[];
|
|
78
78
|
vendors?: Vendor[];
|
|
@@ -171,19 +171,6 @@ export interface ChannelProperty {
|
|
|
171
171
|
isShowedListPage: boolean;
|
|
172
172
|
isShowedDetailPage: boolean;
|
|
173
173
|
}
|
|
174
|
-
export interface Type {
|
|
175
|
-
id: number;
|
|
176
|
-
name: string;
|
|
177
|
-
key: string;
|
|
178
|
-
integrationCode: string;
|
|
179
|
-
isShowedOnPage: boolean;
|
|
180
|
-
parameterName: string;
|
|
181
|
-
routePath: string;
|
|
182
|
-
routeTitle: string;
|
|
183
|
-
routeDescription: string;
|
|
184
|
-
isAggregated: boolean;
|
|
185
|
-
extensionData: any;
|
|
186
|
-
}
|
|
187
174
|
export interface Barcode {
|
|
188
175
|
id: number;
|
|
189
176
|
barcode: string;
|