ins-queue-actions 1.1.65 → 1.1.67
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 +16 -0
- package/package.json +1 -1
package/notificationTemplates.js
CHANGED
|
@@ -195,6 +195,14 @@ module.exports = {
|
|
|
195
195
|
templateName: "COMPLETE_REGISTRATION_SMS",
|
|
196
196
|
requiredParams: ["firstName", "link"],
|
|
197
197
|
},
|
|
198
|
+
SCHEDULED_BOOKING_CANCELLED: {
|
|
199
|
+
templateName: "SCHEDULED_BOOKING_CANCELLED",
|
|
200
|
+
requiredParams: ["bookingId", "displayedBookingId"],
|
|
201
|
+
},
|
|
202
|
+
SCHEDULED_BOOKING_CONFIRMED: {
|
|
203
|
+
templateName: "SCHEDULED_BOOKING_CONFIRMED",
|
|
204
|
+
requiredParams: ["bookingId", "displayedBookingId", "serviceName"],
|
|
205
|
+
},
|
|
198
206
|
},
|
|
199
207
|
SEND_PUSH_NOTIFICATION: {
|
|
200
208
|
ACTION_NAME: "SEND_PUSH_NOTIFICATION",
|
|
@@ -283,6 +291,14 @@ module.exports = {
|
|
|
283
291
|
"spLastname",
|
|
284
292
|
],
|
|
285
293
|
},
|
|
294
|
+
SCHEDULED_BOOKING_CANCELLED: {
|
|
295
|
+
templateName: "SCHEDULED_BOOKING_CANCELLED",
|
|
296
|
+
requiredParams: ["bookingId", "displayedBookingId"],
|
|
297
|
+
},
|
|
298
|
+
SCHEDULED_BOOKING_CONFIRMED: {
|
|
299
|
+
templateName: "SCHEDULED_BOOKING_CONFIRMED",
|
|
300
|
+
requiredParams: ["bookingId", "displayedBookingId", "serviceName"],
|
|
301
|
+
},
|
|
286
302
|
},
|
|
287
303
|
INITIATE_MASKED_CALL: {
|
|
288
304
|
ACTION_NAME: "INITIATE_MASKED_CALL",
|