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