@webex/web-client-media-engine 3.24.2 → 3.24.3

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.
@@ -217,8 +217,8 @@ declare class StreamRequest {
217
217
  }
218
218
 
219
219
  interface TransceiverStatItem {
220
- report: StatsMap;
221
- currentDirection: RTCRtpTransceiverDirection;
220
+ report: StatsMap | RTCStatsReport;
221
+ currentDirection: RTCRtpTransceiverDirection | null;
222
222
  csi?: number;
223
223
  mid?: string | null;
224
224
  localTrackLabel?: string;
@@ -354,4 +354,4 @@ declare function setLogHandler(logHandler: ILogHandler): void;
354
354
  declare const DeviceKind: typeof media.DeviceKind;
355
355
  //# sourceMappingURL=index.d.ts.map
356
356
 
357
- export { DeviceKind, MediaCodecMimeType, MultistreamConnection, MultistreamConnectionEventNames, MultistreamConnectionEvents, ReceiveSlot, ReceiveSlotEvents, ReceiveSlotId, ReceiverEvents, RecommendedOpusBitrates, SendSlot, StreamRequest, TransceiverStatItem, TransceiverStats, WcmeError, WcmeErrorType, areReceiveSlotIdsEqual, getLogLevel, getRecommendedMaxBitrateForFrameSize, logErrorAndThrow, setLogHandler, setLogLevel };
357
+ export { DeviceKind, MediaCodecMimeType, MultistreamConnection, MultistreamConnectionEventNames, MultistreamConnectionEvents, ReceiveSlot, ReceiveSlotEvents, ReceiveSlotId, ReceiverEvents, RecommendedOpusBitrates, SendSlot, StatsMap, StreamRequest, TransceiverStatItem, TransceiverStats, WcmeError, WcmeErrorType, areReceiveSlotIdsEqual, getLogLevel, getRecommendedMaxBitrateForFrameSize, logErrorAndThrow, setLogHandler, setLogLevel };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webex/web-client-media-engine",
3
- "version": "3.24.2",
3
+ "version": "3.24.3",
4
4
  "description": "Web Client Media Engine is common web code for interacting with the multistream media server.",
5
5
  "source": "src/index.ts",
6
6
  "main": "dist/cjs/index.js",
@@ -19,7 +19,7 @@
19
19
  "test:coverage": "jest --coverage",
20
20
  "test:lint": "eslint src --ext .ts --max-warnings=0",
21
21
  "test:prettier": "prettier \"src/**/*.ts\" --list-different",
22
- "test:spelling": "cspell \"{README.md,.github/*.md,src/**/*.ts}\"",
22
+ "test:spellcheck": "cspell \"{README.md,.github/*.md,src/**/*.ts}\"",
23
23
  "test:unit": "jest",
24
24
  "transpile": "tsc",
25
25
  "transpile:clean": "rimraf ./dist",
@@ -44,10 +44,10 @@
44
44
  "license": "SEE LICENSE IN LICENSE.md",
45
45
  "lint-staged": {
46
46
  "*.ts": [
47
- "prettier --write",
48
- "eslint --max-warnings=0",
47
+ "prettier \"src/**/*.ts\" --write",
48
+ "eslint src --ext .ts --max-warnings=0",
49
49
  "bash -c tsc --noEmit",
50
- "cspell"
50
+ "cspell \"{README.md,.github/*.md,src/**/*.ts}\""
51
51
  ]
52
52
  },
53
53
  "engines": {