@botonic/plugin-hubtype-analytics
Version:
Plugin for tracking in the Hubtype backend to see the results in the Hubtype Dashbord
21 lines • 909 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.HtEventWebviewEnd = void 0;
const types_1 = require("../types");
const ht_event_1 = require("./ht-event");
class HtEventWebviewEnd extends ht_event_1.HtEvent {
constructor(event, requestData) {
super(event, requestData);
this.type = types_1.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_end_step_name = event.webviewStepName;
this.webview_end_step_n = event.webviewStepNumber;
this.webview_end_fail_type = event.webviewEndFailType;
this.webview_end_fail_message = event.webviewEndFailMessage;
}
}
exports.HtEventWebviewEnd = HtEventWebviewEnd;
//# sourceMappingURL=ht-event-webview-end.js.map