@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.
- package/dist/communication-react.d.ts +2 -0
- package/dist/dist-cjs/communication-react/index.js +150 -110
- 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/react-composites/src/composites/CallWithChatComposite/adapter/CallWithChatAdapter.d.ts +1 -0
- package/dist/dist-esm/react-composites/src/composites/CallWithChatComposite/adapter/CallWithChatAdapter.js.map +1 -1
- package/dist/dist-esm/react-composites/src/composites/ChatComposite/adapter/AzureCommunicationChatAdapter.d.ts +1 -0
- package/dist/dist-esm/react-composites/src/composites/ChatComposite/adapter/AzureCommunicationChatAdapter.js +11 -0
- package/dist/dist-esm/react-composites/src/composites/ChatComposite/adapter/AzureCommunicationChatAdapter.js.map +1 -1
- package/dist/dist-esm/react-composites/src/composites/ChatComposite/adapter/AzureCommunicationFileUploadAdapter.d.ts +4 -1
- package/dist/dist-esm/react-composites/src/composites/ChatComposite/adapter/AzureCommunicationFileUploadAdapter.js +29 -1
- package/dist/dist-esm/react-composites/src/composites/ChatComposite/adapter/AzureCommunicationFileUploadAdapter.js.map +1 -1
- package/package.json +8 -8
@@ -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
|
/**
|