scandit-react-native-datacapture-id 8.1.0 → 8.1.2

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.
@@ -75,7 +75,7 @@ if (file( "${rootProject.projectDir}/build-test.gradle").exists()) {
75
75
  }
76
76
 
77
77
  dependencies {
78
- def sdk_version = "8.1.0"
78
+ def sdk_version = "8.1.2"
79
79
 
80
80
  println("Version of the native sdk used in this build: ${safeExtGet("global_sdk_version", sdk_version)}")
81
81
  api project(path: ":scandit-react-native-datacapture-core")
package/dist/id.js CHANGED
@@ -1823,10 +1823,16 @@ class IdCaptureController extends BaseController {
1823
1823
  return this._proxy.$updateIdCaptureMode({ modeJson: JSON.stringify(this.idCapture.toJSON()), modeId: this.modeId });
1824
1824
  }
1825
1825
  applyIdCaptureModeSettings(newSettings) {
1826
- return this._proxy.$applyIdCaptureModeSettings({ settingsJson: JSON.stringify(newSettings.toJSON()), modeId: this.modeId });
1826
+ return this._proxy.$applyIdCaptureModeSettings({
1827
+ settingsJson: JSON.stringify(newSettings.toJSON()),
1828
+ modeId: this.modeId,
1829
+ });
1827
1830
  }
1828
1831
  updateFeedback(feedback) {
1829
- return this._proxy.$updateFeedback({ feedbackJson: JSON.stringify(feedback.toJSON()), modeId: this.modeId });
1832
+ return this._proxy.$updateIdCaptureFeedback({
1833
+ feedbackJson: JSON.stringify(feedback.toJSON()),
1834
+ modeId: this.modeId,
1835
+ });
1830
1836
  }
1831
1837
  get modeId() {
1832
1838
  return this.idCapture.modeId;