ins-queue-actions 1.2.31 → 1.2.33
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 +13 -5
- package/package.json +1 -1
package/notificationTemplates.js
CHANGED
|
@@ -651,6 +651,10 @@ module.exports = {
|
|
|
651
651
|
templateName: "UNABLE_TO_CHARGE_BOOKING_SP",
|
|
652
652
|
requiredParams: ["bookingId", "displayedBookingId"],
|
|
653
653
|
},
|
|
654
|
+
CART_ITEM_REMINDER_CUSTOMER: {
|
|
655
|
+
templateName: "CART_ITEM_REMINDER_CUSTOMER",
|
|
656
|
+
requiredParams: ["cartId"],
|
|
657
|
+
},
|
|
654
658
|
},
|
|
655
659
|
INITIATE_MASKED_CALL: {
|
|
656
660
|
ACTION_NAME: "INITIATE_MASKED_CALL",
|
|
@@ -667,23 +671,27 @@ module.exports = {
|
|
|
667
671
|
ACTION_NAME: "SEND_SLACK_NOTIFICATION",
|
|
668
672
|
BOOKING_PLACED: {
|
|
669
673
|
templateName: "BOOKING_PLACED",
|
|
670
|
-
requiredParams: ["
|
|
674
|
+
requiredParams: ["type", "data"],
|
|
671
675
|
},
|
|
672
676
|
BOOKING_CANCELLED: {
|
|
673
677
|
templateName: "BOOKING_CANCELLED",
|
|
674
|
-
requiredParams: ["
|
|
678
|
+
requiredParams: ["type", "data"],
|
|
675
679
|
},
|
|
676
680
|
BOOKING_RESCHEDULED: {
|
|
677
681
|
templateName: "BOOKING_RESCHEDULED",
|
|
678
|
-
requiredParams: ["
|
|
682
|
+
requiredParams: ["type", "data"],
|
|
679
683
|
},
|
|
680
684
|
BOOKING_NOT_ASSIGNED: {
|
|
681
685
|
templateName: "BOOKING_NOT_ASSIGNED",
|
|
682
|
-
requiredParams: ["
|
|
686
|
+
requiredParams: ["type", "data"],
|
|
683
687
|
},
|
|
684
688
|
BOOKING_NO_SHOW: {
|
|
685
689
|
templateName: "BOOKING_NO_SHOW",
|
|
686
|
-
requiredParams: ["
|
|
690
|
+
requiredParams: ["type", "data"],
|
|
691
|
+
},
|
|
692
|
+
CART_ITEM_REMINDER_CUSTOMER_SUCCESS: {
|
|
693
|
+
templateName: "CART_ITEM_REMINDER_CUSTOMER_SUCCESS",
|
|
694
|
+
requiredParams: ["type", "data"],
|
|
687
695
|
},
|
|
688
696
|
},
|
|
689
697
|
};
|