ins-queue-actions 1.2.120 → 1.2.122
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 +16 -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: [],
|
|
@@ -320,9 +324,17 @@ module.exports = {
|
|
|
320
324
|
templateName: "CUSTOMER_MONTHLY_CREDIT_ADDED",
|
|
321
325
|
requiredParams: ["firstName", "amount"],
|
|
322
326
|
},
|
|
327
|
+
CUSTOMER_WALLET_CREDITS_EXPIRY: {
|
|
328
|
+
templateName: "CUSTOMER_WALLET_CREDITS_EXPIRY",
|
|
329
|
+
requiredParams: ["balance", "expiry", "name"],
|
|
330
|
+
},
|
|
323
331
|
},
|
|
324
332
|
SEND_SMS: {
|
|
325
333
|
ACTION_NAME: "SEND_SMS",
|
|
334
|
+
RFQ_COMPLETION_REMINDER: {
|
|
335
|
+
templateName: "RFQ_COMPLETION_REMINDER",
|
|
336
|
+
requiredParams: ["firstName", "rfqId"],
|
|
337
|
+
},
|
|
326
338
|
WEEKLY_REPORT_GENERATED_SP: {
|
|
327
339
|
templateName: "WEEKLY_REPORT_GENERATED_SP",
|
|
328
340
|
requiredParams: [],
|
|
@@ -681,6 +693,10 @@ module.exports = {
|
|
|
681
693
|
},
|
|
682
694
|
SEND_PUSH_NOTIFICATION: {
|
|
683
695
|
ACTION_NAME: "SEND_PUSH_NOTIFICATION",
|
|
696
|
+
RFQ_COMPLETION_REMINDER: {
|
|
697
|
+
templateName: "RFQ_COMPLETION_REMINDER",
|
|
698
|
+
requiredParams: ["firstName", "rfqId"],
|
|
699
|
+
},
|
|
684
700
|
WEEKLY_REPORT_GENERATED_SP: {
|
|
685
701
|
templateName: "WEEKLY_REPORT_GENERATED_SP",
|
|
686
702
|
requiredParams: [],
|