@remit/api-openapi-types 0.0.13 → 0.0.14
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.d.ts +6 -2
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -114,9 +114,9 @@ current enum emitter anyway, so the wire contract uses the bare form.
|
|
|
114
114
|
*/
|
|
115
115
|
export type FilterMatchOperator = "And" | "Or";
|
|
116
116
|
/**
|
|
117
|
-
* Message attribute a FilterClause matches against — RFC 031's Tier 0 literal predicates (
|
|
117
|
+
* Message attribute a FilterClause matches against — RFC 031's Tier 0 literal predicates plus the RFC 038 D2 additions (list membership and sender domain). Every member is matched vector-free at index time and in the back-apply corpus projection.
|
|
118
118
|
*/
|
|
119
|
-
export type FilterClauseField = "From" | "Subject" | "HasWords";
|
|
119
|
+
export type FilterClauseField = "From" | "Subject" | "HasWords" | "ListId" | "FromDomain";
|
|
120
120
|
/**
|
|
121
121
|
* Lifecycle state of a smart-organize back-apply job (RFC 034, #1278). Mirrors the account-export job's lifecycle: a Pending row the worker picks up, drives to Running, then to a terminal Complete or Failed.
|
|
122
122
|
*/
|
|
@@ -2195,6 +2195,10 @@ standing to persist.
|
|
|
2195
2195
|
* Message subject
|
|
2196
2196
|
*/
|
|
2197
2197
|
subject?: string;
|
|
2198
|
+
/**
|
|
2199
|
+
* Normalized `List-Id` header value (bracketed identifier, case-folded), denormalized at body-sync so the back-apply corpus projection can match a `ListId` clause vector-free. Absent when the message carries no `List-Id` header or was body-synced before this field existed.
|
|
2200
|
+
*/
|
|
2201
|
+
listId?: String256;
|
|
2198
2202
|
/**
|
|
2199
2203
|
* IMAP INTERNALDATE timestamp (when server received the message)
|
|
2200
2204
|
*/
|