@remit/api-http-client 0.0.26 → 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.
- package/package.json +1 -1
- package/types.gen.ts +16 -0
package/package.json
CHANGED
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
|
/**
|