@rongcloud/plugin-call 5.0.11-enterprise-alpha.1 → 5.1.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 +20 -6
- package/dist/RCCallSession.d.ts +6 -2
- package/dist/index.d.ts +34 -11
- package/dist/index.esm.js +15 -1776
- package/dist/index.js +15 -1805
- package/dist/index.umd.js +15 -1807
- package/dist/interface.d.ts +5 -0
- package/package.json +5 -5
package/dist/interface.d.ts
CHANGED
|
@@ -174,6 +174,7 @@ export interface IRCCallSessionOptions {
|
|
|
174
174
|
* 产生session的场景,是主叫产生 或 被叫产生
|
|
175
175
|
*/
|
|
176
176
|
produceType?: ProduceTypes;
|
|
177
|
+
isCrossAppkey?: boolean;
|
|
177
178
|
}
|
|
178
179
|
export interface IRCTrackBitrate {
|
|
179
180
|
/**
|
|
@@ -232,6 +233,10 @@ export interface IRCCallParams {
|
|
|
232
233
|
video?: IRCTrackBitrate;
|
|
233
234
|
audio?: number;
|
|
234
235
|
};
|
|
236
|
+
/**
|
|
237
|
+
* 是否为跨 appkey 通话
|
|
238
|
+
*/
|
|
239
|
+
isCrossAppkey?: boolean;
|
|
235
240
|
}
|
|
236
241
|
export interface IMediaStreamConstraints {
|
|
237
242
|
video?: ICameraVideoProfile;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rongcloud/plugin-call",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.1.1",
|
|
4
4
|
"description": "@rongcloud/plugin-call",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"__attrs__": {
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
"node": ">=10.0.0"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
35
|
-
"@rongcloud/engine": "^
|
|
36
|
-
"@rongcloud/plugin-rtc": "^5.1
|
|
35
|
+
"@rongcloud/engine": "^5.5.4",
|
|
36
|
+
"@rongcloud/plugin-rtc": "^5.5.1"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@rongcloud/plugin-call-engine": "
|
|
39
|
+
"@rongcloud/plugin-call-engine": "^5.0.10"
|
|
40
40
|
},
|
|
41
|
-
"__commit__": "
|
|
41
|
+
"__commit__": "ba3fba8044d94f2fb2d74a189c4ecc3adbad8e46"
|
|
42
42
|
}
|