You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 3, 2026. It is now read-only.
For the property 'metadata' on type FileMetadata (which is used in places like File.setMetadata())

It is typed as Record<string, string>, but it needs to allow null too (so Record<string, string | null>)
Null is used to delete the key, as in the documentation:

https://googleapis.dev/nodejs/storage/latest/File.html#setMetadata
Thanks and let me know if you have any questions