@remit/domain-enums 0.0.2 → 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 +21 -11
- package/enums.js +21 -11
- 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";
|
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",
|