@hysc/meeting 5.0.57 → 5.0.58
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/esm/boom-meeting/src/BMStream/BMStreamModelVM.d.ts +2 -2
- package/esm/index.js +2 -2
- package/esm/index.js.map +2 -2
- package/esm/src/BMRoom/BMRoom.d.ts +687 -687
- package/esm/src/BMStream/BMStreamModelVM.d.ts +2 -2
- package/esm/utils/ErrorTypes.d.ts +1 -1
- package/package.json +3 -3
- package/umd/boom-meeting/src/BMStream/BMStreamModelVM.d.ts +2 -2
- package/umd/index.js +2 -2
- package/umd/src/BMRoom/BMRoom.d.ts +14 -13
- package/umd/utils/ErrorTypes.d.ts +1 -1
|
@@ -163,7 +163,7 @@ export default class BMStreamModelVM {
|
|
|
163
163
|
* @private
|
|
164
164
|
*/
|
|
165
165
|
private createStreamAndPublish;
|
|
166
|
-
publishBloudStream(audio: boolean, video: boolean): void
|
|
166
|
+
publishBloudStream(audio: boolean, video: boolean): Promise<void>;
|
|
167
167
|
muteHandler(type: 'video' | 'audio'): Promise<void>;
|
|
168
168
|
unpublishStream(): Promise<void>;
|
|
169
169
|
/**
|
|
@@ -186,7 +186,7 @@ export default class BMStreamModelVM {
|
|
|
186
186
|
* @param opts.contentHint 视频的contentHint 可选值: '' | 'motion' | 'detail' | 'text'
|
|
187
187
|
*/
|
|
188
188
|
toggleShareScreen(enable: boolean, opts: any, customShare?: Result): Promise<boolean>;
|
|
189
|
-
setShareScreenContentHint(contentHint: '' | 'motion' | 'detail' | 'text'):
|
|
189
|
+
setShareScreenContentHint(contentHint: '' | 'motion' | 'detail' | 'text'): void;
|
|
190
190
|
updateModelSort: import("lodash-es").DebouncedFunc<() => void>;
|
|
191
191
|
handleNoContainer: (info: NoPlayerContainer) => void;
|
|
192
192
|
/**
|
|
@@ -129,5 +129,5 @@ export declare const BMMicOccupyError: () => BoomError;
|
|
|
129
129
|
export declare const BMStreamDisconnectedError: (type: string) => BoomError;
|
|
130
130
|
export declare const BmSyncStreamFailError: () => BoomError;
|
|
131
131
|
export declare const BMStreamConnectError: () => BoomError;
|
|
132
|
-
export declare const BMStreamReconnectSuccess: () => BoomError;
|
|
132
|
+
export declare const BMStreamReconnectSuccess: (audio: boolean, video: boolean) => BoomError | undefined;
|
|
133
133
|
export declare const BMStreamReconnectFailed: () => BoomError;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hysc/meeting",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.58",
|
|
4
4
|
"description": "boom meeting",
|
|
5
5
|
"main": "umd/index.js",
|
|
6
6
|
"module": "esm/index.js",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"author": "yangliye",
|
|
15
15
|
"license": "MIT",
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@hysc/core": "5.0.
|
|
17
|
+
"@hysc/core": "5.0.56",
|
|
18
18
|
"@hysc/logger": "1.0.0",
|
|
19
19
|
"lodash-es": "^4.17.21",
|
|
20
20
|
"mitt": "^3.0.0",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"@hysc/utils": "1.2.4"
|
|
25
25
|
},
|
|
26
26
|
"peerDependencies": {
|
|
27
|
-
"@hysc/core": "5.0.
|
|
27
|
+
"@hysc/core": "5.0.56"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@types/lodash-es": "^4.17.6"
|
|
@@ -163,7 +163,7 @@ export default class BMStreamModelVM {
|
|
|
163
163
|
* @private
|
|
164
164
|
*/
|
|
165
165
|
private createStreamAndPublish;
|
|
166
|
-
publishBloudStream(audio: boolean, video: boolean): void
|
|
166
|
+
publishBloudStream(audio: boolean, video: boolean): Promise<void>;
|
|
167
167
|
muteHandler(type: 'video' | 'audio'): Promise<void>;
|
|
168
168
|
unpublishStream(): Promise<void>;
|
|
169
169
|
/**
|
|
@@ -186,7 +186,7 @@ export default class BMStreamModelVM {
|
|
|
186
186
|
* @param opts.contentHint 视频的contentHint 可选值: '' | 'motion' | 'detail' | 'text'
|
|
187
187
|
*/
|
|
188
188
|
toggleShareScreen(enable: boolean, opts: any, customShare?: Result): Promise<boolean>;
|
|
189
|
-
setShareScreenContentHint(contentHint: '' | 'motion' | 'detail' | 'text'):
|
|
189
|
+
setShareScreenContentHint(contentHint: '' | 'motion' | 'detail' | 'text'): void;
|
|
190
190
|
updateModelSort: any;
|
|
191
191
|
handleNoContainer: (info: NoPlayerContainer) => void;
|
|
192
192
|
/**
|