meemup-library 1.1.14 → 1.1.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.
@@ -3,6 +3,8 @@ interface ISpecificPayment {
3
3
  skipTipping: boolean;
4
4
  remark: string;
5
5
  device: number | null;
6
+ taxIsIncluded: boolean;
7
+ printReceipt: boolean;
6
8
  }
7
9
  export declare const initSpecificPayment: ISpecificPayment;
8
10
  export default ISpecificPayment;
@@ -2,5 +2,7 @@ export const initSpecificPayment = {
2
2
  amount: "",
3
3
  device: null,
4
4
  remark: "",
5
- skipTipping: true
5
+ skipTipping: true,
6
+ printReceipt: true,
7
+ taxIsIncluded: false
6
8
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meemup-library",
3
- "version": "1.1.14",
3
+ "version": "1.1.15",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",