Feedback Aide API Events
feedback:start
Fires when the generateFeedback() method is called.
You would want to be notified about this event firing, because you might want to update your application UI to indicate the feedback generation has started, for example.
Examples
// Using the feedbackSession instance
feedbackSession.on('feedback:start', function () {
console.log('Feedback generation started');
});
// Using the sessionUI instance
sessionUI.on('feedback:start', function () {
console.log('Feedback generation started');
});