@talkjs/core 1.5.1 → 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 +11 -2
- package/dist/talkSession.cjs +1 -1
- package/dist/talkSession.d.ts +70 -14
- package/dist/talkSession.js +137 -118
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -69,7 +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.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
|
+
|
|
76
|
+
### 1.5.2
|
|
77
|
+
|
|
78
|
+
- Added `browser` field to `package.json`.
|
|
79
|
+
|
|
72
80
|
### 1.5.1
|
|
81
|
+
|
|
73
82
|
- When passing markup text to `ConversationRef.send`, it now ignores formatted links and action buttons/links. Previously it parsed those nodes and tried to send them, which caused an error because users do not have permission to send those nodes.
|
|
74
83
|
|
|
75
84
|
### 1.5.0
|
|
@@ -82,7 +91,7 @@ If you encounter any problems with `@talkjs/core`, please open a [chat with supp
|
|
|
82
91
|
|
|
83
92
|
### 1.4.2
|
|
84
93
|
|
|
85
|
-
- 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>"`.
|
|
86
95
|
|
|
87
96
|
### 1.4.1
|
|
88
97
|
|
|
@@ -116,7 +125,7 @@ If you encounter any problems with `@talkjs/core`, please open a [chat with supp
|
|
|
116
125
|
### 1.0.1
|
|
117
126
|
|
|
118
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.
|
|
119
|
-
- Exported types for `GenericFileMetadata`, `AudioFileMetadata`, `ImageFileMetadata`, `VideoFileMetadata`, and `VoiceRecordingFileMetadata
|
|
128
|
+
- Exported types for `GenericFileMetadata`, `AudioFileMetadata`, `ImageFileMetadata`, `VideoFileMetadata`, and `VoiceRecordingFileMetadata`.
|
|
120
129
|
|
|
121
130
|
### 1.0.0
|
|
122
131
|
|