nextemos 6.1.6 → 6.1.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.
@@ -241,6 +241,30 @@ export interface IOrderListItem {
241
241
  referrerName: string;
242
242
  userAgent: string;
243
243
  totals: IOrderTotal[];
244
+ orderDetails: {
245
+ id: number;
246
+ referenceOrderLineId: number;
247
+ integrationCode: string;
248
+ quantity: number;
249
+ salesPriceWithTax: number;
250
+ salesPriceWithoutTax: number;
251
+ unitPriceWithTax: number;
252
+ unitPriceWithoutTax: number;
253
+ productId: number;
254
+ stockBarcodeId: number;
255
+ flag: IOrderItemFlags;
256
+ cancelReasonId: number;
257
+ returnReasonId: number;
258
+ }[];
259
+ parentId: number;
260
+ isGuestOrder: boolean;
261
+ campaignIdsRaw: string;
262
+ channelId: number;
263
+ shippingAddressId: number;
264
+ invoiceAddressId: number;
265
+ wareHouseId: number;
266
+ wayBillNo: string;
267
+ deliveredPerson: string;
244
268
  }
245
269
  export interface IRefundItem {
246
270
  id: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nextemos",
3
- "version": "6.1.6",
3
+ "version": "6.1.7",
4
4
  "description": "For helpers and hooks used in NextJS projects",
5
5
  "main": "dist/index.js",
6
6
  "types": "./dist/index.d.ts",