@remit/api-openapi-types 0.0.30 → 0.0.31
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.d.ts +2 -2
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -142,9 +142,9 @@ current enum emitter anyway, so the wire contract uses the bare form.
|
|
|
142
142
|
*/
|
|
143
143
|
export type SenderTrust = "unknown" | "wellknown" | "vip";
|
|
144
144
|
/**
|
|
145
|
-
* 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
|
|
145
|
+
* 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.
|
|
146
146
|
*/
|
|
147
|
-
export type DisplayNameCorrespondence = "Corresponds" | "Lookalike" | "Unrelated" | "NoClaim";
|
|
147
|
+
export type DisplayNameCorrespondence = "Corresponds" | "Lookalike" | "ForeignAddress" | "Unrelated" | "NoClaim";
|
|
148
148
|
/**
|
|
149
149
|
* Actionable placement verdict — the direction Remit decided to move a message. `leave` is not represented: a left-in-place verdict means the placement sub-model is absent.
|
|
150
150
|
*/
|