webrtc-stats-gatherer 9.0.8 → 9.0.9

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/README.md CHANGED
@@ -1,11 +1,5 @@
1
1
  # WebRTC Stats Gatherer
2
2
 
3
- [![Greenkeeper badge](https://badges.greenkeeper.io/MyPureCloud/webrtc-stats-gatherer.svg)](https://greenkeeper.io/)
4
-
5
- [![Build Status](https://travis-ci.org/MyPureCloud/webrtc-stats-gatherer.svg?branch=master)](https://travis-ci.org/MyPureCloud/webrtc-stats-gatherer)
6
-
7
- [![Coverage Status](https://coveralls.io/repos/github/MyPureCloud/webrtc-stats-gatherer/badge.svg?branch=master)](https://coveralls.io/github/MyPureCloud/webrtc-stats-gatherer?branch=master)
8
-
9
3
  This module is designed to collect [RTCPeerConnection](https://github.com/otalk/rtcpeerconnection) stats on a regular interval
10
4
  and emit stats and trace data as appropriate.
11
5
 
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "webrtc-stats-gatherer",
3
- "version": "9.0.8",
3
+ "version": "9.0.9",
4
4
  "ecosystem": "pc",
5
- "team": "Genesys Client Media (WebRTC)",
5
+ "team": "Client Streaming and Signaling",
6
6
  "indexFiles": [
7
7
  {
8
8
  "file": "interfaces.js.map"
@@ -23,6 +23,6 @@
23
23
  "file": "index.d.ts"
24
24
  }
25
25
  ],
26
- "build": "41",
27
- "buildDate": "2024-03-08T14:43:38.150015Z"
26
+ "build": "47",
27
+ "buildDate": "2024-09-03T19:56:54.866285195Z"
28
28
  }
package/dist/index.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- /// <reference types="node" />
2
1
  import { EventEmitter } from 'events';
3
2
  export * from './interfaces';
4
3
  export interface StatsGathererOpts {
@@ -6,7 +5,10 @@ export interface StatsGathererOpts {
6
5
  initiator?: string;
7
6
  conference?: string;
8
7
  interval?: number;
9
- logger?: any;
8
+ logger?: {
9
+ error(...any: any[]): any;
10
+ warn(...any: any[]): any;
11
+ };
10
12
  }
11
13
  export default class StatsGatherer extends EventEmitter {
12
14
  peerConnection: RTCPeerConnection;