Skip to content

Commit

Permalink
feat(clevertap): update for latest CleverTap Cordova plugin (#2931)
Browse files Browse the repository at this point in the history
* feat(clevertap): add CleverTap plugin

* style(clevertap): cleanup stray lint error

* refactor

* feat(clevertap): update for latest CleverTap Cordova plugin
  • Loading branch information
darshanclevertap authored and danielsogl committed Feb 14, 2019
1 parent daf0456 commit aed25a6
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions src/@ionic-native/plugins/clevertap/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -577,6 +577,43 @@ export class CleverTap extends IonicNativePlugin {
return;
}

/****************************
* Notification Inbox methods
****************************/
/**
* Call this method to initialize the App Inbox
*/
@Cordova()
initializeInbox(): Promise<any> {
return;
}

/**
* Call this method to get the count of unread Inbox messages
*/
@Cordova()
getInboxMessageUnreadCount(): Promise<any> {
return;
}

/**
* Call this method to get the count of total Inbox messages
*/
@Cordova()
getInboxMessageCount(): Promise<any> {
return;
}

/**
* Call this method to open the App Inbox
* @param styleConfig : any or empty object
*/
@Cordova()
showInbox(styleConfig: any): Promise<any> {
return;
}


/*******************
* Developer Options
******************/
Expand Down

0 comments on commit aed25a6

Please sign in to comment.