node-nim 9.14.2 → 9.14.4

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.
Files changed (132) hide show
  1. package/dist/chatroom/chatroom.js +262 -262
  2. package/dist/chatroom_def/chatroom_def.js +119 -119
  3. package/dist/loader.js +35 -35
  4. package/dist/nim/client.js +184 -184
  5. package/dist/nim/data_sync.js +19 -19
  6. package/dist/nim/friend.js +150 -150
  7. package/dist/nim/global.js +131 -131
  8. package/dist/nim/msglog.js +687 -687
  9. package/dist/nim/nos.js +180 -180
  10. package/dist/nim/online_session.js +85 -85
  11. package/dist/nim/pass_through_proxy.js +39 -39
  12. package/dist/nim/plugin.js +65 -65
  13. package/dist/nim/session.js +392 -392
  14. package/dist/nim/subscribe_event.js +142 -142
  15. package/dist/nim/super_team.js +651 -592
  16. package/dist/nim/super_team.js.map +1 -1
  17. package/dist/nim/sysmsg.js +194 -194
  18. package/dist/nim/talk.js +209 -209
  19. package/dist/nim/talk.js.map +1 -1
  20. package/dist/nim/talkex.js +191 -191
  21. package/dist/nim/team.js +866 -818
  22. package/dist/nim/team.js.map +1 -1
  23. package/dist/nim/tool.js +119 -119
  24. package/dist/nim/user.js +201 -201
  25. package/dist/nim_def/client_def.js +245 -245
  26. package/dist/nim_def/data_sync_def.js +20 -20
  27. package/dist/nim_def/doc_trans_def.js +16 -16
  28. package/dist/nim_def/friend_def.js +37 -37
  29. package/dist/nim_def/global_def.js +39 -39
  30. package/dist/nim_def/msglog_def.js +148 -148
  31. package/dist/nim_def/nos_def.js +16 -16
  32. package/dist/nim_def/online_session_def.js +2 -2
  33. package/dist/nim_def/pass_through_proxy_def.js +10 -10
  34. package/dist/nim_def/plugin_def.js +2 -2
  35. package/dist/nim_def/session_def.js +26 -26
  36. package/dist/nim_def/subscribe_event_def.js +52 -52
  37. package/dist/nim_def/super_team_def.js +71 -64
  38. package/dist/nim_def/super_team_def.js.map +1 -1
  39. package/dist/nim_def/sysmsg_def.js +28 -28
  40. package/dist/nim_def/talk_def.js +2 -2
  41. package/dist/nim_def/talkex_def.js +2 -2
  42. package/dist/nim_def/team_def.js +76 -69
  43. package/dist/nim_def/team_def.js.map +1 -1
  44. package/dist/nim_def/tool_def.js +11 -11
  45. package/dist/nim_def/user_def.js +22 -22
  46. package/dist/node-nim.js +171 -171
  47. package/dist/qchat/attachment.js +63 -63
  48. package/dist/qchat/channel.js +314 -314
  49. package/dist/qchat/channel_category.js +187 -187
  50. package/dist/qchat/instance.js +77 -77
  51. package/dist/qchat/message.js +285 -285
  52. package/dist/qchat/role.js +423 -423
  53. package/dist/qchat/server.js +453 -453
  54. package/dist/qchat/system_notification.js +74 -74
  55. package/dist/qchat_def/attachment_def.js +2 -2
  56. package/dist/qchat_def/channel_def.js +2 -2
  57. package/dist/qchat_def/instance_def.js +2 -2
  58. package/dist/qchat_def/message_def.js +2 -2
  59. package/dist/qchat_def/public_def.js +649 -649
  60. package/dist/qchat_def/role_def.js +2 -2
  61. package/dist/qchat_def/server_def.js +2 -2
  62. package/dist/qchat_def/system_notification_def.js +2 -2
  63. package/dist/v2/v2_nim_instance.js +43 -43
  64. package/dist/v2/v2_nim_login_service.js +123 -123
  65. package/dist/v2_def/v2_nim_callback_def.js +2 -2
  66. package/dist/v2_def/v2_nim_enum_def.js +325 -325
  67. package/dist/v2_def/v2_nim_struct_def.js +2 -2
  68. package/package.json +74 -74
  69. package/script/download-sdk.js +78 -78
  70. package/script/exec-node-nim-tester.js +17 -17
  71. package/types/chatroom/chatroom.d.ts +55 -55
  72. package/types/chatroom_def/chatroom_def.d.ts +448 -448
  73. package/types/loader.d.ts +2 -2
  74. package/types/nim/client.d.ts +123 -123
  75. package/types/nim/data_sync.d.ts +12 -12
  76. package/types/nim/friend.d.ts +82 -82
  77. package/types/nim/global.d.ts +69 -69
  78. package/types/nim/msglog.d.ts +392 -392
  79. package/types/nim/nos.d.ts +118 -118
  80. package/types/nim/online_session.d.ts +44 -44
  81. package/types/nim/pass_through_proxy.d.ts +24 -24
  82. package/types/nim/plugin.d.ts +39 -39
  83. package/types/nim/session.d.ts +212 -212
  84. package/types/nim/subscribe_event.d.ts +87 -87
  85. package/types/nim/super_team.d.ts +356 -331
  86. package/types/nim/sysmsg.d.ts +105 -105
  87. package/types/nim/talk.d.ts +94 -94
  88. package/types/nim/talkex.d.ts +95 -95
  89. package/types/nim/team.d.ts +481 -461
  90. package/types/nim/tool.d.ts +77 -77
  91. package/types/nim/user.d.ts +111 -111
  92. package/types/nim_def/client_def.d.ts +284 -284
  93. package/types/nim_def/data_sync_def.d.ts +19 -19
  94. package/types/nim_def/doc_trans_def.d.ts +11 -11
  95. package/types/nim_def/friend_def.d.ts +65 -65
  96. package/types/nim_def/global_def.d.ts +62 -62
  97. package/types/nim_def/msglog_def.d.ts +373 -373
  98. package/types/nim_def/nos_def.d.ts +72 -72
  99. package/types/nim_def/online_session_def.d.ts +34 -34
  100. package/types/nim_def/pass_through_proxy_def.d.ts +13 -13
  101. package/types/nim_def/plugin_def.d.ts +8 -8
  102. package/types/nim_def/session_def.d.ts +114 -114
  103. package/types/nim_def/subscribe_event_def.d.ts +83 -83
  104. package/types/nim_def/super_team_def.d.ts +165 -137
  105. package/types/nim_def/sysmsg_def.d.ts +70 -70
  106. package/types/nim_def/talk_def.d.ts +96 -96
  107. package/types/nim_def/talkex_def.d.ts +112 -112
  108. package/types/nim_def/team_def.d.ts +186 -167
  109. package/types/nim_def/tool_def.d.ts +28 -28
  110. package/types/nim_def/user_def.d.ts +59 -59
  111. package/types/node-nim.d.ts +93 -93
  112. package/types/qchat/attachment.d.ts +40 -40
  113. package/types/qchat/channel.d.ts +139 -139
  114. package/types/qchat/channel_category.d.ts +82 -82
  115. package/types/qchat/instance.d.ts +46 -46
  116. package/types/qchat/message.d.ts +128 -128
  117. package/types/qchat/role.d.ts +166 -166
  118. package/types/qchat/server.d.ts +198 -198
  119. package/types/qchat/system_notification.d.ts +39 -39
  120. package/types/qchat_def/attachment_def.d.ts +71 -71
  121. package/types/qchat_def/channel_def.d.ts +643 -643
  122. package/types/qchat_def/instance_def.d.ts +214 -214
  123. package/types/qchat_def/message_def.d.ts +565 -565
  124. package/types/qchat_def/public_def.d.ts +754 -754
  125. package/types/qchat_def/role_def.d.ts +413 -413
  126. package/types/qchat_def/server_def.d.ts +529 -529
  127. package/types/qchat_def/system_notification_def.d.ts +172 -172
  128. package/types/v2/v2_nim_instance.d.ts +25 -25
  129. package/types/v2/v2_nim_login_service.d.ts +96 -96
  130. package/types/v2_def/v2_nim_callback_def.d.ts +20 -20
  131. package/types/v2_def/v2_nim_enum_def.d.ts +300 -300
  132. package/types/v2_def/v2_nim_struct_def.d.ts +338 -338
@@ -1,593 +1,652 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.NIMSuperTeam = void 0;
7
- const loader_1 = __importDefault(require("../loader"));
8
- const eventemitter3_1 = require("eventemitter3");
9
- class NIMSuperTeam extends eventemitter3_1.EventEmitter {
10
- constructor() {
11
- super();
12
- this.team = new loader_1.default.NIMSuperTeam({ emit: this.emit.bind(this) });
13
- }
14
- /** 注册全局回调 */
15
- initEventHandlers() {
16
- return this.team.InitEventHandlers();
17
- }
18
- /** 邀请
19
- * @param tid 群组id
20
- * @param ids 邀请对象id
21
- * @param invitation_postscript 邀请附言
22
- * @param invitation_attachment 用户可自定义的补充邀请信息
23
- * @param jsonExtension json扩展参数(备用,目前不需要)
24
- * @param cb 邀请的回调函数
25
- * @return boolean 检查参数如果不符合要求则返回失败
26
- * @note
27
- * <pre>
28
- * 200:成功
29
- * 810:如果是高级群,返回810表示邀请成功并带上timetag
30
- * 404:非法用户
31
- * 801:群人数超限
32
- * 802:没有权限
33
- * 803:群不存在
34
- * </pre>
35
- */
36
- inviteAsync(tid, ids, invitationPostscript, invitationAttachment, cb, jsonExtension) {
37
- return new Promise((resolve) => {
38
- if (!this.team.InviteAsync(tid, ids, invitationPostscript, invitationAttachment, (event) => {
39
- if (cb) {
40
- cb(event);
41
- }
42
- resolve([event]);
43
- }, jsonExtension)) {
44
- resolve(null);
45
- }
46
- });
47
- }
48
- /** 踢人
49
- * @param tid 群组id
50
- * @param ids 被踢对象id
51
- * @param jsonExtension json扩展参数(备用,目前不需要)
52
- * @param cb 踢人的回调函数
53
- * @return boolean 检查参数如果不符合要求则返回失败
54
- * @note
55
- * <pre>
56
- * 200:成功
57
- * 403:无超大群功能
58
- * 414:踢人数量超限
59
- * 802:群人数超限、不能踢自己
60
- * 803:群不存在
61
- * 804:用户不在群里面
62
- * </pre>
63
- */
64
- kickAsync(tid, ids, cb, jsonExtension) {
65
- return new Promise((resolve) => {
66
- if (!this.team.KickAsync(tid, ids, (event) => {
67
- if (cb) {
68
- cb(event);
69
- }
70
- resolve([event]);
71
- }, jsonExtension)) {
72
- resolve(null);
73
- }
74
- });
75
- }
76
- /** 离开群
77
- * @param tid 群组id
78
- * @param jsonExtension json扩展参数(备用,目前不需要)
79
- * @param cb 离开群的回调函数
80
- * @return boolean 检查参数如果不符合要求则返回失败
81
- * @note
82
- * <pre>
83
- * 200:成功
84
- * 403:无超大群功能
85
- * 802:没有群权限、群主不能退群
86
- * 803:群不存在
87
- * 804:用户不在群里
88
- * </pre>
89
- */
90
- leaveAsync(tid, cb, jsonExtension) {
91
- return new Promise((resolve) => {
92
- if (!this.team.LeaveAsync(tid, (event) => {
93
- if (cb) {
94
- cb(event);
95
- }
96
- resolve([event]);
97
- }, jsonExtension)) {
98
- resolve(null);
99
- }
100
- });
101
- }
102
- /** 更新群信息
103
- * @param tid 群组id
104
- * @param team_info 群组信息
105
- * @param jsonExtension json扩展参数(备用,目前不需要)
106
- * @param cb 更新群信息的回调函数
107
- * @return boolean 检查参数如果不符合要求则返回失败
108
- * @note
109
- * <pre>
110
- * 200:成功
111
- * 802:没有群权限、群主不能退群
112
- * 803:群不存在
113
- * </pre>
114
- */
115
- updateSuperTeamInfoAsync(tid, info, cb, jsonExtension) {
116
- return new Promise((resolve) => {
117
- if (!this.team.UpdateSuperTeamInfoAsync(tid, info, (event) => {
118
- if (cb) {
119
- cb(event);
120
- }
121
- resolve([event]);
122
- }, jsonExtension)) {
123
- resolve(null);
124
- }
125
- });
126
- }
127
- /** 申请入群
128
- * @param tid 群组id
129
- * @param reason 附言
130
- * @param jsonExtension json扩展参数(备用,目前不需要)
131
- * @param cb 申请入群的回调函数
132
- * @return boolean 检查参数如果不符合要求则返回失败
133
- * @note
134
- * <pre>
135
- * 200:成功
136
- * 802:群验证方式为拒绝所有人申请
137
- * 808:申请成功,等待验证
138
- * 809:已经在群里
139
- * 801:人数限制
140
- * 803:群不存在
141
- * 805:群类型不对
142
- * </pre>
143
- */
144
- applyJoinAsync(tid, reason, cb, jsonExtension) {
145
- return new Promise((resolve) => {
146
- if (!this.team.ApplyJoinAsync(tid, reason, (event) => {
147
- if (cb) {
148
- cb(event);
149
- }
150
- resolve([event]);
151
- }, jsonExtension)) {
152
- resolve(null);
153
- }
154
- });
155
- }
156
- /** 同意入群申请
157
- * @param tid 群组id
158
- * @param applicant_id 申请者id
159
- * @param jsonExtension json扩展参数(备用,目前不需要)
160
- * @param cb 同意入群申请的回调函数
161
- * @return boolean 检查参数如果不符合要求则返回失败
162
- * @note
163
- * <pre>
164
- * 200:成功
165
- * 509:操作已失效
166
- * 809:已经在群里
167
- * 801:人数限制
168
- * 802:没有权限
169
- * 803:群不存在
170
- * 805:群类型不对
171
- * </pre>
172
- */
173
- passJoinApplyAsync(tid, applicantId, cb, jsonExtension) {
174
- return new Promise((resolve) => {
175
- if (!this.team.PassJoinApplyAsync(tid, applicantId, (event) => {
176
- if (cb) {
177
- cb(event);
178
- }
179
- resolve([event]);
180
- }, jsonExtension)) {
181
- resolve(null);
182
- }
183
- });
184
- }
185
- /** 拒绝入群申请
186
- * @param tid 群组id
187
- * @param applicant_id 申请者id
188
- * @param reason 附言
189
- * @param jsonExtension json扩展参数(备用,目前不需要)
190
- * @param cb 拒绝入群申请的回调函数
191
- * @return boolean 检查参数如果不符合要求则返回失败
192
- * @note
193
- * <pre>
194
- * 200:成功,如果用户处于申请状态则会通知申请用户被拒绝
195
- * 509:操作已失效
196
- * 802:没有权限
197
- * 803:群不存在
198
- * 805:群类型不对
199
- * </pre>
200
- */
201
- rejectJoinApplyAsync(tid, applicantId, reason, cb, jsonExtension) {
202
- return new Promise((resolve) => {
203
- if (!this.team.RejectJoinApplyAsync(tid, applicantId, reason, (event) => {
204
- if (cb) {
205
- cb(event);
206
- }
207
- resolve([event]);
208
- }, jsonExtension)) {
209
- resolve(null);
210
- }
211
- });
212
- }
213
- /** 添加管理员
214
- * @param tid 群组id
215
- * @param ids 管理员id
216
- * @param jsonExtension json扩展参数(备用,目前不需要)
217
- * @param cb 添加管理员的回调函数
218
- * @return boolean 检查参数如果不符合要求则返回失败
219
- * @note
220
- * <pre>
221
- * 200:成功
222
- * 802:没有权限
223
- * 803:群不存在
224
- * 805:群类型不对
225
- * </pre>
226
- */
227
- addManagersAsync(tid, ids, cb, jsonExtension) {
228
- return new Promise((resolve) => {
229
- if (!this.team.AddManagersAsync(tid, ids, (event) => {
230
- if (cb) {
231
- cb(event);
232
- }
233
- resolve([event]);
234
- }, jsonExtension)) {
235
- resolve(null);
236
- }
237
- });
238
- }
239
- /** 删除管理员
240
- * @param tid 群组id
241
- * @param ids 管理员id
242
- * @param jsonExtension json扩展参数(备用,目前不需要)
243
- * @param cb 删除管理员的回调函数
244
- * @return boolean 检查参数如果不符合要求则返回失败
245
- * @note
246
- * <pre>
247
- * 200:成功
248
- * 802:没有权限
249
- * 803:群不存在
250
- * 805:群类型不对
251
- * </pre>
252
- */
253
- removeManagersAsync(tid, ids, cb, jsonExtension) {
254
- return new Promise((resolve) => {
255
- if (!this.team.RemoveManagersAsync(tid, ids, (event) => {
256
- if (cb) {
257
- cb(event);
258
- }
259
- resolve([event]);
260
- }, jsonExtension)) {
261
- resolve(null);
262
- }
263
- });
264
- }
265
- /** 移交群主
266
- * @param tid 群组id
267
- * @param new_owner_id 移交对象id
268
- * @param is_leave 是否同时退出群
269
- * @param jsonExtension json扩展参数(备用,目前不需要)
270
- * @param cb 移交群主的回调函数
271
- * @return boolean 检查参数如果不符合要求则返回失败
272
- * @note
273
- * <pre>
274
- * 200:成功
275
- * 802:没有权限
276
- * 803:群不存在
277
- * 805:群类型不对
278
- * 806:群数量上限
279
- * </pre>
280
- */
281
- transferTeamAsync(tid, newOwnerId, isLeave, cb, jsonExtension) {
282
- return new Promise((resolve) => {
283
- if (!this.team.TransferTeamAsync(tid, newOwnerId, isLeave, (event) => {
284
- if (cb) {
285
- cb(event);
286
- }
287
- resolve([event]);
288
- }, jsonExtension)) {
289
- resolve(null);
290
- }
291
- });
292
- }
293
- /** 更新自己的群属性
294
- * @param prop 群成员属性
295
- * @param jsonExtension json扩展参数(备用,目前不需要)
296
- * @param cb 更新自己的群属性的回调函数
297
- * @return boolean 检查参数如果不符合要求则返回失败
298
- * @note
299
- * <pre>
300
- * 200:成功
301
- * 803:群不存在
302
- * 805:群类型不对s
303
- * </pre>
304
- */
305
- updateMyPropertyAsync(prop, cb, jsonExtension) {
306
- return new Promise((resolve) => {
307
- if (!this.team.UpdateMyPropertyAsync(prop, (event) => {
308
- if (cb) {
309
- cb(event);
310
- }
311
- resolve([event]);
312
- }, jsonExtension)) {
313
- resolve(null);
314
- }
315
- });
316
- }
317
- /** 修改别人的群昵称
318
- * @param prop 群成员属性
319
- * @param jsonExtension json扩展参数(备用,目前不需要)
320
- * @param cb 修改别人的群昵称的回调函数
321
- * @return boolean 检查参数如果不符合要求则返回失败
322
- * @note
323
- * <pre>
324
- * 200:成功
325
- * 802:没有权限
326
- * 803:群不存在
327
- * 804:不在群里
328
- * 805:群类型不对
329
- * </pre>
330
- */
331
- updateOtherNickAsync(prop, cb, jsonExtension) {
332
- return new Promise((resolve) => {
333
- if (!this.team.UpdateOtherNickAsync(prop, (event) => {
334
- if (cb) {
335
- cb(event);
336
- }
337
- resolve([event]);
338
- }, jsonExtension)) {
339
- resolve(null);
340
- }
341
- });
342
- }
343
- /** 接受邀请
344
- * @param tid 群组id
345
- * @param invitor_id 邀请者id
346
- * @param jsonExtension json扩展参数(备用,目前不需要)
347
- * @param cb 接受邀请的回调函数
348
- * @return boolean 检查参数如果不符合要求则返回失败
349
- * @note
350
- * <pre>
351
- * 200:成功
352
- * 802:没有权限
353
- * 803:群不存在
354
- * 805:群类型不对
355
- * </pre>
356
- */
357
- acceptInvitationAsync(tid, inviterId, cb, jsonExtension) {
358
- return new Promise((resolve) => {
359
- if (!this.team.AcceptInvitationAsync(tid, inviterId, (event) => {
360
- if (cb) {
361
- cb(event);
362
- }
363
- resolve([event]);
364
- }, jsonExtension)) {
365
- resolve(null);
366
- }
367
- });
368
- }
369
- /** 拒绝邀请
370
- * @param tid 群组id
371
- * @param invitor_id 邀请者id
372
- * @param reason 附言
373
- * @param jsonExtension json扩展参数(备用,目前不需要)
374
- * @param cb 拒绝邀请的回调函数
375
- * @return boolean 检查参数如果不符合要求则返回失败
376
- * @note
377
- * <pre>
378
- * 200:成功
379
- * 802:没有权限
380
- * 803:群不存在
381
- * 805:群类型不对
382
- * </pre>
383
- */
384
- rejectInvitationAsync(tid, inviterId, reason, cb, jsonExtension) {
385
- return new Promise((resolve) => {
386
- if (!this.team.RejectInvitationAsync(tid, inviterId, reason, (event) => {
387
- if (cb) {
388
- cb(event);
389
- }
390
- resolve([event]);
391
- }, jsonExtension)) {
392
- resolve(null);
393
- }
394
- });
395
- }
396
- /** 查询所有群
397
- * @param jsonExtension json扩展参数(备用,目前不需要)
398
- * @param cb 查询所有群的回调函数
399
- * @return void 无返回值
400
- */
401
- queryAllMySuperTeamsAsync(cb, jsonExtension) {
402
- return new Promise((resolve) => {
403
- this.team.QueryAllMySuperTeamsAsync((count, result) => {
404
- if (cb) {
405
- cb(count, result);
406
- }
407
- resolve([count, result]);
408
- }, jsonExtension);
409
- });
410
- }
411
- /** 查询所有群信息
412
- * @param jsonExtension json扩展参数(备用,目前不需要)
413
- * @param cb 查询所有群信息的回调函数
414
- * @return void 无返回值
415
- */
416
- queryAllMySuperTeamsInfoAsync(cb, jsonExtension) {
417
- return new Promise((resolve) => {
418
- this.team.QueryAllMySuperTeamsInfoAsync((count, result) => {
419
- if (cb) {
420
- cb(count, result);
421
- }
422
- resolve([count, result]);
423
- }, jsonExtension);
424
- });
425
- }
426
- /** 查询所有群里我的成员信息(使用场景:获取了所有群列表后,需要查询自己在每个群里自己的成员信息,使用成员信息里的bits字段,可以判断当某个群发来消息后,是否做消息通知)
427
- * @param jsonExtension json扩展参数(备用,目前不需要)
428
- * @param cb 查询所有群里我的成员信息的回调函数
429
- * @return void 无返回值
430
- */
431
- queryMyAllMemberInfosAsync(cb, jsonExtension) {
432
- return new Promise((resolve) => {
433
- this.team.QueryMyAllMemberInfosAsync((count, result) => {
434
- if (cb) {
435
- cb(count, result);
436
- }
437
- resolve([count, result]);
438
- }, jsonExtension);
439
- });
440
- }
441
- /** 查询群成员
442
- * @param tid 群组id
443
- * @param jsonExtension json扩展参数(备用,目前不需要)
444
- * @param cb 查询群成员的回调函数
445
- * @return boolean 检查参数如果不符合要求则返回失败
446
- * @note
447
- * <pre>
448
- * 200:成功
449
- * 406:没有变化
450
- * 802:没有权限
451
- * </pre>
452
- */
453
- querySuperTeamMembersAsync(tid, cb, jsonExtension) {
454
- return new Promise((resolve) => {
455
- if (!this.team.QuerySuperTeamMembersAsync(tid, (rescode, tid, count, result) => {
456
- if (cb) {
457
- cb(rescode, tid, count, result);
458
- }
459
- resolve([rescode, tid, count, result]);
460
- }, jsonExtension)) {
461
- resolve(null);
462
- }
463
- });
464
- }
465
- /** 查询(单个)群成员信息
466
- * @param tid 群组id
467
- * @param id 群成员id
468
- * @param jsonExtension json扩展参数(备用,目前不需要)
469
- * @param cb 查询群成员的回调函数
470
- * @return boolean 检查参数如果不符合要求则返回失败
471
- */
472
- querySuperTeamMemberAsync(tid, id, cb, jsonExtension) {
473
- return new Promise((resolve) => {
474
- this.team.QuerySuperTeamMemberAsync(tid, id, (result) => {
475
- if (cb) {
476
- cb(result);
477
- }
478
- resolve([result]);
479
- }, jsonExtension);
480
- });
481
- }
482
- /** 查询群信息
483
- * @param tid 群组id
484
- * @param jsonExtension json扩展参数(备用,目前不需要)
485
- * @param cb 查询群信息的回调函数
486
- * @return boolean 检查参数如果不符合要求则返回失败
487
- */
488
- querySuperTeamInfoAsync(tid, cb, jsonExtension) {
489
- return new Promise((resolve) => {
490
- if (!this.team.QuerySuperTeamInfoAsync(tid, (tid, result) => {
491
- if (cb) {
492
- cb(tid, result);
493
- }
494
- resolve([tid, result]);
495
- }, jsonExtension)) {
496
- resolve(null);
497
- }
498
- });
499
- }
500
- /** 获取群信息(从服务器获取)
501
- * @param tid 群组id
502
- * @param jsonExtension json扩展参数(备用,目前不需要)
503
- * @param cb 获取群信息的回调函数
504
- * @return boolean 检查参数如果不符合要求则返回失败
505
- * @note
506
- * <pre>
507
- * 200:成功
508
- * 803:群不存在
509
- * </pre>
510
- */
511
- querySuperTeamInfoOnlineAsync(tid, cb, jsonExtension) {
512
- return new Promise((resolve) => {
513
- if (!this.team.QuerySuperTeamInfoOnlineAsync(tid, (result) => {
514
- if (cb) {
515
- cb(result);
516
- }
517
- resolve([result]);
518
- }, jsonExtension)) {
519
- resolve(null);
520
- }
521
- });
522
- }
523
- /** 禁言/解除禁言
524
- * @param tid 群组id
525
- * @param member_id 操作对象id
526
- * @param set_mute 禁言/解除禁言
527
- * @param jsonExtension json扩展参数(备用,目前不需要)
528
- * @param cb 踢人的回调函数
529
- * @return boolean 检查参数如果不符合要求则返回失败
530
- * @note
531
- * <pre>
532
- * 200:成功
533
- * 404:禁言对象不存在
534
- * 414:参数错误
535
- * 803:群不存在
536
- * 802:没有权限
537
- * </pre>
538
- */
539
- muteMemberAsync(tid, member_id, set_mute, cb, jsonExtension) {
540
- return new Promise((resolve) => {
541
- if (!this.team.MuteMemberAsync(tid, member_id, set_mute, (result) => {
542
- if (cb) {
543
- cb(result);
544
- }
545
- resolve([result]);
546
- }, jsonExtension)) {
547
- resolve(null);
548
- }
549
- });
550
- }
551
- /** 群禁言/解除群禁言
552
- * @param tid 群组id
553
- * @param set_mute 禁言/解除禁言
554
- * @param jsonExtension json扩展参数(备用,目前不需要)
555
- * @param cb 踢人的回调函数
556
- * @return boolean 检查参数如果不符合要求则返回失败
557
- * @note
558
- * <pre>
559
- * 200:成功
560
- * 414:参数错误
561
- * </pre>
562
- */
563
- muteAsync(tid, set_mute, cb, jsonExtension) {
564
- return new Promise((resolve) => {
565
- if (!this.team.MuteAsync(tid, set_mute, (result) => {
566
- if (cb) {
567
- cb(result);
568
- }
569
- resolve([result]);
570
- }, jsonExtension)) {
571
- resolve(null);
572
- }
573
- });
574
- }
575
- /** 查询所有群信息
576
- * @param keyword 要查询的关键字
577
- * @param jsonExtension json扩展参数(备用,目前不需要)
578
- * @param cb 查询所有群信息的回调函数
579
- * @return boolean 检查参数如果不符合要求则返回失败
580
- */
581
- querySuperTeamsInfoByKeywordAsync(keyword, cb, jsonExtension) {
582
- return new Promise((resolve) => {
583
- this.team.QuerySuperTeamsInfoByKeywordAsync(keyword, (code, result) => {
584
- if (cb) {
585
- cb(code, result);
586
- }
587
- resolve([code, result]);
588
- }, jsonExtension);
589
- });
590
- }
591
- }
592
- exports.NIMSuperTeam = NIMSuperTeam;
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.NIMSuperTeam = void 0;
7
+ const loader_1 = __importDefault(require("../loader"));
8
+ const eventemitter3_1 = require("eventemitter3");
9
+ class NIMSuperTeam extends eventemitter3_1.EventEmitter {
10
+ constructor() {
11
+ super();
12
+ this.team = new loader_1.default.NIMSuperTeam({ emit: this.emit.bind(this) });
13
+ }
14
+ /** 注册全局回调 */
15
+ initEventHandlers() {
16
+ return this.team.InitEventHandlers();
17
+ }
18
+ /** 邀请
19
+ * @param tid 群组id
20
+ * @param ids 邀请对象id
21
+ * @param invitation_postscript 邀请附言
22
+ * @param invitation_attachment 用户可自定义的补充邀请信息
23
+ * @param jsonExtension json扩展参数(备用,目前不需要)
24
+ * @param cb 邀请的回调函数
25
+ * @return boolean 检查参数如果不符合要求则返回失败
26
+ * @note
27
+ * <pre>
28
+ * 200:成功
29
+ * 810:如果是高级群,返回810表示邀请成功并带上timetag
30
+ * 404:非法用户
31
+ * 801:群人数超限
32
+ * 802:没有权限
33
+ * 803:群不存在
34
+ * </pre>
35
+ */
36
+ inviteAsync(tid, ids, invitationPostscript, invitationAttachment, cb, jsonExtension) {
37
+ return new Promise((resolve) => {
38
+ if (!this.team.InviteAsync(tid, ids, invitationPostscript, invitationAttachment, (event) => {
39
+ if (cb) {
40
+ cb(event);
41
+ }
42
+ resolve([event]);
43
+ }, jsonExtension)) {
44
+ resolve(null);
45
+ }
46
+ });
47
+ }
48
+ /** 踢人
49
+ * @param tid 群组id
50
+ * @param ids 被踢对象id
51
+ * @param jsonExtension json扩展参数(备用,目前不需要)
52
+ * @param cb 踢人的回调函数
53
+ * @return boolean 检查参数如果不符合要求则返回失败
54
+ * @note
55
+ * <pre>
56
+ * 200:成功
57
+ * 403:无超大群功能
58
+ * 414:踢人数量超限
59
+ * 802:群人数超限、不能踢自己
60
+ * 803:群不存在
61
+ * 804:用户不在群里面
62
+ * </pre>
63
+ */
64
+ kickAsync(tid, ids, cb, jsonExtension) {
65
+ return new Promise((resolve) => {
66
+ if (!this.team.KickAsync(tid, ids, (event) => {
67
+ if (cb) {
68
+ cb(event);
69
+ }
70
+ resolve([event]);
71
+ }, jsonExtension)) {
72
+ resolve(null);
73
+ }
74
+ });
75
+ }
76
+ /** 离开群
77
+ * @param tid 群组id
78
+ * @param jsonExtension json扩展参数(备用,目前不需要)
79
+ * @param cb 离开群的回调函数
80
+ * @return boolean 检查参数如果不符合要求则返回失败
81
+ * @note
82
+ * <pre>
83
+ * 200:成功
84
+ * 403:无超大群功能
85
+ * 802:没有群权限、群主不能退群
86
+ * 803:群不存在
87
+ * 804:用户不在群里
88
+ * </pre>
89
+ */
90
+ leaveAsync(tid, cb, jsonExtension) {
91
+ return new Promise((resolve) => {
92
+ if (!this.team.LeaveAsync(tid, (event) => {
93
+ if (cb) {
94
+ cb(event);
95
+ }
96
+ resolve([event]);
97
+ }, jsonExtension)) {
98
+ resolve(null);
99
+ }
100
+ });
101
+ }
102
+ /** 更新群信息
103
+ * @param tid 群组id
104
+ * @param team_info 群组信息
105
+ * @param jsonExtension json扩展参数(备用,目前不需要)
106
+ * @param cb 更新群信息的回调函数
107
+ * @return boolean 检查参数如果不符合要求则返回失败
108
+ * @note
109
+ * <pre>
110
+ * 200:成功
111
+ * 802:没有群权限、群主不能退群
112
+ * 803:群不存在
113
+ * </pre>
114
+ */
115
+ updateSuperTeamInfoAsync(tid, info, cb, jsonExtension) {
116
+ return new Promise((resolve) => {
117
+ if (!this.team.UpdateSuperTeamInfoAsync(tid, info, (event) => {
118
+ if (cb) {
119
+ cb(event);
120
+ }
121
+ resolve([event]);
122
+ }, jsonExtension)) {
123
+ resolve(null);
124
+ }
125
+ });
126
+ }
127
+ /** 申请入群
128
+ * @param tid 群组id
129
+ * @param reason 附言
130
+ * @param jsonExtension json扩展参数(备用,目前不需要)
131
+ * @param cb 申请入群的回调函数
132
+ * @return boolean 检查参数如果不符合要求则返回失败
133
+ * @note
134
+ * <pre>
135
+ * 200:成功
136
+ * 802:群验证方式为拒绝所有人申请
137
+ * 808:申请成功,等待验证
138
+ * 809:已经在群里
139
+ * 801:人数限制
140
+ * 803:群不存在
141
+ * 805:群类型不对
142
+ * </pre>
143
+ */
144
+ applyJoinAsync(tid, reason, cb, jsonExtension) {
145
+ return new Promise((resolve) => {
146
+ if (!this.team.ApplyJoinAsync(tid, reason, (event) => {
147
+ if (cb) {
148
+ cb(event);
149
+ }
150
+ resolve([event]);
151
+ }, jsonExtension)) {
152
+ resolve(null);
153
+ }
154
+ });
155
+ }
156
+ /** 同意入群申请
157
+ * @param tid 群组id
158
+ * @param applicant_id 申请者id
159
+ * @param jsonExtension json扩展参数(备用,目前不需要)
160
+ * @param cb 同意入群申请的回调函数
161
+ * @return boolean 检查参数如果不符合要求则返回失败
162
+ * @note
163
+ * <pre>
164
+ * 200:成功
165
+ * 509:操作已失效
166
+ * 809:已经在群里
167
+ * 801:人数限制
168
+ * 802:没有权限
169
+ * 803:群不存在
170
+ * 805:群类型不对
171
+ * </pre>
172
+ */
173
+ passJoinApplyAsync(tid, applicantId, cb, jsonExtension) {
174
+ return new Promise((resolve) => {
175
+ if (!this.team.PassJoinApplyAsync(tid, applicantId, (event) => {
176
+ if (cb) {
177
+ cb(event);
178
+ }
179
+ resolve([event]);
180
+ }, jsonExtension)) {
181
+ resolve(null);
182
+ }
183
+ });
184
+ }
185
+ /** 拒绝入群申请
186
+ * @param tid 群组id
187
+ * @param applicant_id 申请者id
188
+ * @param reason 附言
189
+ * @param jsonExtension json扩展参数(备用,目前不需要)
190
+ * @param cb 拒绝入群申请的回调函数
191
+ * @return boolean 检查参数如果不符合要求则返回失败
192
+ * @note
193
+ * <pre>
194
+ * 200:成功,如果用户处于申请状态则会通知申请用户被拒绝
195
+ * 509:操作已失效
196
+ * 802:没有权限
197
+ * 803:群不存在
198
+ * 805:群类型不对
199
+ * </pre>
200
+ */
201
+ rejectJoinApplyAsync(tid, applicantId, reason, cb, jsonExtension) {
202
+ return new Promise((resolve) => {
203
+ if (!this.team.RejectJoinApplyAsync(tid, applicantId, reason, (event) => {
204
+ if (cb) {
205
+ cb(event);
206
+ }
207
+ resolve([event]);
208
+ }, jsonExtension)) {
209
+ resolve(null);
210
+ }
211
+ });
212
+ }
213
+ /** 添加管理员
214
+ * @param tid 群组id
215
+ * @param ids 管理员id
216
+ * @param jsonExtension json扩展参数(备用,目前不需要)
217
+ * @param cb 添加管理员的回调函数
218
+ * @return boolean 检查参数如果不符合要求则返回失败
219
+ * @note
220
+ * <pre>
221
+ * 200:成功
222
+ * 802:没有权限
223
+ * 803:群不存在
224
+ * 805:群类型不对
225
+ * </pre>
226
+ */
227
+ addManagersAsync(tid, ids, cb, jsonExtension) {
228
+ return new Promise((resolve) => {
229
+ if (!this.team.AddManagersAsync(tid, ids, (event) => {
230
+ if (cb) {
231
+ cb(event);
232
+ }
233
+ resolve([event]);
234
+ }, jsonExtension)) {
235
+ resolve(null);
236
+ }
237
+ });
238
+ }
239
+ /** 删除管理员
240
+ * @param tid 群组id
241
+ * @param ids 管理员id
242
+ * @param jsonExtension json扩展参数(备用,目前不需要)
243
+ * @param cb 删除管理员的回调函数
244
+ * @return boolean 检查参数如果不符合要求则返回失败
245
+ * @note
246
+ * <pre>
247
+ * 200:成功
248
+ * 802:没有权限
249
+ * 803:群不存在
250
+ * 805:群类型不对
251
+ * </pre>
252
+ */
253
+ removeManagersAsync(tid, ids, cb, jsonExtension) {
254
+ return new Promise((resolve) => {
255
+ if (!this.team.RemoveManagersAsync(tid, ids, (event) => {
256
+ if (cb) {
257
+ cb(event);
258
+ }
259
+ resolve([event]);
260
+ }, jsonExtension)) {
261
+ resolve(null);
262
+ }
263
+ });
264
+ }
265
+ /** 移交群主
266
+ * @param tid 群组id
267
+ * @param new_owner_id 移交对象id
268
+ * @param is_leave 是否同时退出群
269
+ * @param jsonExtension json扩展参数(备用,目前不需要)
270
+ * @param cb 移交群主的回调函数
271
+ * @return boolean 检查参数如果不符合要求则返回失败
272
+ * @note
273
+ * <pre>
274
+ * 200:成功
275
+ * 802:没有权限
276
+ * 803:群不存在
277
+ * 805:群类型不对
278
+ * 806:群数量上限
279
+ * </pre>
280
+ */
281
+ transferTeamAsync(tid, newOwnerId, isLeave, cb, jsonExtension) {
282
+ return new Promise((resolve) => {
283
+ if (!this.team.TransferTeamAsync(tid, newOwnerId, isLeave, (event) => {
284
+ if (cb) {
285
+ cb(event);
286
+ }
287
+ resolve([event]);
288
+ }, jsonExtension)) {
289
+ resolve(null);
290
+ }
291
+ });
292
+ }
293
+ /** 更新自己的群属性
294
+ * @param prop 群成员属性
295
+ * @param jsonExtension json扩展参数(备用,目前不需要)
296
+ * @param cb 更新自己的群属性的回调函数
297
+ * @return boolean 检查参数如果不符合要求则返回失败
298
+ * @note
299
+ * <pre>
300
+ * 200:成功
301
+ * 803:群不存在
302
+ * 805:群类型不对s
303
+ * </pre>
304
+ */
305
+ updateMyPropertyAsync(prop, cb, jsonExtension) {
306
+ return new Promise((resolve) => {
307
+ if (!this.team.UpdateMyPropertyAsync(prop, (event) => {
308
+ if (cb) {
309
+ cb(event);
310
+ }
311
+ resolve([event]);
312
+ }, jsonExtension)) {
313
+ resolve(null);
314
+ }
315
+ });
316
+ }
317
+ /** @fn boolean addTeamMembersFollow(tid: string, account_ids: Array<string>, cb: SuperTeamEventCallback)
318
+ * 添加群成员特别通知
319
+ * @param[in] tid 群组id
320
+ * @param[in] account_ids 群成员id
321
+ * @param[in] cb 添加群成员特别通知的回调函数
322
+ */
323
+ addTeamMembersFollow(tid, account_ids, cb) {
324
+ return new Promise((resolve) => {
325
+ if (!this.team.AddTeamMembersFollow(tid, account_ids, (event) => {
326
+ if (cb) {
327
+ cb(event);
328
+ }
329
+ resolve([event]);
330
+ })) {
331
+ resolve(null);
332
+ }
333
+ });
334
+ }
335
+ /** @fn boolean removeTeamMembersFollow(tid: string, account_ids: Array<string>, SuperTeamEventCallback
336
+ * cb) 移除群成员特别通知
337
+ * @param[in] tid 群组id
338
+ * @param[in] account_ids 群成员id
339
+ * @param[in] cb 移除群成员特别通知的回调函数
340
+ */
341
+ removeTeamMembersFollow(tid, account_ids, cb) {
342
+ return new Promise((resolve) => {
343
+ if (!this.team.RemoveTeamMembersFollow(tid, account_ids, (event) => {
344
+ if (cb) {
345
+ cb(event);
346
+ }
347
+ resolve([event]);
348
+ })) {
349
+ resolve(null);
350
+ }
351
+ });
352
+ }
353
+ /** 修改别人的群昵称
354
+ * @param prop 群成员属性
355
+ * @param jsonExtension json扩展参数(备用,目前不需要)
356
+ * @param cb 修改别人的群昵称的回调函数
357
+ * @return boolean 检查参数如果不符合要求则返回失败
358
+ * @note
359
+ * <pre>
360
+ * 200:成功
361
+ * 802:没有权限
362
+ * 803:群不存在
363
+ * 804:不在群里
364
+ * 805:群类型不对
365
+ * </pre>
366
+ */
367
+ updateOtherNickAsync(prop, cb, jsonExtension) {
368
+ return new Promise((resolve) => {
369
+ if (!this.team.UpdateOtherNickAsync(prop, (event) => {
370
+ if (cb) {
371
+ cb(event);
372
+ }
373
+ resolve([event]);
374
+ }, jsonExtension)) {
375
+ resolve(null);
376
+ }
377
+ });
378
+ }
379
+ /** 接受邀请
380
+ * @param tid 群组id
381
+ * @param invitor_id 邀请者id
382
+ * @param jsonExtension json扩展参数(备用,目前不需要)
383
+ * @param cb 接受邀请的回调函数
384
+ * @return boolean 检查参数如果不符合要求则返回失败
385
+ * @note
386
+ * <pre>
387
+ * 200:成功
388
+ * 802:没有权限
389
+ * 803:群不存在
390
+ * 805:群类型不对
391
+ * </pre>
392
+ */
393
+ acceptInvitationAsync(tid, inviterId, cb, jsonExtension) {
394
+ return new Promise((resolve) => {
395
+ if (!this.team.AcceptInvitationAsync(tid, inviterId, (event) => {
396
+ if (cb) {
397
+ cb(event);
398
+ }
399
+ resolve([event]);
400
+ }, jsonExtension)) {
401
+ resolve(null);
402
+ }
403
+ });
404
+ }
405
+ /** 拒绝邀请
406
+ * @param tid 群组id
407
+ * @param invitor_id 邀请者id
408
+ * @param reason 附言
409
+ * @param jsonExtension json扩展参数(备用,目前不需要)
410
+ * @param cb 拒绝邀请的回调函数
411
+ * @return boolean 检查参数如果不符合要求则返回失败
412
+ * @note
413
+ * <pre>
414
+ * 200:成功
415
+ * 802:没有权限
416
+ * 803:群不存在
417
+ * 805:群类型不对
418
+ * </pre>
419
+ */
420
+ rejectInvitationAsync(tid, inviterId, reason, cb, jsonExtension) {
421
+ return new Promise((resolve) => {
422
+ if (!this.team.RejectInvitationAsync(tid, inviterId, reason, (event) => {
423
+ if (cb) {
424
+ cb(event);
425
+ }
426
+ resolve([event]);
427
+ }, jsonExtension)) {
428
+ resolve(null);
429
+ }
430
+ });
431
+ }
432
+ /** 查询所有群
433
+ * @param jsonExtension json扩展参数(备用,目前不需要)
434
+ * @param cb 查询所有群的回调函数
435
+ * @return void 无返回值
436
+ */
437
+ queryAllMySuperTeamsAsync(cb, jsonExtension) {
438
+ return new Promise((resolve) => {
439
+ this.team.QueryAllMySuperTeamsAsync((count, result) => {
440
+ if (cb) {
441
+ cb(count, result);
442
+ }
443
+ resolve([count, result]);
444
+ }, jsonExtension);
445
+ });
446
+ }
447
+ /** 查询所有群信息
448
+ * @param jsonExtension json扩展参数(备用,目前不需要)
449
+ * @param cb 查询所有群信息的回调函数
450
+ * @return void 无返回值
451
+ */
452
+ queryAllMySuperTeamsInfoAsync(cb, jsonExtension) {
453
+ return new Promise((resolve) => {
454
+ this.team.QueryAllMySuperTeamsInfoAsync((count, result) => {
455
+ if (cb) {
456
+ cb(count, result);
457
+ }
458
+ resolve([count, result]);
459
+ }, jsonExtension);
460
+ });
461
+ }
462
+ /** 查询所有群里我的成员信息(使用场景:获取了所有群列表后,需要查询自己在每个群里自己的成员信息,使用成员信息里的bits字段,可以判断当某个群发来消息后,是否做消息通知)
463
+ * @param jsonExtension json扩展参数(备用,目前不需要)
464
+ * @param cb 查询所有群里我的成员信息的回调函数
465
+ * @return void 无返回值
466
+ */
467
+ queryMyAllMemberInfosAsync(cb, jsonExtension) {
468
+ return new Promise((resolve) => {
469
+ this.team.QueryMyAllMemberInfosAsync((count, result) => {
470
+ if (cb) {
471
+ cb(count, result);
472
+ }
473
+ resolve([count, result]);
474
+ }, jsonExtension);
475
+ });
476
+ }
477
+ /** 查询群成员
478
+ * @param tid 群组id
479
+ * @param jsonExtension json扩展参数(备用,目前不需要)
480
+ * @param cb 查询群成员的回调函数
481
+ * @return boolean 检查参数如果不符合要求则返回失败
482
+ * @note
483
+ * <pre>
484
+ * 200:成功
485
+ * 406:没有变化
486
+ * 802:没有权限
487
+ * </pre>
488
+ */
489
+ querySuperTeamMembersAsync(tid, cb, jsonExtension) {
490
+ return new Promise((resolve) => {
491
+ if (!this.team.QuerySuperTeamMembersAsync(tid, (rescode, tid, count, result) => {
492
+ if (cb) {
493
+ cb(rescode, tid, count, result);
494
+ }
495
+ resolve([rescode, tid, count, result]);
496
+ }, jsonExtension)) {
497
+ resolve(null);
498
+ }
499
+ });
500
+ }
501
+ /** 查询(单个)群成员信息
502
+ * @param tid 群组id
503
+ * @param id 群成员id
504
+ * @param jsonExtension json扩展参数(备用,目前不需要)
505
+ * @param cb 查询群成员的回调函数
506
+ * @return boolean 检查参数如果不符合要求则返回失败
507
+ */
508
+ querySuperTeamMemberAsync(tid, id, cb, jsonExtension) {
509
+ return new Promise((resolve) => {
510
+ this.team.QuerySuperTeamMemberAsync(tid, id, (result) => {
511
+ if (cb) {
512
+ cb(result);
513
+ }
514
+ resolve([result]);
515
+ }, jsonExtension);
516
+ });
517
+ }
518
+ /** 查询群信息
519
+ * @param tid 群组id
520
+ * @param jsonExtension json扩展参数(备用,目前不需要)
521
+ * @param cb 查询群信息的回调函数
522
+ * @return boolean 检查参数如果不符合要求则返回失败
523
+ */
524
+ querySuperTeamInfoAsync(tid, cb, jsonExtension) {
525
+ return new Promise((resolve) => {
526
+ if (!this.team.QuerySuperTeamInfoAsync(tid, (tid, result) => {
527
+ if (cb) {
528
+ cb(tid, result);
529
+ }
530
+ resolve([tid, result]);
531
+ }, jsonExtension)) {
532
+ resolve(null);
533
+ }
534
+ });
535
+ }
536
+ /** 获取群信息(从服务器获取)
537
+ * @param tid 群组id
538
+ * @param jsonExtension json扩展参数(备用,目前不需要)
539
+ * @param cb 获取群信息的回调函数
540
+ * @return boolean 检查参数如果不符合要求则返回失败
541
+ * @note
542
+ * <pre>
543
+ * 200:成功
544
+ * 803:群不存在
545
+ * </pre>
546
+ */
547
+ querySuperTeamInfoOnlineAsync(tid, cb, jsonExtension) {
548
+ return new Promise((resolve) => {
549
+ if (!this.team.QuerySuperTeamInfoOnlineAsync(tid, (result) => {
550
+ if (cb) {
551
+ cb(result);
552
+ }
553
+ resolve([result]);
554
+ }, jsonExtension)) {
555
+ resolve(null);
556
+ }
557
+ });
558
+ }
559
+ /** 禁言/解除禁言
560
+ * @param tid 群组id
561
+ * @param member_id 操作对象id
562
+ * @param set_mute 禁言/解除禁言
563
+ * @param jsonExtension json扩展参数(备用,目前不需要)
564
+ * @param cb 踢人的回调函数
565
+ * @return boolean 检查参数如果不符合要求则返回失败
566
+ * @note
567
+ * <pre>
568
+ * 200:成功
569
+ * 404:禁言对象不存在
570
+ * 414:参数错误
571
+ * 803:群不存在
572
+ * 802:没有权限
573
+ * </pre>
574
+ */
575
+ muteMemberAsync(tid, member_id, set_mute, cb, jsonExtension) {
576
+ return new Promise((resolve) => {
577
+ if (!this.team.MuteMemberAsync(tid, member_id, set_mute, (result) => {
578
+ if (cb) {
579
+ cb(result);
580
+ }
581
+ resolve([result]);
582
+ }, jsonExtension)) {
583
+ resolve(null);
584
+ }
585
+ });
586
+ }
587
+ /** 群禁言/解除群禁言
588
+ * @param tid 群组id
589
+ * @param set_mute 禁言/解除禁言
590
+ * @param jsonExtension json扩展参数(备用,目前不需要)
591
+ * @param cb 踢人的回调函数
592
+ * @return boolean 检查参数如果不符合要求则返回失败
593
+ * @note
594
+ * <pre>
595
+ * 200:成功
596
+ * 414:参数错误
597
+ * </pre>
598
+ */
599
+ muteAsync(tid, set_mute, cb, jsonExtension) {
600
+ return new Promise((resolve) => {
601
+ if (!this.team.MuteAsync(tid, set_mute, (result) => {
602
+ if (cb) {
603
+ cb(result);
604
+ }
605
+ resolve([result]);
606
+ }, jsonExtension)) {
607
+ resolve(null);
608
+ }
609
+ });
610
+ }
611
+ /** 查询所有群信息
612
+ * @param keyword 要查询的关键字
613
+ * @param jsonExtension json扩展参数(备用,目前不需要)
614
+ * @param cb 查询所有群信息的回调函数
615
+ * @return boolean 检查参数如果不符合要求则返回失败
616
+ */
617
+ querySuperTeamsInfoByKeywordAsync(keyword, cb, jsonExtension) {
618
+ return new Promise((resolve) => {
619
+ this.team.QuerySuperTeamsInfoByKeywordAsync(keyword, (code, result) => {
620
+ if (cb) {
621
+ cb(code, result);
622
+ }
623
+ resolve([code, result]);
624
+ }, jsonExtension);
625
+ });
626
+ }
627
+ /** 搜索群成员
628
+ * @param option 搜索群成员选项
629
+ * @return boolean 检查参数如果不符合要求则返回失败
630
+ */
631
+ searchTeamMembers(option) {
632
+ return new Promise((resolve) => {
633
+ this.team.SearchTeamMembers(option, (result) => {
634
+ resolve([result]);
635
+ });
636
+ });
637
+ }
638
+ /** 根据成员类型获取群成员
639
+ * @param tid 群组id
640
+ * @param option 获取群成员选项
641
+ * @return boolean 检查参数如果不符合要求则返回失败
642
+ */
643
+ getTeamMemberList(tid, option) {
644
+ return new Promise((resolve) => {
645
+ this.team.GetTeamMemberList(tid, option, (result) => {
646
+ resolve([result]);
647
+ });
648
+ });
649
+ }
650
+ }
651
+ exports.NIMSuperTeam = NIMSuperTeam;
593
652
  //# sourceMappingURL=super_team.js.map