meemup-library 1.3.13 → 1.3.15
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,7 +11,6 @@ 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";
|
|
15
14
|
interface IOrder {
|
|
16
15
|
id: number;
|
|
17
16
|
number: number;
|
|
@@ -86,7 +85,7 @@ interface IOrder {
|
|
|
86
85
|
points: number;
|
|
87
86
|
paymentTransactions: IOrderPayment[];
|
|
88
87
|
elavonDevice: IPointOfSaleElavonTerminalDevice;
|
|
89
|
-
elavonTransaction:
|
|
88
|
+
elavonTransaction: object | null;
|
|
90
89
|
}
|
|
91
90
|
export default IOrder;
|
|
92
91
|
export declare const initOrder: IOrder;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import EnumPaymentType from "../../enums/EnumPaymentType";
|
|
2
|
-
import IElavonDevicePaymentResponse from "../elavon-device/IElavonDevicePaymentResponse";
|
|
3
2
|
export default interface IOrderPayment {
|
|
4
3
|
id: number;
|
|
5
4
|
dateTime: string;
|
|
@@ -10,7 +9,7 @@ export default interface IOrderPayment {
|
|
|
10
9
|
done: boolean;
|
|
11
10
|
payWithCashAmount: number;
|
|
12
11
|
uuid: string;
|
|
13
|
-
data:
|
|
12
|
+
data: object | null;
|
|
14
13
|
oldId?: number;
|
|
15
14
|
refundAmount?: number;
|
|
16
15
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "meemup-library",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.15",
|
|
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.15 \" && git push origin "
|
|
15
15
|
},
|
|
16
16
|
"files": [
|
|
17
17
|
"/dist"
|