ins-queue-actions 1.2.28 → 1.2.29
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/notificationTemplates.js +8 -0
- package/package.json +1 -1
package/notificationTemplates.js
CHANGED
|
@@ -201,6 +201,10 @@ module.exports = {
|
|
|
201
201
|
templateName: "CUSTOMER_CANCELLED_SUBSCRIPTION",
|
|
202
202
|
requiredParams: ["subscriptionId", "customerName", "customerAddress", "frequency", "serviceName"],
|
|
203
203
|
},
|
|
204
|
+
CUSTOMER_REFUND_ISSUED: {
|
|
205
|
+
templateName: "CUSTOMER_REFUND_ISSUED",
|
|
206
|
+
requiredParams: ["displayedBookingId", "amount"],
|
|
207
|
+
},
|
|
204
208
|
},
|
|
205
209
|
SEND_SMS: {
|
|
206
210
|
ACTION_NAME: "SEND_SMS",
|
|
@@ -441,6 +445,10 @@ module.exports = {
|
|
|
441
445
|
templateName: "CUSTOMER_CANCELLED_SUBSCRIPTION",
|
|
442
446
|
requiredParams: ["subscriptionId", "customerName", "customerAddress", "frequency", "serviceName"],
|
|
443
447
|
},
|
|
448
|
+
CUSTOMER_REFUND_ISSUED: {
|
|
449
|
+
templateName: "CUSTOMER_REFUND_ISSUED",
|
|
450
|
+
requiredParams: ["displayedBookingId", "amount"],
|
|
451
|
+
},
|
|
444
452
|
},
|
|
445
453
|
SEND_PUSH_NOTIFICATION: {
|
|
446
454
|
ACTION_NAME: "SEND_PUSH_NOTIFICATION",
|