nextemos 5.10.9 → 5.10.10
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 +12 -0
- package/package.json +1 -1
|
@@ -80,6 +80,7 @@ export interface IProduct {
|
|
|
80
80
|
attributeGroups?: IAttributeGroup[];
|
|
81
81
|
attributes?: IAttributes[];
|
|
82
82
|
priceVariations?: IPriceVariations[];
|
|
83
|
+
productHierarchy?: IProductHierarchy[];
|
|
83
84
|
}
|
|
84
85
|
export interface IPriceVariations {
|
|
85
86
|
currencyId: number;
|
|
@@ -364,3 +365,14 @@ export interface IBrand {
|
|
|
364
365
|
export interface IGetProductRelationsResponse extends IResponse {
|
|
365
366
|
products: IProduct[];
|
|
366
367
|
}
|
|
368
|
+
export interface IProductHierarchy {
|
|
369
|
+
id: number;
|
|
370
|
+
childId: number;
|
|
371
|
+
displayOnList: boolean;
|
|
372
|
+
isApproved: boolean;
|
|
373
|
+
minQuantity: number;
|
|
374
|
+
maxQuantity: number;
|
|
375
|
+
orderNo: number;
|
|
376
|
+
productId: number;
|
|
377
|
+
quantityFactor: number;
|
|
378
|
+
}
|