UNPKG

wa-chat-server

Version:

Watson Assistant powered chat server

14 lines (13 loc) 414 B
import AssistantV1 from 'ibm-watson/assistant/v1'; import { IRouteContext } from './IRouteContext'; export interface IReducedMessageResponse { result: { input: AssistantV1.MessageInput; output?: { generic?: AssistantV1.DialogNodeOutputGeneric | Array<AssistantV1.DialogNodeOutputGeneric>; }; error?: string; }; sessionId: string; route: IRouteContext; }