/** * Input for bulk download files. Only one of packages or versions should be provided. * */ export interface BulkDownloadFilesRequestInput { /** * Name of the output file to be downloaded */ outputFileName?: string; /** * List of packages UUID to download */ packages?: string[]; /** * registry UUID */ registryId: string; /** * List of versions UUID to download */ versions?: string[]; }