meemup-library 1.3.3 → 1.3.4

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.
@@ -55,7 +55,7 @@ export default interface IPointOfSaleSetting {
55
55
  templateReceipt: IPointOfSaleSettingTemplateReceipt;
56
56
  receiptCopiesOnOrderPayment: IPointOfSaleSettingReceiptCopiesOnOrderPayment;
57
57
  receiptCopiesOnOrderSave: IPointOfSaleSettingReceiptCopiesOnOrderSave;
58
- elavonActiveClerk: boolean;
59
- elavonWaitForResponseOfTransaction: boolean;
58
+ externalClerkSystem: boolean;
59
+ awaitingPaymentDeviceResponse: boolean;
60
60
  }
61
61
  export declare const initPointOfSaleSetting: IPointOfSaleSetting;
@@ -54,6 +54,6 @@ export const initPointOfSaleSetting = {
54
54
  templateReceipt: initPointOfSaleSettingTemplateReceipt,
55
55
  receiptCopiesOnOrderPayment: initPointOfSaleSettingReceiptCopiesOnOrderPayment,
56
56
  receiptCopiesOnOrderSave: initPointOfSaleSettingReceiptCopiesOnOrderSave,
57
- elavonActiveClerk: false,
58
- elavonWaitForResponseOfTransaction: false
57
+ externalClerkSystem: false,
58
+ awaitingPaymentDeviceResponse: false,
59
59
  };
@@ -11,6 +11,6 @@ export default interface IPointOfSaleTeamMember {
11
11
  pinCode: string;
12
12
  role: string;
13
13
  roleId: number;
14
- clerkId: string;
14
+ externalId: string;
15
15
  }
16
16
  export declare const initPointOfSaleTeamMember: IPointOfSaleTeamMember;
@@ -10,5 +10,5 @@ export const initPointOfSaleTeamMember = {
10
10
  pinCode: "",
11
11
  role: "",
12
12
  roleId: 1,
13
- clerkId: ""
13
+ externalId: ""
14
14
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meemup-library",
3
- "version": "1.3.3",
3
+ "version": "1.3.4",
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.3\" && git push origin "
14
+ "commit": "git add . && git commit -m \"version.1.3.4\" && git push origin "
15
15
  },
16
16
  "files": [
17
17
  "/dist"