❓ ( OldVersions )For Before Version 0.3.0# Writing .toBuffer() is Required to Create Image-Example;constspotify=awaitnewcanvafy.Spotify()message.reply({files:[{attachment: spotify.toBuffer(),name:"spotify.png"}]})❓ ( NewVersions )For After Version 0.3.0# Writing .toBuffer() to Create Image Removed, Now You Can Access Image Using Direct Definition!-Example;constspotify=awaitnewcanvafy.Spotify()message.reply({files:[{attachment:spotify,name:"spotify.png"}]})🌀SoWhyDidItChange?# We switched from the "node-canvas" package we used to create images in canvafy to the "napi-rs/canvas" package, so this definition has been changed.