@talkjs/core 1.5.2 → 1.5.3
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 +7 -3
- package/dist/talkSession.cjs +1 -1
- package/dist/talkSession.js +84 -68
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -69,9 +69,13 @@ If you encounter any problems with `@talkjs/core`, please open a [chat with supp
|
|
|
69
69
|
|
|
70
70
|
## Changelog
|
|
71
71
|
|
|
72
|
+
### 1.5.3
|
|
73
|
+
|
|
74
|
+
- 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.
|
|
75
|
+
|
|
72
76
|
### 1.5.2
|
|
73
77
|
|
|
74
|
-
- Added `browser` field to `package.json
|
|
78
|
+
- Added `browser` field to `package.json`.
|
|
75
79
|
|
|
76
80
|
### 1.5.1
|
|
77
81
|
|
|
@@ -87,7 +91,7 @@ If you encounter any problems with `@talkjs/core`, please open a [chat with supp
|
|
|
87
91
|
|
|
88
92
|
### 1.4.2
|
|
89
93
|
|
|
90
|
-
- Changed `GenericFileBlock` from `subtype?: undefined` to `subtype?: never` so that type narrowing works consistently when you check `subtype === "<type>"
|
|
94
|
+
- Changed `GenericFileBlock` from `subtype?: undefined` to `subtype?: never` so that type narrowing works consistently when you check `subtype === "<type>"`.
|
|
91
95
|
|
|
92
96
|
### 1.4.1
|
|
93
97
|
|
|
@@ -121,7 +125,7 @@ If you encounter any problems with `@talkjs/core`, please open a [chat with supp
|
|
|
121
125
|
### 1.0.1
|
|
122
126
|
|
|
123
127
|
- 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
|
|
128
|
+
- Exported types for `GenericFileMetadata`, `AudioFileMetadata`, `ImageFileMetadata`, `VideoFileMetadata`, and `VoiceRecordingFileMetadata`.
|
|
125
129
|
|
|
126
130
|
### 1.0.0
|
|
127
131
|
|