@rongcloud/plugin-rtc 5.5.5-beem → 5.5.5-beem-alpha.4
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/index.d.ts +19 -3
- package/dist/index.esm.js +196 -92
- package/dist/index.js +196 -92
- package/dist/index.umd.js +196 -92
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* RCRTC - v5.5.5-beem
|
|
3
|
-
* CommitId -
|
|
4
|
-
*
|
|
2
|
+
* RCRTC - v5.5.5-beem-alpha.4
|
|
3
|
+
* CommitId - 0c078c138d99c8962f00f41c7d9a82e1d0f13b5a
|
|
4
|
+
* Thu Oct 20 2022 17:51:40 GMT+0800 (China Standard Time)
|
|
5
5
|
* ©2020 RongCloud, Inc. All rights reserved.
|
|
6
6
|
*/
|
|
7
7
|
import { EventEmitter, BasicLogger, INaviInfo, RTCPluginContext, AbsCodec, IPromiseResult, ErrorCode, KVString, IRuntime, IAsyncRes, ConnectionStatus, ConversationType, ISendMsgOptions, IReceivedMessage, EnableLogL, IPluginGenerator } from '@rongcloud/engine';
|
|
@@ -2194,6 +2194,10 @@ declare class RCLivingPKHandler {
|
|
|
2194
2194
|
inviteSessionId: string;
|
|
2195
2195
|
inviterRoomId: string;
|
|
2196
2196
|
inviterUserId: string;
|
|
2197
|
+
/**
|
|
2198
|
+
* 加入副直播房间
|
|
2199
|
+
* @roomId 副房间的 roomId
|
|
2200
|
+
*/
|
|
2197
2201
|
inviterUserAutoMix?: boolean | undefined;
|
|
2198
2202
|
inviteeRoomId: string;
|
|
2199
2203
|
inviteeUserAutoMix?: boolean | undefined;
|
|
@@ -2308,6 +2312,10 @@ declare abstract class RCAbstractRoom extends EventEmitter {
|
|
|
2308
2312
|
* @param content
|
|
2309
2313
|
*/
|
|
2310
2314
|
private _stateHandle;
|
|
2315
|
+
/**
|
|
2316
|
+
* 处理人员应用层事件
|
|
2317
|
+
*/
|
|
2318
|
+
private _dealUserAppListener;
|
|
2311
2319
|
/**
|
|
2312
2320
|
* 获取房间 Id
|
|
2313
2321
|
*/
|
|
@@ -3490,6 +3498,10 @@ interface IR1Info {
|
|
|
3490
3498
|
* 浏览器版本, 没有用 -1 表示
|
|
3491
3499
|
*/
|
|
3492
3500
|
browserVersion?: string;
|
|
3501
|
+
/**
|
|
3502
|
+
* 发送数据的时间
|
|
3503
|
+
*/
|
|
3504
|
+
receiveTime?: number;
|
|
3493
3505
|
}
|
|
3494
3506
|
/**
|
|
3495
3507
|
* http3 北极星上报 R2 数据
|
|
@@ -3512,6 +3524,10 @@ interface IR2Info {
|
|
|
3512
3524
|
*/
|
|
3513
3525
|
rtcActionStatus: string;
|
|
3514
3526
|
trackId: string[];
|
|
3527
|
+
/**
|
|
3528
|
+
* 发送数据的时间
|
|
3529
|
+
*/
|
|
3530
|
+
receiveTime?: number;
|
|
3515
3531
|
}
|
|
3516
3532
|
/**
|
|
3517
3533
|
* http3 北极星上报 R3 数据
|