@polyvharmony/rtc-sdk 1.4.0-dev.260303.1 → 1.4.0-dev.260303.2

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.4.0-dev.260303.1] - 2026-03-03
1
+ ## [v1.4.0-dev.260303.2] - 2026-03-03
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.4.0-dev.260303.1","description":"rtc-sdk","author":"POLYV","repository":"https://github.com/polyv/polyv-harmony-livescenes-sdk-demo","license":"MIT","dependencies":{"@polyvharmony/common-libs":"1.0.2"},"types":"Index.d.ts","artifactType":"obfuscation","metadata":{"byteCodeHar":true,"sourceRoots":["./src/main"],"debug":false,"dependencyPkgVersion":{"@polyvharmony/common-libs":"1.0.2"},"declarationEntry":[],"useNormalizedOHMUrl":true},"compatibleSdkVersionStage":"beta1","compatibleSdkVersion":12,"compatibleSdkType":"HarmonyOS","obfuscated":true}
1
+ {"name":"@polyvharmony/rtc-sdk","version":"1.4.0-dev.260303.2","description":"rtc-sdk","author":"POLYV","repository":"https://github.com/polyv/polyv-harmony-livescenes-sdk-demo","license":"MIT","dependencies":{"@polyvharmony/common-libs":"1.0.2"},"types":"Index.d.ts","artifactType":"obfuscation","metadata":{"byteCodeHar":true,"sourceRoots":["./src/main"],"debug":false,"dependencyPkgVersion":{"@polyvharmony/common-libs":"1.0.2"},"declarationEntry":[],"useNormalizedOHMUrl":true},"compatibleSdkVersionStage":"beta1","compatibleSdkVersion":12,"compatibleSdkType":"HarmonyOS","obfuscated":true}
package/package.json CHANGED
@@ -1 +1 @@
1
- {"name":"@polyvharmony/rtc-sdk","version":"1.4.0-dev.260303.1","description":"rtc-sdk","author":"POLYV","repository":"https://github.com/polyv/polyv-harmony-livescenes-sdk-demo","license":"MIT","dependencies":{"@polyvharmony/common-libs":"1.0.2"},"types":"Index.d.ts","artifactType":"obfuscation","metadata":{"byteCodeHar":true,"sourceRoots":["./src/main"],"debug":false,"dependencyPkgVersion":{"@polyvharmony/common-libs":"1.0.2"},"declarationEntry":[],"useNormalizedOHMUrl":true},"compatibleSdkVersionStage":"beta1","compatibleSdkVersion":12,"compatibleSdkType":"HarmonyOS","obfuscated":true}
1
+ {"name":"@polyvharmony/rtc-sdk","version":"1.4.0-dev.260303.2","description":"rtc-sdk","author":"POLYV","repository":"https://github.com/polyv/polyv-harmony-livescenes-sdk-demo","license":"MIT","dependencies":{"@polyvharmony/common-libs":"1.0.2"},"types":"Index.d.ts","artifactType":"obfuscation","metadata":{"byteCodeHar":true,"sourceRoots":["./src/main"],"debug":false,"dependencyPkgVersion":{"@polyvharmony/common-libs":"1.0.2"},"declarationEntry":[],"useNormalizedOHMUrl":true},"compatibleSdkVersionStage":"beta1","compatibleSdkVersion":12,"compatibleSdkType":"HarmonyOS","obfuscated":true}
@@ -13,10 +13,6 @@ export declare abstract class PLVRTCEngine {
13
13
  * 当前引擎支持的RTC类型
14
14
  */
15
15
  abstract getSupportRTCTypes(): PLVRTCType[];
16
- /**
17
- * 等待引擎初始化完成
18
- */
19
- abstract ensureEngineInitialized(): Promise<void>;
20
16
  /**
21
17
  * 加入频道
22
18
  */
@@ -6,7 +6,6 @@ import { PLVRTCVideoRenderParam } from '../vo/PLVRTCVideoRenderParam';
6
6
  import { PLVRTCClientRole } from '../vo/PLVRTCClientRole';
7
7
  import { PLVRTCMediaState } from '../vo/PLVRTCMediaState';
8
8
  export declare class PLVRTCEngineNoOp extends PLVRTCEngine {
9
- ensureEngineInitialized(): Promise<void>;
10
9
  createRenderViewParam(linkmicId: string): PLVRTCRenderViewParam;
11
10
  enableAudio(enable: boolean): number;
12
11
  enableLocalAudioCapture(enable: boolean): number;