@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.
- package/dist/RCCallClient.d.ts +1 -0
- package/dist/RCCallSession.d.ts +0 -1
- package/dist/index.d.ts +9 -4
- package/dist/index.esm.js +1837 -15
- package/dist/index.js +1866 -15
- package/dist/index.umd.js +1868 -15
- package/dist/interface.d.ts +5 -0
- package/package.json +3 -3
package/dist/RCCallClient.d.ts
CHANGED
package/dist/RCCallSession.d.ts
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* RCCall - v5.1.
|
|
3
|
-
* CommitId -
|
|
4
|
-
*
|
|
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 必填
|