ins-queue-actions 1.1.38 → 1.1.40

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.
@@ -102,6 +102,10 @@ module.exports = {
102
102
  templateName: "CUSTOMER_CANCELLED_SCHEDULED_BOOKING_SP",
103
103
  requiredParams: ["bookingId", "displayedBookingId", "reason"],
104
104
  },
105
+ CUSTOMER_REFERRAL: {
106
+ templateName: "CUSTOMER_REFERRAL",
107
+ requiredParams: ["refferalCode"],
108
+ },
105
109
  },
106
110
  SEND_PUSH_NOTIFICATION: {
107
111
  ACTION_NAME: "SEND_PUSH_NOTIFICATION",
@@ -125,6 +129,10 @@ module.exports = {
125
129
  templateName: "NEW_ITEMS_ADDED",
126
130
  requiredParams: ["bookingId", "displayedBookingId"],
127
131
  },
132
+ ITEM_WITHDRAWN: {
133
+ templateName: "ITEM_WITHDRAWN",
134
+ requiredParams: ["bookingId", "displayedBookingId"],
135
+ },
128
136
  SERVICE_OTP_VERIFIED: {
129
137
  templateName: "SERVICE_OTP_VERIFIED",
130
138
  requiredParams: [],
package/package.json CHANGED
@@ -1,6 +1,9 @@
1
1
  {
2
2
  "name": "ins-queue-actions",
3
- "version": "1.1.38",
3
+ "version": "1.1.40",
4
4
  "main": "index.js",
5
- "engineStrict": true
5
+ "engineStrict": true,
6
+ "dependencies": {
7
+ "ins-queue-actions": "^1.1.39"
8
+ }
6
9
  }