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

blinkid-react-native

Package Overview
Dependencies
Maintainers
9
Versions
62
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

blinkid-react-native - npm Package Compare versions

Comparing version 4.9.1 to 4.10.0

react-native.config.js

3

index.js

@@ -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.

2

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

@@ -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

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