ins-queue-actions 1.2.38 → 1.2.40
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 -0
- package/notificationTemplates.js +8 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -14,6 +14,7 @@ module.exports = {
|
|
|
14
14
|
ADMIN_ROLE_DELETED: "admin-role.deleted",
|
|
15
15
|
REGISTRATION_PROGRESS_CREATED: "registration-progress.created",
|
|
16
16
|
REGISTRATION_PROGRESS_UPDATED: "registration-progress.updated",
|
|
17
|
+
REGISTRATION_PROGRESS_DELETED: "registration-progress.deleted",
|
|
17
18
|
SERVICE_PARTNER_CREATED: "service-partner.created",
|
|
18
19
|
SERVICE_PARTNER_UPDATED: "service-partner.updated",
|
|
19
20
|
SERVICE_PARTNER_DELETED: "service-partner.deleted",
|
package/notificationTemplates.js
CHANGED
|
@@ -230,6 +230,10 @@ module.exports = {
|
|
|
230
230
|
templateName: "ADMIN_MOBILE_VERIFICATION",
|
|
231
231
|
requiredParams: ["otpCode"],
|
|
232
232
|
},
|
|
233
|
+
SUBSCRIPTION_NOT_CREATED: {
|
|
234
|
+
templateName: "SUBSCRIPTION_NOT_CREATED",
|
|
235
|
+
requiredParams: ["bookingId", "displayedBookingId"],
|
|
236
|
+
},
|
|
233
237
|
NOTIFY_CUSTOMER_SERVICE_COMPLETE: {
|
|
234
238
|
templateName: "NOTIFY_CUSTOMER_SERVICE_COMPLETE",
|
|
235
239
|
requiredParams: ["bookingId", "displayedBookingId"],
|
|
@@ -495,7 +499,10 @@ module.exports = {
|
|
|
495
499
|
"serviceName",
|
|
496
500
|
],
|
|
497
501
|
},
|
|
498
|
-
|
|
502
|
+
SUBSCRIPTION_NOT_CREATED: {
|
|
503
|
+
templateName: "SUBSCRIPTION_NOT_CREATED",
|
|
504
|
+
requiredParams: ["bookingId", "displayedBookingId"],
|
|
505
|
+
},
|
|
499
506
|
NEW_ONDEMAND_REQUEST: {
|
|
500
507
|
templateName: "NEW_ONDEMAND_REQUEST",
|
|
501
508
|
requiredParams: ["service", "price", "zipCode", "tip"],
|