cordova-plugin-voiceit
Advanced tools
Comparing version 0.0.5 to 0.0.6
{ | ||
"version": "0.0.5", | ||
"version": "0.0.6", | ||
"name": "cordova-plugin-voiceit", | ||
@@ -4,0 +4,0 @@ "cordova_name": "VoiceItCordova", |
function VoiceItCordova() { | ||
} | ||
VoiceItCordova.prototype.getUser = function (developerID, email, password, successCallback, errorCallback) { | ||
cordova.exec(successCallback, errorCallback, "VoiceItCordova", "getUser",[developerID, email, password]); | ||
VoiceItCordova.prototype.initialize = function(developerID){ | ||
VoiceItCordova.prototype.developerID = developerID; | ||
} | ||
VoiceItCordova.prototype.getUser = function (email, password, successCallback, errorCallback) { | ||
cordova.exec(successCallback, errorCallback, "VoiceItCordova", "getUser",[VoiceItCordova.prototype.developerID, email, password]); | ||
}; | ||
VoiceItCordova.prototype.createUser = function (developerID, email, password, firstName, lastName, successCallback, errorCallback) { | ||
cordova.exec(successCallback, errorCallback, "VoiceItCordova", "createUser",[developerID, email, password, firstName, lastName]); | ||
VoiceItCordova.prototype.createUser = function (email, password, firstName, lastName, successCallback, errorCallback) { | ||
cordova.exec(successCallback, errorCallback, "VoiceItCordova", "createUser",[VoiceItCordova.prototype.developerID, email, password, firstName, lastName]); | ||
}; | ||
VoiceItCordova.prototype.setUser = function (developerID, email, password, firstName, lastName, successCallback, errorCallback) { | ||
cordova.exec(successCallback, errorCallback, "VoiceItCordova", "setUser",[developerID, email, password, firstName, lastName]); | ||
VoiceItCordova.prototype.setUser = function (email, password, firstName, lastName, successCallback, errorCallback) { | ||
cordova.exec(successCallback, errorCallback, "VoiceItCordova", "setUser",[VoiceItCordova.prototype.developerID, email, password, firstName, lastName]); | ||
}; | ||
VoiceItCordova.prototype.getEnrollments = function (developerID, email, password, successCallback, errorCallback) { | ||
cordova.exec(successCallback, errorCallback, "VoiceItCordova", "getEnrollments",[developerID, email, password]); | ||
VoiceItCordova.prototype.getEnrollments = function (email, password, successCallback, errorCallback) { | ||
cordova.exec(successCallback, errorCallback, "VoiceItCordova", "getEnrollments",[VoiceItCordova.prototype.developerID, email, password]); | ||
}; | ||
VoiceItCordova.prototype.createEnrollment = function (developerID, email, password, successCallback, errorCallback) { | ||
cordova.exec(successCallback, errorCallback, "VoiceItCordova", "createEnrollment",[developerID, email, password]); | ||
VoiceItCordova.prototype.createEnrollment = function (email, password, successCallback, errorCallback) { | ||
cordova.exec(successCallback, errorCallback, "VoiceItCordova", "createEnrollment",[VoiceItCordova.prototype.developerID, email, password]); | ||
}; | ||
VoiceItCordova.prototype.authentication = function (developerID, email, password, accuracy, accuracyPasses, accuracyPassIncrement, confidence, successCallback, errorCallback) { | ||
cordova.exec(successCallback, errorCallback, "VoiceItCordova", "authentication",[developerID, email, password, accuracy, accuracyPasses, accuracyPassIncrement, confidence]); | ||
VoiceItCordova.prototype.authentication = function (email, password, accuracy, accuracyPasses, accuracyPassIncrement, confidence, successCallback, errorCallback) { | ||
cordova.exec(successCallback, errorCallback, "VoiceItCordova", "authentication",[VoiceItCordova.prototype.developerID, email, password, accuracy, accuracyPasses, accuracyPassIncrement, confidence]); | ||
}; | ||
@@ -27,0 +31,0 @@ |
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
77045
31