Downloads files from a compute response as a ZIP archive. Packages multiple files into a single ZIP file and triggers a browser download.
An array of FileData items from the compute response.
The name of the ZIP file (without extension).
Optional additional files to include in the ZIP (fetched from URLs).
Will throw an error if the file handling or download fails.
await downloadDataFromComputeResponse(fileData, null, 'my-export');// Downloads 'my-export.zip' Copy
await downloadDataFromComputeResponse(fileData, null, 'my-export');// Downloads 'my-export.zip'
Downloads files from a compute response as a ZIP archive. Packages multiple files into a single ZIP file and triggers a browser download.