ins-queue-actions 1.2.30 → 1.2.32
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/index.js +1 -0
- package/notificationTemplates.js +9 -1
- package/package.json +1 -1
package/index.js
CHANGED
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",
|
|
@@ -679,11 +683,15 @@ module.exports = {
|
|
|
679
683
|
},
|
|
680
684
|
BOOKING_NOT_ASSIGNED: {
|
|
681
685
|
templateName: "BOOKING_NOT_ASSIGNED",
|
|
682
|
-
requiredParams: [
|
|
686
|
+
requiredParams: [],
|
|
683
687
|
},
|
|
684
688
|
BOOKING_NO_SHOW: {
|
|
685
689
|
templateName: "BOOKING_NO_SHOW",
|
|
686
690
|
requiredParams: ["bookingId", "zipCode"],
|
|
687
691
|
},
|
|
692
|
+
CART_ITEM_REMINDER_CUSTOMER_SUCCESS: {
|
|
693
|
+
templateName: "CART_ITEM_REMINDER_CUSTOMER_SUCCESS",
|
|
694
|
+
requiredParams: [],
|
|
695
|
+
},
|
|
688
696
|
},
|
|
689
697
|
};
|