@tencentcloud/lite-chat 1.2.1 → 1.3.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/CHANGELOG.md +47 -0
- package/basic.d.ts +3110 -0
- package/basic.es.js +2 -1
- package/basic.js +2 -1
- package/package.json +3 -3
- package/plugins/avchatroom.es.js +1 -1
- package/plugins/avchatroom.js +1 -1
- package/plugins/cloud-search.es.js +1 -1
- package/plugins/cloud-search.js +1 -1
- package/plugins/conversation-group.es.js +1 -0
- package/plugins/conversation-group.js +1 -0
- package/plugins/conversation.es.js +1 -1
- package/plugins/conversation.js +1 -1
- package/plugins/follow.es.js +1 -1
- package/plugins/follow.js +1 -1
- package/plugins/friend.es.js +1 -1
- package/plugins/friend.js +1 -1
- package/plugins/group.es.js +1 -1
- package/plugins/group.js +1 -1
- package/plugins/message-enhancer.es.js +4 -1
- package/plugins/message-enhancer.js +4 -1
- package/plugins/rich-media-message.es.js +1 -1
- package/plugins/rich-media-message.js +1 -1
- package/plugins/signaling.es.js +1 -1
- package/plugins/signaling.js +1 -1
- package/plugins/topic.d.ts +8 -0
- package/plugins/topic.es.js +1 -0
- package/plugins/topic.js +1 -0
- package/professional.d.ts +3110 -0
- package/professional.es.js +5 -1
- package/professional.js +5 -1
- package/standard.es.js +5 -1
- package/standard.js +5 -1
- package/index.es.js +0 -1
- package/index.js +0 -1
- package/plugins/user-enhancer.d.ts +0 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,50 @@
|
|
|
1
|
+
## [1.3.0] (2025-08-06)
|
|
2
|
+
## 精简版
|
|
3
|
+
#### Feature
|
|
4
|
+
- 适配桌面版微信(mac 4.x 和 windows 3.9.x)小程序
|
|
5
|
+
|
|
6
|
+
## 标准版
|
|
7
|
+
#### Feature
|
|
8
|
+
- 支持社群
|
|
9
|
+
- 支持直播群
|
|
10
|
+
- `getGroupOnlineMemberCount`: 获取直播群在线成员人数
|
|
11
|
+
- `getGroupMemberList`: 获取直播群成员列表
|
|
12
|
+
- `deleteGroupMember`: 删除直播群成员
|
|
13
|
+
- `markGroupMemberList`: 标记直播群成员
|
|
14
|
+
- 支持群计数器
|
|
15
|
+
- `setGroupCounters`: 设置群计数器
|
|
16
|
+
- `increaseGroupCounter`: 递增群计数器
|
|
17
|
+
- `decreaseGroupCounter`: 递减群计数器
|
|
18
|
+
- `getGroupCounters`: 获取群计数器
|
|
19
|
+
- 支持消息扩展
|
|
20
|
+
- `setMessageExtensions`: 设置消息扩展
|
|
21
|
+
- `getMessageExtensions`: 获取消息扩展
|
|
22
|
+
- `deleteMessageExtensions`: 删除消息扩展
|
|
23
|
+
- 支持消息全局免打扰
|
|
24
|
+
- `setAllReceiveMessageOpt`: 设置全局消息免打扰选项
|
|
25
|
+
- `getAllReceiveMessageOpt`: 获取全局消息免打扰选项
|
|
26
|
+
- `setAllMessageRead`: 将所有会话的未读消息设置为已读
|
|
27
|
+
- `clearHistoryMessage`: 清空单聊或群聊本地及云端的消息(不删除会话)
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
## 完整版
|
|
31
|
+
#### Feature
|
|
32
|
+
- 支持会话分组
|
|
33
|
+
- `setConversationCustomData`: 设置自定义会话数据
|
|
34
|
+
- `markConversationList`: 标记会话
|
|
35
|
+
- `getConversationGroupList`: 获取会话分组列表
|
|
36
|
+
- `createConversationGroup`: 创建会话分组
|
|
37
|
+
- `deleteConversationGroup`: 删除会话分组
|
|
38
|
+
- `renameConversationGroup`: 重命名会话分组
|
|
39
|
+
- `addConversationsToGroup`: 添加会话到一个会话分组
|
|
40
|
+
- `deleteConversationsFromGroup`: 从一个会话分组中删除会话
|
|
41
|
+
- 支持话题
|
|
42
|
+
- `getJoinedCommunityList`: 获取支持话题的社群列表
|
|
43
|
+
- `createTopicInCommunity`: 创建话题
|
|
44
|
+
- `deleteTopicFromCommunity`: 删除话题
|
|
45
|
+
- `updateTopicProfile`: 更新话题资料
|
|
46
|
+
- `getTopicList`: 获取话题列表
|
|
47
|
+
|
|
1
48
|
## [1.2.1] (2025-07-08)
|
|
2
49
|
## 精简版
|
|
3
50
|
#### Feature
|