@remit/domain-enums 0.0.7 → 0.0.8
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 +7 -0
- package/enums.js +7 -0
- package/package.json +1 -1
package/enums.d.ts
CHANGED
|
@@ -252,6 +252,13 @@ export declare const SenderTrust: {
|
|
|
252
252
|
readonly "Vip": "vip"
|
|
253
253
|
};
|
|
254
254
|
|
|
255
|
+
export declare const DisplayNameCorrespondence: {
|
|
256
|
+
readonly "Corresponds": "Corresponds";
|
|
257
|
+
readonly "Lookalike": "Lookalike";
|
|
258
|
+
readonly "Unrelated": "Unrelated";
|
|
259
|
+
readonly "NoClaim": "NoClaim"
|
|
260
|
+
};
|
|
261
|
+
|
|
255
262
|
export declare const PlacementAction: {
|
|
256
263
|
readonly "MoveToInbox": "MoveToInbox";
|
|
257
264
|
readonly "MoveToJunk": "MoveToJunk"
|
package/enums.js
CHANGED
|
@@ -252,6 +252,13 @@ export const SenderTrust = {
|
|
|
252
252
|
"Vip": "vip"
|
|
253
253
|
};
|
|
254
254
|
|
|
255
|
+
export const DisplayNameCorrespondence = {
|
|
256
|
+
"Corresponds": "Corresponds",
|
|
257
|
+
"Lookalike": "Lookalike",
|
|
258
|
+
"Unrelated": "Unrelated",
|
|
259
|
+
"NoClaim": "NoClaim"
|
|
260
|
+
};
|
|
261
|
+
|
|
255
262
|
export const PlacementAction = {
|
|
256
263
|
"MoveToInbox": "MoveToInbox",
|
|
257
264
|
"MoveToJunk": "MoveToJunk"
|