@webex/web-client-media-engine 3.14.1 → 3.15.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.
@@ -40,7 +40,8 @@ declare enum WcmeErrorType {
40
40
  GET_TRANSCEIVER_FAILED = "GET_TRANSCEIVER_FAILED",
41
41
  GET_MAX_BITRATE_FAILED = "GET_MAX_BITRATE_FAILED",
42
42
  GET_PAYLOAD_TYPE_FAILED = "GET_PAYLOAD_TYPE_FAILED",
43
- SET_NMG_FAILED = "SET_NMG_FAILED"
43
+ SET_NMG_FAILED = "SET_NMG_FAILED",
44
+ DATA_CHANNEL_SEND_FAILED = "DATA_CHANNEL_SEND_FAILED"
44
45
  }
45
46
  declare class WcmeError {
46
47
  type: string;
@@ -285,7 +286,9 @@ declare class MultistreamConnection extends EventEmitter<MultistreamConnectionEv
285
286
  private sendMediaRequestStatus;
286
287
  sendSourceAdvertisement(mediaType: MediaType): void;
287
288
  private getVideoStreamStates;
289
+ private createReceiveTransceiver;
288
290
  createReceiveSlot(mediaType: MediaType): Promise<ReceiveSlot>;
291
+ createReceiveSlots(mediaType: MediaType, count?: number): Promise<ReceiveSlot[]>;
289
292
  getIngressPayloadType(mediaType: MediaType, mimeType: MediaCodecMimeType): number;
290
293
  createOffer(): Promise<RTCSessionDescriptionInit>;
291
294
  setAnswer(answer: string): Promise<void>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webex/web-client-media-engine",
3
- "version": "3.14.1",
3
+ "version": "3.15.1",
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",