@remit/api-http-client 0.0.18 → 0.0.19
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 +8 -0
package/package.json
CHANGED
package/types.gen.ts
CHANGED
|
@@ -2133,6 +2133,10 @@ export type RemitImapThreadMessageResponse = {
|
|
|
2133
2133
|
* Trust level for the From address, derived from AddressFlags at read time. Defaults to `unknown` when no Address row resolves.
|
|
2134
2134
|
*/
|
|
2135
2135
|
senderTrust: RemitImapSenderTrust;
|
|
2136
|
+
/**
|
|
2137
|
+
* Whether the From address is muted, derived from AddressFlags at read time. Defaults to `false` when no Address row resolves. Muting hides the sender from the daily brief; it does not affect mailbox listings.
|
|
2138
|
+
*/
|
|
2139
|
+
muted: boolean;
|
|
2136
2140
|
/**
|
|
2137
2141
|
* Structured sender-authenticity signal derived from DKIM headers at classification time (from the underlying Message). Absent for messages classified before this field was introduced — absence means no signal.
|
|
2138
2142
|
*/
|
|
@@ -2728,6 +2732,10 @@ export type RemitImapThreadMessageResponseWritable = {
|
|
|
2728
2732
|
* Trust level for the From address, derived from AddressFlags at read time. Defaults to `unknown` when no Address row resolves.
|
|
2729
2733
|
*/
|
|
2730
2734
|
senderTrust: RemitImapSenderTrust;
|
|
2735
|
+
/**
|
|
2736
|
+
* Whether the From address is muted, derived from AddressFlags at read time. Defaults to `false` when no Address row resolves. Muting hides the sender from the daily brief; it does not affect mailbox listings.
|
|
2737
|
+
*/
|
|
2738
|
+
muted: boolean;
|
|
2731
2739
|
/**
|
|
2732
2740
|
* Structured sender-authenticity signal derived from DKIM headers at classification time (from the underlying Message). Absent for messages classified before this field was introduced — absence means no signal.
|
|
2733
2741
|
*/
|