Great news. Can’t wait.
There is a bit of delay for new app release but should be there by next week !
Thanks for being patient
Update:
This syntax does not work anymore:
let file = query2.data
utils.downloadFile({base64Binary: file.base64Data}, "cat", "jpeg")
// won't work
Instead, take this approach:
let file = query2.data
utils.downloadFile(file.base64Data, "cat", "jpeg")
// works like a charm!