@regulaforensics/ionic-native-document-reader 9.4.455-beta → 9.4.457-nightly

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@regulaforensics/ionic-native-document-reader",
3
- "version": "9.4.455-beta",
3
+ "version": "9.4.457-nightly",
4
4
  "description": "Ionic Native wrapper for cordova documentreader",
5
5
  "main": "index.js",
6
6
  "keywords": [
@@ -12,9 +12,9 @@
12
12
  "lint": "eslint"
13
13
  },
14
14
  "dependencies": {
15
- "@regulaforensics/ionic-native-document-reader": "9.4.455-beta",
16
- "@regulaforensics/cordova-plugin-document-reader-api": "9.3.467",
17
- "@regulaforensics/cordova-plugin-document-reader-core-fullauthrfid": "9.3.2165",
15
+ "@regulaforensics/ionic-native-document-reader": "9.4.457-nightly",
16
+ "@regulaforensics/cordova-plugin-document-reader-api": "9.4.485-nightly",
17
+ "@regulaforensics/cordova-plugin-document-reader-core-fullauthrfid": "9.4.2240-nightly",
18
18
  "@awesome-cordova-plugins/camera": "6.6.0",
19
19
  "@awesome-cordova-plugins/file": "6.6.0",
20
20
  "@capacitor/android": "5.6.0",
@@ -146,12 +146,12 @@ function updateRfidUI(notification: DocumentReaderNotification) {
146
146
 
147
147
  function customRFID() {
148
148
  showRfidUI()
149
- DocumentReader.readRFID(false, false, false).subscribe((m: string) => handleRfidCompletion(m))
149
+ DocumentReader.readRFID(null).subscribe((m: string) => handleRfidCompletion(m))
150
150
  }
151
151
 
152
152
  function usualRFID() {
153
153
  isReadingRfid = true
154
- DocumentReader.startRFIDReader(false, false, false).subscribe((m: string) => handleRfidCompletion(m))
154
+ DocumentReader.startRFIDReader(null).subscribe((m: string) => handleRfidCompletion(m))
155
155
  }
156
156
 
157
157
  function handleRfidCompletion(raw: string) {