@remit/data-ports 0.0.6 → 0.0.7

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remit/data-ports",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "type": "module",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",
@@ -77,6 +77,11 @@ export interface IThreadMessageRepository {
77
77
  * Every message of a thread, across all mailboxes of the account. A
78
78
  * conversation spans INBOX, Sent and any folder its messages were filed
79
79
  * in, so this listing is deliberately not scoped to a mailbox (#46).
80
+ *
81
+ * Ordered by `sentDate` with `threadMessageId` breaking ties, ascending
82
+ * unless `order` says otherwise — a conversation reads in the order it
83
+ * happened (#81). Every implementation sorts in the query, so the order
84
+ * holds across pages and not merely within one page.
80
85
  */
81
86
  listByThread(
82
87
  threadId: string,