@cognigy/rest-api-client
Version:
Cognigy REST-Client
21 lines • 644 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isValidDebugEndpointEventType = exports.debugEventTypes = void 0;
exports.debugEventTypes = [
"activeEntrypointsChanged",
"contextChanged",
"finalPing",
"inputChanged",
"nodeError",
"nodeExecuted",
"input",
"output",
"profileChanged",
"switchedFlow",
];
function isValidDebugEndpointEventType(value) {
return (typeof value === "string" &&
exports.debugEventTypes.indexOf(value) !== -1);
}
exports.isValidDebugEndpointEventType = isValidDebugEndpointEventType;
//# sourceMappingURL=TDebugEndpointEvent.js.map