• I want to accept files using Transformable, but the list of acceptable file types is provided by the server. It seems like I have to provide each file type statically. Is there a way to specify a dynamic, runtime list of file types I can accept? Or is there a way to accept all file types but get the type that was actually provided? I’m only using it with the photo picker. The API I work with (https://docs.joinmastodon.org/methods/instance/#v2) gives me a list of supported mime types. But my understanding of Transformable requires you to provide supported mime types in code at build time. I just upload the raw file to the server. It then processes it and determines if it’s a video/photo/audio file.