@azure/communication-react 1.7.0-alpha-202307110015 → 1.7.0-alpha-202307120016
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/dist-cjs/communication-react/index.js +9 -3
- package/dist/dist-cjs/communication-react/index.js.map +1 -1
- package/dist/dist-esm/acs-ui-common/src/telemetryVersion.js +1 -1
- package/dist/dist-esm/acs-ui-common/src/telemetryVersion.js.map +1 -1
- package/dist/dist-esm/react-composites/src/composites/CallComposite/adapter/AzureCommunicationCallAdapter.js +8 -2
- package/dist/dist-esm/react-composites/src/composites/CallComposite/adapter/AzureCommunicationCallAdapter.js.map +1 -1
- package/package.json +8 -8
@@ -178,7 +178,7 @@ const _isValidIdentifier = (identifier) => {
|
|
178
178
|
// Copyright (c) Microsoft Corporation.
|
179
179
|
// Licensed under the MIT license.
|
180
180
|
// GENERATED FILE. DO NOT EDIT MANUALLY.
|
181
|
-
var telemetryVersion = '1.7.0-alpha-
|
181
|
+
var telemetryVersion = '1.7.0-alpha-202307120016';
|
182
182
|
|
183
183
|
// Copyright (c) Microsoft Corporation.
|
184
184
|
/**
|
@@ -28135,7 +28135,10 @@ beforeDispose) => {
|
|
28135
28135
|
*/
|
28136
28136
|
const createAzureCommunicationCallAdapterFromClient = (callClient, callAgent, locator, options) => __awaiter$3(void 0, void 0, void 0, function* () {
|
28137
28137
|
const deviceManager = (yield callClient.getDeviceManager());
|
28138
|
-
yield Promise.all([deviceManager.getCameras(), deviceManager.getMicrophones()
|
28138
|
+
yield Promise.all([deviceManager.getCameras(), deviceManager.getMicrophones()]);
|
28139
|
+
if (deviceManager.isSpeakerSelectionAvailable) {
|
28140
|
+
yield deviceManager.getSpeakers();
|
28141
|
+
}
|
28139
28142
|
/* @conditional-compile-remove(unsupported-browser) */
|
28140
28143
|
yield callClient.feature(communicationCalling.Features.DebugInfo).getEnvironmentInfo();
|
28141
28144
|
return new AzureCommunicationCallAdapter(callClient, locator, callAgent, deviceManager,
|
@@ -28152,7 +28155,10 @@ const createAzureCommunicationCallAdapterFromClient = (callClient, callAgent, lo
|
|
28152
28155
|
*/
|
28153
28156
|
const createTeamsCallAdapterFromClient = (callClient, callAgent, locator, options) => __awaiter$3(void 0, void 0, void 0, function* () {
|
28154
28157
|
const deviceManager = (yield callClient.getDeviceManager());
|
28155
|
-
yield Promise.all([deviceManager.getCameras(), deviceManager.getMicrophones()
|
28158
|
+
yield Promise.all([deviceManager.getCameras(), deviceManager.getMicrophones()]);
|
28159
|
+
if (deviceManager.isSpeakerSelectionAvailable) {
|
28160
|
+
yield deviceManager.getSpeakers();
|
28161
|
+
}
|
28156
28162
|
/* @conditional-compile-remove(unsupported-browser) */
|
28157
28163
|
yield callClient.feature(communicationCalling.Features.DebugInfo).getEnvironmentInfo();
|
28158
28164
|
return new AzureCommunicationCallAdapter(callClient, locator, callAgent, deviceManager, options);
|