@go-mailer/vertebra 3.2.35 → 3.2.37
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/lib/constants/queues.js +17 -15
- package/package.json +1 -1
package/lib/constants/queues.js
CHANGED
|
@@ -3,35 +3,37 @@ module.exports = {
|
|
|
3
3
|
AUTOMATION: "automation_event",
|
|
4
4
|
AUTOMATION_INACTIONS: "automation_inactions",
|
|
5
5
|
AUTOMATION_TASKS: "automation_task",
|
|
6
|
+
CAMPAIGN_CONVERSION_EVENT: "conversion_event_campaign",
|
|
6
7
|
EVENT_CONTACT_UPDATE: "contact_event_update",
|
|
7
8
|
NEURON_EVENT: "neuron_event",
|
|
8
9
|
PUBLIC_EVENT: "public_event",
|
|
9
10
|
|
|
10
|
-
CAMPAIGN_CONVERSION_EVENT: "conversion_event_campaign",
|
|
11
11
|
|
|
12
12
|
NEW_TENANT: "new_account_created",
|
|
13
13
|
TENANT_DEACTIVATED: "account_deactivated",
|
|
14
14
|
TENANT_DNS_CONFIG: "tenant_dns_to_configure",
|
|
15
|
+
TENANT_SENDER_EMAIL_CONFIG: "tenant_default_sender_email_to_configure",
|
|
15
16
|
|
|
16
|
-
|
|
17
|
+
COMPLETED_CONTACTS_IMPORTS: "contacts_imports_complete",
|
|
17
18
|
CONTACT_DOWNLOAD_REQUEST: "contact_download_request",
|
|
19
|
+
CONTACT_REPORT: "contact_report",
|
|
20
|
+
CONTACT_TO_CREATE: "contact_to_create",
|
|
18
21
|
CONTACTS_TO_IMPORT: "contacts_to_import",
|
|
19
22
|
CONTACTS_TO_DELETE: "contacts_to_delete",
|
|
20
23
|
CONTACTS_TO_UPDATE: "contacts_to_update",
|
|
21
24
|
CONTACTS_TO_VALIDATE: "contacts_to_validate",
|
|
22
25
|
IMPORTED_CONTACT: "contacts_that_have_been_imported",
|
|
23
|
-
|
|
24
|
-
CONTACT_REPORT: "contact_report",
|
|
26
|
+
NEW_CONTACT_UPLOAD_JOB: "contact_upload_job",
|
|
25
27
|
|
|
26
|
-
CONTACT_TO_CREATE: "contact_to_create",
|
|
27
|
-
SEND_EMAIL: "emails_to_be_sent",
|
|
28
|
-
SEND_EMAIL_PREFERRED: "emails_to_be_sent_preferred",
|
|
29
|
-
EMAIL_SENT: "successful_emails_sent",
|
|
30
|
-
EMAIL_FAILED: "failed_email_sends",
|
|
31
28
|
CAMPAIGN_PROCESSED: "campaign_processed",
|
|
32
29
|
CAMPAIGNS_TO_PROCESS: "campaigns_to_process",
|
|
33
|
-
|
|
30
|
+
DRAFTS_TO_SAVE: 'drafts_to_save',
|
|
31
|
+
EMAIL_FAILED: "failed_email_sends",
|
|
32
|
+
EMAIL_SENT: "successful_emails_sent",
|
|
34
33
|
PAUSED_CAMPAIGNS: "paused_campaigns",
|
|
34
|
+
SEND_EMAIL: "emails_to_be_sent",
|
|
35
|
+
SEND_EMAIL_PREFERRED: "emails_to_be_sent_preferred",
|
|
36
|
+
TRANSACTIONAL_SENT: "transactional_sent",
|
|
35
37
|
|
|
36
38
|
MAIL_ACTIONS: "mail_action_to_process",
|
|
37
39
|
MAIL_ACTION_REPORT: "mail_action_report_item",
|
|
@@ -52,8 +54,8 @@ module.exports = {
|
|
|
52
54
|
EXPIRED_CREDITS: "email_credits_to_expire",
|
|
53
55
|
FREE_CREDIT: "free_credit",
|
|
54
56
|
GAME_CREDITS_TO_ADD: "game_credits_to_add",
|
|
55
|
-
REFUND: "refunds",
|
|
56
57
|
REFERRAL_BONUS: "referral_bonus_to_process",
|
|
58
|
+
REFUND: "refunds",
|
|
57
59
|
WALLET_CHARGES: "charge_wallet",
|
|
58
60
|
WALLET_TOPUP: "wallet_topup",
|
|
59
61
|
WALLET_TO_TOPUP: "wallet_to_topup",
|
|
@@ -62,12 +64,12 @@ module.exports = {
|
|
|
62
64
|
|
|
63
65
|
WEEKLY_REPORTS: "process_weekly_reports",
|
|
64
66
|
|
|
67
|
+
EXPIRED_SUBSCRIPTION: "subscriptions_expired",
|
|
68
|
+
NEW_SUBSCRIPTION: "subscriptions_new_or_renewed",
|
|
65
69
|
SEND_INVOICE: "invoices_to_send",
|
|
66
|
-
SUBSCRIPTION_TO_UPGRADE: "subscription_to_upgrade",
|
|
67
|
-
SUBSCRIPTION_TO_SANITIZE: "subscription_to_sanitize",
|
|
68
70
|
SUBSCRIPTION_TO_RESET_RESOURCES: "subscriptions_to_reset_resources",
|
|
69
|
-
|
|
70
|
-
|
|
71
|
+
SUBSCRIPTION_TO_SANITIZE: "subscription_to_sanitize",
|
|
72
|
+
SUBSCRIPTION_TO_UPGRADE: "subscription_to_upgrade",
|
|
71
73
|
|
|
72
74
|
CONTACTS_TO_UNSUBSCRIBE_USERS: "contacts_to_unsubscribe_in_users_service",
|
|
73
75
|
CONTACTS_TO_UNSUBSCRIBE_MAILING: "contacts_to_unsubscribe_in_mailing_service",
|