mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-01-31 18:49:43 +08:00
feat(clevertap): update for latest CleverTap Cordova plugin (#2931)
* feat(clevertap): add CleverTap plugin * style(clevertap): cleanup stray lint error * refactor * feat(clevertap): update for latest CleverTap Cordova plugin
This commit is contained in:
parent
daf04566a1
commit
aed25a6642
@ -577,6 +577,43 @@ export class CleverTap extends IonicNativePlugin {
|
|||||||
return;
|
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
|
* Developer Options
|
||||||
******************/
|
******************/
|
||||||
|
Loading…
Reference in New Issue
Block a user