@azure/communication-react 1.7.0-alpha-202307210013 → 1.7.0-alpha-202307220013

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.
@@ -68,6 +68,7 @@ import { LatestNetworkDiagnostics } from '@azure/communication-calling';
68
68
  import { LocalVideoStream } from '@azure/communication-calling';
69
69
  import type { MediaDiagnosticChangedEventArgs } from '@azure/communication-calling';
70
70
  import { MediaStreamType } from '@azure/communication-calling';
71
+ import { MicrosoftBotKind } from '@azure/communication-common';
71
72
  import { MicrosoftTeamsUserIdentifier } from '@azure/communication-common';
72
73
  import { MicrosoftTeamsUserKind } from '@azure/communication-common';
73
74
  import type { NetworkDiagnosticChangedEventArgs } from '@azure/communication-calling';
@@ -8050,7 +8051,7 @@ export declare interface RemoteParticipantState {
8050
8051
  /**
8051
8052
  * Proxy of {@link @azure/communication-calling#RemoteParticipant.identifier}.
8052
8053
  */
8053
- identifier: CommunicationUserKind | PhoneNumberKind | MicrosoftTeamsUserKind | UnknownIdentifierKind;
8054
+ identifier: CommunicationUserKind | PhoneNumberKind | MicrosoftTeamsUserKind | UnknownIdentifierKind | /* @conditional-compile-remove(communication-common-beta-v3) */ MicrosoftBotKind;
8054
8055
  /**
8055
8056
  * Proxy of {@link @azure/communication-calling#RemoteParticipant.displayName}.
8056
8057
  */
@@ -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-202307210013';
181
+ var telemetryVersion = '1.7.0-alpha-202307220013';
182
182
 
183
183
  // Copyright (c) Microsoft Corporation.
184
184
  /**
@@ -518,7 +518,7 @@ const isTeamsCallParticipants = (participants) => {
518
518
  * Checks whether the user is a 'Ringing' PSTN user.
519
519
  */
520
520
  const _isRingingPSTNParticipant = (participant) => {
521
- return participant.identifier.kind === 'phoneNumber' && participant.state === 'Connecting'
521
+ return communicationCommon.isPhoneNumberIdentifier(participant.identifier) && participant.state === 'Connecting'
522
522
  ? 'Ringing'
523
523
  : participant.state;
524
524
  };
@@ -1037,6 +1037,10 @@ const createDefaultTeamsCallingHandlers = memoizeOne__default['default']((callCl
1037
1037
  if (communicationCommon.isCommunicationUserIdentifier(participant)) {
1038
1038
  throw new Error('CommunicationIdentifier in Teams call is not supported!');
1039
1039
  }
1040
+ /* @conditional-compile-remove(communication-common-beta-v3) */
1041
+ if (communicationCommon.isMicrosoftBotIdentifier(participant)) {
1042
+ throw new Error('Adding Microsoft Bot Identifier is not supported!');
1043
+ }
1040
1044
  /* @conditional-compile-remove(teams-identity-support) */
1041
1045
  if (communicationCommon.isPhoneNumberIdentifier(participant)) {
1042
1046
  call === null || call === void 0 ? void 0 : call.addParticipant(participant, threadId ? { threadId } : undefined);
@@ -1048,6 +1052,10 @@ const createDefaultTeamsCallingHandlers = memoizeOne__default['default']((callCl
1048
1052
  if (communicationCommon.isCommunicationUserIdentifier(participant)) {
1049
1053
  throw new Error('CommunicationIdentifier in Teams call is not supported!');
1050
1054
  }
1055
+ /* @conditional-compile-remove(communication-common-beta-v3) */
1056
+ if (communicationCommon.isMicrosoftBotIdentifier(participant)) {
1057
+ throw new Error('Removing Microsoft Bot Identifier is not supported!');
1058
+ }
1051
1059
  /* @conditional-compile-remove(teams-identity-support) */
1052
1060
  yield (call === null || call === void 0 ? void 0 : call.removeParticipant(participant));
1053
1061
  }) });
@@ -3690,7 +3698,9 @@ class ProxyCallAgentCommon {
3690
3698
  }
3691
3699
  case 'on': {
3692
3700
  return (...args) => {
3693
- const isCallsUpdated = args[0] === 'callsUpdated';
3701
+ // typescript is not smart enough to handle multiple overloads and pull the correct type here so force casting args
3702
+ const event = args[0];
3703
+ const isCallsUpdated = event === 'callsUpdated';
3694
3704
  if (isCallsUpdated) {
3695
3705
  const listener = args[1];
3696
3706
  this._externalCallsUpdatedListeners.add(listener);
@@ -3702,7 +3712,9 @@ class ProxyCallAgentCommon {
3702
3712
  }
3703
3713
  case 'off': {
3704
3714
  return (...args) => {
3705
- const isCallsUpdated = args[0] === 'callsUpdated';
3715
+ // typescript is not smart enough to handle multiple overloads and pull the correct type here so force casting args
3716
+ const event = args[0];
3717
+ const isCallsUpdated = event === 'callsUpdated';
3706
3718
  if (isCallsUpdated) {
3707
3719
  const listener = args[1];
3708
3720
  this._externalCallsUpdatedListeners.delete(listener);
@@ -16526,7 +16538,7 @@ const _videoGalleryRemoteParticipantsMemo = (remoteParticipants) => {
16526
16538
  */
16527
16539
  .filter((participant) => {
16528
16540
  return (!['InLobby', 'Idle', 'Connecting', 'Disconnected'].includes(participant.state) ||
16529
- participant.identifier.kind === 'phoneNumber');
16541
+ communicationCommon.isPhoneNumberIdentifier(participant.identifier));
16530
16542
  })
16531
16543
  .map((participant) => {
16532
16544
  const state = _isRingingPSTNParticipant(participant);
@@ -16668,13 +16680,18 @@ const convertRemoteParticipantsToParticipantListParticipants = (remoteParticipan
16668
16680
  /* eslint-disable @typescript-eslint/explicit-function-return-type */
16669
16681
  const conversionCallback = (memoizeFn) => {
16670
16682
  return (remoteParticipants
16683
+ // Filter out MicrosoftBot participants
16684
+ .filter((participant) => {
16685
+ /* @conditional-compile-remove(communication-common-beta-v3) */
16686
+ return !communicationCommon.isMicrosoftBotIdentifier(participant.identifier);
16687
+ })
16671
16688
  /**
16672
16689
  * hiding participants who are inLobby, idle, or connecting in ACS clients till we can admit users through ACS clients.
16673
16690
  * phone users will be in the connecting state until they are connected to the call.
16674
16691
  */
16675
16692
  .filter((participant) => {
16676
16693
  return (!['InLobby', 'Idle', 'Connecting', 'Disconnected'].includes(participant.state) ||
16677
- participant.identifier.kind === 'phoneNumber');
16694
+ communicationCommon.isPhoneNumberIdentifier(participant.identifier));
16678
16695
  })
16679
16696
  .map((participant) => {
16680
16697
  const isScreenSharing = Object.values(participant.videoStreams).some((videoStream) => videoStream.mediaStreamType === 'ScreenSharing' && videoStream.isAvailable);