Creates a new Storage bucket
A unique identifier for the bucket you are creating.
const { data, error } = await supabase .storage .createBucket('avatars', { public: false, allowedMimeTypes: ['image/png'], fileSizeLimit: 1024 })