linkdood-web-sdk 1.0.18 → 1.0.20
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 +36 -15
- package/dist/linkdoodWebSDK.js +3 -3
- package/docs/md/action/message.md +25 -4
- package/lib/cache/GroupMessageCache.js +3 -0
- package/lib/cache/OrganizationCache.js +12 -0
- package/lib/cache/OrganizationTimeStampCache.js +18 -0
- package/lib/cache/db/IMDB.js +4 -2
- package/lib/constant/storageConstant.js +2 -1
- package/lib/core/LinkdoodWebSDK.js +1 -1
- package/lib/core/action/MediaAction.js +11 -0
- package/lib/core/action/MessageAction.js +32 -12
- package/lib/core/action/OrgAction.js +3 -2
- package/lib/core/action/OrganizationAction.js +15 -0
- package/lib/core/action/index.js +1 -1
- package/lib/model/userModel.js +2 -1
- package/lib/notify/send/children/notifySendMessage.js +3 -3
- package/lib/offline/OfflineOrganization.js +12 -0
- package/lib/service/GroupMessageService.js +3 -0
- package/lib/service/LoginService.js +4 -2
- package/lib/service/MediaService.js +12 -0
- package/lib/service/MessageService.js +19 -13
- package/lib/service/OrganizationService.js +52 -0
- package/lib/service/OrganizationTimeStampService.js +10 -0
- package/lib/thrift/lib/thrift.js +1 -1
- package/lib/thrift/merge/thrift-merge.js +3 -3
- package/lib/utils/filesUtil.js +15 -7
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,33 +1,54 @@
|
|
|
1
|
-
## 1.0.
|
|
1
|
+
## 1.0.20(2024.5.17)
|
|
2
|
+
### Features
|
|
3
|
+
* 修改发送文件、图片消息方法
|
|
4
|
+
* 支持语音、转发、组合消息发送及接收
|
|
5
|
+
* 增加发送语音、转发消息
|
|
6
|
+
* 增加获取某个用户所在组织下可见的子组织和用户(在线)
|
|
7
|
+
* 增加获取用orgID获取组织信息(在线)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
## 1.0.19(2024.05.09)
|
|
2
11
|
### 🐛 Bug Fixes
|
|
3
|
-
*
|
|
12
|
+
* 修复拦截响应数组中string数字的转义问题
|
|
13
|
+
* 修复拦截响应数组中包含json对象未拦截问题
|
|
4
14
|
|
|
5
|
-
|
|
15
|
+
|
|
16
|
+
## 1.0.18(2024.05.08)
|
|
6
17
|
### 🐛 Bug Fixes
|
|
7
|
-
*
|
|
18
|
+
* 修复拦截响应数组中long转string时转义问题
|
|
8
19
|
|
|
9
20
|
|
|
10
|
-
## 1.0.
|
|
21
|
+
## 1.0.17(2024.03.22)
|
|
11
22
|
### 🐛 Bug Fixes
|
|
12
|
-
*
|
|
23
|
+
* 修复process单独提权异常问题
|
|
13
24
|
|
|
14
|
-
|
|
25
|
+
|
|
26
|
+
## 1.0.16(2024.03.15)
|
|
15
27
|
### 🐛 Bug Fixes
|
|
16
|
-
*
|
|
17
|
-
|
|
28
|
+
* 修复拦截响应long转string时转义问题
|
|
29
|
+
|
|
30
|
+
|
|
18
31
|
## 1.0.15(2024.03.14)
|
|
19
32
|
### 🐛 Bug Fixes
|
|
20
33
|
* 修复process兼容
|
|
21
34
|
* 修复获取消息异常问题
|
|
22
35
|
|
|
23
|
-
|
|
36
|
+
|
|
37
|
+
## 1.0.14(2024.03.12)
|
|
24
38
|
### 🐛 Bug Fixes
|
|
25
|
-
*
|
|
39
|
+
* 修复获取群成员列表异常问题
|
|
26
40
|
|
|
27
|
-
|
|
41
|
+
|
|
42
|
+
## 1.0.13(2024.03.11)
|
|
28
43
|
### 🐛 Bug Fixes
|
|
29
|
-
*
|
|
44
|
+
* 修复接受群消息通知解析报错问题
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
## 1.0.12(2024.03.08)
|
|
48
|
+
### 🐛 Bug Fixes
|
|
49
|
+
* 修复创建群成功后无法打开群会话
|
|
30
50
|
|
|
31
|
-
|
|
51
|
+
|
|
52
|
+
## 1.0.11(2024.03.07)
|
|
32
53
|
### 🐛 Bug Fixes
|
|
33
|
-
*
|
|
54
|
+
* 修复网页版发送图片客户端无法显示问题
|