@remit/domain-enums 0.0.9 → 0.0.11

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.
Files changed (3) hide show
  1. package/enums.d.ts +26 -0
  2. package/enums.js +26 -0
  3. 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";
@@ -295,6 +311,16 @@ export declare const MessageSyncStatus: {
295
311
  readonly "failed": "failed"
296
312
  };
297
313
 
314
+ export declare const AuthenticityVerdict: {
315
+ readonly "NotEvaluated": "NotEvaluated";
316
+ readonly "NotChecked": "NotChecked";
317
+ readonly "Aligned": "Aligned";
318
+ readonly "Authenticated": "Authenticated";
319
+ readonly "Routine": "Routine";
320
+ readonly "Caution": "Caution";
321
+ readonly "Impersonation": "Impersonation"
322
+ };
323
+
298
324
  export declare const AuthResultVerdict: {
299
325
  readonly "Pass": "Pass";
300
326
  readonly "Fail": "Fail";
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",
@@ -295,6 +311,16 @@ export const MessageSyncStatus = {
295
311
  "failed": "failed"
296
312
  };
297
313
 
314
+ export const AuthenticityVerdict = {
315
+ "NotEvaluated": "NotEvaluated",
316
+ "NotChecked": "NotChecked",
317
+ "Aligned": "Aligned",
318
+ "Authenticated": "Authenticated",
319
+ "Routine": "Routine",
320
+ "Caution": "Caution",
321
+ "Impersonation": "Impersonation"
322
+ };
323
+
298
324
  export const AuthResultVerdict = {
299
325
  "Pass": "Pass",
300
326
  "Fail": "Fail",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remit/domain-enums",
3
- "version": "0.0.9",
3
+ "version": "0.0.11",
4
4
  "type": "module",
5
5
  "main": "enums.js",
6
6
  "types": "enums.d.ts",