ins-queue-actions 1.2.72 → 1.2.74

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.
@@ -3,7 +3,7 @@ module.exports = {
3
3
  ACTION_NAME: "SEND_EMAIL",
4
4
  ADMIN_GENERAL_NOTIFICATION: {
5
5
  templateName: "ADMIN_GENERAL_NOTIFICATION",
6
- requiredParams: [ "subject", "message"], // payload is optional
6
+ requiredParams: ["subject", "message"], // payload is optional
7
7
  },
8
8
  CUSTOMER_RECURRENT_STRIPE_FAILURE: {
9
9
  templateName: "CUSTOMER_RECURRENT_STRIPE_FAILURE",
@@ -264,6 +264,10 @@ module.exports = {
264
264
  templateName: "SUBSCRIPTION_CANCELLED",
265
265
  requiredParams: ["cancellationReason", "frequency"],
266
266
  },
267
+ CUSTOMER_RESUBSCRIPTION_FAILURE: {
268
+ templateName: "CUSTOMER_RESUBSCRIPTION_FAILURE",
269
+ requiredParams: ["name", "link"],
270
+ },
267
271
  },
268
272
  SEND_SMS: {
269
273
  ACTION_NAME: "SEND_SMS",
@@ -562,6 +566,10 @@ module.exports = {
562
566
  templateName: "SUBSCRIPTION_CANCELLED",
563
567
  requiredParams: ["cancellationReason", "frequency"],
564
568
  },
569
+ CUSTOMER_RESUBSCRIPTION_FAILURE: {
570
+ templateName: "CUSTOMER_RESUBSCRIPTION_FAILURE",
571
+ requiredParams: ["name", "link"],
572
+ },
565
573
  },
566
574
  SEND_PUSH_NOTIFICATION: {
567
575
  ACTION_NAME: "SEND_PUSH_NOTIFICATION",
@@ -802,8 +810,7 @@ module.exports = {
802
810
  templateName: "SUBSCRIPTION_CANCELLED",
803
811
  requiredParams: ["cancellationReason", "frequency"],
804
812
  },
805
- EXTRA_HOUR_REMINDER_CUSTOMER:
806
- {
813
+ EXTRA_HOUR_REMINDER_CUSTOMER: {
807
814
  templateName: "EXTRA_HOUR_REMINDER_CUSTOMER",
808
815
  requiredParams: ["bookingId", "displayedBookingId"],
809
816
  },
@@ -811,6 +818,18 @@ module.exports = {
811
818
  templateName: "EXTRA_HOUR_REMINDER_PROVIDER",
812
819
  requiredParams: ["bookingId", "displayedBookingId"],
813
820
  },
821
+ CUSTOMER_RESUBSCRIPTION_FAILURE: {
822
+ templateName: "CUSTOMER_RESUBSCRIPTION_FAILURE",
823
+ requiredParams: ["name", "link"],
824
+ },
825
+ CUSTOMER_RESPONDED_TO_SP_BID: {
826
+ templateName: "CUSTOMER_RESPONDED_TO_SP_BID",
827
+ requiredParams: ["bidId", "rfqId"]
828
+ },
829
+ INFORM_SPS_ABOUT_CUSTOMER_PROJECT_COMPLETION: {
830
+ templateName: "INFORM_SPS_ABOUT_CUSTOMER_PROJECT_COMPLETION",
831
+ requiredParams: ["rfqId"]
832
+ }
814
833
  },
815
834
  INITIATE_MASKED_CALL: {
816
835
  ACTION_NAME: "INITIATE_MASKED_CALL",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ins-queue-actions",
3
- "version": "1.2.72",
3
+ "version": "1.2.74",
4
4
  "main": "index.js",
5
5
  "engineStrict": true
6
6
  }