idwise-react-native-sdk 5.0.4 → 5.0.7
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.properties +1 -1
- package/android/src/main/java/com/idwisemobilesdk/IdwiseMobileSdkModule.kt +6 -2
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/Assets.car +0 -0
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/IDWiseSDK +0 -0
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/Info.plist +0 -0
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.abi.json +2357 -1264
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.private.swiftinterface +21 -1
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.swiftinterface +21 -1
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/_CodeSignature/CodeResources +13 -13
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/document_detector.mlmodelc/metadata.json +2 -2
- package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/Assets.car +0 -0
- package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/IDWiseSDK +0 -0
- package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/Info.plist +0 -0
- package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/Modules/IDWiseSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json +2357 -1264
- package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/Modules/IDWiseSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +21 -1
- package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/Modules/IDWiseSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +21 -1
- package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/_CodeSignature/CodeResources +13 -13
- package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/document_detector.mlmodelc/coremldata.bin +0 -0
- package/ios/IdwiseMobileSdk.swift +5 -1
- package/package.json +1 -1
|
@@ -86,7 +86,25 @@ extension IDWiseSDK.MenuWidgetView : UIKit.UITableViewDelegate, UIKit.UITableVie
|
|
|
86
86
|
@_Concurrency.MainActor(unsafe) @objc dynamic public func tableView(_ tableView: UIKit.UITableView, cellForRowAt indexPath: Foundation.IndexPath) -> UIKit.UITableViewCell
|
|
87
87
|
@_Concurrency.MainActor(unsafe) @objc dynamic public func tableView(_ tableView: UIKit.UITableView, heightForRowAt indexPath: Foundation.IndexPath) -> CoreFoundation.CGFloat
|
|
88
88
|
}
|
|
89
|
-
public struct
|
|
89
|
+
public struct IDWiseErrorCode {
|
|
90
|
+
public static let emptyParameters: Swift.String
|
|
91
|
+
public static let sdkNotInitialized: Swift.String
|
|
92
|
+
public static let wrongCredentials: Swift.String
|
|
93
|
+
public static let emptyJourneyId: Swift.String
|
|
94
|
+
public static let fileTooLarge: Swift.String
|
|
95
|
+
public static let stepNotFound: Swift.String
|
|
96
|
+
public static let wrongStepId: Swift.String
|
|
97
|
+
public static let internalServerError: Swift.String
|
|
98
|
+
public static let networkError: Swift.String
|
|
99
|
+
public static let actionNotSupported: Swift.String
|
|
100
|
+
public static let stepNotStarted: Swift.String
|
|
101
|
+
public static let journeyNotCompleted: Swift.String
|
|
102
|
+
public static let invalidFlowId: Swift.String
|
|
103
|
+
public static let noActiveJourney: Swift.String
|
|
104
|
+
public static let journeyNotStarted: Swift.String
|
|
105
|
+
public static let stepConcluded: Swift.String
|
|
106
|
+
public static let nfcScanError: Swift.String
|
|
107
|
+
public static let noJourneyToResume: Swift.String
|
|
90
108
|
}
|
|
91
109
|
public struct IDWiseError : Swift.Codable {
|
|
92
110
|
public let code: Swift.String
|
|
@@ -299,6 +317,8 @@ public struct StepCapturedInfo {
|
|
|
299
317
|
public let stepId: Swift.String
|
|
300
318
|
public let originalImage: UIKit.UIImage?
|
|
301
319
|
public let croppedImage: UIKit.UIImage?
|
|
320
|
+
public let originalImageBack: UIKit.UIImage?
|
|
321
|
+
public let croppedImageBack: UIKit.UIImage?
|
|
302
322
|
}
|
|
303
323
|
@_hasMissingDesignatedInitializers public class UIUtilities {
|
|
304
324
|
public static func addCircle(atPoint point: CoreFoundation.CGPoint, to view: UIKit.UIView, color: UIKit.UIColor, radius: CoreFoundation.CGFloat)
|
|
@@ -86,7 +86,25 @@ extension IDWiseSDK.MenuWidgetView : UIKit.UITableViewDelegate, UIKit.UITableVie
|
|
|
86
86
|
@_Concurrency.MainActor(unsafe) @objc dynamic public func tableView(_ tableView: UIKit.UITableView, cellForRowAt indexPath: Foundation.IndexPath) -> UIKit.UITableViewCell
|
|
87
87
|
@_Concurrency.MainActor(unsafe) @objc dynamic public func tableView(_ tableView: UIKit.UITableView, heightForRowAt indexPath: Foundation.IndexPath) -> CoreFoundation.CGFloat
|
|
88
88
|
}
|
|
89
|
-
public struct
|
|
89
|
+
public struct IDWiseErrorCode {
|
|
90
|
+
public static let emptyParameters: Swift.String
|
|
91
|
+
public static let sdkNotInitialized: Swift.String
|
|
92
|
+
public static let wrongCredentials: Swift.String
|
|
93
|
+
public static let emptyJourneyId: Swift.String
|
|
94
|
+
public static let fileTooLarge: Swift.String
|
|
95
|
+
public static let stepNotFound: Swift.String
|
|
96
|
+
public static let wrongStepId: Swift.String
|
|
97
|
+
public static let internalServerError: Swift.String
|
|
98
|
+
public static let networkError: Swift.String
|
|
99
|
+
public static let actionNotSupported: Swift.String
|
|
100
|
+
public static let stepNotStarted: Swift.String
|
|
101
|
+
public static let journeyNotCompleted: Swift.String
|
|
102
|
+
public static let invalidFlowId: Swift.String
|
|
103
|
+
public static let noActiveJourney: Swift.String
|
|
104
|
+
public static let journeyNotStarted: Swift.String
|
|
105
|
+
public static let stepConcluded: Swift.String
|
|
106
|
+
public static let nfcScanError: Swift.String
|
|
107
|
+
public static let noJourneyToResume: Swift.String
|
|
90
108
|
}
|
|
91
109
|
public struct IDWiseError : Swift.Codable {
|
|
92
110
|
public let code: Swift.String
|
|
@@ -299,6 +317,8 @@ public struct StepCapturedInfo {
|
|
|
299
317
|
public let stepId: Swift.String
|
|
300
318
|
public let originalImage: UIKit.UIImage?
|
|
301
319
|
public let croppedImage: UIKit.UIImage?
|
|
320
|
+
public let originalImageBack: UIKit.UIImage?
|
|
321
|
+
public let croppedImageBack: UIKit.UIImage?
|
|
302
322
|
}
|
|
303
323
|
@_hasMissingDesignatedInitializers public class UIUtilities {
|
|
304
324
|
public static func addCircle(atPoint point: CoreFoundation.CGPoint, to view: UIKit.UIView, color: UIKit.UIColor, radius: CoreFoundation.CGFloat)
|
package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/_CodeSignature/CodeResources
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<dict>
|
|
7
7
|
<key>Assets.car</key>
|
|
8
8
|
<data>
|
|
9
|
-
|
|
9
|
+
2bWMk+3s5ANTedMrlENFLAh6HQA=
|
|
10
10
|
</data>
|
|
11
11
|
<key>BulletCell.nib</key>
|
|
12
12
|
<data>
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
</data>
|
|
107
107
|
<key>Info.plist</key>
|
|
108
108
|
<data>
|
|
109
|
-
|
|
109
|
+
Y7CF45zCwPz8Mx6ioFjBb6AsyXY=
|
|
110
110
|
</data>
|
|
111
111
|
<key>JourneyIntroductionViewController.storyboardc/A5G-4b-J84-view-Avi-oP-H2l.nib/objects-13.0+.nib</key>
|
|
112
112
|
<data>
|
|
@@ -138,11 +138,11 @@
|
|
|
138
138
|
</data>
|
|
139
139
|
<key>Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.abi.json</key>
|
|
140
140
|
<data>
|
|
141
|
-
|
|
141
|
+
Cm09ZVNoVP0oyL57o3JKJ3Snr2k=
|
|
142
142
|
</data>
|
|
143
143
|
<key>Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.private.swiftinterface</key>
|
|
144
144
|
<data>
|
|
145
|
-
|
|
145
|
+
U0DsmZPY66y8UwnQRtMfM0k8yNU=
|
|
146
146
|
</data>
|
|
147
147
|
<key>Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.swiftdoc</key>
|
|
148
148
|
<data>
|
|
@@ -150,11 +150,11 @@
|
|
|
150
150
|
</data>
|
|
151
151
|
<key>Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.swiftinterface</key>
|
|
152
152
|
<data>
|
|
153
|
-
|
|
153
|
+
U0DsmZPY66y8UwnQRtMfM0k8yNU=
|
|
154
154
|
</data>
|
|
155
155
|
<key>Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.swiftmodule</key>
|
|
156
156
|
<data>
|
|
157
|
-
|
|
157
|
+
6BuZBR0S9g+SdBg9qapM7BsSRXw=
|
|
158
158
|
</data>
|
|
159
159
|
<key>Mulish-Bold.ttf</key>
|
|
160
160
|
<data>
|
|
@@ -250,7 +250,7 @@
|
|
|
250
250
|
</data>
|
|
251
251
|
<key>document_detector.mlmodelc/metadata.json</key>
|
|
252
252
|
<data>
|
|
253
|
-
|
|
253
|
+
BsMj9R+3QGkJQhV5WvgqNChPGx4=
|
|
254
254
|
</data>
|
|
255
255
|
<key>document_detector.mlmodelc/model0/analytics/coremldata.bin</key>
|
|
256
256
|
<data>
|
|
@@ -336,7 +336,7 @@
|
|
|
336
336
|
<dict>
|
|
337
337
|
<key>hash2</key>
|
|
338
338
|
<data>
|
|
339
|
-
|
|
339
|
+
sUvvPunw/D2VhdSxEXyOhJn51S6c4Co4gN4FIhxeVDk=
|
|
340
340
|
</data>
|
|
341
341
|
</dict>
|
|
342
342
|
<key>BulletCell.nib</key>
|
|
@@ -560,14 +560,14 @@
|
|
|
560
560
|
<dict>
|
|
561
561
|
<key>hash2</key>
|
|
562
562
|
<data>
|
|
563
|
-
|
|
563
|
+
1cPaQhOGgERFO3OIsd28Ttj1WU/rq19Fmnlbj59KBXY=
|
|
564
564
|
</data>
|
|
565
565
|
</dict>
|
|
566
566
|
<key>Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.private.swiftinterface</key>
|
|
567
567
|
<dict>
|
|
568
568
|
<key>hash2</key>
|
|
569
569
|
<data>
|
|
570
|
-
|
|
570
|
+
cz07gbYgNtL5M3dkmcCSZMPQKYMPX5G6WlHGt6mM4i0=
|
|
571
571
|
</data>
|
|
572
572
|
</dict>
|
|
573
573
|
<key>Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.swiftdoc</key>
|
|
@@ -581,14 +581,14 @@
|
|
|
581
581
|
<dict>
|
|
582
582
|
<key>hash2</key>
|
|
583
583
|
<data>
|
|
584
|
-
|
|
584
|
+
cz07gbYgNtL5M3dkmcCSZMPQKYMPX5G6WlHGt6mM4i0=
|
|
585
585
|
</data>
|
|
586
586
|
</dict>
|
|
587
587
|
<key>Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.swiftmodule</key>
|
|
588
588
|
<dict>
|
|
589
589
|
<key>hash2</key>
|
|
590
590
|
<data>
|
|
591
|
-
|
|
591
|
+
b4jvmkBwL15aIZnxx+WYIx6l8CUNOIgsglQg7qtKDPs=
|
|
592
592
|
</data>
|
|
593
593
|
</dict>
|
|
594
594
|
<key>Mulish-Bold.ttf</key>
|
|
@@ -756,7 +756,7 @@
|
|
|
756
756
|
<dict>
|
|
757
757
|
<key>hash2</key>
|
|
758
758
|
<data>
|
|
759
|
-
|
|
759
|
+
ttavkHwMq00AMNq8YVdvk0QgFrY/3Ct3L2XGHkZqFr8=
|
|
760
760
|
</data>
|
|
761
761
|
</dict>
|
|
762
762
|
<key>document_detector.mlmodelc/model0/analytics/coremldata.bin</key>
|
|
@@ -90,9 +90,9 @@
|
|
|
90
90
|
],
|
|
91
91
|
"generatedClassName" : "document_detector",
|
|
92
92
|
"userDefinedMetadata" : {
|
|
93
|
-
"confidence_threshold" : "0.25",
|
|
94
93
|
"iou_threshold" : "0.45",
|
|
95
|
-
"classes" : "Doc"
|
|
94
|
+
"classes" : "Doc",
|
|
95
|
+
"confidence_threshold" : "0.25"
|
|
96
96
|
},
|
|
97
97
|
"neuralNetworkLayerTypeHistogram" : {
|
|
98
98
|
"Concat" : 13,
|
|
Binary file
|
|
Binary file
|