Deprecation helpers

If a deprecation affects code in multiple places it’s better to create an internal helper to centralize the deprecation logic.

drive_publish <- function(file, ..., verbose = deprecated()) {
  warn_for_verbose(verbose)
  # rest of the function ...
}