@talkjs/core 1.5.4 → 1.5.6
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 -1
- package/dist/talkSession.cjs +1 -1
- package/dist/talkSession.d.ts +189 -193
- package/dist/talkSession.js +512 -461
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
The `@talkjs/core` package lets you connect to your [TalkJS](https://talkjs.com) chat as a user and read, subscribe to, and update your chat data.
|
|
4
4
|
|
|
5
|
-
[See our docs](https://talkjs.com/docs/
|
|
5
|
+
[See our docs](https://talkjs.com/docs/SDKs/JavaScript_Data_API/) for more information.
|
|
6
6
|
|
|
7
7
|
## Prerequisites
|
|
8
8
|
|
|
@@ -69,6 +69,15 @@ If you encounter any problems with `@talkjs/core`, please open a [chat with supp
|
|
|
69
69
|
|
|
70
70
|
## Changelog
|
|
71
71
|
|
|
72
|
+
### 1.5.6
|
|
73
|
+
|
|
74
|
+
- Bugfix for on-prem deployments, no impact on the SAAS offering.
|
|
75
|
+
|
|
76
|
+
### 1.5.5
|
|
77
|
+
|
|
78
|
+
- Marked snapshot properties as readonly and applied Object.freeze to snapshots. These were never intended to be editable, as the snapshots are reused and shared between sessions.
|
|
79
|
+
- Improved docs for `ConversationRef` to better explain the reason why `ConversationRef.set` adds you to the conversation.
|
|
80
|
+
|
|
72
81
|
### 1.5.4
|
|
73
82
|
|
|
74
83
|
- Fixed a bug that prevented the websocket from disconnecting when idle after unsubscribing.
|