The solution is send the PDF file base64 content as in Restlet script response.
The logic for sending base64 content.
let pdfFile = genPDF(); // Replace this with your PDF generation logic
return {
fileName: pdfFile.getName(),
fileContent: pdfFile.getContents()
};