@@ -705,12 +705,12 @@ export interface CallCompositeStrings {
705705export type CallControlDisplayType = ' default' | ' compact' ;
706706
707707// @public
708- export type CallControlOptions = CommonCallControlOptions & {
708+ export type CallControlOptions = ( CommonCallControlOptions & {
709709 participantsButton? : boolean | {
710710 disabled: boolean ;
711711 };
712712 legacyControlBarExperience? : boolean ;
713- };
713+ }) ;
714714
715715// @public
716716export type CallEndedListener = (event : CallAdapterCallEndedEvent ) => void ;
@@ -1361,7 +1361,7 @@ export type CaptionsReceivedListener = (event: {
13611361}) => void ;
13621362
13631363// @public
1364- export type ChatAdapter = ChatAdapterThreadManagement & AdapterState <ChatAdapterState > & Disposable & ChatAdapterSubscribers & FileUploadAdapter ;
1364+ export type ChatAdapter = ChatAdapterThreadManagement & AdapterState <ChatAdapterState > & Disposable & ChatAdapterSubscribers & /* @conditional-compile-remove(file-sharing) */ FileUploadAdapter ;
13651365
13661366// @public
13671367export type ChatAdapterState = ChatAdapterUiState & ChatCompositeClientState ;
@@ -1398,7 +1398,7 @@ export interface ChatAdapterThreadManagement {
13981398 sendReadReceipt(chatMessageId : string ): Promise <void >;
13991399 sendTypingIndicator(): Promise <void >;
14001400 setTopic(topicName : string ): Promise <void >;
1401- updateMessage(messageId : string , content : string , metadata ? : Record <string , string >, options ? : {
1401+ updateMessage(messageId : string , content : string , metadata ? : Record <string , string >, /* @conditional-compile-remove(file-sharing) */ options ? : {
14021402 attachedFilesMetadata? : FileMetadata [];
14031403 }): Promise <void >;
14041404}
@@ -1514,7 +1514,7 @@ export type ChatHandlers = {
15141514 onRemoveParticipant: (userId : string ) => Promise <void >;
15151515 updateThreadTopicName: (topicName : string ) => Promise <void >;
15161516 onLoadPreviousChatMessages: (messagesToLoad : number ) => Promise <boolean >;
1517- onUpdateMessage: (messageId : string , content : string , metadata ? : Record <string , string >, options ? : {
1517+ onUpdateMessage: (messageId : string , content : string , /* @conditional-compile-remove(file-sharing) */ metadata ? : Record <string , string >, /* @conditional-compile-remove(file-sharing) */ options ? : {
15181518 attachedFilesMetadata? : FileMetadata [];
15191519 }) => Promise <void >;
15201520 onDeleteMessage: (messageId : string ) => Promise <void >;
@@ -1979,7 +1979,7 @@ export interface ControlBarProps {
19791979export const createAzureCommunicationCallAdapter: ({ userId, displayName, credential, locator, alternateCallerId, options }: AzureCommunicationCallAdapterArgs ) => Promise <CallAdapter >;
19801980
19811981// @public
1982- export const createAzureCommunicationCallAdapterFromClient: (callClient : StatefulCallClient , callAgent : CallAgent , locator : CallAdapterLocator , options ? : AzureCommunicationCallAdapterOptions ) => Promise <CallAdapter >;
1982+ export const createAzureCommunicationCallAdapterFromClient: (callClient : StatefulCallClient , callAgent : CallAgent , locator : CallAdapterLocator , /* @conditional-compile-remove(rooms) */ /* @conditional-compile-remove(video-background-effects) */ options ? : AzureCommunicationCallAdapterOptions ) => Promise <CallAdapter >;
19831983
19841984// @public
19851985export const createAzureCommunicationCallWithChatAdapter: ({ userId, displayName, credential, endpoint, locator, alternateCallerId, callAdapterOptions }: AzureCommunicationCallWithChatAdapterArgs ) => Promise <CallWithChatAdapter >;
@@ -1991,7 +1991,7 @@ export const createAzureCommunicationCallWithChatAdapterFromClients: ({ callClie
19911991export const createAzureCommunicationChatAdapter: ({ endpoint: endpointUrl , userId, displayName, credential, threadId }: AzureCommunicationChatAdapterArgs ) => Promise <ChatAdapter >;
19921992
19931993// @public
1994- export function createAzureCommunicationChatAdapterFromClient(chatClient : StatefulChatClient , chatThreadClient : ChatThreadClient , options ? : {
1994+ export function createAzureCommunicationChatAdapterFromClient(chatClient : StatefulChatClient , chatThreadClient : ChatThreadClient , /* @conditional-compile-remove(teams-inline-images-and-file-sharing) */ options ? : {
19951995 credential? : CommunicationTokenCredential ;
19961996}): Promise <ChatAdapter >;
19971997
@@ -2095,7 +2095,7 @@ export interface CustomMessage extends MessageCommon {
20952095export const darkTheme: PartialTheme & CallingTheme ;
20962096
20972097// @beta
2098- export type DeclarativeCallAgent = CallAgent & IncomingCallManagement ;
2098+ export type DeclarativeCallAgent = CallAgent & /* @conditional-compile-remove(one-to-n-calling) */ IncomingCallManagement ;
20992099
21002100// @beta
21012101export type DeclarativeIncomingCall = IncomingCall ;
@@ -3608,7 +3608,7 @@ export interface UnsupportedOperatingSystemStrings {
36083608}
36093609
36103610// @public
3611- export type UpdateMessageCallback = (messageId : string , content : string , metadata ? : Record <string , string >, options ? : {
3611+ export type UpdateMessageCallback = (messageId : string , content : string , /* @conditional-compile-remove(file-sharing) */ metadata ? : Record <string , string >, /* @conditional-compile-remove(file-sharing) */ options ? : {
36123612 attachedFilesMetadata? : FileMetadata [];
36133613}) => Promise <void >;
36143614
0 commit comments