nextemos 5.3.11 → 5.3.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.
|
@@ -78,6 +78,21 @@ export interface IProduct {
|
|
|
78
78
|
vendors?: Vendor[];
|
|
79
79
|
attributeGroups?: IAttributeGroup[];
|
|
80
80
|
attributes?: IAttributes[];
|
|
81
|
+
priceVariations: IPriceVariations[];
|
|
82
|
+
}
|
|
83
|
+
export interface IPriceVariations {
|
|
84
|
+
currencyId: number;
|
|
85
|
+
currentQuantity: number;
|
|
86
|
+
discountValue: number;
|
|
87
|
+
id: number;
|
|
88
|
+
integrationCode: string;
|
|
89
|
+
isTaxIncluded: boolean;
|
|
90
|
+
priceTypeId: number;
|
|
91
|
+
priorityOrder: number;
|
|
92
|
+
productId: number;
|
|
93
|
+
quantityTo: number;
|
|
94
|
+
salesQuantity: number;
|
|
95
|
+
value: number;
|
|
81
96
|
}
|
|
82
97
|
export interface Rate {
|
|
83
98
|
id: number;
|
|
@@ -108,6 +108,9 @@ export interface IGetPriceAlertsRequest extends IRequestBase {
|
|
|
108
108
|
export interface IAddPriceAlertRequest extends IRequestBase {
|
|
109
109
|
productPriceAlerts: {
|
|
110
110
|
productId: number;
|
|
111
|
+
currencyId?: number;
|
|
112
|
+
priceTypeId?: number;
|
|
113
|
+
price?: number;
|
|
111
114
|
}[];
|
|
112
115
|
}
|
|
113
116
|
export interface IRemovePriceAlertRequest extends IRequestBase {
|