@hysc/meeting 10.4.8 → 10.4.9
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/dist/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +4 -4
package/dist/index.d.mts
CHANGED
|
@@ -2177,8 +2177,9 @@ declare class BMRoom {
|
|
|
2177
2177
|
* 发送自定义消息 可绕过 W 权限
|
|
2178
2178
|
* @param {String} message - 待发送消息
|
|
2179
2179
|
* @param {String|undefined} to - 如果为空,则为广播消息,不为空,则定向到to用户的消息
|
|
2180
|
+
* @param {Boolean} analysis - 是否需要服务端解析消息
|
|
2180
2181
|
*/
|
|
2181
|
-
customMessage(message: string, to: string | undefined): Promise<any>;
|
|
2182
|
+
customMessage(message: string, to: string | undefined, analysis?: boolean): Promise<any>;
|
|
2182
2183
|
/**
|
|
2183
2184
|
* 获取指定消息列表
|
|
2184
2185
|
* @param {Number} startSeq - 起始序列号
|
package/dist/index.d.ts
CHANGED
|
@@ -2177,8 +2177,9 @@ declare class BMRoom {
|
|
|
2177
2177
|
* 发送自定义消息 可绕过 W 权限
|
|
2178
2178
|
* @param {String} message - 待发送消息
|
|
2179
2179
|
* @param {String|undefined} to - 如果为空,则为广播消息,不为空,则定向到to用户的消息
|
|
2180
|
+
* @param {Boolean} analysis - 是否需要服务端解析消息
|
|
2180
2181
|
*/
|
|
2181
|
-
customMessage(message: string, to: string | undefined): Promise<any>;
|
|
2182
|
+
customMessage(message: string, to: string | undefined, analysis?: boolean): Promise<any>;
|
|
2182
2183
|
/**
|
|
2183
2184
|
* 获取指定消息列表
|
|
2184
2185
|
* @param {Number} startSeq - 起始序列号
|