react-native-scanbot-barcode-scanner-sdk 3.2.0-beta1 → 3.2.0-beta2
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/android/.gradle/{7.1.1 → 6.2}/fileChanges/last-build.bin +0 -0
- package/android/.gradle/6.2/fileHashes/fileHashes.lock +0 -0
- package/android/.gradle/{7.1.1/dependencies-accessors → 6.2}/gc.properties +0 -0
- package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/android/.gradle/buildOutputCleanup/cache.properties +2 -2
- package/android/.gradle/checksums/checksums.lock +0 -0
- package/android/.gradle/checksums/md5-checksums.bin +0 -0
- package/android/.gradle/checksums/sha1-checksums.bin +0 -0
- package/ios/.DS_Store +0 -0
- package/ios/ScanbotBarcodeSdk.xcodeproj/xcuserdata/mayankpatil.xcuserdatad/xcschemes/xcschememanagement.plist +14 -0
- package/ios/ScanbotBarcodeSdk.xcworkspace/xcuserdata/mayankpatil.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/ios/Utils/BarcodeMapping.h +2 -1
- package/package.json +1 -1
- package/src/enum.ts +3 -2
- package/android/.gradle/7.1.1/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/android/.gradle/7.1.1/fileHashes/fileHashes.lock +0 -0
- package/android/.gradle/7.1.1/gc.properties +0 -0
- package/android/.gradle/configuration-cache/gc.properties +0 -0
- package/android/local.properties +0 -8
|
File without changes
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
#Mon
|
|
2
|
-
gradle.version=
|
|
1
|
+
#Mon May 23 15:11:17 CEST 2022
|
|
2
|
+
gradle.version=6.2
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/ios/.DS_Store
ADDED
|
Binary file
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
+
<plist version="1.0">
|
|
4
|
+
<dict>
|
|
5
|
+
<key>SchemeUserState</key>
|
|
6
|
+
<dict>
|
|
7
|
+
<key>ScanbotBarcodeSdk.xcscheme_^#shared#^_</key>
|
|
8
|
+
<dict>
|
|
9
|
+
<key>orderHint</key>
|
|
10
|
+
<integer>0</integer>
|
|
11
|
+
</dict>
|
|
12
|
+
</dict>
|
|
13
|
+
</dict>
|
|
14
|
+
</plist>
|
|
Binary file
|
|
@@ -32,11 +32,12 @@ static inline SBSDKBarcodeDocumentType* barcodeDocumentTypeFromString(NSString*
|
|
|
32
32
|
if ([string isEqualToString:@"AAMVA"]) return SBSDKBarcodeDocumentTypeAAMVA;
|
|
33
33
|
if ([string isEqualToString:@"ID_CARD_PDF_417"]) return SBSDKBarcodeDocumentTypeIDCardPDF417;
|
|
34
34
|
if ([string isEqualToString:@"SEPA"]) return SBSDKBarcodeDocumentTypeSEPA;
|
|
35
|
-
if ([string isEqualToString:@"
|
|
35
|
+
if ([string isEqualToString:@"MEDICAL_CERTIFICATE"]) return SBSDKBarcodeDocumentTypeMedicalCertificate;
|
|
36
36
|
if ([string isEqualToString:@"BOARDING_PASS"]) return SBSDKBarcodeDocumentTypeBoardingPass;
|
|
37
37
|
if ([string isEqualToString:@"DE_MEDICAL_PLAN"]) return SBSDKBarcodeDocumentTypeMedicalPlan;
|
|
38
38
|
if ([string isEqualToString:@"VCARD"]) return SBSDKBarcodeDocumentTypeVCard;
|
|
39
39
|
if ([string isEqualToString:@"SWISS_QR"]) return SBSDKBarcodeDocumentTypeSwissQR;
|
|
40
|
+
if ([string isEqualToString:@"GS1"]) return SBSDKBarcodeDocumentTyeGS1;
|
|
40
41
|
return nil;
|
|
41
42
|
}
|
|
42
43
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-scanbot-barcode-scanner-sdk",
|
|
3
3
|
"title": "Scanbot Barcode Scanner SDK for React Native",
|
|
4
|
-
"version": "3.2.0-
|
|
4
|
+
"version": "3.2.0-beta2",
|
|
5
5
|
"description": "React Native plugin for the Scanbot Barcode Scanner SDK on Android and iOS",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"files": [
|
package/src/enum.ts
CHANGED
|
@@ -38,11 +38,12 @@ export type BarcodeDocumentFormat =
|
|
|
38
38
|
"AAMVA" |
|
|
39
39
|
"BOARDING_PASS" |
|
|
40
40
|
"DE_MEDICAL_PLAN" |
|
|
41
|
-
"
|
|
41
|
+
"MEDICAL_CERTIFICATE" |
|
|
42
42
|
"ID_CARD_PDF_417" |
|
|
43
43
|
"SEPA" |
|
|
44
44
|
"SWISS_QR" |
|
|
45
|
-
"VCARD"
|
|
45
|
+
"VCARD" |
|
|
46
|
+
"GS1" ;
|
|
46
47
|
|
|
47
48
|
export type BarcodeFormat =
|
|
48
49
|
"AZTEC" |
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
package/android/local.properties
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
## This file must *NOT* be checked into Version Control Systems,
|
|
2
|
-
# as it contains information specific to your local configuration.
|
|
3
|
-
#
|
|
4
|
-
# Location of the SDK. This is only used by Gradle.
|
|
5
|
-
# For customization when using a Version Control System, please read the
|
|
6
|
-
# header note.
|
|
7
|
-
#Tue Jan 18 13:44:25 CET 2022
|
|
8
|
-
sdk.dir=/Users/rutkaybiyik/Library/Android/sdk
|