From 42a8935706aa6bdd5ea4e16d27579f7cf3fbc945 Mon Sep 17 00:00:00 2001 From: spoeck Date: Sun, 8 Oct 2017 21:43:48 +0200 Subject: [PATCH] doc: add requestEvent Method to table --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2be1897..bc5593b 100644 --- a/README.md +++ b/README.md @@ -207,12 +207,13 @@ ApiAi.setConfiguration("4xxxxxxxe90xxxxxxxxc372", ApiAi.LANG_GERMAN); * LANG_UKRAINIAN ## Methods -| name | platform | param1 | param2 | param3 | -| --------------------- | -------- | --------- | --------- | --------- | +| name | platform | param1 | param2 | param3 | param4 | +| --------------------- | -------- | --------- | --------- | --------- | --------- | | `setConfiguration` | both | clientAccessToken: String | languageTag: String | | | `startListening` | both | resultCallback: (result: object)=>{} | errorCallback: (error: object)=>{} | | | `finishListening` | ios | | | | | `requestQuery` | both | query: String | resultCallback: (result: object)=>{} | errorCallback: (error: object)=>{} | +| `requestEvent` | both | eventName: String | eventData: Object | resultCallback: (result: object)=>{} | errorCallback: (error: object)=>{} | | `onListeningStarted` | android | callback: ()=>{} | | | | `onListeningCanceled` | android | callback: ()=>{} || | | `onListeningFinished` | android | callback: ()=>{} | | |