cordova-plugin-voiceit
Advanced tools
Comparing version 1.2.7 to 1.2.8
{ | ||
"version": "1.2.7", | ||
"version": "1.2.8", | ||
"name": "cordova-plugin-voiceit", | ||
@@ -4,0 +4,0 @@ "cordova_name": "VoiceItCordova", |
@@ -44,3 +44,3 @@ # Cordova VoiceIt Plugin | ||
To create a new user call the createUser function like this with the following parameters: developerID, email, password, first name, last name | ||
To create a new user call the createUser function like this with the following parameters: developerID, email, password(not encrypted, just in text form the plugin encrypts the password using SHA256 for you), first name, last name | ||
@@ -62,3 +62,3 @@ ```javascript | ||
To update an existing user call the setUser function like this with the following parameters: developerID, email, password, first name, last name | ||
To update an existing user call the setUser function like this with the following parameters: developerID, email, password(not encrypted, just in text form the plugin encrypts the password using SHA256 for you), first name, last name | ||
@@ -80,3 +80,3 @@ ```javascript | ||
To retrieve an existing user call the getUser function like this with the following parameters: developerID, email, password | ||
To retrieve an existing user call the getUser function like this with the following parameters: developerID, email, password(not encrypted, just in text form the plugin encrypts the password using SHA256 for you) | ||
@@ -96,3 +96,3 @@ ```javascript | ||
To delete an existing user call the deleteUser function like this with the following parameters: developerID, email, password | ||
To delete an existing user call the deleteUser function like this with the following parameters: developerID, email, password(not encrypted, just in text form the plugin encrypts the password using SHA256 for you) | ||
@@ -112,3 +112,3 @@ ```javascript | ||
To create a new enrollment template for the specified user profile use the createEnrollment function like this with the following parameters: developerID, email, password. | ||
To create a new enrollment template for the specified user profile use the createEnrollment function like this with the following parameters: developerID, email, password(not encrypted, just in text form the plugin encrypts the password using SHA256 for you). | ||
@@ -133,3 +133,3 @@ Please Note: Unlike other wrappers, this createEnrollment function actually has recording inbuilt(supporting both Android and iOS platforms), it records the user saying their VoicePrint phrase for 5 seconds and then makes the Create Enrollment API call to send that audio file as an enrollment. | ||
To get a list of the existing enrollments simply call the getEnrollments method for the specific user like this with the following parameters: developerID, email, password | ||
To get a list of the existing enrollments simply call the getEnrollments method for the specific user like this with the following parameters: developerID, email, password(not encrypted, just in text form the plugin encrypts the password using SHA256 for you) | ||
@@ -149,3 +149,3 @@ ```javascript | ||
To delete an enrollment simply call the deleteEnrollment method for the specific user like this with the following parameters: developerID, email, password, enrollmentId | ||
To delete an enrollment simply call the deleteEnrollment method for the specific user like this with the following parameters: developerID, email, password(not encrypted, just in text form the plugin encrypts the password using SHA256 for you), enrollmentId | ||
@@ -167,3 +167,3 @@ ```javascript | ||
To authenticate the user profile use the authentication method like this with the following parameters: email, password, accuracy of authentication (between 0-5, 0 being the most strict and 5 the most lax), number of accuracy passes (between 1-10), accuracy pass increment (between 1-5) and confidence level (between 85-100). | ||
To authenticate the user profile use the authentication method like this with the following parameters: email, password(not encrypted, just in text form the plugin encrypts the password using SHA256 for you), accuracy of authentication (between 0-5, 0 being the most strict and 5 the most lax), number of accuracy passes (between 1-10), accuracy pass increment (between 1-5) and confidence level (between 85-100). | ||
@@ -170,0 +170,0 @@ Please Note: Unlike other wrappers, this authentication function actually has recording inbuilt(supporting both Android and iOS platforms), it records the user saying their VoicePrint phrase for 5 seconds and then makes the Authentication API call to send that audio file in for authentication. |
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
121695