picker-db 4.5.1 → 4.5.3

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.
package/constants.js CHANGED
@@ -51,6 +51,10 @@ module.exports = {
51
51
  INDEX: 6,
52
52
  TEXT: "TERMINAL",
53
53
  },
54
+ LINK_TO_PAY: {
55
+ INDEX: 7,
56
+ TEXT: "LINK_TO_PAY",
57
+ },
54
58
  },
55
59
  BOOKING_TYPES: {
56
60
  PICKUP_AND_DELIVER: {
@@ -89,6 +89,7 @@ module.exports = (connection) => {
89
89
  PAYMENT_METHODS.CARD.TEXT,
90
90
  PAYMENT_METHODS.CASH.TEXT,
91
91
  PAYMENT_METHODS.TERMINAL.TEXT,
92
+ PAYMENT_METHODS.LINK_TO_PAY.TEXT,
92
93
  ],
93
94
  },
94
95
  });
@@ -373,6 +374,7 @@ module.exports = (connection) => {
373
374
  PAYMENT_METHODS.BILLING_CARD.INDEX,
374
375
  PAYMENT_METHODS.BILLING_TRANSFER.INDEX,
375
376
  PAYMENT_METHODS.TERMINAL.INDEX,
377
+ PAYMENT_METHODS.LINK_TO_PAY.INDEX,
376
378
  ],
377
379
  },
378
380
  billingMethod: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "picker-db",
3
- "version": "4.5.1",
3
+ "version": "4.5.3",
4
4
  "description": "Picker DB services",
5
5
  "main": "index.js",
6
6
  "scripts": {