@hysc/meeting 10.4.8 → 10.5.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/dist/index.d.mts +4 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +5 -5
package/dist/index.d.mts
CHANGED
|
@@ -1215,6 +1215,8 @@ declare class BMRoomInfo {
|
|
|
1215
1215
|
totalWaitRoomUserWatcher: BehaviorSubject<number>;
|
|
1216
1216
|
isOpenWaitRoom: Subject<boolean>;
|
|
1217
1217
|
originJoinRoomParams: any;
|
|
1218
|
+
/** 原始的joinRoom 响应信息 */
|
|
1219
|
+
originRespInfo: any;
|
|
1218
1220
|
constructor(room: BMRoom);
|
|
1219
1221
|
get roomName(): string;
|
|
1220
1222
|
/**
|
|
@@ -2177,8 +2179,9 @@ declare class BMRoom {
|
|
|
2177
2179
|
* 发送自定义消息 可绕过 W 权限
|
|
2178
2180
|
* @param {String} message - 待发送消息
|
|
2179
2181
|
* @param {String|undefined} to - 如果为空,则为广播消息,不为空,则定向到to用户的消息
|
|
2182
|
+
* @param {Boolean} analysis - 是否需要服务端解析消息
|
|
2180
2183
|
*/
|
|
2181
|
-
customMessage(message: string, to: string | undefined): Promise<any>;
|
|
2184
|
+
customMessage(message: string, to: string | undefined, analysis?: boolean): Promise<any>;
|
|
2182
2185
|
/**
|
|
2183
2186
|
* 获取指定消息列表
|
|
2184
2187
|
* @param {Number} startSeq - 起始序列号
|
package/dist/index.d.ts
CHANGED
|
@@ -1215,6 +1215,8 @@ declare class BMRoomInfo {
|
|
|
1215
1215
|
totalWaitRoomUserWatcher: BehaviorSubject<number>;
|
|
1216
1216
|
isOpenWaitRoom: Subject<boolean>;
|
|
1217
1217
|
originJoinRoomParams: any;
|
|
1218
|
+
/** 原始的joinRoom 响应信息 */
|
|
1219
|
+
originRespInfo: any;
|
|
1218
1220
|
constructor(room: BMRoom);
|
|
1219
1221
|
get roomName(): string;
|
|
1220
1222
|
/**
|
|
@@ -2177,8 +2179,9 @@ declare class BMRoom {
|
|
|
2177
2179
|
* 发送自定义消息 可绕过 W 权限
|
|
2178
2180
|
* @param {String} message - 待发送消息
|
|
2179
2181
|
* @param {String|undefined} to - 如果为空,则为广播消息,不为空,则定向到to用户的消息
|
|
2182
|
+
* @param {Boolean} analysis - 是否需要服务端解析消息
|
|
2180
2183
|
*/
|
|
2181
|
-
customMessage(message: string, to: string | undefined): Promise<any>;
|
|
2184
|
+
customMessage(message: string, to: string | undefined, analysis?: boolean): Promise<any>;
|
|
2182
2185
|
/**
|
|
2183
2186
|
* 获取指定消息列表
|
|
2184
2187
|
* @param {Number} startSeq - 起始序列号
|