@talkjs/core 1.4.2 → 1.5.0
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 -0
- package/dist/talkSession.cjs +1 -1
- package/dist/talkSession.d.ts +162 -13
- package/dist/talkSession.js +352 -295
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -69,6 +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.0
|
|
73
|
+
|
|
74
|
+
- Fixed a bug where `MessageRef.get()` would always set `MessageSnapshot.referencedMessage` to null
|
|
75
|
+
- Added support for getting and setting emoji reactions on messages.
|
|
76
|
+
- Added `ReactionRef` which is created via `MessageRef.reaction`.
|
|
77
|
+
- Added `ReactionSnapshot` which is available in `MessageSnapshot.reactions`.
|
|
78
|
+
|
|
72
79
|
### 1.4.2
|
|
73
80
|
|
|
74
81
|
- Changed `GenericFileBlock` from `subtype?: undefined` to `subtype?: never` so that type narrowing works consistently when you check `subtype === "<type>"`
|