@talkjs/core 1.1.0 → 1.2.0
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/README.md +10 -0
- package/dist/talkSession.cjs +1 -1
- package/dist/talkSession.d.ts +116 -3
- package/dist/talkSession.js +835 -666
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -69,6 +69,16 @@ If you encounter any problems with `@talkjs/core`, please open a [chat with supp
|
|
|
69
69
|
|
|
70
70
|
## Changelog
|
|
71
71
|
|
|
72
|
+
### 1.2.0
|
|
73
|
+
|
|
74
|
+
- Added `ConversationRef.subscribeParticipants` which returns a windowed subscription to the participants in the conversation.
|
|
75
|
+
- Added `ParticipantSubscription` and `ParticipantActiveState`.
|
|
76
|
+
- Improved startup time by sending queued requests faster when you first open the connection.
|
|
77
|
+
|
|
78
|
+
### 1.1.1
|
|
79
|
+
|
|
80
|
+
- Added `ConversationSnapshot.everyoneReadUntil` which is the minimum of all the participants' `readUntil` values.
|
|
81
|
+
|
|
72
82
|
### 1.1.0
|
|
73
83
|
|
|
74
84
|
- Added `ConversationRef.subscribeTyping` which lets you subscribe to typing indicators in a conversation.
|