@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.
- package/dist/cjs/index.js +49 -20
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +49 -20
- package/dist/esm/index.js.map +1 -1
- package/dist/types/index.d.ts +4 -1
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -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