@regulaforensics/document-reader 9.4.745-rc → 9.4.748-rc
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/RNDocumentReader.podspec +1 -1
- package/android/build.gradle +1 -1
- package/android/cordova.gradle +1 -1
- package/android/src/main/java/com/regula/plugin/documentreader/JSONConstructor.kt +36 -0
- package/android/src/main/java/com/regula/plugin/documentreader/Main.kt +46 -43
- package/examples/capacitor/package-lock.json +21 -21
- package/examples/capacitor/package.json +3 -3
- package/examples/ionic/package-lock.json +464 -421
- package/examples/ionic/package.json +8 -4
- package/examples/react_native/package-lock.json +790 -1341
- package/examples/react_native/package.json +7 -3
- package/ios/RGLWJSONConstructor.h +4 -0
- package/ios/RGLWJSONConstructor.m +93 -47
- package/ios/RGLWMain.h +2 -4
- package/ios/RGLWMain.m +49 -13
- package/ios/RNDocumentReader.m +2 -0
- package/package.json +1 -1
- package/plugin.xml +1 -1
- package/test/json.tsx +11 -0
- package/test/package-lock.json +1 -1
- package/test/test.tsx +4 -2
- package/www/capacitor/config/RFIDConfig.js +14 -0
- package/www/capacitor/index.js +9 -7
- package/www/capacitor/internal/bridge.js +19 -1
- package/www/capacitor/results/rfid/RFIDDataFileType.js +8 -0
- package/www/capacitor/results/visible_digital_seals/LDSParsingNotificationCodes.js +2 -0
- package/www/capacitor/results/visual_results/FieldType.js +1 -0
- package/www/capacitor/rfid/CAProtocol.js +27 -0
- package/www/capacitor/rfid/PACEProtocol.js +24 -0
- package/www/cordova.js +163 -29
- package/www/react-native/config/RFIDConfig.js +14 -0
- package/www/react-native/index.js +9 -7
- package/www/react-native/internal/bridge.js +19 -1
- package/www/react-native/results/rfid/RFIDDataFileType.js +8 -0
- package/www/react-native/results/visible_digital_seals/LDSParsingNotificationCodes.js +2 -0
- package/www/react-native/results/visual_results/FieldType.js +1 -0
- package/www/react-native/rfid/CAProtocol.js +27 -0
- package/www/react-native/rfid/PACEProtocol.js +24 -0
- package/www/types/config/RFIDConfig.d.ts +35 -3
- package/www/types/index.d.ts +3 -1
- package/www/types/results/rfid/RFIDDataFileType.d.ts +7 -0
- package/www/types/results/visible_digital_seals/LDSParsingNotificationCodes.d.ts +2 -0
- package/www/types/results/visual_results/FieldType.d.ts +1 -0
- package/www/types/rfid/CAProtocol.d.ts +6 -0
- package/www/types/rfid/PACEProtocol.d.ts +5 -0
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"@ionic/cordova-builders": "^12.3.0",
|
|
19
19
|
"@awesome-cordova-plugins/camera": "^8.1.0",
|
|
20
20
|
"@awesome-cordova-plugins/file": "^8.1.0",
|
|
21
|
-
"@regulaforensics/document-reader": "9.4.
|
|
22
|
-
"@regulaforensics/document-reader-core-fullauthrfid": "9.
|
|
23
|
-
"@regulaforensics/document-reader-btdevice": "9.1.
|
|
21
|
+
"@regulaforensics/document-reader": "9.4.748-rc",
|
|
22
|
+
"@regulaforensics/document-reader-core-fullauthrfid": "9.4.2006-rc",
|
|
23
|
+
"@regulaforensics/document-reader-btdevice": "9.1.33-rc",
|
|
24
24
|
"cordova-android": "^14.0.1",
|
|
25
25
|
"cordova-ios": "^7.1.1",
|
|
26
26
|
"cordova-plugin-camera": "^8.0.0",
|
|
@@ -31,7 +31,11 @@
|
|
|
31
31
|
"ajv": "^8.18.0",
|
|
32
32
|
"serialize-javascript": "^7.0.4",
|
|
33
33
|
"@angular/compiler": "^21.2.4",
|
|
34
|
-
"undici": "^7.24.0"
|
|
34
|
+
"undici": "^7.24.0",
|
|
35
|
+
"picomatch": "^4.0.4",
|
|
36
|
+
"postcss": "^8.5.10",
|
|
37
|
+
"uuid": "^14.0.0",
|
|
38
|
+
"vite": "^7.3.2"
|
|
35
39
|
},
|
|
36
40
|
"cordova": {
|
|
37
41
|
"plugins": {
|