@remit/domain-enums 0.0.9 → 0.0.10
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 +16 -0
- package/enums.js +16 -0
- package/package.json +1 -1
package/enums.d.ts
CHANGED
|
@@ -282,6 +282,22 @@ export declare const OutboxMessageStatus: {
|
|
|
282
282
|
readonly "blocked": "blocked"
|
|
283
283
|
};
|
|
284
284
|
|
|
285
|
+
export declare const OutboxAttachmentState: {
|
|
286
|
+
readonly "Pending": "Pending";
|
|
287
|
+
readonly "Stored": "Stored"
|
|
288
|
+
};
|
|
289
|
+
|
|
290
|
+
export declare const OutboxAttachmentRejectionReason: {
|
|
291
|
+
readonly "EmptyFile": "EmptyFile";
|
|
292
|
+
readonly "UnusableFilename": "UnusableFilename";
|
|
293
|
+
readonly "FileTooLarge": "FileTooLarge";
|
|
294
|
+
readonly "MessageTooLarge": "MessageTooLarge";
|
|
295
|
+
readonly "TooManyAttachments": "TooManyAttachments";
|
|
296
|
+
readonly "ReservationExpired": "ReservationExpired";
|
|
297
|
+
readonly "UploadMissing": "UploadMissing";
|
|
298
|
+
readonly "SizeMismatch": "SizeMismatch"
|
|
299
|
+
};
|
|
300
|
+
|
|
285
301
|
export declare const MessageStatus: {
|
|
286
302
|
readonly "active": "active";
|
|
287
303
|
readonly "deleting": "deleting";
|
package/enums.js
CHANGED
|
@@ -282,6 +282,22 @@ export const OutboxMessageStatus = {
|
|
|
282
282
|
"blocked": "blocked"
|
|
283
283
|
};
|
|
284
284
|
|
|
285
|
+
export const OutboxAttachmentState = {
|
|
286
|
+
"Pending": "Pending",
|
|
287
|
+
"Stored": "Stored"
|
|
288
|
+
};
|
|
289
|
+
|
|
290
|
+
export const OutboxAttachmentRejectionReason = {
|
|
291
|
+
"EmptyFile": "EmptyFile",
|
|
292
|
+
"UnusableFilename": "UnusableFilename",
|
|
293
|
+
"FileTooLarge": "FileTooLarge",
|
|
294
|
+
"MessageTooLarge": "MessageTooLarge",
|
|
295
|
+
"TooManyAttachments": "TooManyAttachments",
|
|
296
|
+
"ReservationExpired": "ReservationExpired",
|
|
297
|
+
"UploadMissing": "UploadMissing",
|
|
298
|
+
"SizeMismatch": "SizeMismatch"
|
|
299
|
+
};
|
|
300
|
+
|
|
285
301
|
export const MessageStatus = {
|
|
286
302
|
"active": "active",
|
|
287
303
|
"deleting": "deleting",
|