ins-queue-actions 1.1.79 → 1.1.81
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 +28 -0
- package/package.json +1 -1
package/notificationTemplates.js
CHANGED
|
@@ -272,6 +272,22 @@ module.exports = {
|
|
|
272
272
|
templateName: "SP_PAYMENT_TRANSFER_SUCCESSFUL",
|
|
273
273
|
requiredParams: ["displayedBookingId", "totalPayment", "serviceName"],
|
|
274
274
|
},
|
|
275
|
+
SP_ACCEPTED_BOOKING_CHANGE_REQUEST_CUSTOMER: {
|
|
276
|
+
templateName: "SP_ACCEPTED_BOOKING_CHANGE_REQUEST_CUSTOMER",
|
|
277
|
+
requiredParams: ["displayedBookingId"],
|
|
278
|
+
},
|
|
279
|
+
SP_REJECTED_BOOKING_CHANGE_REQUEST_CUSTOMER: {
|
|
280
|
+
templateName: "SP_REJECTED_BOOKING_CHANGE_REQUEST_CUSTOMER",
|
|
281
|
+
requiredParams: ["displayedBookingId"],
|
|
282
|
+
},
|
|
283
|
+
CUSTOMER_ACCEPTED_BOOKING_CHANGE_REQUEST_BY_SP: {
|
|
284
|
+
templateName: "CUSTOMER_ACCEPTED_BOOKING_CHANGE_REQUEST_BY_SP",
|
|
285
|
+
requiredParams: ["displayedBookingId"],
|
|
286
|
+
},
|
|
287
|
+
CUSTOMER_REJECTED_BOOKING_CHANGE_REQUEST_BY_SP: {
|
|
288
|
+
templateName: "CUSTOMER_REJECTED_BOOKING_CHANGE_REQUEST_BY_SP",
|
|
289
|
+
requiredParams: ["displayedBookingId"],
|
|
290
|
+
},
|
|
275
291
|
},
|
|
276
292
|
SEND_PUSH_NOTIFICATION: {
|
|
277
293
|
ACTION_NAME: "SEND_PUSH_NOTIFICATION",
|
|
@@ -388,6 +404,18 @@ module.exports = {
|
|
|
388
404
|
templateName: "BOOKING_CHANGES_REQUESTED_SP",
|
|
389
405
|
requiredParams: ["displayedBookingId", "bookingId"],
|
|
390
406
|
},
|
|
407
|
+
BOOKING_CHANGES_REQUESTED_CUSTOMER: {
|
|
408
|
+
templateName: "BOOKING_CHANGES_REQUESTED_CUSTOMER",
|
|
409
|
+
requiredParams: ["displayedBookingId", "bookingId"],
|
|
410
|
+
},
|
|
411
|
+
CUSTOMER_ACCEPTED_BOOKING_CHANGE_REQUEST_BY_SP: {
|
|
412
|
+
templateName: "CUSTOMER_ACCEPTED_BOOKING_CHANGE_REQUEST_BY_SP",
|
|
413
|
+
requiredParams: ["displayedBookingId"],
|
|
414
|
+
},
|
|
415
|
+
CUSTOMER_REJECTED_BOOKING_CHANGE_REQUEST_BY_SP: {
|
|
416
|
+
templateName: "CUSTOMER_REJECTED_BOOKING_CHANGE_REQUEST_BY_SP",
|
|
417
|
+
requiredParams: ["displayedBookingId"],
|
|
418
|
+
},
|
|
391
419
|
},
|
|
392
420
|
INITIATE_MASKED_CALL: {
|
|
393
421
|
ACTION_NAME: "INITIATE_MASKED_CALL",
|