@talkjs/core 0.0.6 → 1.0.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.
- package/README.md +11 -0
- package/dist/talkSession.cjs +1 -1
- package/dist/talkSession.d.ts +5 -5
- package/dist/talkSession.js +210 -203
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -66,3 +66,14 @@ const session = getTalkSession(...);
|
|
|
66
66
|
## Support
|
|
67
67
|
|
|
68
68
|
If you encounter any problems with `@talkjs/core`, please open a [chat with support](https://talkjs.com/?chat). TalkJS support is staffed by engineers.
|
|
69
|
+
|
|
70
|
+
## Changelog
|
|
71
|
+
|
|
72
|
+
### 1.0.1
|
|
73
|
+
|
|
74
|
+
- Fixed a bug with `ConversationRef.subscribe` where it would emit the same snapshot multiple times in a row, when old messages were edited or deleted.
|
|
75
|
+
- Exported types for `GenericFileMetadata`, `AudioFileMetadata`, `ImageFileMetadata`, `VideoFileMetadata`, and `VoiceRecordingFileMetadata`
|
|
76
|
+
|
|
77
|
+
### 1.0.0
|
|
78
|
+
|
|
79
|
+
- Initial Release
|