sim-sdk-web 1.2.24 → 1.2.26

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.
@@ -224,6 +224,10 @@ export interface GroupInfoVO {
224
224
  * 群状态: 0:正常,1禁止发言,2解散
225
225
  */
226
226
  status: number;
227
+ /** 私钥解密 */
228
+ s1?: string;
229
+ /** 公钥加密 */
230
+ p2?: string;
227
231
  }
228
232
  export interface GroupMemberVO {
229
233
  username: string;
@@ -5,8 +5,8 @@ export type LoginParams = {
5
5
  appKey?: string;
6
6
  anonLogin?: boolean;
7
7
  protocol?: ConnectionProtocol;
8
- /** 登录后要初始化/从缓存恢复的会话列表 queryType(须与后续 getConversations 使用的类型一致) */
9
- conversationQueryType: ConversationQueryType;
8
+ /** 登录后要初始化/从缓存恢复的会话列表 queryType(须与后续 getConversations 使用的类型一致),非直播下必传 */
9
+ conversationQueryType?: ConversationQueryType;
10
10
  };
11
11
  export declare type UploadFileParams = {
12
12
  name?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sim-sdk-web",
3
- "version": "1.2.24",
3
+ "version": "1.2.26",
4
4
  "description": "Sim SDK for Web - Support SSE and WebSocket protocols",
5
5
  "source": "src/index.ts",
6
6
  "main": "lib/index.js",