ins-queue-actions 1.1.95 → 1.1.97
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/index.js +1 -1
- package/notificationTemplates.js +8 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -156,7 +156,7 @@ module.exports = {
|
|
|
156
156
|
ASSIGN_CUSTOM_SERVICE_PROVIDERS: "ASSIGN_CUSTOM_SERVICE_PROVIDERS",
|
|
157
157
|
SEND_CUSTOM_SERVICE_PROVIDERS_NOTIFICATION:
|
|
158
158
|
"SEND_CUSTOM_SERVICE_PROVIDERS_NOTIFICATION",
|
|
159
|
-
|
|
159
|
+
REFUND_UNUSED_WALLET_CREDITS: "REFUND_UNUSED_WALLET_CREDITS",
|
|
160
160
|
STATE_CONFIG_CREATED: "STATE_CONFIG_CREATED",
|
|
161
161
|
STATE_CONFIG_UPDATED: "STATE_CONFIG_UPDATED",
|
|
162
162
|
};
|
package/notificationTemplates.js
CHANGED
|
@@ -367,6 +367,10 @@ module.exports = {
|
|
|
367
367
|
templateName: "EXTERNAL_REVIEW_REQUEST",
|
|
368
368
|
requiredParams: ["name", "reviewUrl"],
|
|
369
369
|
},
|
|
370
|
+
CUSTOMER_WALLET_CREDITS_EXPIRY: {
|
|
371
|
+
templateName: "CUSTOMER_WALLET_CREDITS_EXPIRY",
|
|
372
|
+
requiredParams: ["balance", 'expiry']
|
|
373
|
+
}
|
|
370
374
|
},
|
|
371
375
|
SEND_PUSH_NOTIFICATION: {
|
|
372
376
|
ACTION_NAME: "SEND_PUSH_NOTIFICATION",
|
|
@@ -516,6 +520,10 @@ module.exports = {
|
|
|
516
520
|
templateName: "BOOKING_CHANGE_REQUEST_REJECTED",
|
|
517
521
|
requiredParams: ["displayedBookingId"],
|
|
518
522
|
},
|
|
523
|
+
CUSTOMER_WALLET_CREDITS_EXPIRY: {
|
|
524
|
+
templateName: "CUSTOMER_WALLET_CREDITS_EXPIRY",
|
|
525
|
+
requiredParams: ["balance", 'expiry']
|
|
526
|
+
}
|
|
519
527
|
},
|
|
520
528
|
INITIATE_MASKED_CALL: {
|
|
521
529
|
ACTION_NAME: "INITIATE_MASKED_CALL",
|