ins-queue-actions 1.2.74 → 1.2.76
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 -4
- package/package.json +1 -1
package/notificationTemplates.js
CHANGED
|
@@ -268,6 +268,10 @@ module.exports = {
|
|
|
268
268
|
templateName: "CUSTOMER_RESUBSCRIPTION_FAILURE",
|
|
269
269
|
requiredParams: ["name", "link"],
|
|
270
270
|
},
|
|
271
|
+
BOOKING_REASSIGNED_CUSTOMER: {
|
|
272
|
+
templateName: "BOOKING_REASSIGNED_CUSTOMER",
|
|
273
|
+
requiredParams: ["bookingId", "displayedBookingId"],
|
|
274
|
+
},
|
|
271
275
|
},
|
|
272
276
|
SEND_SMS: {
|
|
273
277
|
ACTION_NAME: "SEND_SMS",
|
|
@@ -570,6 +574,10 @@ module.exports = {
|
|
|
570
574
|
templateName: "CUSTOMER_RESUBSCRIPTION_FAILURE",
|
|
571
575
|
requiredParams: ["name", "link"],
|
|
572
576
|
},
|
|
577
|
+
BOOKING_REASSIGNED_CUSTOMER: {
|
|
578
|
+
templateName: "BOOKING_REASSIGNED_CUSTOMER",
|
|
579
|
+
requiredParams: ["bookingId", "displayedBookingId"],
|
|
580
|
+
},
|
|
573
581
|
},
|
|
574
582
|
SEND_PUSH_NOTIFICATION: {
|
|
575
583
|
ACTION_NAME: "SEND_PUSH_NOTIFICATION",
|
|
@@ -800,7 +808,7 @@ module.exports = {
|
|
|
800
808
|
},
|
|
801
809
|
BOOKING_REASSIGNED_CUSTOMER: {
|
|
802
810
|
templateName: "BOOKING_REASSIGNED_CUSTOMER",
|
|
803
|
-
requiredParams: ["bookingId"],
|
|
811
|
+
requiredParams: ["bookingId", "displayedBookingId"],
|
|
804
812
|
},
|
|
805
813
|
CHANGE_SCHEDULE_TYPE_NOTIFICATION: {
|
|
806
814
|
templateName: "CHANGE_SCHEDULE_TYPE_NOTIFICATION",
|
|
@@ -824,12 +832,12 @@ module.exports = {
|
|
|
824
832
|
},
|
|
825
833
|
CUSTOMER_RESPONDED_TO_SP_BID: {
|
|
826
834
|
templateName: "CUSTOMER_RESPONDED_TO_SP_BID",
|
|
827
|
-
requiredParams: ["bidId", "rfqId"]
|
|
835
|
+
requiredParams: ["bidId", "rfqId"],
|
|
828
836
|
},
|
|
829
837
|
INFORM_SPS_ABOUT_CUSTOMER_PROJECT_COMPLETION: {
|
|
830
838
|
templateName: "INFORM_SPS_ABOUT_CUSTOMER_PROJECT_COMPLETION",
|
|
831
|
-
requiredParams: ["rfqId"]
|
|
832
|
-
}
|
|
839
|
+
requiredParams: ["rfqId"],
|
|
840
|
+
},
|
|
833
841
|
},
|
|
834
842
|
INITIATE_MASKED_CALL: {
|
|
835
843
|
ACTION_NAME: "INITIATE_MASKED_CALL",
|
|
@@ -884,6 +892,14 @@ module.exports = {
|
|
|
884
892
|
templateName: "SP_NOT_TRAINED",
|
|
885
893
|
requiredParams: ["type", "data"],
|
|
886
894
|
},
|
|
895
|
+
RFQ_SUBMITTED: {
|
|
896
|
+
templateName: "RFQ_SUBMITTED",
|
|
897
|
+
requiredParams: ["type", "data"],
|
|
898
|
+
},
|
|
899
|
+
RFQ_COMPLETED: {
|
|
900
|
+
templateName: "RFQ_COMPLETED",
|
|
901
|
+
requiredParams: ["type", "data"],
|
|
902
|
+
},
|
|
887
903
|
},
|
|
888
904
|
CALL_NOTIFICATION: {
|
|
889
905
|
ACTION_NAME: "CALL_NOTIFICATION",
|