@azure/communication-react 1.5.1-alpha-202303250012 → 1.5.1-alpha-202303260014

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.
@@ -2247,6 +2247,7 @@ export declare interface CallWithChatAdapterManagement {
2247
2247
  updateFileUploadErrorMessage: (id: string, errorMessage: string) => void;
2248
2248
  /** @beta */
2249
2249
  updateFileUploadMetadata: (id: string, metadata: FileMetadata) => void;
2250
+ downloadAuthenticatedAttachment?: (attachmentUrl: string) => Promise<string>;
2250
2251
  /**
2251
2252
  * Puts the Call in a Localhold.
2252
2253
  *
@@ -5419,6 +5420,7 @@ export declare interface FileUploadAdapter {
5419
5420
  updateFileUploadProgress: (id: string, progress: number) => void;
5420
5421
  updateFileUploadErrorMessage: (id: string, errorMessage: string) => void;
5421
5422
  updateFileUploadMetadata: (id: string, metadata: FileMetadata) => void;
5423
+ downloadAuthenticatedAttachment?: (attachmentUrl: string) => Promise<string>;
5422
5424
  }
5423
5425
 
5424
5426
  /**