Text File Conjurer Question

I am using this plugin, got a workflow to generate a file, and it auto uploaded to the database.

What I want to do is to be able to link to this file so others can download it, but I just can’t seem to do it. As there is nothing that gets updated to contain its URL… I can only see the URL of the file if I go into the database…

Any help will be much appreciated.

Or instead of accessing the saved file, the following codes allow me to generate to file for users to download. Can I instead of having them download and then open on their mobile, change the below script so the file opens automatically without downloading first to the browser?

function(instance, properties, context) {
var blob = new Blob([properties.text_value], {data: “text/plain;charset=utf-8”});
saveAs(blob, ${properties.file_name_without_extension}.${properties.file_extension});

}

There is a upload function with file conjurer, But it saves as orphans, Tried to attach to a thing…but not works. Is it possible to get the file in next action, so create a new thing can accept the file

@vini_brito