@remit/domain-enums 0.0.12 → 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.
- package/enums.d.ts +11 -0
- package/enums.js +11 -0
- 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";
|
|
@@ -255,6 +264,7 @@ export declare const SenderTrust: {
|
|
|
255
264
|
export declare const DisplayNameCorrespondence: {
|
|
256
265
|
readonly "Corresponds": "Corresponds";
|
|
257
266
|
readonly "Lookalike": "Lookalike";
|
|
267
|
+
readonly "ForeignAddress": "ForeignAddress";
|
|
258
268
|
readonly "Unrelated": "Unrelated";
|
|
259
269
|
readonly "NoClaim": "NoClaim"
|
|
260
270
|
};
|
|
@@ -443,6 +453,7 @@ export declare const AccountSettingName: {
|
|
|
443
453
|
readonly "MailboxDisplayName": "MailboxDisplayName";
|
|
444
454
|
readonly "MailboxMuted": "MailboxMuted";
|
|
445
455
|
readonly "FolderRoleAppointment": "FolderRoleAppointment";
|
|
456
|
+
readonly "FolderRoleAppointmentLabel": "FolderRoleAppointmentLabel";
|
|
446
457
|
readonly "MailboxRole": "MailboxRole"
|
|
447
458
|
};
|
|
448
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",
|
|
@@ -255,6 +264,7 @@ export const SenderTrust = {
|
|
|
255
264
|
export const DisplayNameCorrespondence = {
|
|
256
265
|
"Corresponds": "Corresponds",
|
|
257
266
|
"Lookalike": "Lookalike",
|
|
267
|
+
"ForeignAddress": "ForeignAddress",
|
|
258
268
|
"Unrelated": "Unrelated",
|
|
259
269
|
"NoClaim": "NoClaim"
|
|
260
270
|
};
|
|
@@ -443,6 +453,7 @@ export const AccountSettingName = {
|
|
|
443
453
|
"MailboxDisplayName": "MailboxDisplayName",
|
|
444
454
|
"MailboxMuted": "MailboxMuted",
|
|
445
455
|
"FolderRoleAppointment": "FolderRoleAppointment",
|
|
456
|
+
"FolderRoleAppointmentLabel": "FolderRoleAppointmentLabel",
|
|
446
457
|
"MailboxRole": "MailboxRole"
|
|
447
458
|
};
|
|
448
459
|
|