@botonic/plugin-hubtype-analytics
Version:
Plugin for tracking in the Hubtype backend to see the results in the Hubtype Dashbord
15 lines • 596 B
JavaScript
import { EventType } from '../types';
import { HtEvent } from './ht-event';
export class HtEventWebviewStep extends HtEvent {
constructor(event, requestData) {
super(event, requestData);
this.type = EventType.WebEvent;
this.action = event.action;
this.flow_thread_id = event.flowThreadId;
this.webview_thread_id = event.webviewThreadId;
this.webview_name = event.webviewName;
this.webview_step_name = event.webviewStepName;
this.webview_step_n = event.webviewStepNumber;
}
}
//# sourceMappingURL=ht-event-webview-step.js.map