Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docs/client-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -927,6 +927,7 @@ Used by every history-service method that returns messages. Mirrors the Cassandr
| Field | Type | Notes |
|-------|------|-------|
| `messages` | array<Message> | Most-recent first. See [Message schema](#message-schema). |
| `minUserLastSeenAt` | number | Optional. UTC milliseconds since Unix epoch. The room's read floor — `MIN(lastSeenAt)` across all subscribers whose `lastSeenAt` is set. Absent when no member has read yet, when the latest read is past `room.lastMsgAt`, or when the value cannot be retrieved (treated as best-effort; messages still load). See the Message Read RPC for the semantics of how this floor is recomputed. |

```json
{
Expand All @@ -942,7 +943,8 @@ Used by every history-service method that returns messages. Mirrors the Cassandr
},
"msg": "morning team"
}
]
],
"minUserLastSeenAt": 1746518100000
}
```

Expand Down
Loading
Loading