nextemos 5.2.15 → 5.2.16
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.
|
@@ -260,6 +260,10 @@ export interface IRefundItem {
|
|
|
260
260
|
userAgent: string;
|
|
261
261
|
totals: IOrderTotal[];
|
|
262
262
|
}
|
|
263
|
+
export interface IOrderRefundDetailItem extends IOrderItem {
|
|
264
|
+
returnReasonId: number;
|
|
265
|
+
returnReason: string;
|
|
266
|
+
}
|
|
263
267
|
export interface IRefundDetail {
|
|
264
268
|
isTaxIncluded: boolean;
|
|
265
269
|
docNo: string;
|
|
@@ -272,7 +276,7 @@ export interface IRefundDetail {
|
|
|
272
276
|
referenceNo: string;
|
|
273
277
|
currency: string;
|
|
274
278
|
currencyCode: string;
|
|
275
|
-
items:
|
|
279
|
+
items: IOrderRefundDetailItem[];
|
|
276
280
|
totals: IOrderTotal[];
|
|
277
281
|
}
|
|
278
282
|
export interface IOrderShipmentItem {
|