@rongcloud/plugin-call 5.1.0 → 5.1.2-alpha.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.
@@ -76,6 +76,7 @@ export default class RCCallClient {
76
76
  code: RCCallErrorCode;
77
77
  session?: RCCallSession;
78
78
  }>;
79
+ private __call;
79
80
  /**
80
81
  * 发起群组呼叫
81
82
  * @param params.targetId 群组 Id 必填
@@ -31,7 +31,6 @@ export declare class RCCallSession {
31
31
  * 加入房间定时器
32
32
  */
33
33
  private joinRoomTimer;
34
- private ifCross;
35
34
  constructor(
36
35
  /**
37
36
  * 状态机实例
package/dist/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  /*
2
- * RCCall - v5.1.0
3
- * CommitId - b538264c6c82a359de6d52c45df2e0dd8dbc055e
4
- * Wed Oct 12 2022 11:55:22 GMT+0800 (China Standard Time)
2
+ * RCCall - v5.1.2-alpha.1
3
+ * CommitId - 5a6d3a159d1171c71f1bb419dfac59eb8e886f91
4
+ * Mon Feb 27 2023 10:35:06 GMT+0800 (China Standard Time)
5
5
  * ©2020 RongCloud, Inc. All rights reserved.
6
6
  */
7
7
  import { ConversationType, RTCJoinType, LogLevel, RTCPluginContext, IRuntime, IRTCJoinedInfo, IPluginGenerator } from '@rongcloud/engine';
@@ -53,7 +53,6 @@ declare class RCCallSession {
53
53
  * 加入房间定时器
54
54
  */
55
55
  private joinRoomTimer;
56
- private ifCross;
57
56
  constructor(
58
57
  /**
59
58
  * 状态机实例
@@ -428,6 +427,7 @@ interface IRCCallSessionOptions {
428
427
  * 产生session的场景,是主叫产生 或 被叫产生
429
428
  */
430
429
  produceType?: ProduceTypes;
430
+ isCrossAppkey?: boolean;
431
431
  }
432
432
  interface IRCTrackBitrate {
433
433
  /**
@@ -486,6 +486,10 @@ interface IRCCallParams {
486
486
  video?: IRCTrackBitrate;
487
487
  audio?: number;
488
488
  };
489
+ /**
490
+ * 是否为跨 appkey 通话
491
+ */
492
+ isCrossAppkey?: boolean;
489
493
  }
490
494
  interface IMediaStreamConstraints {
491
495
  video?: ICameraVideoProfile;
@@ -609,6 +613,7 @@ declare class RCCallClient {
609
613
  code: RCCallErrorCode;
610
614
  session?: RCCallSession;
611
615
  }>;
616
+ private __call;
612
617
  /**
613
618
  * 发起群组呼叫
614
619
  * @param params.targetId 群组 Id 必填