I have deployed it on firebase hosting. While testing it with actions simulator, it is calling conversation but does not call onUpdate callback of ImmersiveResponse.
conv.ask(`Ok, I changed my color to ${color}. What else?`);
conv.ask(new ImmersiveResponse({
state: {
tint: tints[color],
},
}));
from above code I am able to see response Ok, I changed my color to Red. What else? but onUpdate log is not printed on firebase functions console.
I have deployed it on firebase hosting. While testing it with actions simulator, it is calling conversation but does not call onUpdate callback of ImmersiveResponse.
from above code I am able to see response
Ok, I changed my color to Red. What else?
but onUpdate log is not printed on firebase functions console.code snippet for callback