scandit-react-native-datacapture-id 6.20.0-beta.1 → 6.20.0-beta.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.
@@ -59,7 +59,7 @@ android {
59
59
  }
60
60
 
61
61
  dependencies {
62
- def sdk_version = "6.20.0-beta.1"
62
+ def sdk_version = "6.20.0-beta.2"
63
63
 
64
64
  println("Version of the native sdk used in this build: ${safeExtGet('global_sdk_version', sdk_version)}")
65
65
  if (findProject(':scandit-datacapture-frameworks-id') != null) {
@@ -5,6 +5,7 @@
5
5
  */
6
6
 
7
7
  import Foundation
8
+ import React
8
9
  import ScanditDataCaptureCore
9
10
  import ScanditFrameworksId
10
11
 
package/js/Enums.d.ts CHANGED
@@ -118,9 +118,9 @@ export declare enum IdLayoutLineStyle {
118
118
  Bold = "bold"
119
119
  }
120
120
  export declare enum ComparisonCheckResult {
121
- Passed = "Passed",
122
- Skipped = "Skipped",
123
- Failed = "Failed"
121
+ Passed = "passed",
122
+ Skipped = "skipped",
123
+ Failed = "failed"
124
124
  }
125
125
  export declare enum IdAnonymizationMode {
126
126
  None = "none",
package/js/Enums.js CHANGED
@@ -130,9 +130,9 @@ var IdLayoutLineStyle;
130
130
  })(IdLayoutLineStyle || (exports.IdLayoutLineStyle = IdLayoutLineStyle = {}));
131
131
  var ComparisonCheckResult;
132
132
  (function (ComparisonCheckResult) {
133
- ComparisonCheckResult["Passed"] = "Passed";
134
- ComparisonCheckResult["Skipped"] = "Skipped";
135
- ComparisonCheckResult["Failed"] = "Failed";
133
+ ComparisonCheckResult["Passed"] = "passed";
134
+ ComparisonCheckResult["Skipped"] = "skipped";
135
+ ComparisonCheckResult["Failed"] = "failed";
136
136
  })(ComparisonCheckResult || (exports.ComparisonCheckResult = ComparisonCheckResult = {}));
137
137
  var IdAnonymizationMode;
138
138
  (function (IdAnonymizationMode) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scandit-react-native-datacapture-id",
3
- "version": "6.20.0-beta.1",
3
+ "version": "6.20.0-beta.2",
4
4
  "description": "Scandit Data Capture SDK for React Native",
5
5
  "homepage": "https://github.com/Scandit/scandit-react-native-datacapture-id",
6
6
  "main": "js/index.js",
@@ -29,6 +29,6 @@
29
29
  "typescript": "^5.0.4"
30
30
  },
31
31
  "dependencies": {
32
- "scandit-react-native-datacapture-core": "6.20.0-beta.1"
32
+ "scandit-react-native-datacapture-core": "6.20.0-beta.2"
33
33
  }
34
34
  }
@@ -11,7 +11,7 @@ Pod::Spec.new do |s|
11
11
  s.authors = { package["author"]["name"] => package["author"]["email"] }
12
12
  s.platforms = { :ios => "13.0" }
13
13
  s.source = { :git => package["homepage"] + ".git", :tag => "#{s.version}" }
14
- s.swift_version = '4.0'
14
+ s.swift_version = '5.0'
15
15
  s.source_files = "ios/Sources/**/*.{h,m,swift}"
16
16
  s.requires_arc = true
17
17
  s.module_name = "ScanditDataCaptureId"
@@ -19,5 +19,5 @@ Pod::Spec.new do |s|
19
19
 
20
20
  s.dependency "React"
21
21
  s.dependency "scandit-react-native-datacapture-core"
22
- s.dependency "scandit-datacapture-frameworks-id", '= 6.20.0-beta.1'
22
+ s.dependency "scandit-datacapture-frameworks-id", '= 6.20.0-beta.2'
23
23
  end