@remit/api-openapi-types 0.0.21 → 0.0.22
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 +4 -0
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -3224,6 +3224,10 @@ server-capped window. `items` is omitted when `results=false` (count-only);
|
|
|
3224
3224
|
* Recorded when a standing filter moved this message at body-sync time (RFC 034). Absent means no filter moved it — a classifier move records `placementVerdict` instead, and a retroactive back-apply records neither. Drives the arbitrary-destination auto-moved badge and its undo.
|
|
3225
3225
|
*/
|
|
3226
3226
|
filterMove?: MessageFilterMove;
|
|
3227
|
+
/**
|
|
3228
|
+
* Body-sync timestamp (epoch millis) the classifier's placement verdict was first decided, whether the verdict was to move the message or to leave it in place. Absent means placement has never been evaluated for this message. Guards `computePlacement` against a re-entrant body-sync pass (`fetchAndGetBody`'s `NoSuchKey` fallback, `syncBodies(..., force: true)`) re-deciding — and possibly reversing — a placement a user has since overridden by hand. `movedByRemit` remains the guard for a message that was placement-decided before this field existed.
|
|
3229
|
+
*/
|
|
3230
|
+
placementDecidedAt?: number;
|
|
3227
3231
|
createdAt: number;
|
|
3228
3232
|
updatedAt: number;
|
|
3229
3233
|
}
|