Updates a Storage bucket
buckets table permissions: select and updateobjects table permissions: noneA unique identifier for the bucket you are updating.
const { data, error } = await supabase
  .storage
  .updateBucket('avatars', {
    public: false,
    allowedMimeTypes: ['image/png'],
    fileSizeLimit: 1024
  })