node-nim 10.9.80-beta.13 → 10.9.80
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
|
@@ -303,6 +303,10 @@ export interface ChatRoomMessageSetting {
|
|
|
303
303
|
location_?: NIMChatRoomLocation;
|
|
304
304
|
/** (可选)消息接受者,如果设置了本字段,且不为空,则本消息为聊天室定向消息(聊天室定向消息不会存历史) */
|
|
305
305
|
to_accids?: Array<string>;
|
|
306
|
+
/** (可选)是否需要路由消息(抄送),默认为 true */
|
|
307
|
+
route_enabled_?: boolean;
|
|
308
|
+
/** (可选)环境变量,用于指向不同的抄送、第三方回调等配置 */
|
|
309
|
+
route_environment_?: string;
|
|
306
310
|
}
|
|
307
311
|
export interface ChatRoomMessage {
|
|
308
312
|
/** 消息所属的聊天室id,服务器填写,发送方不需要填写 */
|
|
@@ -2608,6 +2608,8 @@ export interface V2NIMMessageListResult {
|
|
|
2608
2608
|
messages: Array<V2NIMMessage>;
|
|
2609
2609
|
/** 下次查询的锚点消息 */
|
|
2610
2610
|
anchorMessage: V2NIMMessage;
|
|
2611
|
+
/** 是否还有更多消息 */
|
|
2612
|
+
hasMore: boolean;
|
|
2611
2613
|
}
|
|
2612
2614
|
/** @brief 消息插入参数 @since v10.9.75 */
|
|
2613
2615
|
export interface V2NIMMessageInsertParams {
|