@polyvharmony/rtc-sdk 1.2.0 → 1.3.0-dev.251127.1
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/CHANGELOG.md
CHANGED
package/ets/modules.abc
CHANGED
|
Binary file
|
package/oh-package.json5
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"@polyvharmony/rtc-sdk","version":"1.
|
|
1
|
+
{"name":"@polyvharmony/rtc-sdk","version":"1.3.0-dev.251127.1","description":"rtc-sdk","author":"POLYV","repository":"https://github.com/polyv/polyv-harmony-livescenes-sdk-demo","license":"MIT","dependencies":{"@polyvharmony/common-libs":"1.0.1"},"types":"Index.d.ts","artifactType":"obfuscation","metadata":{"byteCodeHar":true,"sourceRoots":["./src/main"],"debug":false,"dependencyPkgVersion":{"@polyvharmony/common-libs":"1.0.1"},"declarationEntry":[],"useNormalizedOHMUrl":true},"compatibleSdkVersionStage":"beta1","compatibleSdkVersion":12,"compatibleSdkType":"HarmonyOS","obfuscated":true}
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"@polyvharmony/rtc-sdk","version":"1.
|
|
1
|
+
{"name":"@polyvharmony/rtc-sdk","version":"1.3.0-dev.251127.1","description":"rtc-sdk","author":"POLYV","repository":"https://github.com/polyv/polyv-harmony-livescenes-sdk-demo","license":"MIT","dependencies":{"@polyvharmony/common-libs":"1.0.1"},"types":"Index.d.ts","artifactType":"obfuscation","metadata":{"byteCodeHar":true,"sourceRoots":["./src/main"],"debug":false,"dependencyPkgVersion":{"@polyvharmony/common-libs":"1.0.1"},"declarationEntry":[],"useNormalizedOHMUrl":true},"compatibleSdkVersionStage":"beta1","compatibleSdkVersion":12,"compatibleSdkType":"HarmonyOS","obfuscated":true}
|
|
@@ -19,9 +19,9 @@ export declare abstract class PLVRTCEngineEventCallback {
|
|
|
19
19
|
*/
|
|
20
20
|
onRemoteUserJoin(channelId: string, mediaState: PLVRTCMediaState): void;
|
|
21
21
|
/**
|
|
22
|
-
*
|
|
22
|
+
* 用户音视频状态变化
|
|
23
23
|
*/
|
|
24
|
-
|
|
24
|
+
onUserMediaStateChanged(channelId: string, mediaState: PLVRTCMediaState): void;
|
|
25
25
|
/**
|
|
26
26
|
* 远端用户离开频道
|
|
27
27
|
*/
|
|
@@ -3,5 +3,7 @@ export declare class PLVRTCMediaState {
|
|
|
3
3
|
readonly audioEnable: boolean;
|
|
4
4
|
readonly videoEnable: boolean;
|
|
5
5
|
readonly audioVolume: number;
|
|
6
|
-
|
|
6
|
+
readonly videoWidth: number;
|
|
7
|
+
readonly videoHeight: number;
|
|
8
|
+
constructor(linkmicId: string, audioEnable: boolean, videoEnable: boolean, audioVolume: number, videoWidth: number, videoHeight: number);
|
|
7
9
|
}
|