Restore visibility of a file previously hidden by the hide command.
Wraps the SDK's Bucket.unhideFile, which finds the most recent hide
marker for the file name and deletes it. If the file is already visible
(or never existed), no-ops and reports removedMarkerFileId: null.
B2 has no native b2_unhide_file endpoint; the SDK implements unhide as
"list versions → delete the top hide marker", which is the canonical
recipe. We expose it here so workflow authors don't have to know that.
Restore visibility of a file previously hidden by the
hidecommand.Wraps the SDK's Bucket.unhideFile, which finds the most recent hide marker for the file name and deletes it. If the file is already visible (or never existed), no-ops and reports
removedMarkerFileId: null.B2 has no native
b2_unhide_fileendpoint; the SDK implements unhide as "list versions → delete the top hide marker", which is the canonical recipe. We expose it here so workflow authors don't have to know that.