@remit/api-openapi-spec 0.0.21 → 0.0.22

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 (2) hide show
  1. package/openapi.json +25 -0
  2. package/package.json +1 -1
package/openapi.json CHANGED
@@ -4170,6 +4170,16 @@
4170
4170
  },
4171
4171
  "description": "Complete message description including all related data. Body content is delivered via the per-part `BodyPartResponse.contentUrl` (CloudFront, JWT-authorized at the edge); the legacy `bodyText`/`bodyHtml` fields were removed once content delivery cut over end-to-end (#224)."
4172
4172
  },
4173
+ "RemitImap.DisplayNameCorrespondence": {
4174
+ "type": "string",
4175
+ "enum": [
4176
+ "Corresponds",
4177
+ "Lookalike",
4178
+ "Unrelated",
4179
+ "NoClaim"
4180
+ ],
4181
+ "description": "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 the address itself, so it claims no identity."
4182
+ },
4173
4183
  "RemitImap.EmptyTrashResponse": {
4174
4184
  "type": "object",
4175
4185
  "required": [
@@ -4892,6 +4902,21 @@
4892
4902
  "dkimMismatch": {
4893
4903
  "type": "boolean",
4894
4904
  "description": "True when DKIM signing domain(s) are present and none aligns with the From domain"
4905
+ },
4906
+ "displayNameCorrespondence": {
4907
+ "allOf": [
4908
+ {
4909
+ "$ref": "#/components/schemas/RemitImap.DisplayNameCorrespondence"
4910
+ }
4911
+ ],
4912
+ "description": "How the From display name relates to the From domain. Present only for a message the provider's own filter already classified as spam, and only when the sender is not bulk-shaped (no List-Unsubscribe) — absence means the comparison was never made, never that it found nothing."
4913
+ },
4914
+ "offDomainLinkDomains": {
4915
+ "type": "array",
4916
+ "items": {
4917
+ "type": "string"
4918
+ },
4919
+ "description": "Registrable domains (eTLD+1) the body's links point at, excluding the From address's own registrable domain. Present only for a message the provider's own filter already classified as spam; an empty array means every link stayed on the sender's domain, absence means the comparison was never made."
4895
4920
  }
4896
4921
  },
4897
4922
  "description": "Structured sender-authenticity signal, derived from headers at classification time. Absent for messages classified before this field was introduced — clients should treat absence as no-signal."
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remit/api-openapi-spec",
3
- "version": "0.0.21",
3
+ "version": "0.0.22",
4
4
  "description": "Remit API OpenAPI 3 document, generated from TypeSpec.",
5
5
  "exports": {
6
6
  ".": "./openapi.json",