meemup-library 1.5.70 → 1.5.72

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.
@@ -1,4 +1,5 @@
1
1
  import IOrderDetails from "../print/IOrderDetails";
2
+ import IReservationTableRow from "../reservation/IReservationTableRow";
2
3
  import IPointOfSaleActionFormCashDrawer from "./IPointOfSaleActionFormCashDrawer";
3
4
  import IPointOfSaleOrder from "./IPointOfSaleOrder";
4
5
  import IPointOfSaleStarMicronicConnection from "./IPointOfSaleStarMicronicConnection";
@@ -15,6 +16,7 @@ export default interface IPointOfSalePrintAction {
15
16
  detail?: IOrderDetails;
16
17
  order?: IPointOfSaleOrder;
17
18
  cashDrawer?: IPointOfSaleActionFormCashDrawer;
18
- mode: "UserPrintTransactionReceipt" | "OrderCreated" | "OrderSaved" | "OrderPaid" | "UserAcceptNewOrder" | "NewOrderArrived" | "UserPrintOrder" | "UserRefundOrder" | "UserUpdateOrder" | "UserPartialRefundOrder" | "OpenCashDrawer" | "CashDrawerPaidInOut" | "Markup";
19
+ reservation: IReservationTableRow;
20
+ mode: "UserPrintTransactionReceipt" | "OrderCreated" | "OrderSaved" | "OrderPaid" | "UserAcceptNewOrder" | "NewOrderArrived" | "UserPrintOrder" | "UserRefundOrder" | "UserUpdateOrder" | "UserPartialRefundOrder" | "OpenCashDrawer" | "CashDrawerPaidInOut" | "Markup" | "NewReservation" | "RejectedReservation" | "AcceptedReservation";
19
21
  printInformationInPhotoFormat: boolean;
20
22
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meemup-library",
3
- "version": "1.5.70",
3
+ "version": "1.5.72",
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.5.70\" && git push origin "
14
+ "commit": "git add . && git commit -m \"version.1.5.72\" && git push origin "
15
15
  },
16
16
  "files": [
17
17
  "/dist"