diff --git a/src/@ionic-native/plugins/clevertap/index.ts b/src/@ionic-native/plugins/clevertap/index.ts index 8cf61a681a..ecf4a4ad46 100644 --- a/src/@ionic-native/plugins/clevertap/index.ts +++ b/src/@ionic-native/plugins/clevertap/index.ts @@ -577,6 +577,43 @@ export class CleverTap extends IonicNativePlugin { return; } + /**************************** + * Notification Inbox methods + ****************************/ + /** + * Call this method to initialize the App Inbox + */ + @Cordova() + initializeInbox(): Promise { + return; + } + + /** + * Call this method to get the count of unread Inbox messages + */ + @Cordova() + getInboxMessageUnreadCount(): Promise { + return; + } + + /** + * Call this method to get the count of total Inbox messages + */ + @Cordova() + getInboxMessageCount(): Promise { + return; + } + + /** + * Call this method to open the App Inbox + * @param styleConfig : any or empty object + */ + @Cordova() + showInbox(styleConfig: any): Promise { + return; + } + + /******************* * Developer Options ******************/