@remit/domain-enums 0.0.6 → 0.0.8
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 +24 -12
- package/enums.js +24 -12
- package/package.json +1 -1
package/enums.d.ts
CHANGED
|
@@ -193,6 +193,18 @@ export declare const FilterClauseField: {
|
|
|
193
193
|
readonly "FromDomain": "FromDomain"
|
|
194
194
|
};
|
|
195
195
|
|
|
196
|
+
export declare const LabelColor: {
|
|
197
|
+
readonly "Default": "Default";
|
|
198
|
+
readonly "Red": "Red";
|
|
199
|
+
readonly "Orange": "Orange";
|
|
200
|
+
readonly "Yellow": "Yellow";
|
|
201
|
+
readonly "Green": "Green";
|
|
202
|
+
readonly "Teal": "Teal";
|
|
203
|
+
readonly "Blue": "Blue";
|
|
204
|
+
readonly "Purple": "Purple";
|
|
205
|
+
readonly "Gray": "Gray"
|
|
206
|
+
};
|
|
207
|
+
|
|
196
208
|
export declare const OrganizeJobState: {
|
|
197
209
|
readonly "Pending": "Pending";
|
|
198
210
|
readonly "Running": "Running";
|
|
@@ -240,6 +252,13 @@ export declare const SenderTrust: {
|
|
|
240
252
|
readonly "Vip": "vip"
|
|
241
253
|
};
|
|
242
254
|
|
|
255
|
+
export declare const DisplayNameCorrespondence: {
|
|
256
|
+
readonly "Corresponds": "Corresponds";
|
|
257
|
+
readonly "Lookalike": "Lookalike";
|
|
258
|
+
readonly "Unrelated": "Unrelated";
|
|
259
|
+
readonly "NoClaim": "NoClaim"
|
|
260
|
+
};
|
|
261
|
+
|
|
243
262
|
export declare const PlacementAction: {
|
|
244
263
|
readonly "MoveToInbox": "MoveToInbox";
|
|
245
264
|
readonly "MoveToJunk": "MoveToJunk"
|
|
@@ -338,6 +357,11 @@ export declare const ReferenceType: {
|
|
|
338
357
|
readonly "References": "references"
|
|
339
358
|
};
|
|
340
359
|
|
|
360
|
+
export declare const LabelAction: {
|
|
361
|
+
readonly "Apply": "Apply";
|
|
362
|
+
readonly "Remove": "Remove"
|
|
363
|
+
};
|
|
364
|
+
|
|
341
365
|
export declare const MessageSystemFlag: {
|
|
342
366
|
readonly "Seen": "\\Seen";
|
|
343
367
|
readonly "Answered": "\\Answered";
|
|
@@ -394,18 +418,6 @@ export declare const AccountSettingName: {
|
|
|
394
418
|
readonly "MailboxRole": "MailboxRole"
|
|
395
419
|
};
|
|
396
420
|
|
|
397
|
-
export declare const LabelColor: {
|
|
398
|
-
readonly "Default": "Default";
|
|
399
|
-
readonly "Red": "Red";
|
|
400
|
-
readonly "Orange": "Orange";
|
|
401
|
-
readonly "Yellow": "Yellow";
|
|
402
|
-
readonly "Green": "Green";
|
|
403
|
-
readonly "Teal": "Teal";
|
|
404
|
-
readonly "Blue": "Blue";
|
|
405
|
-
readonly "Purple": "Purple";
|
|
406
|
-
readonly "Gray": "Gray"
|
|
407
|
-
};
|
|
408
|
-
|
|
409
421
|
export declare const MessagePlacementMoveState: {
|
|
410
422
|
readonly "pending": "pending";
|
|
411
423
|
readonly "queued": "queued";
|
package/enums.js
CHANGED
|
@@ -193,6 +193,18 @@ export const FilterClauseField = {
|
|
|
193
193
|
"FromDomain": "FromDomain"
|
|
194
194
|
};
|
|
195
195
|
|
|
196
|
+
export const LabelColor = {
|
|
197
|
+
"Default": "Default",
|
|
198
|
+
"Red": "Red",
|
|
199
|
+
"Orange": "Orange",
|
|
200
|
+
"Yellow": "Yellow",
|
|
201
|
+
"Green": "Green",
|
|
202
|
+
"Teal": "Teal",
|
|
203
|
+
"Blue": "Blue",
|
|
204
|
+
"Purple": "Purple",
|
|
205
|
+
"Gray": "Gray"
|
|
206
|
+
};
|
|
207
|
+
|
|
196
208
|
export const OrganizeJobState = {
|
|
197
209
|
"Pending": "Pending",
|
|
198
210
|
"Running": "Running",
|
|
@@ -240,6 +252,13 @@ export const SenderTrust = {
|
|
|
240
252
|
"Vip": "vip"
|
|
241
253
|
};
|
|
242
254
|
|
|
255
|
+
export const DisplayNameCorrespondence = {
|
|
256
|
+
"Corresponds": "Corresponds",
|
|
257
|
+
"Lookalike": "Lookalike",
|
|
258
|
+
"Unrelated": "Unrelated",
|
|
259
|
+
"NoClaim": "NoClaim"
|
|
260
|
+
};
|
|
261
|
+
|
|
243
262
|
export const PlacementAction = {
|
|
244
263
|
"MoveToInbox": "MoveToInbox",
|
|
245
264
|
"MoveToJunk": "MoveToJunk"
|
|
@@ -338,6 +357,11 @@ export const ReferenceType = {
|
|
|
338
357
|
"References": "references"
|
|
339
358
|
};
|
|
340
359
|
|
|
360
|
+
export const LabelAction = {
|
|
361
|
+
"Apply": "Apply",
|
|
362
|
+
"Remove": "Remove"
|
|
363
|
+
};
|
|
364
|
+
|
|
341
365
|
export const MessageSystemFlag = {
|
|
342
366
|
"Seen": "\\Seen",
|
|
343
367
|
"Answered": "\\Answered",
|
|
@@ -394,18 +418,6 @@ export const AccountSettingName = {
|
|
|
394
418
|
"MailboxRole": "MailboxRole"
|
|
395
419
|
};
|
|
396
420
|
|
|
397
|
-
export const LabelColor = {
|
|
398
|
-
"Default": "Default",
|
|
399
|
-
"Red": "Red",
|
|
400
|
-
"Orange": "Orange",
|
|
401
|
-
"Yellow": "Yellow",
|
|
402
|
-
"Green": "Green",
|
|
403
|
-
"Teal": "Teal",
|
|
404
|
-
"Blue": "Blue",
|
|
405
|
-
"Purple": "Purple",
|
|
406
|
-
"Gray": "Gray"
|
|
407
|
-
};
|
|
408
|
-
|
|
409
421
|
export const MessagePlacementMoveState = {
|
|
410
422
|
"pending": "pending",
|
|
411
423
|
"queued": "queued",
|