meemup-library 1.2.53 → 1.2.55
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/pos/IPointOfSaleRefundForm.d.ts +7 -0
- package/dist/interfaces/pos/IPointOfSaleRefundForm.js +5 -0
- package/dist/interfaces/pos/IPointOfSaleRefundFormItem.d.ts +4 -0
- package/dist/interfaces/pos/IPointOfSaleRefundFormItem.js +1 -0
- package/dist/interfaces/print/IOrderDetails.d.ts +2 -0
- package/dist/interfaces/print/IOrderDetails.js +2 -1
- package/package.json +1 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import IPointOfSaleRefundFormItem from "./IPointOfSaleRefundFormItem";
|
|
2
|
+
export default interface IPointOfSaleRefundForm {
|
|
3
|
+
tip: number;
|
|
4
|
+
items: IPointOfSaleRefundFormItem[];
|
|
5
|
+
moneyToBeReturned: number;
|
|
6
|
+
}
|
|
7
|
+
export declare const initPointOfSaleRefundForm: IPointOfSaleRefundForm;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -8,6 +8,7 @@ import IOrderDetailPaymentInfo from "./IOrderDetailPaymentInfo";
|
|
|
8
8
|
import IModifiedDetails from "./IModifiedDetails";
|
|
9
9
|
import IOrderDetailTimeLine from "./IOrderDetailTimeLine";
|
|
10
10
|
import IOrderDetailThirdPartyDriver from "./IOrderDetailThirdPartyDriver";
|
|
11
|
+
import IOrderPayment from "../order/IOrderPayment";
|
|
11
12
|
interface IOrderDetails {
|
|
12
13
|
order: IOrderDetailOrder;
|
|
13
14
|
customer: IOrderDetailCustomer;
|
|
@@ -23,6 +24,7 @@ interface IOrderDetails {
|
|
|
23
24
|
timeline: IOrderDetailTimeLine[];
|
|
24
25
|
deliveryTrackingUrl: string;
|
|
25
26
|
thirdPartyDriver: IOrderDetailThirdPartyDriver | null;
|
|
27
|
+
paymentTransactions: IOrderPayment[];
|
|
26
28
|
}
|
|
27
29
|
export default IOrderDetails;
|
|
28
30
|
export declare const initOrderDetails: IOrderDetails;
|