@talkjs/core 1.8.2 → 1.9.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 +15 -0
- package/dist/talkSession.cjs +1 -1
- package/dist/talkSession.d.ts +219 -46
- package/dist/talkSession.js +1468 -1244
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -69,6 +69,21 @@ If you encounter any problems with `@talkjs/core`, please open a [chat with supp
|
|
|
69
69
|
|
|
70
70
|
## Changelog
|
|
71
71
|
|
|
72
|
+
### 1.9.0
|
|
73
|
+
|
|
74
|
+
- Renamed multiple classes and methods:
|
|
75
|
+
- `ReactionRef` -> `ReactionsRef`
|
|
76
|
+
- `MessageRef.reaction` -> `MessageRef.reactions`
|
|
77
|
+
- `ReactionSnapshot` -> `ReactionsSummarySnapshot`
|
|
78
|
+
- The old names will continue to be available as aliases, for back-compat.
|
|
79
|
+
- Added `ReactionsRef.subscribe` which subscribes to the list of users who added a specific reaction onto a message
|
|
80
|
+
- Added `SingleReactionSnapshot`, `ReactionsSubscription`, and `ReactionsActiveState`
|
|
81
|
+
- Added `ReactionRef.getFirstReactions` which is a simpler way to just fetch the first page of users who reacted with an emoji
|
|
82
|
+
|
|
83
|
+
### 1.8.3
|
|
84
|
+
|
|
85
|
+
- Fix an issue where year ranges such as `2010-2018` were being treated as phone numbers when content suppression was enabled
|
|
86
|
+
|
|
72
87
|
### 1.8.2
|
|
73
88
|
|
|
74
89
|
- Fix `Uncaught (in promise)` being logged, especially with react strict mode
|