ins-queue-actions 1.2.44 → 1.2.46
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 +16 -1
- package/package.json +1 -1
package/index.js
CHANGED
package/notificationTemplates.js
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
module.exports = {
|
|
2
2
|
SEND_EMAIL: {
|
|
3
3
|
ACTION_NAME: "SEND_EMAIL",
|
|
4
|
+
CUSTOMER_RECURRENT_STRIPE_FAILURE: {
|
|
5
|
+
templateName: "CUSTOMER_RECURRENT_STRIPE_FAILURE",
|
|
6
|
+
requiredParams: ["customerName", "subscriptionId"],
|
|
7
|
+
},
|
|
4
8
|
FORGOT_PASSWORD: {
|
|
5
9
|
templateName: "FORGOT_PASSWORD",
|
|
6
10
|
requiredParams: ["name", "link"],
|
|
@@ -238,6 +242,10 @@ module.exports = {
|
|
|
238
242
|
},
|
|
239
243
|
SEND_SMS: {
|
|
240
244
|
ACTION_NAME: "SEND_SMS",
|
|
245
|
+
CUSTOMER_RECURRENT_STRIPE_FAILURE: {
|
|
246
|
+
templateName: "CUSTOMER_RECURRENT_STRIPE_FAILURE",
|
|
247
|
+
requiredParams: ["customerName", "subscriptionId"],
|
|
248
|
+
},
|
|
241
249
|
ADMIN_MOBILE_VERIFICATION: {
|
|
242
250
|
templateName: "ADMIN_MOBILE_VERIFICATION",
|
|
243
251
|
requiredParams: ["otpCode"],
|
|
@@ -508,7 +516,10 @@ module.exports = {
|
|
|
508
516
|
},
|
|
509
517
|
SEND_PUSH_NOTIFICATION: {
|
|
510
518
|
ACTION_NAME: "SEND_PUSH_NOTIFICATION",
|
|
511
|
-
|
|
519
|
+
CUSTOMER_RECURRENT_STRIPE_FAILURE: {
|
|
520
|
+
templateName: "CUSTOMER_RECURRENT_STRIPE_FAILURE",
|
|
521
|
+
requiredParams: ["customerName", "subscriptionId"],
|
|
522
|
+
},
|
|
512
523
|
CUSTOMER_CANCELLED_SUBSCRIPTION: {
|
|
513
524
|
templateName: "CUSTOMER_CANCELLED_SUBSCRIPTION",
|
|
514
525
|
requiredParams: [
|
|
@@ -702,6 +713,10 @@ module.exports = {
|
|
|
702
713
|
templateName: "CART_ITEM_REMINDER_CUSTOMER",
|
|
703
714
|
requiredParams: ["cartId"],
|
|
704
715
|
},
|
|
716
|
+
NOTIFY_SPS_ABOUT_NEW_QUOTE_REQUEST: {
|
|
717
|
+
templateName: "NOTIFY_SPS_ABOUT_NEW_QUOTE_REQUEST",
|
|
718
|
+
requiredParams: ["title", "message"],
|
|
719
|
+
},
|
|
705
720
|
},
|
|
706
721
|
INITIATE_MASKED_CALL: {
|
|
707
722
|
ACTION_NAME: "INITIATE_MASKED_CALL",
|