@talkjs/core 1.1.0 → 1.1.1

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.
@@ -494,9 +494,25 @@ export declare interface ConversationSnapshot {
494
494
  */
495
495
  unreadMessageCount: number;
496
496
  /**
497
- * Timestamp of when the current user read a message
497
+ * The most recent date that the current user read the conversation.
498
+ *
499
+ * @remarks
500
+ * This value is updated whenever you read a message in a chat UI, open an email notification, or mark the conversation as read using an API like {@link ConversationRef.markAsRead}.
501
+ *
502
+ * Any messages sent after this timestamp are unread messages.
498
503
  */
499
504
  readUntil: number;
505
+ /**
506
+ * Everyone in the conversation has read any messages sent on or before this date.
507
+ *
508
+ * @remarks
509
+ * This is the minimum of all the participants' `readUntil` values.
510
+ * Any messages sent on or before this timestamp should show a "read" indicator in the UI.
511
+ *
512
+ * This value will rarely change in very large conversations.
513
+ * If just one person stops checking their messages, `everyoneReadUntil` will never update.
514
+ */
515
+ everyoneReadUntil: number;
500
516
  /**
501
517
  * Whether the conversation should be considered unread.
502
518
  *