@antzsoft/chat-core 1.3.1 → 1.3.2
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/dist/index.cjs +4 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -3
- package/dist/index.d.ts +5 -3
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/internal.d.cts +1 -1
- package/dist/internal.d.ts +1 -1
- package/dist/{storage-Df9ya7um.d.cts → storage-CNoA242G.d.cts} +25 -2
- package/dist/{storage-Df9ya7um.d.ts → storage-CNoA242G.d.ts} +25 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1055,6 +1055,10 @@ var messagesApi = {
|
|
|
1055
1055
|
);
|
|
1056
1056
|
return data;
|
|
1057
1057
|
},
|
|
1058
|
+
async getReactions(messageId) {
|
|
1059
|
+
const { data } = await getApiClient().post(`/messages/${messageId}/reactions/list`);
|
|
1060
|
+
return data;
|
|
1061
|
+
},
|
|
1058
1062
|
async star(messageId) {
|
|
1059
1063
|
await getApiClient().post(`/messages/${messageId}/star`);
|
|
1060
1064
|
},
|