@azure/communication-react 1.9.0-alpha-202310201708 → 1.9.0-alpha-202310250012
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/communication-react.d.ts +1 -60
- package/dist/dist-cjs/communication-react/index.js +291 -545
- 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/calling-component-bindings/src/handlers/createCommonHandlers.d.ts +2 -2
- package/dist/dist-esm/calling-component-bindings/src/handlers/createCommonHandlers.js.map +1 -1
- package/dist/dist-esm/react-components/src/components/FileDownloadCards.js +6 -5
- package/dist/dist-esm/react-components/src/components/FileDownloadCards.js.map +1 -1
- package/dist/dist-esm/react-composites/src/composites/CallComposite/adapter/AzureCommunicationCallAdapter.d.ts +2 -1
- package/dist/dist-esm/react-composites/src/composites/CallComposite/adapter/AzureCommunicationCallAdapter.js +7 -12
- package/dist/dist-esm/react-composites/src/composites/CallComposite/adapter/AzureCommunicationCallAdapter.js.map +1 -1
- package/dist/dist-esm/react-composites/src/composites/CallComposite/index.d.ts +0 -1
- package/dist/dist-esm/react-composites/src/composites/CallComposite/index.js +0 -1
- package/dist/dist-esm/react-composites/src/composites/CallComposite/index.js.map +1 -1
- package/dist/dist-esm/react-composites/src/composites/common/PeoplePaneContent.js +5 -1
- package/dist/dist-esm/react-composites/src/composites/common/PeoplePaneContent.js.map +1 -1
- package/package.json +2 -70
- package/dist/dist-esm/react-composites/src/composites/CallComposite/MockCallAdapter.d.ts +0 -61
- package/dist/dist-esm/react-composites/src/composites/CallComposite/MockCallAdapter.js +0 -255
- package/dist/dist-esm/react-composites/src/composites/CallComposite/MockCallAdapter.js.map +0 -1
|
@@ -102,7 +102,6 @@ import { TeamsMeetingLinkLocator } from '@azure/communication-calling';
|
|
|
102
102
|
import { Theme } from '@fluentui/react';
|
|
103
103
|
import { TransferRequestedEventArgs } from '@azure/communication-calling';
|
|
104
104
|
import { TypingIndicatorReceivedEvent } from '@azure/communication-chat';
|
|
105
|
-
import { UnknownIdentifier } from '@azure/communication-common';
|
|
106
105
|
import { UnknownIdentifierKind } from '@azure/communication-common';
|
|
107
106
|
import { VideoDeviceInfo } from '@azure/communication-calling';
|
|
108
107
|
import { VideoEffectName } from '@azure/communication-calling';
|
|
@@ -4545,7 +4544,7 @@ export declare interface CommonCallingHandlers {
|
|
|
4545
4544
|
onRemoveParticipant(userId: string): Promise<void>;
|
|
4546
4545
|
onRemoveParticipant(participant: CommunicationIdentifier): Promise<void>;
|
|
4547
4546
|
askDevicePermission: (constrain: PermissionConstraints) => Promise<void>;
|
|
4548
|
-
onStartCall: (participants:
|
|
4547
|
+
onStartCall: (participants: CommunicationIdentifier[], options?: StartCallOptions) => void;
|
|
4549
4548
|
onRemoveVideoBackgroundEffects: () => Promise<void>;
|
|
4550
4549
|
onBlurVideoBackground: (backgroundBlurConfig?: BackgroundBlurConfig) => Promise<void>;
|
|
4551
4550
|
onReplaceVideoBackground: (backgroundReplacementConfig: BackgroundReplacementConfig) => Promise<void>;
|
|
@@ -7916,64 +7915,6 @@ export declare interface MicrophoneSitePermissionsProps extends CommonSitePermis
|
|
|
7916
7915
|
*/
|
|
7917
7916
|
export declare type MicrophoneSitePermissionsStrings = SitePermissionsStrings;
|
|
7918
7917
|
|
|
7919
|
-
/**
|
|
7920
|
-
* Temporary copy of the packages/react-composites/tests/browser/call/app/mocks/MockCallAdapter.ts
|
|
7921
|
-
* @internal
|
|
7922
|
-
*/
|
|
7923
|
-
export declare class _MockCallAdapter implements CallAdapter {
|
|
7924
|
-
constructor(testState: {
|
|
7925
|
-
askDevicePermission?: (constrain: PermissionConstraints) => Promise<void>;
|
|
7926
|
-
localParticipantRole?: ParticipantRole;
|
|
7927
|
-
});
|
|
7928
|
-
state: CallAdapterState;
|
|
7929
|
-
private emitter;
|
|
7930
|
-
setState(state: CallAdapterState): void;
|
|
7931
|
-
addParticipant(): Promise<void>;
|
|
7932
|
-
onStateChange(handler: (state: CallAdapterState) => void): void;
|
|
7933
|
-
offStateChange(handler: (state: CallAdapterState) => void): void;
|
|
7934
|
-
allowUnsupportedBrowserVersion(): void;
|
|
7935
|
-
getState(): CallAdapterState;
|
|
7936
|
-
dispose(): void;
|
|
7937
|
-
joinCall(): Call | undefined;
|
|
7938
|
-
leaveCall(): Promise<void>;
|
|
7939
|
-
startCamera(): Promise<void>;
|
|
7940
|
-
stopCamera(): Promise<void>;
|
|
7941
|
-
mute(): Promise<void>;
|
|
7942
|
-
unmute(): Promise<void>;
|
|
7943
|
-
startCall(): Call | undefined;
|
|
7944
|
-
holdCall(): Promise<void>;
|
|
7945
|
-
resumeCall(): Promise<void>;
|
|
7946
|
-
startScreenShare(): Promise<void>;
|
|
7947
|
-
stopScreenShare(): Promise<void>;
|
|
7948
|
-
raiseHand(): Promise<void>;
|
|
7949
|
-
lowerHand(): Promise<void>;
|
|
7950
|
-
removeParticipant(): Promise<void>;
|
|
7951
|
-
createStreamView(): Promise<void>;
|
|
7952
|
-
disposeStreamView(): Promise<void>;
|
|
7953
|
-
disposeScreenShareStreamView(): Promise<void>;
|
|
7954
|
-
disposeLocalVideoStreamView(): Promise<void>;
|
|
7955
|
-
disposeRemoteVideoStreamView(): Promise<void>;
|
|
7956
|
-
askDevicePermission(constrain: PermissionConstraints): Promise<void>;
|
|
7957
|
-
queryCameras(): Promise<VideoDeviceInfo[]>;
|
|
7958
|
-
queryMicrophones(): Promise<AudioDeviceInfo[]>;
|
|
7959
|
-
querySpeakers(): Promise<AudioDeviceInfo[]>;
|
|
7960
|
-
setCamera(): Promise<void>;
|
|
7961
|
-
setMicrophone(): Promise<void>;
|
|
7962
|
-
setSpeaker(): Promise<void>;
|
|
7963
|
-
sendDtmfTone(dtmfTone: DtmfTone_2): Promise<void>;
|
|
7964
|
-
on(): void;
|
|
7965
|
-
off(): void;
|
|
7966
|
-
getEnvironmentInfo(): Promise<EnvironmentInfo>;
|
|
7967
|
-
startCaptions(): Promise<void>;
|
|
7968
|
-
setCaptionLanguage(): Promise<void>;
|
|
7969
|
-
setSpokenLanguage(): Promise<void>;
|
|
7970
|
-
stopCaptions(): Promise<void>;
|
|
7971
|
-
startVideoBackgroundEffect(): Promise<void>;
|
|
7972
|
-
stopVideoBackgroundEffects(): Promise<void>;
|
|
7973
|
-
updateBackgroundPickerImages(): void;
|
|
7974
|
-
updateSelectedVideoBackgroundEffect(): void;
|
|
7975
|
-
}
|
|
7976
|
-
|
|
7977
7918
|
/**
|
|
7978
7919
|
* Payload for {@link DiagnosticChangedEventListner} where there is a change in a network diagnostic.
|
|
7979
7920
|
*
|