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; + } + + }