ins-queue-actions 1.2.70 → 1.2.71

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.
@@ -1,6 +1,10 @@
1
1
  module.exports = {
2
2
  SEND_EMAIL: {
3
3
  ACTION_NAME: "SEND_EMAIL",
4
+ ADMIN_GENERAL_NOTIFICATION: {
5
+ templateName: "ADMIN_GENERAL_NOTIFICATION",
6
+ requiredParams: [ "subject", "message"], // payload is optional
7
+ },
4
8
  CUSTOMER_RECURRENT_STRIPE_FAILURE: {
5
9
  templateName: "CUSTOMER_RECURRENT_STRIPE_FAILURE",
6
10
  requiredParams: ["customerName", "subscriptionId"],
@@ -821,6 +825,10 @@ module.exports = {
821
825
  },
822
826
  SEND_SLACK_NOTIFICATION: {
823
827
  ACTION_NAME: "SEND_SLACK_NOTIFICATION",
828
+ SUBSCRIPTION_BOOKING_SKIPPED: {
829
+ templateName: "SUBSCRIPTION_BOOKING_SKIPPED",
830
+ requiredParams: ["type", "data"],
831
+ },
824
832
  BOOKING_PLACED: {
825
833
  templateName: "BOOKING_PLACED",
826
834
  requiredParams: ["type", "data"],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ins-queue-actions",
3
- "version": "1.2.70",
3
+ "version": "1.2.71",
4
4
  "main": "index.js",
5
5
  "engineStrict": true
6
6
  }