ins-queue-actions 1.2.121 → 1.2.123
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 +20 -0
- package/package.json +1 -1
package/notificationTemplates.js
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
module.exports = {
|
|
2
2
|
SEND_EMAIL: {
|
|
3
3
|
ACTION_NAME: "SEND_EMAIL",
|
|
4
|
+
RFQ_COMPLETION_REMINDER: {
|
|
5
|
+
templateName: "RFQ_COMPLETION_REMINDER",
|
|
6
|
+
requiredParams: ["firstName", "rfqId"],
|
|
7
|
+
},
|
|
4
8
|
WEEKLY_REPORT_GENERATED_SP: {
|
|
5
9
|
templateName: "WEEKLY_REPORT_GENERATED_SP",
|
|
6
10
|
requiredParams: [],
|
|
@@ -324,9 +328,17 @@ module.exports = {
|
|
|
324
328
|
templateName: "CUSTOMER_WALLET_CREDITS_EXPIRY",
|
|
325
329
|
requiredParams: ["balance", "expiry", "name"],
|
|
326
330
|
},
|
|
331
|
+
GIFT_RECEIVED_RECIPIENT: {
|
|
332
|
+
templateName: "GIFT_RECEIVED_RECIPIENT",
|
|
333
|
+
requiredParams: ["senderName", "redeemLink"],
|
|
334
|
+
},
|
|
327
335
|
},
|
|
328
336
|
SEND_SMS: {
|
|
329
337
|
ACTION_NAME: "SEND_SMS",
|
|
338
|
+
RFQ_COMPLETION_REMINDER: {
|
|
339
|
+
templateName: "RFQ_COMPLETION_REMINDER",
|
|
340
|
+
requiredParams: ["firstName", "rfqId"],
|
|
341
|
+
},
|
|
330
342
|
WEEKLY_REPORT_GENERATED_SP: {
|
|
331
343
|
templateName: "WEEKLY_REPORT_GENERATED_SP",
|
|
332
344
|
requiredParams: [],
|
|
@@ -682,9 +694,17 @@ module.exports = {
|
|
|
682
694
|
templateName: "CUSTOMER_RESPONDED_TO_SP_BID",
|
|
683
695
|
requiredParams: [],
|
|
684
696
|
},
|
|
697
|
+
GIFT_RECEIVED_RECIPIENT: {
|
|
698
|
+
templateName: "GIFT_RECEIVED_RECIPIENT",
|
|
699
|
+
requiredParams: ["senderName", "redeemLink"],
|
|
700
|
+
},
|
|
685
701
|
},
|
|
686
702
|
SEND_PUSH_NOTIFICATION: {
|
|
687
703
|
ACTION_NAME: "SEND_PUSH_NOTIFICATION",
|
|
704
|
+
RFQ_COMPLETION_REMINDER: {
|
|
705
|
+
templateName: "RFQ_COMPLETION_REMINDER",
|
|
706
|
+
requiredParams: ["firstName", "rfqId"],
|
|
707
|
+
},
|
|
688
708
|
WEEKLY_REPORT_GENERATED_SP: {
|
|
689
709
|
templateName: "WEEKLY_REPORT_GENERATED_SP",
|
|
690
710
|
requiredParams: [],
|