blinkid-react-native
Advanced tools
Comparing version 4.9.1 to 4.10.0
@@ -129,2 +129,4 @@ 'use strict'; | ||
export * from './recognizers/blinkCardRecognizer' | ||
export * from './recognizers/blinkIdCombinedRecognizer' | ||
export * from './recognizers/blinkIdRecognizer' | ||
export * from './recognizers/bruneiIdBackRecognizer' | ||
@@ -183,2 +185,3 @@ export * from './recognizers/bruneiIdFrontRecognizer' | ||
export * from './recognizers/newZealandDlFrontRecognizer' | ||
export * from './recognizers/nigeriaVoterIdBackRecognizer' | ||
export * from './recognizers/passportRecognizer' | ||
@@ -185,0 +188,0 @@ export * from './recognizers/pdf417Recognizer' |
@@ -14,2 +14,12 @@ import { OverlaySettings } from '../overlaySettings' | ||
/** | ||
* Class for setting up BlinkId overlay. | ||
* BlinkId overlay is best suited for recognizers that perform ID document scanning. | ||
*/ | ||
export class BlinkIdOverlaySettings extends OverlaySettings { | ||
constructor() { | ||
super('BlinkIdOverlaySettings'); | ||
} | ||
} | ||
/** | ||
* Class for setting up document verification overlay. | ||
@@ -16,0 +26,0 @@ * Document verification overlay is best suited for combined recognizers - recognizer that perform scanning of both sides of ID documents. |
{ | ||
"name": "blinkid-react-native", | ||
"version": "4.9.1", | ||
"version": "4.10.0", | ||
"description": "A small and powerful ID card scanning library. Powered by Microblink (www.microblink.com).", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -21,3 +21,3 @@ # BlinkID SDK wrapper for React Native | ||
```shell | ||
react-native init --version="0.58.5" NameOfYourProject | ||
react-native init --version="0.59.10" NameOfYourProject | ||
``` | ||
@@ -67,3 +67,3 @@ | ||
target 'TargetName' do | ||
pod 'PPBlinkID', '~> 4.9.1' | ||
pod 'PPBlinkID', '~> 4.10.0' | ||
end | ||
@@ -70,0 +70,0 @@ ``` |
@@ -26,2 +26,7 @@ import { Recognizer, RecognizerResult } from '../recognizer' | ||
/** | ||
* The CNP number of Romania ID owner. | ||
*/ | ||
this.cnpNumber = nativeResult.cnpNumber; | ||
/** | ||
* The date of expiry of Romania ID. | ||
@@ -28,0 +33,0 @@ */ |
@@ -41,2 +41,7 @@ import { Recognizer, RecognizerResult } from '../recognizer' | ||
/** | ||
* Determines if date of expiry of Slovenian ID card is permanent. | ||
*/ | ||
this.dateOfExpiryPermanent = nativeResult.dateOfExpiryPermanent; | ||
/** | ||
* The date of issue of the Slovenia ID card. | ||
@@ -43,0 +48,0 @@ */ |
@@ -31,2 +31,7 @@ import { Recognizer, RecognizerResult } from '../recognizer' | ||
/** | ||
* Determines if date of expiry of Slovenian ID card is permanent. | ||
*/ | ||
this.dateOfExpiryPermanent = nativeResult.dateOfExpiryPermanent; | ||
/** | ||
* face image from the document if enabled with returnFaceImage property. | ||
@@ -33,0 +38,0 @@ */ |
16
types.js
@@ -290,2 +290,16 @@ /** | ||
} | ||
}; | ||
}; | ||
/** | ||
* Represents data extracted from the Driver's license. | ||
*/ | ||
export class DriverLicenseDetailedInfo { | ||
constructor(nativeDriverLicenseDetailedInfo) { | ||
/** Restrictions to driving privileges for the driver license owner. */ | ||
this.restrictions = nativeDriverLicenseDetailedInfo.restrictions; | ||
/** Additional privileges granted to the driver license owner. */ | ||
this.endorsements = nativeDriverLicenseDetailedInfo.endorsements; | ||
/** The type of vehicle the driver license owner has privilege to drive. */ | ||
this.vehicleClass = nativeDriverLicenseDetailedInfo.vehicleClass; | ||
} | ||
} |
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
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
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
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
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
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
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
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
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
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
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
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
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
1596155
446
14114