@remit/api-http-client 0.0.26 → 0.0.28

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/package.json +1 -1
  2. package/types.gen.ts +17 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remit/api-http-client",
3
- "version": "0.0.26",
3
+ "version": "0.0.28",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./index.ts",
package/types.gen.ts CHANGED
@@ -1291,6 +1291,22 @@ export type RemitImapMessageAuthenticity = {
1291
1291
  * 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.
1292
1292
  */
1293
1293
  offDomainLinkDomains?: Array<string>;
1294
+ /**
1295
+ * 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.
1296
+ */
1297
+ signerDomain?: string;
1298
+ /**
1299
+ * 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.
1300
+ */
1301
+ envelopeDomain?: string;
1302
+ /**
1303
+ * 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.
1304
+ */
1305
+ signerMessageCount?: number;
1306
+ /**
1307
+ * 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.
1308
+ */
1309
+ signerFirstSeenAt?: number;
1294
1310
  };
1295
1311
 
1296
1312
  /**
@@ -1748,7 +1764,7 @@ export type RemitImapOutboxMessageResponse = {
1748
1764
  /**
1749
1765
  * Status of an outbox message in the send queue
1750
1766
  */
1751
- export type RemitImapOutboxMessageStatus = 'draft' | 'queued' | 'sending' | 'sent' | 'failed' | 'blocked';
1767
+ export type RemitImapOutboxMessageStatus = 'draft' | 'queued' | 'sending' | 'sent' | 'unfiled' | 'failed' | 'blocked';
1752
1768
 
1753
1769
  /**
1754
1770
  * 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.