@regulaforensics/ionic-native-document-reader 9.4.456-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/example/package.json +3 -3
- package/example/src/app/home/home.page.ts +2 -2
- package/index.d.ts +4 -4
- package/index.js +1 -1
- package/ngx/index.d.ts +4 -4
- package/ngx/index.js +1 -1
- package/package.json +1 -1
- package/reactExample/package.json +3 -3
- package/reactExample/src/pages/Home.tsx +2 -2
package/example/package.json
CHANGED
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
},
|
|
14
14
|
"private": true,
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@regulaforensics/ionic-native-document-reader": "9.4.
|
|
17
|
-
"@regulaforensics/cordova-plugin-document-reader-api": "9.
|
|
18
|
-
"@regulaforensics/cordova-plugin-document-reader-core-fullauthrfid": "9.
|
|
16
|
+
"@regulaforensics/ionic-native-document-reader": "9.4.457-nightly",
|
|
17
|
+
"@regulaforensics/cordova-plugin-document-reader-api": "9.4.485-nightly",
|
|
18
|
+
"@regulaforensics/cordova-plugin-document-reader-core-fullauthrfid": "9.4.2240-nightly",
|
|
19
19
|
"cordova-plugin-camera": "7.0.0",
|
|
20
20
|
"@awesome-cordova-plugins/camera": "6.6.0",
|
|
21
21
|
"@awesome-cordova-plugins/core": "6.6.0",
|
|
@@ -157,12 +157,12 @@ export class HomePage {
|
|
|
157
157
|
|
|
158
158
|
function customRFID() {
|
|
159
159
|
showRfidUI()
|
|
160
|
-
DocumentReader.readRFID(
|
|
160
|
+
DocumentReader.readRFID(null).subscribe((m: string) => handleRfidCompletion(m))
|
|
161
161
|
}
|
|
162
162
|
|
|
163
163
|
function usualRFID() {
|
|
164
164
|
isReadingRfid = true
|
|
165
|
-
DocumentReader.startRFIDReader(
|
|
165
|
+
DocumentReader.startRFIDReader(null).subscribe((m: string) => handleRfidCompletion(m))
|
|
166
166
|
}
|
|
167
167
|
|
|
168
168
|
function handleRfidCompletion(raw: string) {
|
package/index.d.ts
CHANGED
|
@@ -6504,17 +6504,17 @@ export declare class DocumentReaderOriginal extends AwesomeCordovaNativePlugin {
|
|
|
6504
6504
|
/**
|
|
6505
6505
|
* Use the method below to open the RFID chip reading controller and start its processing
|
|
6506
6506
|
*
|
|
6507
|
-
* @param {RFIDConfig} config
|
|
6507
|
+
* @param {RFIDConfig | null} config
|
|
6508
6508
|
* @return {Promise<any>} Returns a promise
|
|
6509
6509
|
*/
|
|
6510
|
-
startRFIDReader(config: RFIDConfig): Observable<any>;
|
|
6510
|
+
startRFIDReader(config: RFIDConfig | null): Observable<any>;
|
|
6511
6511
|
/**
|
|
6512
6512
|
* Use this method to start RFID chip processing
|
|
6513
6513
|
*
|
|
6514
|
-
* @param {RFIDConfig} config
|
|
6514
|
+
* @param {RFIDConfig | null} config
|
|
6515
6515
|
* @return {Promise<any>} Returns a promise
|
|
6516
6516
|
*/
|
|
6517
|
-
readRFID(config: RFIDConfig): Observable<any>;
|
|
6517
|
+
readRFID(config: RFIDConfig | null): Observable<any>;
|
|
6518
6518
|
/**
|
|
6519
6519
|
* Use the method below to close the RFID chip reading controller and end its processing
|
|
6520
6520
|
*
|