CoolFace
Apppublic

xXArjunXx/MetaHackathon

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
mockEmails.ts221 linesDownload Raw Back to fixtures
1/**2 * Mock email fixtures synchronized with backend task definitions3 * Source: server/email_triage_env.py TASKS dictionary4 */5 6export const MOCK_EMAILS = {7  easy: [8    {9      id: "email_1",10      sender: "boss@company.com",11      subject: "Q4 Performance Review",12      preview: "Your performance review is ready for discussion...",13      priority: "high" as const,14      has_attachment: true,15      is_read: false,16    },17    {18      id: "email_2",19      sender: "newsletter@medium.com",20      subject: "Your weekly digest",21      preview: "Here are the top stories this week...",22      priority: "low" as const,23      has_attachment: false,24      is_read: false,25    },26    {27      id: "email_3",28      sender: "support@vendor.com",29      subject: "License renewal reminder",30      preview: "Your license expires in 30 days...",31      priority: "medium" as const,32      has_attachment: false,33      is_read: false,34    },35    {36      id: "email_4",37      sender: "noreply@social.com",38      subject: "Someone liked your post",39      preview: "Your post got 50 likes!...",40      priority: "low" as const,41      has_attachment: false,42      is_read: false,43    },44    {45      id: "email_5",46      sender: "alerts@bank.com",47      subject: "Suspicious login detected",48      preview: "We detected an unusual login from...",49      priority: "high" as const,50      has_attachment: false,51      is_read: false,52    },53  ],54  medium: [55    {56      id: "email_1",57      sender: "client@startup.io",58      subject: "Project proposal attached",59      preview: "Please review the attached proposal...",60      priority: "high" as const,61      has_attachment: true,62      is_read: false,63    },64    {65      id: "email_2",66      sender: "team@slack.com",67      subject: "Daily standup summary",68      preview: "Here's what the team completed...",69      priority: "medium" as const,70      has_attachment: false,71      is_read: false,72    },73    {74      id: "email_3",75      sender: "unknown@sketchy.ru",76      subject: "Click here to confirm your account",77      preview: "Please verify your details immediately...",78      priority: "high" as const,79      has_attachment: false,80      is_read: false,81    },82    {83      id: "email_4",84      sender: "hr@company.com",85      subject: "Benefits enrollment deadline",86      preview: "Enrollment closes in 2 days...",87      priority: "high" as const,88      has_attachment: true,89      is_read: false,90    },91    {92      id: "email_5",93      sender: "deals@retailer.com",94      subject: "50% off everything this weekend",95      preview: "Limited time sale...",96      priority: "low" as const,97      has_attachment: false,98      is_read: false,99    },100    {101      id: "email_6",102      sender: "noreply@github.com",103      subject: "PR review requested",104      preview: "Your code review is needed on PR #234...",105      priority: "medium" as const,106      has_attachment: false,107      is_read: false,108    },109    {110      id: "email_7",111      sender: "invoice@vendor.com",112      subject: "Invoice #INV-2024-001",113      preview: "Payment due within 30 days...",114      priority: "medium" as const,115      has_attachment: true,116      is_read: false,117    },118    {119      id: "email_8",120      sender: "spam@marketing.com",121      subject: "Congratulations, you've won!",122      preview: "You've been selected as a winner...",123      priority: "low" as const,124      has_attachment: false,125      is_read: false,126    },127  ],128  hard: [129    {130      id: "email_1",131      sender: "ceo@company.com",132      subject: "Fwd: Board meeting agenda",133      preview: "Please find attached the agenda for Friday's board...",134      priority: "high" as const,135      has_attachment: true,136      is_read: false,137    },138    {139      id: "email_2",140      sender: "contractor@freelance.net",141      subject: "Work sample for review",142      preview: "I've completed the initial design work...",143      priority: "medium" as const,144      has_attachment: true,145      is_read: false,146    },147    {148      id: "email_3",149      sender: "security@company.com",150      subject: "Mandatory password reset required",151      preview: "For security compliance, please reset your password...",152      priority: "high" as const,153      has_attachment: false,154      is_read: false,155    },156    {157      id: "email_4",158      sender: "partner@bigcorp.com",159      subject: "RE: Contract terms discussion",160      preview: "Thank you for your email. We've reviewed the terms...",161      priority: "high" as const,162      has_attachment: true,163      is_read: false,164    },165    {166      id: "email_5",167      sender: "support@saas.com",168      subject: "Your trial is ending soon",169      preview: "Your 14-day trial expires in 3 days...",170      priority: "medium" as const,171      has_attachment: false,172      is_read: false,173    },174    {175      id: "email_6",176      sender: "noreply@youtube.com",177      subject: "A channel you subscribed to posted",178      preview: "Tech Channel uploaded: 'Top 10 Tools 2024'...",179      priority: "low" as const,180      has_attachment: false,181      is_read: false,182    },183    {184      id: "email_7",185      sender: "legal@company.com",186      subject: "NDA signature required - Urgent",187      preview: "We need your signature on the attached NDA...",188      priority: "high" as const,189      has_attachment: true,190      is_read: false,191    },192    {193      id: "email_8",194      sender: "team-lead@company.com",195      subject: "Mentorship opportunity for junior engineer",196      preview: "Would you be interested in mentoring a new hire?...",197      priority: "medium" as const,198      has_attachment: false,199      is_read: false,200    },201    {202      id: "email_9",203      sender: "noreply@twitter.com",204      subject: "Your account may have been accessed",205      preview: "We detected unusual login activity. If this...",206      priority: "high" as const,207      has_attachment: false,208      is_read: false,209    },210    {211      id: "email_10",212      sender: "promotions@vendor.com",213      subject: "Flash sale: Software licenses",214      preview: "Limited offer: 40% off all licenses...",215      priority: "low" as const,216      has_attachment: false,217      is_read: false,218    },219  ],220};221