I’m trying to return a file that can be used by other actions.This code converts the base-64 string that’s returned by an API into a File:const xml = require('pixl-xml');const perform = async (z, bundle) => { const xml = 'XML HERE' var body = xml.stringify( 'Document', xml ); const options = { url: 'https://www.domain.tld/get_file', method: 'POST', headers: { 'Content-Type': 'application/xml', }, body: body }; return z.request(options).then((response) => { response.throwForStatus(); response.data = xml.parse(response.content); if ( response.data.FILE ) { const buffer = Buffer.from(response.data.FILE`; const file = new File(buffer,'somefile.pdf', { type: 'application/octet-stream' }); return { file: file } } });};Unit and integration tests work as expected, but I get an error when I try to use this in a Zap:File is not defined What happened (You are seeing this because you are an admin): Starting POST request to http