clevertap-cordova
Advanced tools
Comparing version 2.0.5 to 2.0.7
Change Log | ||
========== | ||
Version 2.0.7 *(11 May, 2018)* | ||
------------------------------------------- | ||
Update for Android support library version | ||
Update for CleverTap Android SDK v 3.1.9 | ||
Update for CleverTap iOS SDK v 3.1.7 | ||
Support for Android O Notification Channels with custom sound | ||
New APIs for GDPR compliance | ||
Adds Android support for recordScreenView API | ||
Version 2.0.5 *(04 January, 2018)* | ||
@@ -5,0 +14,0 @@ ------------------------------------------- |
{ | ||
"name": "clevertap-cordova", | ||
"version": "2.0.5", | ||
"version": "2.0.7", | ||
"description": "CleverTap Plugin for Cordova/PhoneGap", | ||
@@ -5,0 +5,0 @@ "cordova": { |
@@ -8,4 +8,4 @@ CleverTap Cordova Plugin | ||
- [CleverTap Android SDK version 3.1.8](https://github.com/CleverTap/clevertap-android-sdk/releases/tag/3.1.8) | ||
- [CleverTap iOS SDK version 3.1.6](https://github.com/CleverTap/clevertap-ios-sdk/releases/tag/3.1.6) | ||
- [CleverTap Android SDK version 3.1.9](https://github.com/CleverTap/clevertap-android-sdk/releases/tag/3.1.9) | ||
- [CleverTap iOS SDK version 3.1.7](https://github.com/CleverTap/clevertap-ios-sdk/releases/tag/3.1.7) | ||
@@ -12,0 +12,0 @@ ## Install |
@@ -27,2 +27,12 @@ // Copyright (C) 2015 CleverTap | ||
} | ||
//Enables tracking opt out for the currently active user. | ||
CleverTap.prototype.setOptOut = function (value) { | ||
cordova.exec(null, null, "CleverTapPlugin", "setOptOut", [value]); | ||
} | ||
//Enables the reporting of device network related information, including IP address. This reporting is disabled by default. | ||
CleverTap.prototype.enableDeviceNetworkInfoReporting = function (value) { | ||
cordova.exec(null, null, "CleverTapPlugin", "enableDeviceNetworkInfoReporting", [value]); | ||
} | ||
@@ -47,2 +57,6 @@ /******************* | ||
CleverTap.prototype.createNotificationChannelWithSound = function (channelID, channelName, channelDescription, importance, showBadge,sound) { | ||
cordova.exec(null,null, "CleverTapPlugin", "createNotificationChannelWithSound", [channelID, channelName, channelDescription, importance, showBadge, sound]); | ||
} | ||
//Create Notification Channel with Group ID for Android O | ||
@@ -53,2 +67,6 @@ CleverTap.prototype.createNotificationChannelWithGroupId = function (channelID, channelName, channelDescription, importance, groupId, showBadge) { | ||
CleverTap.prototype.createNotificationChannelWithGroupIdAndSound = function (channelID, channelName, channelDescription, importance, groupId, showBadge, sound) { | ||
cordova.exec(null,null, "CleverTapPlugin", "createNotificationChannelWithGroupIdAndSound", [channelID, channelName, channelDescription, importance, groupId, showBadge, sound]); | ||
} | ||
//Create Notification Channel Group for Android O | ||
@@ -55,0 +73,0 @@ CleverTap.prototype.createNotificationChannelGroup = function (groupId, groupName) { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Native code
Supply chain riskContains native code (e.g., compiled binaries or shared libraries). Including native code can obscure malicious behavior.
Found 2 instances in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
342
1
15128004
28