UNPKG

@botonic/plugin-hubtype-analytics

Version:

Plugin for tracking in the Hubtype backend to see the results in the Hubtype Dashbord

24 lines 1.09 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.HtEventConditionalQueueStatus = void 0; const types_1 = require("../types"); const ht_event_1 = require("./ht-event"); class HtEventConditionalQueueStatus extends ht_event_1.HtEvent { constructor(event, requestData) { super(event, requestData); this.type = types_1.EventType.BotEvent; this.action = types_1.EventAction.ConditionalQueueStatus; this.flow_thread_id = event.flowThreadId; this.flow_id = event.flowId; this.flow_name = event.flowName; this.flow_node_id = event.flowNodeId; this.flow_node_content_id = event.flowNodeContentId; this.flow_node_is_meaningful = event.flowNodeIsMeaningful; this.queue_id = event.queueId; this.queue_name = event.queueName; this.is_queue_open = event.isQueueOpen; this.is_available_agent = event.isAvailableAgent; } } exports.HtEventConditionalQueueStatus = HtEventConditionalQueueStatus; //# sourceMappingURL=ht-event-conditional-queue-status.js.map