How to get user input from actions SDK(recent version). In the previous version, we just use text intent like the example
app.intent('actions.intent.TEXT', async (conv, input) => {
console.log('input', input)
})
I want to get user input as we do get in the previous version but the previous version is deprecating. How to get user input from the action builder?
In recent version they are providing intents, scenes, types etcc...