@remit/api-openapi-spec 0.0.25 → 0.0.27

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 +19 -0
  2. package/package.json +1 -1
package/openapi.json CHANGED
@@ -5146,6 +5146,24 @@
5146
5146
  "type": "string"
5147
5147
  },
5148
5148
  "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."
5149
+ },
5150
+ "signerDomain": {
5151
+ "type": "string",
5152
+ "description": "Registrable domain of the first verified DKIM `header.d` in trusted Authentication-Results order, or the reserved literal `unverified` when no identity could be established. Unlike `dkimDomain`, which is the unverified `d=` claim the sender wrote, this is only set from a signature the trusted Authentication-Results reported as passing. Absent for messages classified before the field existed."
5153
+ },
5154
+ "envelopeDomain": {
5155
+ "type": "string",
5156
+ "description": "SPF-checked envelope-from domain (`smtp.mailfrom`, falling back to `smtp.helo`) from the trusted Authentication-Results. Absent when the trusted header carried no SPF clause, or for messages classified before the field existed."
5157
+ },
5158
+ "signerMessageCount": {
5159
+ "type": "integer",
5160
+ "format": "int32",
5161
+ "description": "Messages this account had already seen for the sender's standing key when this message arrived. A snapshot frozen at derivation time, deliberately not a live read — a message classified when the key stood at 340 always reads 340. Absent for messages classified before the field existed."
5162
+ },
5163
+ "signerFirstSeenAt": {
5164
+ "type": "integer",
5165
+ "format": "int64",
5166
+ "description": "Epoch milliseconds this account first saw the sender's standing key, snapshotted at derivation time alongside `signerMessageCount`. Absent for messages classified before the field existed."
5149
5167
  }
5150
5168
  },
5151
5169
  "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."
@@ -5985,6 +6003,7 @@
5985
6003
  "queued",
5986
6004
  "sending",
5987
6005
  "sent",
6006
+ "unfiled",
5988
6007
  "failed",
5989
6008
  "blocked"
5990
6009
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remit/api-openapi-spec",
3
- "version": "0.0.25",
3
+ "version": "0.0.27",
4
4
  "description": "Remit API OpenAPI 3 document, generated from TypeSpec.",
5
5
  "exports": {
6
6
  ".": "./openapi.json",