Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PR for fixing missing methods issue #3491 #3517

Closed
wants to merge 19 commits into from
Closed
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
0fa6b38
feat(clevertap): add CleverTap plugin
pwilkniss Jul 26, 2018
3fe6e40
style(clevertap): cleanup stray lint error
pwilkniss Jul 26, 2018
9f1e153
refactor
danielsogl Jul 29, 2018
3efacd7
Updating fork
darshanclevertap Feb 12, 2019
9e41fdf
feat(clevertap): update for latest CleverTap Cordova plugin
darshanclevertap Feb 14, 2019
a8669c8
chore: Update Repo from Ionic Native Repo
SuryaClevertap May 19, 2020
309dced
fix: Code Changes for parity SDK-155
SuryaClevertap May 23, 2020
96d4efb
Merge branch 'master' into master
SuryaClevertap May 23, 2020
02f6d93
fix: Indentation fixes for SDK-155
SuryaClevertap May 23, 2020
90dfe4c
fix: Code Repo fix while updating fork branch
SuryaClevertap May 23, 2020
ab8b859
fix: Remove unnecessary adder .scripts Folder
SuryaClevertap May 23, 2020
64ffaae
fix: Remove unwanted added folder .circleci
SuryaClevertap May 23, 2020
56fd93d
fix: Remove unwanted added File .npmrc
SuryaClevertap May 23, 2020
a8b20dd
fix: Revert .Github Folder Changes to as per Ionic-Native master
SuryaClevertap May 23, 2020
5bf0d69
fix: Update changes as per ionic-native master
SuryaClevertap May 23, 2020
840a801
fix: Code Repo fix while updating fork branch
SuryaClevertap May 23, 2020
ca1a92e
Merge branch 'master' of https://github.com/CleverTap/ionic-native
SuryaClevertap May 24, 2020
7012870
fix(CleverTap): Fix for missing methods issue #3491
darshanclevertap Aug 24, 2020
1521c59
Resolving conflicts and fetching latest ionic-native code #3491
darshanclevertap Oct 6, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
36 changes: 0 additions & 36 deletions src/@ionic-native/plugins/clevertap/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -626,42 +626,6 @@ 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;
}

/****************************
* Notification Inbox methods
****************************/
Expand Down