dingrtc 3.9.18-beta.1 → 3.9.18

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 CHANGED
@@ -1518,6 +1518,10 @@ interface VideoTrackStatsInfo {
1518
1518
  pliCount?: number;
1519
1519
  nackCount?: number;
1520
1520
  qualityLimitationReason?: string;
1521
+ web_powerEfficientEncoder?: boolean;
1522
+ web_encoderImplementation?: string;
1523
+ web_qualityLimitationResolutionChanges?: number;
1524
+ web_codecId?: string;
1521
1525
  qualityLimitationDurations?: string;
1522
1526
  keyFramesEncoded?: number;
1523
1527
  rid?: string;
@@ -1613,6 +1617,7 @@ interface PublicationMetrics {
1613
1617
  id?: string;
1614
1618
  audioMetrics?: AudioSendInfo;
1615
1619
  videoMetrics?: VideoSendInfo;
1620
+ originStats?: RTCStatsReport;
1616
1621
  }
1617
1622
  interface SubscriptionMetrics {
1618
1623
  id?: string;
@@ -2438,7 +2443,7 @@ declare class RtcUserManager extends EventEmitter<UserManagerEvent> {
2438
2443
  private serviceManager;
2439
2444
  users: Map<string, User>;
2440
2445
  currentUid: string;
2441
- currentPid: string;
2446
+ currentSelfPid: string;
2442
2447
  reporter: Reporter;
2443
2448
  logger: ILogger;
2444
2449
  streamManager: StreamManager;