diff --git a/src/@ionic-native/plugins/intercom/index.ts b/src/@ionic-native/plugins/intercom/index.ts index 2225dc1f1..c67bf6afb 100644 --- a/src/@ionic-native/plugins/intercom/index.ts +++ b/src/@ionic-native/plugins/intercom/index.ts @@ -214,4 +214,35 @@ export class Intercom extends IonicNativePlugin { sendPushTokenToIntercom(token: string): Promise { return; } + + /** + * + * @param carouselId {string} + * @return {Promise} Returns a promise + */ + @Cordova() + displayCarousel(carouselId: string): Promise { + return; + } + + /** + * + * @param articleId {string} + * @return {Promise} Returns a promise + */ + @Cordova() + displayArticle(articleId: string): Promise { + return; + } + + /** + * + * @param bottomPadding {string | number} + * @return {Promise} Returns a promise + */ + @Cordova() + setBottomPadding(bottomPadding: string | number): Promise { + return; + } + }