@talkjs/core 1.5.2 → 1.5.4
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 -3
- package/dist/talkSession.cjs +1 -1
- package/dist/talkSession.d.ts +25 -1
- package/dist/talkSession.js +90 -71
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -69,9 +69,17 @@ If you encounter any problems with `@talkjs/core`, please open a [chat with supp
|
|
|
69
69
|
|
|
70
70
|
## Changelog
|
|
71
71
|
|
|
72
|
+
### 1.5.4
|
|
73
|
+
|
|
74
|
+
- Fixed a bug that prevented the websocket from disconnecting when idle after unsubscribing.
|
|
75
|
+
|
|
76
|
+
### 1.5.3
|
|
77
|
+
|
|
78
|
+
- Fixed a bug where subscribing to a conversation's messages after previously subscribing to that conversation, could cause an error related to sequence numbers being out-of-order.
|
|
79
|
+
|
|
72
80
|
### 1.5.2
|
|
73
81
|
|
|
74
|
-
- Added `browser` field to `package.json
|
|
82
|
+
- Added `browser` field to `package.json`.
|
|
75
83
|
|
|
76
84
|
### 1.5.1
|
|
77
85
|
|
|
@@ -87,7 +95,7 @@ If you encounter any problems with `@talkjs/core`, please open a [chat with supp
|
|
|
87
95
|
|
|
88
96
|
### 1.4.2
|
|
89
97
|
|
|
90
|
-
- Changed `GenericFileBlock` from `subtype?: undefined` to `subtype?: never` so that type narrowing works consistently when you check `subtype === "<type>"
|
|
98
|
+
- Changed `GenericFileBlock` from `subtype?: undefined` to `subtype?: never` so that type narrowing works consistently when you check `subtype === "<type>"`.
|
|
91
99
|
|
|
92
100
|
### 1.4.1
|
|
93
101
|
|
|
@@ -121,7 +129,7 @@ If you encounter any problems with `@talkjs/core`, please open a [chat with supp
|
|
|
121
129
|
### 1.0.1
|
|
122
130
|
|
|
123
131
|
- 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.
|
|
124
|
-
- Exported types for `GenericFileMetadata`, `AudioFileMetadata`, `ImageFileMetadata`, `VideoFileMetadata`, and `VoiceRecordingFileMetadata
|
|
132
|
+
- Exported types for `GenericFileMetadata`, `AudioFileMetadata`, `ImageFileMetadata`, `VideoFileMetadata`, and `VoiceRecordingFileMetadata`.
|
|
125
133
|
|
|
126
134
|
### 1.0.0
|
|
127
135
|
|