@remit/domain-enums 0.0.13 → 0.0.14

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 +10 -0
  2. package/enums.js +10 -0
  3. package/package.json +1 -1
package/enums.d.ts CHANGED
@@ -115,6 +115,15 @@ export declare const SyncPhase: {
115
115
  readonly "error": "error"
116
116
  };
117
117
 
118
+ export declare const FolderAppointmentSource: {
119
+ readonly "Appointed": "Appointed";
120
+ readonly "Flagged": "Flagged";
121
+ readonly "Reserved": "Reserved";
122
+ readonly "Proposed": "Proposed";
123
+ readonly "Stale": "Stale";
124
+ readonly "None": "None"
125
+ };
126
+
118
127
  export declare const SystemUpdateCheckStatus: {
119
128
  readonly "ok": "ok";
120
129
  readonly "failed": "failed";
@@ -444,6 +453,7 @@ export declare const AccountSettingName: {
444
453
  readonly "MailboxDisplayName": "MailboxDisplayName";
445
454
  readonly "MailboxMuted": "MailboxMuted";
446
455
  readonly "FolderRoleAppointment": "FolderRoleAppointment";
456
+ readonly "FolderRoleAppointmentLabel": "FolderRoleAppointmentLabel";
447
457
  readonly "MailboxRole": "MailboxRole"
448
458
  };
449
459
 
package/enums.js CHANGED
@@ -115,6 +115,15 @@ export const SyncPhase = {
115
115
  "error": "error"
116
116
  };
117
117
 
118
+ export const FolderAppointmentSource = {
119
+ "Appointed": "Appointed",
120
+ "Flagged": "Flagged",
121
+ "Reserved": "Reserved",
122
+ "Proposed": "Proposed",
123
+ "Stale": "Stale",
124
+ "None": "None"
125
+ };
126
+
118
127
  export const SystemUpdateCheckStatus = {
119
128
  "ok": "ok",
120
129
  "failed": "failed",
@@ -444,6 +453,7 @@ export const AccountSettingName = {
444
453
  "MailboxDisplayName": "MailboxDisplayName",
445
454
  "MailboxMuted": "MailboxMuted",
446
455
  "FolderRoleAppointment": "FolderRoleAppointment",
456
+ "FolderRoleAppointmentLabel": "FolderRoleAppointmentLabel",
447
457
  "MailboxRole": "MailboxRole"
448
458
  };
449
459
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remit/domain-enums",
3
- "version": "0.0.13",
3
+ "version": "0.0.14",
4
4
  "type": "module",
5
5
  "main": "enums.js",
6
6
  "types": "enums.d.ts",