@polyvharmony/rtc-sdk 1.2.0 → 1.3.0-dev.251125.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
@@ -1,4 +1,4 @@
1
- ## [v1.2.0] - 2025-10-23
1
+ ## [v1.3.0-dev.251125.1] - 2025-11-25
2
2
 
3
3
  此项目是保利威鸿蒙 RTC SDK
4
4
 
package/ets/modules.abc CHANGED
Binary file
package/oh-package.json5 CHANGED
@@ -1 +1 @@
1
- {"name":"@polyvharmony/rtc-sdk","version":"1.2.0","description":"rtc-sdk","author":"POLYV","repository":"https://github.com/polyv/polyv-harmony-livescenes-sdk-demo","license":"MIT","dependencies":{"@polyvharmony/common-libs":"1.0.0"},"types":"Index.d.ts","artifactType":"obfuscation","metadata":{"byteCodeHar":true,"sourceRoots":["./src/main"],"debug":false,"dependencyPkgVersion":{"@polyvharmony/common-libs":"1.0.0"},"declarationEntry":[],"useNormalizedOHMUrl":true},"compatibleSdkVersionStage":"beta1","compatibleSdkVersion":12,"compatibleSdkType":"HarmonyOS","obfuscated":true}
1
+ {"name":"@polyvharmony/rtc-sdk","version":"1.3.0-dev.251125.1","description":"rtc-sdk","author":"POLYV","repository":"https://github.com/polyv/polyv-harmony-livescenes-sdk-demo","license":"MIT","dependencies":{"@polyvharmony/common-libs":"1.0.0"},"types":"Index.d.ts","artifactType":"obfuscation","metadata":{"byteCodeHar":true,"sourceRoots":["./src/main"],"debug":false,"dependencyPkgVersion":{"@polyvharmony/common-libs":"1.0.0"},"declarationEntry":[],"useNormalizedOHMUrl":true},"compatibleSdkVersionStage":"beta1","compatibleSdkVersion":12,"compatibleSdkType":"HarmonyOS","obfuscated":true}
package/package.json CHANGED
@@ -1 +1 @@
1
- {"name":"@polyvharmony/rtc-sdk","version":"1.2.0","description":"rtc-sdk","author":"POLYV","repository":"https://github.com/polyv/polyv-harmony-livescenes-sdk-demo","license":"MIT","dependencies":{"@polyvharmony/common-libs":"1.0.0"},"types":"Index.d.ts","artifactType":"obfuscation","metadata":{"byteCodeHar":true,"sourceRoots":["./src/main"],"debug":false,"dependencyPkgVersion":{"@polyvharmony/common-libs":"1.0.0"},"declarationEntry":[],"useNormalizedOHMUrl":true},"compatibleSdkVersionStage":"beta1","compatibleSdkVersion":12,"compatibleSdkType":"HarmonyOS","obfuscated":true}
1
+ {"name":"@polyvharmony/rtc-sdk","version":"1.3.0-dev.251125.1","description":"rtc-sdk","author":"POLYV","repository":"https://github.com/polyv/polyv-harmony-livescenes-sdk-demo","license":"MIT","dependencies":{"@polyvharmony/common-libs":"1.0.0"},"types":"Index.d.ts","artifactType":"obfuscation","metadata":{"byteCodeHar":true,"sourceRoots":["./src/main"],"debug":false,"dependencyPkgVersion":{"@polyvharmony/common-libs":"1.0.0"},"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
- onRemoteUserMediaStateChanged(channelId: string, mediaState: PLVRTCMediaState): void;
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
- constructor(linkmicId: string, audioEnable: boolean, videoEnable: boolean, audioVolume: number);
6
+ readonly videoWidth: number;
7
+ readonly videoHeight: number;
8
+ constructor(linkmicId: string, audioEnable: boolean, videoEnable: boolean, audioVolume: number, videoWidth: number, videoHeight: number);
7
9
  }