ins-queue-actions 1.2.126 → 1.2.128
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 +11 -3
- 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
|
+
NOTIFY_BO_ON_LOW_CREDITS: {
|
|
5
|
+
templateName: "NOTIFY_BO_ON_LOW_CREDITS",
|
|
6
|
+
requiredParams: ["boName", "employeeName"],
|
|
7
|
+
},
|
|
4
8
|
RFQ_COMPLETION_REMINDER: {
|
|
5
9
|
templateName: "RFQ_COMPLETION_REMINDER",
|
|
6
10
|
requiredParams: ["firstName", "rfqId"],
|
|
@@ -336,9 +340,13 @@ module.exports = {
|
|
|
336
340
|
templateName: "GIFT_REMINDER_RECIPIENT",
|
|
337
341
|
requiredParams: ["senderName", "redeemLink"],
|
|
338
342
|
},
|
|
339
|
-
|
|
340
|
-
templateName: "
|
|
341
|
-
requiredParams: [
|
|
343
|
+
NEW_BOOKING_REQUEST_SP: {
|
|
344
|
+
templateName: "NEW_BOOKING_REQUEST_SP",
|
|
345
|
+
requiredParams: [],
|
|
346
|
+
},
|
|
347
|
+
NOTIFY_SPS_ABOUT_NEW_QUOTE_REQUEST: {
|
|
348
|
+
templateName: "NOTIFY_SPS_ABOUT_NEW_QUOTE_REQUEST",
|
|
349
|
+
requiredParams: [],
|
|
342
350
|
},
|
|
343
351
|
},
|
|
344
352
|
SEND_SMS: {
|