@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 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
  },