Code in inputsis available in version 1.1.72 (not yet live).
Use ${...} for an expression and $${...} for a code block. Expressions insert the result of the expression. Code blocks run full code and must return a value to insert.
Examples
Using ${...} (expression)
"This is my secret password stored locally: ${await zw.deviceStorage.get("password")}"
Using $${...} (code block)
"This is my more elaborate input: $${
import axios from "axios"; // any import auto-installs locally
const res = await axios.get("https://mydomain.com/my/api/url");
return res.data;
}."