meemup-library 1.3.9 → 1.3.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.
|
@@ -11,6 +11,7 @@ import IOrderDetails from "../print/IOrderDetails";
|
|
|
11
11
|
import EnumPickupInstruction from "../../enums/EnumPickupInstruction";
|
|
12
12
|
import IOrderPayment from "./IOrderPayment";
|
|
13
13
|
import IPointOfSaleElavonTerminalDevice from "../pos/IPointOfSaleElavonTerminalDevice";
|
|
14
|
+
import IElavonDevicePaymentResponse from "../elavon-device/IElavonDevicePaymentResponse";
|
|
14
15
|
interface IOrder {
|
|
15
16
|
id: number;
|
|
16
17
|
number: number;
|
|
@@ -85,6 +86,7 @@ interface IOrder {
|
|
|
85
86
|
points: number;
|
|
86
87
|
paymentTransactions: IOrderPayment[];
|
|
87
88
|
elavonDevice: IPointOfSaleElavonTerminalDevice;
|
|
89
|
+
elavonTransaction: IElavonDevicePaymentResponse | null;
|
|
88
90
|
}
|
|
89
91
|
export default IOrder;
|
|
90
92
|
export declare const initOrder: IOrder;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import IElavonDevicePaymentResponse from "../elavon-device/IElavonDevicePaymentResponse";
|
|
1
2
|
import ICalculateFeeResult from "../ICalculateFeeResult";
|
|
2
3
|
import IOrderPayment from "./IOrderPayment";
|
|
3
4
|
import IPointOfSaleSaveOrderCustomer from "./IPointOfSaleSaveOrderCustomer";
|
|
@@ -45,4 +46,5 @@ export default interface IPointOfSaleSaveOrder {
|
|
|
45
46
|
draftOrder: boolean;
|
|
46
47
|
points: number;
|
|
47
48
|
paymentTransactions: null | IOrderPayment[];
|
|
49
|
+
elavonTransaction: IElavonDevicePaymentResponse | null;
|
|
48
50
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "meemup-library",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.10",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"remove:one": "rimraf dist",
|
|
12
12
|
"remove:two": "rimraf ./src/dist",
|
|
13
13
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
14
|
-
"commit": "git add . && git commit -m \"version.1.3.
|
|
14
|
+
"commit": "git add . && git commit -m \"version.1.3.10 \" && git push origin "
|
|
15
15
|
},
|
|
16
16
|
"files": [
|
|
17
17
|
"/dist"
|