@remit/domain-enums 0.0.1 → 0.0.3
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/enums.d.ts +35 -25
- package/enums.js +35 -25
- package/package.json +1 -1
package/enums.d.ts
CHANGED
|
@@ -68,6 +68,27 @@ export declare const AccountExportState: {
|
|
|
68
68
|
readonly "Failed": "Failed"
|
|
69
69
|
};
|
|
70
70
|
|
|
71
|
+
export declare const CanonicalMailboxRole: {
|
|
72
|
+
readonly "Inbox": "Inbox";
|
|
73
|
+
readonly "Drafts": "Drafts";
|
|
74
|
+
readonly "Sent": "Sent";
|
|
75
|
+
readonly "Archive": "Archive";
|
|
76
|
+
readonly "Junk": "Junk";
|
|
77
|
+
readonly "Trash": "Trash";
|
|
78
|
+
readonly "All": "All";
|
|
79
|
+
readonly "Flagged": "Flagged"
|
|
80
|
+
};
|
|
81
|
+
|
|
82
|
+
export declare const QuarantineFailureStage: {
|
|
83
|
+
readonly "BodyParse": "BodyParse"
|
|
84
|
+
};
|
|
85
|
+
|
|
86
|
+
export declare const QuarantineFailureCode: {
|
|
87
|
+
readonly "UnterminatedMultipartBoundary": "UnterminatedMultipartBoundary";
|
|
88
|
+
readonly "UnknownCharset": "UnknownCharset";
|
|
89
|
+
readonly "TruncatedBody": "TruncatedBody"
|
|
90
|
+
};
|
|
91
|
+
|
|
71
92
|
export declare const AccountConfigState: {
|
|
72
93
|
readonly "Active": "active";
|
|
73
94
|
readonly "Deleting": "deleting"
|
|
@@ -95,17 +116,6 @@ export declare const SyncPhase: {
|
|
|
95
116
|
readonly "error": "error"
|
|
96
117
|
};
|
|
97
118
|
|
|
98
|
-
export declare const CanonicalMailboxRole: {
|
|
99
|
-
readonly "Inbox": "Inbox";
|
|
100
|
-
readonly "Drafts": "Drafts";
|
|
101
|
-
readonly "Sent": "Sent";
|
|
102
|
-
readonly "Archive": "Archive";
|
|
103
|
-
readonly "Junk": "Junk";
|
|
104
|
-
readonly "Trash": "Trash";
|
|
105
|
-
readonly "All": "All";
|
|
106
|
-
readonly "Flagged": "Flagged"
|
|
107
|
-
};
|
|
108
|
-
|
|
109
119
|
export declare const NamespaceType: {
|
|
110
120
|
readonly "Personal": "personal";
|
|
111
121
|
readonly "OtherUsers": "other_users";
|
|
@@ -303,11 +313,11 @@ export declare const ReferenceType: {
|
|
|
303
313
|
};
|
|
304
314
|
|
|
305
315
|
export declare const MessageSystemFlag: {
|
|
306
|
-
readonly "Seen": "
|
|
307
|
-
readonly "Answered": "
|
|
308
|
-
readonly "Flagged": "
|
|
309
|
-
readonly "Deleted": "
|
|
310
|
-
readonly "Draft": "
|
|
316
|
+
readonly "Seen": "\\Seen";
|
|
317
|
+
readonly "Answered": "\\Answered";
|
|
318
|
+
readonly "Flagged": "\\Flagged";
|
|
319
|
+
readonly "Deleted": "\\Deleted";
|
|
320
|
+
readonly "Draft": "\\Draft"
|
|
311
321
|
};
|
|
312
322
|
|
|
313
323
|
export declare const MessageKeywordFlag: {
|
|
@@ -319,15 +329,15 @@ export declare const MessageKeywordFlag: {
|
|
|
319
329
|
};
|
|
320
330
|
|
|
321
331
|
export declare const MailboxAttribute: {
|
|
322
|
-
readonly "NonExistent": "
|
|
323
|
-
readonly "NoInferiors": "
|
|
324
|
-
readonly "NoSelect": "
|
|
325
|
-
readonly "HasChildren": "
|
|
326
|
-
readonly "HasNoChildren": "
|
|
327
|
-
readonly "Marked": "
|
|
328
|
-
readonly "Unmarked": "
|
|
329
|
-
readonly "Subscribed": "
|
|
330
|
-
readonly "Remote": "
|
|
332
|
+
readonly "NonExistent": "\\NonExistent";
|
|
333
|
+
readonly "NoInferiors": "\\Noinferiors";
|
|
334
|
+
readonly "NoSelect": "\\Noselect";
|
|
335
|
+
readonly "HasChildren": "\\HasChildren";
|
|
336
|
+
readonly "HasNoChildren": "\\HasNoChildren";
|
|
337
|
+
readonly "Marked": "\\Marked";
|
|
338
|
+
readonly "Unmarked": "\\Unmarked";
|
|
339
|
+
readonly "Subscribed": "\\Subscribed";
|
|
340
|
+
readonly "Remote": "\\Remote"
|
|
331
341
|
};
|
|
332
342
|
|
|
333
343
|
export declare const StorageType: {
|
package/enums.js
CHANGED
|
@@ -68,6 +68,27 @@ export const AccountExportState = {
|
|
|
68
68
|
"Failed": "Failed"
|
|
69
69
|
};
|
|
70
70
|
|
|
71
|
+
export const CanonicalMailboxRole = {
|
|
72
|
+
"Inbox": "Inbox",
|
|
73
|
+
"Drafts": "Drafts",
|
|
74
|
+
"Sent": "Sent",
|
|
75
|
+
"Archive": "Archive",
|
|
76
|
+
"Junk": "Junk",
|
|
77
|
+
"Trash": "Trash",
|
|
78
|
+
"All": "All",
|
|
79
|
+
"Flagged": "Flagged"
|
|
80
|
+
};
|
|
81
|
+
|
|
82
|
+
export const QuarantineFailureStage = {
|
|
83
|
+
"BodyParse": "BodyParse"
|
|
84
|
+
};
|
|
85
|
+
|
|
86
|
+
export const QuarantineFailureCode = {
|
|
87
|
+
"UnterminatedMultipartBoundary": "UnterminatedMultipartBoundary",
|
|
88
|
+
"UnknownCharset": "UnknownCharset",
|
|
89
|
+
"TruncatedBody": "TruncatedBody"
|
|
90
|
+
};
|
|
91
|
+
|
|
71
92
|
export const AccountConfigState = {
|
|
72
93
|
"Active": "active",
|
|
73
94
|
"Deleting": "deleting"
|
|
@@ -95,17 +116,6 @@ export const SyncPhase = {
|
|
|
95
116
|
"error": "error"
|
|
96
117
|
};
|
|
97
118
|
|
|
98
|
-
export const CanonicalMailboxRole = {
|
|
99
|
-
"Inbox": "Inbox",
|
|
100
|
-
"Drafts": "Drafts",
|
|
101
|
-
"Sent": "Sent",
|
|
102
|
-
"Archive": "Archive",
|
|
103
|
-
"Junk": "Junk",
|
|
104
|
-
"Trash": "Trash",
|
|
105
|
-
"All": "All",
|
|
106
|
-
"Flagged": "Flagged"
|
|
107
|
-
};
|
|
108
|
-
|
|
109
119
|
export const NamespaceType = {
|
|
110
120
|
"Personal": "personal",
|
|
111
121
|
"OtherUsers": "other_users",
|
|
@@ -303,11 +313,11 @@ export const ReferenceType = {
|
|
|
303
313
|
};
|
|
304
314
|
|
|
305
315
|
export const MessageSystemFlag = {
|
|
306
|
-
"Seen": "
|
|
307
|
-
"Answered": "
|
|
308
|
-
"Flagged": "
|
|
309
|
-
"Deleted": "
|
|
310
|
-
"Draft": "
|
|
316
|
+
"Seen": "\\Seen",
|
|
317
|
+
"Answered": "\\Answered",
|
|
318
|
+
"Flagged": "\\Flagged",
|
|
319
|
+
"Deleted": "\\Deleted",
|
|
320
|
+
"Draft": "\\Draft"
|
|
311
321
|
};
|
|
312
322
|
|
|
313
323
|
export const MessageKeywordFlag = {
|
|
@@ -319,15 +329,15 @@ export const MessageKeywordFlag = {
|
|
|
319
329
|
};
|
|
320
330
|
|
|
321
331
|
export const MailboxAttribute = {
|
|
322
|
-
"NonExistent": "
|
|
323
|
-
"NoInferiors": "
|
|
324
|
-
"NoSelect": "
|
|
325
|
-
"HasChildren": "
|
|
326
|
-
"HasNoChildren": "
|
|
327
|
-
"Marked": "
|
|
328
|
-
"Unmarked": "
|
|
329
|
-
"Subscribed": "
|
|
330
|
-
"Remote": "
|
|
332
|
+
"NonExistent": "\\NonExistent",
|
|
333
|
+
"NoInferiors": "\\Noinferiors",
|
|
334
|
+
"NoSelect": "\\Noselect",
|
|
335
|
+
"HasChildren": "\\HasChildren",
|
|
336
|
+
"HasNoChildren": "\\HasNoChildren",
|
|
337
|
+
"Marked": "\\Marked",
|
|
338
|
+
"Unmarked": "\\Unmarked",
|
|
339
|
+
"Subscribed": "\\Subscribed",
|
|
340
|
+
"Remote": "\\Remote"
|
|
331
341
|
};
|
|
332
342
|
|
|
333
343
|
export const StorageType = {
|