/** * Input for bulk delete operation. * */ export interface BulkDeleteRequestInputV3 { /** * Perform a dry run without actual deletion */ dryRun?: boolean; /** * Force delete even if versions are in use */ force?: boolean; /** * Package name pattern (supports wildcards) */ packages: string; /** * Registry identifier */ registry: string; /** * Version pattern (supports wildcards) */ versions?: string; }