@remit/domain-enums 0.0.18 → 0.0.19
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 +13 -13
- package/enums.js +13 -13
- package/package.json +1 -1
package/enums.d.ts
CHANGED
|
@@ -322,6 +322,19 @@ export declare const DisplayNameCorrespondence: {
|
|
|
322
322
|
readonly "NoClaim": "NoClaim"
|
|
323
323
|
};
|
|
324
324
|
|
|
325
|
+
export declare const MessageStatus: {
|
|
326
|
+
readonly "active": "active";
|
|
327
|
+
readonly "deleting": "deleting";
|
|
328
|
+
readonly "deleted": "deleted";
|
|
329
|
+
readonly "moving": "moving"
|
|
330
|
+
};
|
|
331
|
+
|
|
332
|
+
export declare const MessageSyncStatus: {
|
|
333
|
+
readonly "synced": "synced";
|
|
334
|
+
readonly "pending": "pending";
|
|
335
|
+
readonly "failed": "failed"
|
|
336
|
+
};
|
|
337
|
+
|
|
325
338
|
export declare const PlacementAction: {
|
|
326
339
|
readonly "MoveToInbox": "MoveToInbox";
|
|
327
340
|
readonly "MoveToJunk": "MoveToJunk"
|
|
@@ -362,19 +375,6 @@ export declare const OutboxAttachmentRejectionReason: {
|
|
|
362
375
|
readonly "SizeMismatch": "SizeMismatch"
|
|
363
376
|
};
|
|
364
377
|
|
|
365
|
-
export declare const MessageStatus: {
|
|
366
|
-
readonly "active": "active";
|
|
367
|
-
readonly "deleting": "deleting";
|
|
368
|
-
readonly "deleted": "deleted";
|
|
369
|
-
readonly "moving": "moving"
|
|
370
|
-
};
|
|
371
|
-
|
|
372
|
-
export declare const MessageSyncStatus: {
|
|
373
|
-
readonly "synced": "synced";
|
|
374
|
-
readonly "pending": "pending";
|
|
375
|
-
readonly "failed": "failed"
|
|
376
|
-
};
|
|
377
|
-
|
|
378
378
|
export declare const AuthenticityVerdict: {
|
|
379
379
|
readonly "NotEvaluated": "NotEvaluated";
|
|
380
380
|
readonly "NotChecked": "NotChecked";
|
package/enums.js
CHANGED
|
@@ -322,6 +322,19 @@ export const DisplayNameCorrespondence = {
|
|
|
322
322
|
"NoClaim": "NoClaim"
|
|
323
323
|
};
|
|
324
324
|
|
|
325
|
+
export const MessageStatus = {
|
|
326
|
+
"active": "active",
|
|
327
|
+
"deleting": "deleting",
|
|
328
|
+
"deleted": "deleted",
|
|
329
|
+
"moving": "moving"
|
|
330
|
+
};
|
|
331
|
+
|
|
332
|
+
export const MessageSyncStatus = {
|
|
333
|
+
"synced": "synced",
|
|
334
|
+
"pending": "pending",
|
|
335
|
+
"failed": "failed"
|
|
336
|
+
};
|
|
337
|
+
|
|
325
338
|
export const PlacementAction = {
|
|
326
339
|
"MoveToInbox": "MoveToInbox",
|
|
327
340
|
"MoveToJunk": "MoveToJunk"
|
|
@@ -362,19 +375,6 @@ export const OutboxAttachmentRejectionReason = {
|
|
|
362
375
|
"SizeMismatch": "SizeMismatch"
|
|
363
376
|
};
|
|
364
377
|
|
|
365
|
-
export const MessageStatus = {
|
|
366
|
-
"active": "active",
|
|
367
|
-
"deleting": "deleting",
|
|
368
|
-
"deleted": "deleted",
|
|
369
|
-
"moving": "moving"
|
|
370
|
-
};
|
|
371
|
-
|
|
372
|
-
export const MessageSyncStatus = {
|
|
373
|
-
"synced": "synced",
|
|
374
|
-
"pending": "pending",
|
|
375
|
-
"failed": "failed"
|
|
376
|
-
};
|
|
377
|
-
|
|
378
378
|
export const AuthenticityVerdict = {
|
|
379
379
|
"NotEvaluated": "NotEvaluated",
|
|
380
380
|
"NotChecked": "NotChecked",
|