/** * Status of the bulk download operation */ export type BulkDownloadRequestStatus = 'failed' | 'pending' | 'processing' | 'success';