node-nim 10.9.1-beta.94 → 10.9.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-nim",
3
- "version": "10.9.1-beta.94",
3
+ "version": "10.9.1",
4
4
  "description": "NetEase IM nodejs wrapper based on NetEase IM C++ SDK",
5
5
  "main": "dist/node-nim.js",
6
6
  "bin": {
@@ -1480,6 +1480,9 @@ export interface V2NIMTeamMemberSearchOption {
1480
1480
  teamType: V2NIMTeamType;
1481
1481
  /** 群组ID,如果不传则检索所有群,如果需要检索特定的群,则需要同时传入 teamId + teamType */
1482
1482
  teamId?: string;
1483
+ /** 是否按账号 ID 查询 @since v10.9.1 */
1484
+ searchAccountId?: boolean;
1485
+ /** 起始位置,首次传空, 后续传上次返回的 nextToken */
1483
1486
  nextToken: string;
1484
1487
  /** 按照 joinTime 排序,默认时间降序排列 */
1485
1488
  order: V2NIMSortOrder;