Merge branch 'feat/inda-383-daily-stat' into 'main'
[ProtonMail-WebClient.git] / packages / activation / src / tests / data / gmail.imap.providerFolders.ts
blobdb3d0c7af4a2df1ab011b02a64fee0894ef5d3b2
1 const gmailImapModalLabels = [
2     {
3         Source: 'INBOX',
4         Separator: '/',
5         Flags: ['HasNoChildren'],
6         DestinationFolder: 'Inbox',
7     },
8     {
9         Source: '[Gmail]/Sent Mail',
10         Separator: '/',
11         Flags: ['HasNoChildren', 'Sent'],
12         DestinationFolder: 'Sent',
13     },
14     {
15         Source: '[Gmail]/Drafts',
16         Separator: '/',
17         Flags: ['Drafts', 'HasNoChildren'],
18         DestinationFolder: 'Drafts',
19     },
20     {
21         Source: '[Gmail]/Starred',
22         Separator: '/',
23         Flags: ['Flagged', 'HasNoChildren'],
24         DestinationFolder: 'Starred',
25     },
26     {
27         Source: '[Gmail]/All Mail',
28         Separator: '/',
29         Flags: ['All', 'HasNoChildren'],
30         DestinationFolder: 'All Mail',
31     },
32     {
33         Source: 'Important',
34         Separator: '/',
35         Flags: ['HasChildren'],
36     },
38 export default gmailImapModalLabels;