From 68d245ef2c85dfff0aedb444db629d59986e06b4 Mon Sep 17 00:00:00 2001 From: MaximBelov Date: Thu, 19 Nov 2020 09:33:45 +0200 Subject: [PATCH] feat(intercom): added displayCarousel, displayArticle, setBottomPadding (#3572) --- src/@ionic-native/plugins/intercom/index.ts | 31 +++++++++++++++++++++ 1 file changed, 31 insertions(+) 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; + } + }