feat(whatsapp.gblib): Enhancements on Whatsapp Server support.

This commit is contained in:
Rodrigo Rodriguez 2019-08-26 09:37:03 -03:00
parent 529a2858f3
commit 0d7d9653a6

View file

@ -37,6 +37,10 @@ import { GBDialogStep } from "./GBDialogStep";
export interface IGBConversationalService { export interface IGBConversationalService {
sendEvent(step: GBDialogStep, name: string, value: Object); sendEvent(step: GBDialogStep, name: string, value: Object);
sendEvent(step: GBDialogStep, name: string, value: Object);
sendFile(min: GBMinInstance, step: GBDialogStep, url: string);
sendAudio(min: GBMinInstance, step: GBDialogStep, url: string);
sendSms(min: GBMinInstance, mobile: string, text: string);
routeNLP(step: GBDialogStep, min: GBMinInstance, text: string): Promise<boolean>; routeNLP(step: GBDialogStep, min: GBMinInstance, text: string): Promise<boolean>;
getCurrentLanguage(step: GBDialogStep); getCurrentLanguage(step: GBDialogStep);
} }