feat(messaging): message campaign delivery stats + views (#22452)
<!-- This is an auto-generated description by cubic. --> <a href="https://cubic.dev/pr/twentyhq/twenty/pull/22452?utm_source=github" target="_blank" rel="noopener noreferrer" data-no-image-dialog="true"><picture><source media="(prefers-color-scheme: dark)" srcset="https://www.cubic.dev/buttons/review-in-cubic-dark.svg"><source media="(prefers-color-scheme: light)" srcset="https://www.cubic.dev/buttons/review-in-cubic-light.svg"><img alt="Review in cubic" src="https://www.cubic.dev/buttons/review-in-cubic-dark.svg"></picture></a> <!-- End of auto-generated description by cubic. -->
This commit is contained in:
+5
@@ -17,6 +17,11 @@ export const CAMPAIGN_STATUS = {
|
||||
|
||||
export const MATERIALIZE_CAMPAIGN_JOB = 'MaterializeCampaignJob';
|
||||
export const SEND_CAMPAIGN_EMAIL_JOB = 'SendCampaignEmailJob';
|
||||
export const REFRESH_CAMPAIGN_STATS_JOB = 'RefreshCampaignStatsJob';
|
||||
|
||||
export const CAMPAIGN_STATS_REFRESH_DEBOUNCE_MS = 10_000;
|
||||
export const CAMPAIGN_STATS_REFRESH_DELAY_MS =
|
||||
CAMPAIGN_STATS_REFRESH_DEBOUNCE_MS + 2_000;
|
||||
|
||||
export const MAX_CAMPAIGN_RECIPIENTS = 10000;
|
||||
|
||||
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
export type RefreshCampaignStatsJobData = {
|
||||
workspaceId: string;
|
||||
campaignId: string;
|
||||
};
|
||||
Reference in New Issue
Block a user