ins-queue-actions 1.2.76 → 1.2.78

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.
@@ -5,6 +5,10 @@ module.exports = {
5
5
  templateName: "ADMIN_GENERAL_NOTIFICATION",
6
6
  requiredParams: ["subject", "message"], // payload is optional
7
7
  },
8
+ CUSTOMER_RFQ_SUBMITTED: {
9
+ templateName: "CUSTOMER_RFQ_SUBMITTED",
10
+ requiredParams: ["rfqId", "category"],
11
+ },
8
12
  CUSTOMER_RECURRENT_STRIPE_FAILURE: {
9
13
  templateName: "CUSTOMER_RECURRENT_STRIPE_FAILURE",
10
14
  requiredParams: ["customerName", "subscriptionId"],
@@ -279,6 +283,10 @@ module.exports = {
279
283
  templateName: "CUSTOMER_RECURRENT_STRIPE_FAILURE",
280
284
  requiredParams: ["customerName", "subscriptionId"],
281
285
  },
286
+ CUSTOMER_RFQ_SUBMITTED: {
287
+ templateName: "CUSTOMER_RFQ_SUBMITTED",
288
+ requiredParams: ["rfqId", "category"],
289
+ },
282
290
  ADMIN_MOBILE_VERIFICATION: {
283
291
  templateName: "ADMIN_MOBILE_VERIFICATION",
284
292
  requiredParams: ["otpCode"],
@@ -581,10 +589,18 @@ module.exports = {
581
589
  },
582
590
  SEND_PUSH_NOTIFICATION: {
583
591
  ACTION_NAME: "SEND_PUSH_NOTIFICATION",
592
+ CUSTOMER_RATED_BOOKING: {
593
+ templateName: "CUSTOMER_RATED_BOOKING",
594
+ requiredParams: ["bookingId", "displayedBookingId", "rating"],
595
+ },
584
596
  CUSTOMER_RECURRENT_STRIPE_FAILURE: {
585
597
  templateName: "CUSTOMER_RECURRENT_STRIPE_FAILURE",
586
598
  requiredParams: ["customerName", "subscriptionId"],
587
599
  },
600
+ CUSTOMER_RFQ_SUBMITTED: {
601
+ templateName: "CUSTOMER_RFQ_SUBMITTED",
602
+ requiredParams: ["rfqId", "category"],
603
+ },
588
604
  CUSTOMER_CANCELLED_SUBSCRIPTION: {
589
605
  templateName: "CUSTOMER_CANCELLED_SUBSCRIPTION",
590
606
  requiredParams: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ins-queue-actions",
3
- "version": "1.2.76",
3
+ "version": "1.2.78",
4
4
  "main": "index.js",
5
5
  "engineStrict": true
6
6
  }