@@ -279,6 +279,7 @@ export type CallAdapterClientState = {
279
279
onResolveVideoEffectDependency? : () => Promise <VideoBackgroundEffectsDependency >;
280
280
selectedVideoBackgroundEffect? : VideoBackgroundEffect ;
281
281
acceptedTransferCallState? : CallState ;
282
+ hideAttendeeNames? : boolean ;
282
283
sounds? : CallingSounds ;
283
284
reactions? : ReactionResources ;
284
285
};
@@ -796,6 +797,7 @@ export interface CallState {
796
797
direction: CallDirection ;
797
798
dominantSpeakers? : DominantSpeakersInfo ;
798
799
endTime: Date | undefined ;
800
+ hideAttendeeNames? : boolean ;
799
801
id: string ;
800
802
isMuted: boolean ;
801
803
isScreenSharingOn: boolean ;
@@ -1008,6 +1010,7 @@ export interface CallWithChatClientState {
1008
1010
chat? : ChatThreadClientState ;
1009
1011
devices: DeviceManagerState ;
1010
1012
displayName: string | undefined ;
1013
+ hideAttendeeNames? : boolean ;
1011
1014
isTeamsCall: boolean ;
1012
1015
latestCallErrors: AdapterErrors ;
1013
1016
latestChatErrors: AdapterErrors ;
@@ -2991,6 +2994,7 @@ export interface ParticipantItemProps {
2991
2994
2992
2995
// @public
2993
2996
export interface ParticipantItemStrings {
2997
+ attendeeRole: string ;
2994
2998
displayNamePlaceholder? : string ;
2995
2999
isMeText: string ;
2996
3000
menuTitle: string ;
@@ -3873,6 +3877,7 @@ export interface VideoGalleryStream {
3873
3877
// @public
3874
3878
export interface VideoGalleryStrings {
3875
3879
addSpotlightVideoTileMenuLabel: string ;
3880
+ attendeeRole: string ;
3876
3881
displayNamePlaceholder: string ;
3877
3882
fillRemoteParticipantFrame: string ;
3878
3883
fitRemoteParticipantToFrame: string ;
0 commit comments