@rongcloud/engine 5.28.0-c-rtc-alpha.1 → 5.28.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/index.d.ts CHANGED
@@ -14654,8 +14654,8 @@ declare class APIContext {
14654
14654
  */
14655
14655
  getAllConversationList(channelId?: string): Promise<RCResult<IReceivedConversation[]>>;
14656
14656
  /**
14657
- * 既有版本接口实现中,getConversationList 接口存在二异性(channelId 为空时,获取全部会话,其他查询条件失效),因此该接口已废弃。
14658
- * 不可直接删除,原因在于二异性只存在于 Electron 平台,Web 端不提供获取全部会话功能,channelId 为无效参数。
14657
+ * 既有版本接口实现中,getConversationList 接口存在二义性(channelId 为空时,获取全部会话,其他查询条件失效),因此该接口已废弃。
14658
+ * 不可直接删除,原因在于二义性只存在于 Electron 平台,Web 端不提供获取全部会话功能,channelId 为无效参数。
14659
14659
  * @deprecated
14660
14660
  * @param params 获取会话列表参数
14661
14661
  * @returns 会话列表
@@ -15643,7 +15643,7 @@ declare abstract class BasicEngine implements IIPCMethodsInEngine, IModuleContex
15643
15643
  abstract updateMessageReceiptStatus(conversationType: ConversationType, targetId: string, timestamp: number, channelId?: string): Promise<RCResult<boolean>>;
15644
15644
  /**
15645
15645
  * 删除时间戳前的未读数
15646
- */
15646
+ */
15647
15647
  abstract clearUnreadCountByTimestamp(conversationType: ConversationType, targetId: string, timestamp: number, channelId: string): Promise<ErrorCode>;
15648
15648
  abstract setCallInfo(targetId: string, key: string, value: string): IPromiseResult<{
15649
15649
  key: string;