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

feat(clevertap): support clevertap-cordova 2.6.0 #4458

Merged
merged 32 commits into from
Dec 31, 2022
Merged
Changes from all commits
Commits
Show all changes
32 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
6ed5b81
Merge branch 'master' of https://github.com/danielsogl/awesome-cordov…
piyush-kukadiya Jan 28, 2022
1ed5abf
refactor(profile): remove setProfile methods for fb and google
piyush-kukadiya Jan 28, 2022
8d8b647
refactor(dynamic variables): remove Product A/B Testing (Dynamic Vari…
piyush-kukadiya Jan 28, 2022
0b50a25
fix(product config): add key param to product config getters
piyush-kukadiya Jan 28, 2022
91ceca2
feat(identity): add a new public method getCleverTapID and deprecate …
piyush-kukadiya Jan 28, 2022
b660f31
feat(profile): add public methods to increment/decrement values set v…
piyush-kukadiya Jan 28, 2022
2a76a73
feat(profile): add public methods to increment/decrement values set v…
piyush-kukadiya Jan 28, 2022
9c98887
feat(inapp): add public methods for suspending/discarding & resuming …
piyush-kukadiya Jan 28, 2022
0b3e86a
Merge remote-tracking branch 'origin/master'
piyush-kukadiya Jan 28, 2022
9de8204
Merge branch 'danielsogl:master' into master
piyush-kukadiya Jan 31, 2022
f3dcd95
Merge branch 'danielsogl:master' into master
piyush-kukadiya Dec 30, 2022
f8cfa7d
feat(inbox): add new api for iOS to delete bulk inbox messages for gi…
piyush-kukadiya Dec 30, 2022
057630d
refactor(xiaomi-push): add region as an extra mandatory parameter to …
piyush-kukadiya Dec 30, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 15 additions & 3 deletions src/@awesome-cordova-plugins/plugins/clevertap/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,13 +121,14 @@ export class CleverTap extends AwesomeCordovaNativePlugin {
}

/**
* Sets the device's Xiaomi push token
*
* Sets the device's Xiaomi push token.
* clevertap-cordova 2.6.0 onwards method requires region as a mandatory parameter.
* @param token {string}
* @param region {string}
* @returns {Promise<any>}
*/
@Cordova()
setPushXiaomiToken(token: string): Promise<any> {
setPushXiaomiToken(token: string, region: string): Promise<any> {
return;
}

Expand Down Expand Up @@ -804,6 +805,17 @@ export class CleverTap extends AwesomeCordovaNativePlugin {
return;
}

/**
* Call this method to delete bulk Inbox Messages for Given Message Ids
*
* @param messageIds {any} array of strings
* @returns {Promise<any>}
*/
@Cordova()
deleteInboxMessagesForIds(messageIds: any): Promise<any> {
return;
}

/**
* Call this to Mark Read Inbox Message For Id
*
Expand Down