From 3bb6b591129e4d53661e22198408a42c21598bd4 Mon Sep 17 00:00:00 2001 From: Maxim Belov Date: Mon, 29 Jul 2019 22:50:13 +0300 Subject: [PATCH] fix(intercom): added logout, displayHelpCenter, sendPushTokenToIntercom --- src/@ionic-native/plugins/intercom/index.ts | 29 +++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/src/@ionic-native/plugins/intercom/index.ts b/src/@ionic-native/plugins/intercom/index.ts index 06fa5e557..9abc42340 100644 --- a/src/@ionic-native/plugins/intercom/index.ts +++ b/src/@ionic-native/plugins/intercom/index.ts @@ -61,6 +61,15 @@ export class Intercom extends IonicNativePlugin { return; } + /** + * + * @return {Promise} Returns a promise + */ + @Cordova() + logout(): Promise { + return; + } + /** * * @param secureHash {string} @@ -141,6 +150,15 @@ export class Intercom extends IonicNativePlugin { return; } + /** + * + * @return {Promise} Returns a promise + */ + @Cordova() + displayHelpCenter(): Promise { + return; + } + /** * * @return {Promise} Returns a promise @@ -188,4 +206,15 @@ export class Intercom extends IonicNativePlugin { return; } + /** + * + * @param token {string} + * @return {Promise} Returns a promise + */ + @Cordova() + sendPushTokenToIntercom(token: string): Promise { + return; + } + + }