@webex/web-client-media-engine 3.31.6 → 3.32.0
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 +12 -4
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +12 -4
- package/dist/esm/index.js.map +1 -1
- package/dist/types/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -41,6 +41,7 @@ declare enum WcmeErrorType {
|
|
|
41
41
|
GET_MAX_BITRATE_FAILED = "GET_MAX_BITRATE_FAILED",
|
|
42
42
|
GET_PAYLOAD_TYPE_FAILED = "GET_PAYLOAD_TYPE_FAILED",
|
|
43
43
|
SET_NMG_FAILED = "SET_NMG_FAILED",
|
|
44
|
+
SET_SOURCE_STATE_OVERRIDE_FAILED = "SET_SOURCE_STATE_OVERRIDE_FAILED",
|
|
44
45
|
DATA_CHANNEL_SEND_FAILED = "DATA_CHANNEL_SEND_FAILED",
|
|
45
46
|
RENEW_PEER_CONNECTION_FAILED = "RENEW_PEER_CONNECTION_FAILED"
|
|
46
47
|
}
|
|
@@ -198,7 +199,7 @@ declare class SendOnlyTransceiver extends Transceiver {
|
|
|
198
199
|
}): void;
|
|
199
200
|
deleteCodecParameters(parameters: string[]): void;
|
|
200
201
|
setSourceStateOverride(state?: StreamState): void;
|
|
201
|
-
get currentSourceState(): StreamState;
|
|
202
|
+
get currentSourceState(): StreamState | undefined;
|
|
202
203
|
}
|
|
203
204
|
|
|
204
205
|
declare class SendSlot {
|
package/package.json
CHANGED