Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

cordova-plugin-voiceit

Package Overview
Dependencies
Maintainers
1
Versions
51
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cordova-plugin-voiceit - npm Package Compare versions

Comparing version 0.0.5 to 0.0.6

2

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc