|
| 1 | +export const LIMIT = 100; |
| 2 | + |
| 3 | +export const EVENT_TYPE_OPTIONS = [ |
| 4 | + { |
| 5 | + label: "Email Sent", |
| 6 | + value: "email_sent", |
| 7 | + }, |
| 8 | + { |
| 9 | + label: "Email Bounced", |
| 10 | + value: "email_bounced", |
| 11 | + }, |
| 12 | + { |
| 13 | + label: "Email Opened", |
| 14 | + value: "email_opened", |
| 15 | + }, |
| 16 | + { |
| 17 | + label: "Email Link Clicked", |
| 18 | + value: "email_link_clicked", |
| 19 | + }, |
| 20 | + { |
| 21 | + label: "Reply Received", |
| 22 | + value: "reply_received", |
| 23 | + }, |
| 24 | + { |
| 25 | + label: "Lead Unsubscribed", |
| 26 | + value: "lead_unsubscribed", |
| 27 | + }, |
| 28 | + { |
| 29 | + label: "Campaign Completed", |
| 30 | + value: "campaign_completed", |
| 31 | + }, |
| 32 | + { |
| 33 | + label: "Account Error", |
| 34 | + value: "account_error", |
| 35 | + }, |
| 36 | + { |
| 37 | + label: "Lead Not Interested", |
| 38 | + value: "lead_not_interested", |
| 39 | + }, |
| 40 | + { |
| 41 | + label: "Lead Neutral", |
| 42 | + value: "lead_neutral", |
| 43 | + }, |
| 44 | + { |
| 45 | + label: "Lead Meeting Booked", |
| 46 | + value: "lead_meeting_booked", |
| 47 | + }, |
| 48 | + { |
| 49 | + label: "Lead Meeting Completed", |
| 50 | + value: "lead_meeting_completed", |
| 51 | + }, |
| 52 | + { |
| 53 | + label: "Lead Closed", |
| 54 | + value: "lead_closed", |
| 55 | + }, |
| 56 | + { |
| 57 | + label: "Lead Out of Office", |
| 58 | + value: "lead_out_of_office", |
| 59 | + }, |
| 60 | + { |
| 61 | + label: "Lead Wrong Person", |
| 62 | + value: "lead_wrong_person", |
| 63 | + }, |
| 64 | +]; |
| 65 | + |
| 66 | +export const NEW_STATUS_OPTIONS = [ |
| 67 | + "Active", |
| 68 | + "Completed", |
| 69 | + "Unsubscribed", |
| 70 | + "Interested", |
| 71 | + "Meeting Booked", |
| 72 | + "Meeting Completed", |
| 73 | + "Closed", |
| 74 | + "Out of Office", |
| 75 | + "Not Interested", |
| 76 | + "Wrong Person", |
| 77 | +]; |
0 commit comments