@hysc/meeting 10.0.40 → 10.0.43
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 +35 -18
- package/dist/index.d.ts +35 -18
- package/dist/index.js +2 -2
- package/dist/index.mjs +1 -1
- package/package.json +8 -8
package/dist/index.d.mts
CHANGED
|
@@ -1031,6 +1031,24 @@ declare class BMUserVM {
|
|
|
1031
1031
|
searchWaitRoomUsers(searchTxt: string, pageSize: number): Promise<BMUser[]>;
|
|
1032
1032
|
}
|
|
1033
1033
|
|
|
1034
|
+
interface Tiles4 {
|
|
1035
|
+
index: number;
|
|
1036
|
+
nickname: string;
|
|
1037
|
+
user: string;
|
|
1038
|
+
stream: string;
|
|
1039
|
+
isSubStream?: boolean;
|
|
1040
|
+
}
|
|
1041
|
+
interface HostLayout {
|
|
1042
|
+
user: string;
|
|
1043
|
+
layout: number;
|
|
1044
|
+
activeSubtiles: boolean;
|
|
1045
|
+
tiles: Tiles4[];
|
|
1046
|
+
}
|
|
1047
|
+
declare type CloudRecord = {
|
|
1048
|
+
recordStatus: 0 | 1 | 2;
|
|
1049
|
+
userId: string;
|
|
1050
|
+
};
|
|
1051
|
+
|
|
1034
1052
|
/**
|
|
1035
1053
|
* @name: BMRoomInfo
|
|
1036
1054
|
* @author: yangliye
|
|
@@ -1245,20 +1263,6 @@ declare class BMRoomInfo {
|
|
|
1245
1263
|
private setSimpleRaiseHandsWatcherValue;
|
|
1246
1264
|
}
|
|
1247
1265
|
|
|
1248
|
-
interface Tiles4 {
|
|
1249
|
-
index: number;
|
|
1250
|
-
nickname: string;
|
|
1251
|
-
user: string;
|
|
1252
|
-
stream: string;
|
|
1253
|
-
isSubStream?: boolean;
|
|
1254
|
-
}
|
|
1255
|
-
interface HostLayout {
|
|
1256
|
-
user: string;
|
|
1257
|
-
layout: number;
|
|
1258
|
-
activeSubtiles: boolean;
|
|
1259
|
-
tiles: Tiles4[];
|
|
1260
|
-
}
|
|
1261
|
-
|
|
1262
1266
|
/**
|
|
1263
1267
|
* 0 仅支持人 1 嘉宾 2 全员
|
|
1264
1268
|
*/
|
|
@@ -1269,10 +1273,6 @@ declare type giveLikeItem = {
|
|
|
1269
1273
|
time: number;
|
|
1270
1274
|
type: number;
|
|
1271
1275
|
};
|
|
1272
|
-
declare type CloudRecord = {
|
|
1273
|
-
recordStatus: 0 | 1 | 2;
|
|
1274
|
-
userId: string;
|
|
1275
|
-
};
|
|
1276
1276
|
declare type SupportVideoProfile = '180p' | '240p' | '360p' | '480p' | '720p';
|
|
1277
1277
|
declare type SampleDeviceInfo = {
|
|
1278
1278
|
name: string;
|
|
@@ -1533,6 +1533,22 @@ declare class BMRoomVM {
|
|
|
1533
1533
|
* @param {string} userid 设为焦点主屏的userId
|
|
1534
1534
|
*/
|
|
1535
1535
|
setForceOnUser(userid: string): Promise<void>;
|
|
1536
|
+
/**
|
|
1537
|
+
* 修改云录状态, 修改申请中,
|
|
1538
|
+
* @param cloudRecord
|
|
1539
|
+
* @param {string} cloudRecord.userId
|
|
1540
|
+
* @param {number} cloudRecord.recordStatus
|
|
1541
|
+
* @returns
|
|
1542
|
+
*/
|
|
1543
|
+
updateRecordType(cloudRecord: CloudRecord): Promise<any>;
|
|
1544
|
+
/**
|
|
1545
|
+
* 更改 隐藏会议号和密码
|
|
1546
|
+
* @param cloudRecord
|
|
1547
|
+
* @param {string} cloudRecord.userId
|
|
1548
|
+
* @param {number} cloudRecord.recordStatus
|
|
1549
|
+
* @returns
|
|
1550
|
+
*/
|
|
1551
|
+
updateSafeHideSec(safeHideSec: boolean): Promise<any>;
|
|
1536
1552
|
/**
|
|
1537
1553
|
* 主持人上报布局状态
|
|
1538
1554
|
* @param layoutData
|
|
@@ -1718,6 +1734,7 @@ declare class BMRoom {
|
|
|
1718
1734
|
raiseHands: boolean;
|
|
1719
1735
|
}>;
|
|
1720
1736
|
enableAudienceSpeakingWatcher: Subject<boolean>;
|
|
1737
|
+
deviceChangeWatcher: Subject<boolean>;
|
|
1721
1738
|
mediaPermission: MediaPermission;
|
|
1722
1739
|
videoProfile: VideoProfile;
|
|
1723
1740
|
audioProfile: AudioProfileInfo | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -1031,6 +1031,24 @@ declare class BMUserVM {
|
|
|
1031
1031
|
searchWaitRoomUsers(searchTxt: string, pageSize: number): Promise<BMUser[]>;
|
|
1032
1032
|
}
|
|
1033
1033
|
|
|
1034
|
+
interface Tiles4 {
|
|
1035
|
+
index: number;
|
|
1036
|
+
nickname: string;
|
|
1037
|
+
user: string;
|
|
1038
|
+
stream: string;
|
|
1039
|
+
isSubStream?: boolean;
|
|
1040
|
+
}
|
|
1041
|
+
interface HostLayout {
|
|
1042
|
+
user: string;
|
|
1043
|
+
layout: number;
|
|
1044
|
+
activeSubtiles: boolean;
|
|
1045
|
+
tiles: Tiles4[];
|
|
1046
|
+
}
|
|
1047
|
+
declare type CloudRecord = {
|
|
1048
|
+
recordStatus: 0 | 1 | 2;
|
|
1049
|
+
userId: string;
|
|
1050
|
+
};
|
|
1051
|
+
|
|
1034
1052
|
/**
|
|
1035
1053
|
* @name: BMRoomInfo
|
|
1036
1054
|
* @author: yangliye
|
|
@@ -1245,20 +1263,6 @@ declare class BMRoomInfo {
|
|
|
1245
1263
|
private setSimpleRaiseHandsWatcherValue;
|
|
1246
1264
|
}
|
|
1247
1265
|
|
|
1248
|
-
interface Tiles4 {
|
|
1249
|
-
index: number;
|
|
1250
|
-
nickname: string;
|
|
1251
|
-
user: string;
|
|
1252
|
-
stream: string;
|
|
1253
|
-
isSubStream?: boolean;
|
|
1254
|
-
}
|
|
1255
|
-
interface HostLayout {
|
|
1256
|
-
user: string;
|
|
1257
|
-
layout: number;
|
|
1258
|
-
activeSubtiles: boolean;
|
|
1259
|
-
tiles: Tiles4[];
|
|
1260
|
-
}
|
|
1261
|
-
|
|
1262
1266
|
/**
|
|
1263
1267
|
* 0 仅支持人 1 嘉宾 2 全员
|
|
1264
1268
|
*/
|
|
@@ -1269,10 +1273,6 @@ declare type giveLikeItem = {
|
|
|
1269
1273
|
time: number;
|
|
1270
1274
|
type: number;
|
|
1271
1275
|
};
|
|
1272
|
-
declare type CloudRecord = {
|
|
1273
|
-
recordStatus: 0 | 1 | 2;
|
|
1274
|
-
userId: string;
|
|
1275
|
-
};
|
|
1276
1276
|
declare type SupportVideoProfile = '180p' | '240p' | '360p' | '480p' | '720p';
|
|
1277
1277
|
declare type SampleDeviceInfo = {
|
|
1278
1278
|
name: string;
|
|
@@ -1533,6 +1533,22 @@ declare class BMRoomVM {
|
|
|
1533
1533
|
* @param {string} userid 设为焦点主屏的userId
|
|
1534
1534
|
*/
|
|
1535
1535
|
setForceOnUser(userid: string): Promise<void>;
|
|
1536
|
+
/**
|
|
1537
|
+
* 修改云录状态, 修改申请中,
|
|
1538
|
+
* @param cloudRecord
|
|
1539
|
+
* @param {string} cloudRecord.userId
|
|
1540
|
+
* @param {number} cloudRecord.recordStatus
|
|
1541
|
+
* @returns
|
|
1542
|
+
*/
|
|
1543
|
+
updateRecordType(cloudRecord: CloudRecord): Promise<any>;
|
|
1544
|
+
/**
|
|
1545
|
+
* 更改 隐藏会议号和密码
|
|
1546
|
+
* @param cloudRecord
|
|
1547
|
+
* @param {string} cloudRecord.userId
|
|
1548
|
+
* @param {number} cloudRecord.recordStatus
|
|
1549
|
+
* @returns
|
|
1550
|
+
*/
|
|
1551
|
+
updateSafeHideSec(safeHideSec: boolean): Promise<any>;
|
|
1536
1552
|
/**
|
|
1537
1553
|
* 主持人上报布局状态
|
|
1538
1554
|
* @param layoutData
|
|
@@ -1718,6 +1734,7 @@ declare class BMRoom {
|
|
|
1718
1734
|
raiseHands: boolean;
|
|
1719
1735
|
}>;
|
|
1720
1736
|
enableAudienceSpeakingWatcher: Subject<boolean>;
|
|
1737
|
+
deviceChangeWatcher: Subject<boolean>;
|
|
1721
1738
|
mediaPermission: MediaPermission;
|
|
1722
1739
|
videoProfile: VideoProfile;
|
|
1723
1740
|
audioProfile: AudioProfileInfo | null;
|