@remit/api-http-client 0.0.29 → 0.0.30
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/package.json +1 -1
- package/types.gen.ts +2 -2
package/package.json
CHANGED
package/types.gen.ts
CHANGED
|
@@ -898,9 +898,9 @@ export type RemitImapDescribeMessageResponse = {
|
|
|
898
898
|
};
|
|
899
899
|
|
|
900
900
|
/**
|
|
901
|
-
* How the From display name relates to the From domain. `Corresponds` — the name is contained in the domain. `Lookalike` — the name is one or two characters away from a domain label. `Unrelated` — no relation. `NoClaim` — the name is empty or is
|
|
901
|
+
* How the From display name relates to the From domain. `Corresponds` — the name is contained in the domain. `Lookalike` — the name is one or two characters away from a domain label. `ForeignAddress` — the name spells out an email address at a domain the sender does not send from. `Unrelated` — no relation. `NoClaim` — the name is empty, or is an address at the sending domain, so it claims no other identity.
|
|
902
902
|
*/
|
|
903
|
-
export type RemitImapDisplayNameCorrespondence = 'Corresponds' | 'Lookalike' | 'Unrelated' | 'NoClaim';
|
|
903
|
+
export type RemitImapDisplayNameCorrespondence = 'Corresponds' | 'Lookalike' | 'ForeignAddress' | 'Unrelated' | 'NoClaim';
|
|
904
904
|
|
|
905
905
|
/**
|
|
906
906
|
* Response from emptying trash
|