idwise-react-native-sdk 4.7.0-alpha.2 → 4.7.1-alpha.1
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/build.gradle +2 -15
- package/android/gradle.properties +1 -1
- 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 +2039 -530
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.private.swiftinterface +26 -3
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.swiftinterface +26 -3
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/_CodeSignature/CodeResources +19 -19
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/document_detector.mlmodelc/coremldata.bin +0 -0
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/document_detector.mlmodelc/metadata.json +2 -2
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/document_detector.mlmodelc/model0/coremldata.bin +0 -0
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/document_quality_model.mlmodelc/coremldata.bin +0 -0
- 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 +2039 -530
- package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/Modules/IDWiseSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +26 -3
- package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/Modules/IDWiseSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +26 -3
- 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/package.json +1 -1
|
@@ -421,14 +421,14 @@ public struct DocumentRecognition : Swift.Codable {
|
|
|
421
421
|
public func encode(to encoder: any Swift.Encoder) throws
|
|
422
422
|
public init(from decoder: any Swift.Decoder) throws
|
|
423
423
|
}
|
|
424
|
-
public struct
|
|
424
|
+
public struct JourneySummaryInternal : Swift.Codable {
|
|
425
425
|
public let journeyId: Swift.String
|
|
426
426
|
public let isCompleted: Swift.Bool
|
|
427
|
-
public var stepSummaries: [IDWiseSDK.
|
|
427
|
+
public var stepSummaries: [IDWiseSDK.JourneySummaryInternal.StepSummary]
|
|
428
428
|
public let journeyResult: IDWiseSDK.JourneyResultDTO?
|
|
429
429
|
public let journeyDefinition: IDWiseSDK.JourneyDefinitionDTO?
|
|
430
430
|
public struct StepSummary : Swift.Codable {
|
|
431
|
-
public let definition: IDWiseSDK.
|
|
431
|
+
public let definition: IDWiseSDK.JourneySummaryInternal.StepDefinition
|
|
432
432
|
public var result: IDWiseSDK.StepResult?
|
|
433
433
|
public let recognition: IDWiseSDK.DocumentRecognition?
|
|
434
434
|
public func encode(to encoder: any Swift.Encoder) throws
|
|
@@ -466,6 +466,29 @@ public struct NFCConfigurationDTO : Swift.Codable {
|
|
|
466
466
|
public func encode(to encoder: any Swift.Encoder) throws
|
|
467
467
|
public init(from decoder: any Swift.Decoder) throws
|
|
468
468
|
}
|
|
469
|
+
public struct JourneySummary {
|
|
470
|
+
public var isCompleted: Swift.Bool
|
|
471
|
+
public var journeyId: Swift.String
|
|
472
|
+
public var stepSummaries: [IDWiseSDK.JourneySummary.StepSummary]?
|
|
473
|
+
public var journeyResult: IDWiseSDK.JourneySummary.JourneyResult?
|
|
474
|
+
public struct StepSummary {
|
|
475
|
+
}
|
|
476
|
+
public struct StepDefinition {
|
|
477
|
+
}
|
|
478
|
+
public struct JourneyResult {
|
|
479
|
+
public var completedSteps: Swift.Int?
|
|
480
|
+
public let interimRuleAssessment: IDWiseSDK.InterimRuleAssessment?
|
|
481
|
+
public var interimRuleDetails: [Swift.String : IDWiseSDK.RuleDetail]?
|
|
482
|
+
}
|
|
483
|
+
public struct StepResult {
|
|
484
|
+
public let hasPassedRules: Swift.Bool?
|
|
485
|
+
public let isConcluded: Swift.Bool?
|
|
486
|
+
public let status: Swift.String?, errorUserFeedbackCode: Swift.String?, errorUserFeedbackTitle: Swift.String?, errorUserFeedbackDetails: Swift.String?
|
|
487
|
+
public var extractedFields: [Swift.String : IDWiseSDK.FieldValue]?
|
|
488
|
+
public var nfcResult: IDWiseSDK.NFCResult?
|
|
489
|
+
public var recognition: IDWiseSDK.DocumentRecognition?
|
|
490
|
+
}
|
|
491
|
+
}
|
|
469
492
|
public struct AccessibilityIdentifier {
|
|
470
493
|
}
|
|
471
494
|
extension UIKit.UIImage {
|
|
@@ -421,14 +421,14 @@ public struct DocumentRecognition : Swift.Codable {
|
|
|
421
421
|
public func encode(to encoder: any Swift.Encoder) throws
|
|
422
422
|
public init(from decoder: any Swift.Decoder) throws
|
|
423
423
|
}
|
|
424
|
-
public struct
|
|
424
|
+
public struct JourneySummaryInternal : Swift.Codable {
|
|
425
425
|
public let journeyId: Swift.String
|
|
426
426
|
public let isCompleted: Swift.Bool
|
|
427
|
-
public var stepSummaries: [IDWiseSDK.
|
|
427
|
+
public var stepSummaries: [IDWiseSDK.JourneySummaryInternal.StepSummary]
|
|
428
428
|
public let journeyResult: IDWiseSDK.JourneyResultDTO?
|
|
429
429
|
public let journeyDefinition: IDWiseSDK.JourneyDefinitionDTO?
|
|
430
430
|
public struct StepSummary : Swift.Codable {
|
|
431
|
-
public let definition: IDWiseSDK.
|
|
431
|
+
public let definition: IDWiseSDK.JourneySummaryInternal.StepDefinition
|
|
432
432
|
public var result: IDWiseSDK.StepResult?
|
|
433
433
|
public let recognition: IDWiseSDK.DocumentRecognition?
|
|
434
434
|
public func encode(to encoder: any Swift.Encoder) throws
|
|
@@ -466,6 +466,29 @@ public struct NFCConfigurationDTO : Swift.Codable {
|
|
|
466
466
|
public func encode(to encoder: any Swift.Encoder) throws
|
|
467
467
|
public init(from decoder: any Swift.Decoder) throws
|
|
468
468
|
}
|
|
469
|
+
public struct JourneySummary {
|
|
470
|
+
public var isCompleted: Swift.Bool
|
|
471
|
+
public var journeyId: Swift.String
|
|
472
|
+
public var stepSummaries: [IDWiseSDK.JourneySummary.StepSummary]?
|
|
473
|
+
public var journeyResult: IDWiseSDK.JourneySummary.JourneyResult?
|
|
474
|
+
public struct StepSummary {
|
|
475
|
+
}
|
|
476
|
+
public struct StepDefinition {
|
|
477
|
+
}
|
|
478
|
+
public struct JourneyResult {
|
|
479
|
+
public var completedSteps: Swift.Int?
|
|
480
|
+
public let interimRuleAssessment: IDWiseSDK.InterimRuleAssessment?
|
|
481
|
+
public var interimRuleDetails: [Swift.String : IDWiseSDK.RuleDetail]?
|
|
482
|
+
}
|
|
483
|
+
public struct StepResult {
|
|
484
|
+
public let hasPassedRules: Swift.Bool?
|
|
485
|
+
public let isConcluded: Swift.Bool?
|
|
486
|
+
public let status: Swift.String?, errorUserFeedbackCode: Swift.String?, errorUserFeedbackTitle: Swift.String?, errorUserFeedbackDetails: Swift.String?
|
|
487
|
+
public var extractedFields: [Swift.String : IDWiseSDK.FieldValue]?
|
|
488
|
+
public var nfcResult: IDWiseSDK.NFCResult?
|
|
489
|
+
public var recognition: IDWiseSDK.DocumentRecognition?
|
|
490
|
+
}
|
|
491
|
+
}
|
|
469
492
|
public struct AccessibilityIdentifier {
|
|
470
493
|
}
|
|
471
494
|
extension UIKit.UIImage {
|
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
|
+
S9M2l2psSwRNJ0aCEi/KXkTceYY=
|
|
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
|
+
NOK2vJetG3Ss+AbmmP4v2qWMTWU=
|
|
142
142
|
</data>
|
|
143
143
|
<key>Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.private.swiftinterface</key>
|
|
144
144
|
<data>
|
|
145
|
-
|
|
145
|
+
/VFwGlJ8HhyyRzhO2vpABwMYkRw=
|
|
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
|
+
/VFwGlJ8HhyyRzhO2vpABwMYkRw=
|
|
154
154
|
</data>
|
|
155
155
|
<key>Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.swiftmodule</key>
|
|
156
156
|
<data>
|
|
157
|
-
|
|
157
|
+
fmu4pRoq5Q+luar3cYCq+TPtErs=
|
|
158
158
|
</data>
|
|
159
159
|
<key>Mulish-Bold.ttf</key>
|
|
160
160
|
<data>
|
|
@@ -246,11 +246,11 @@
|
|
|
246
246
|
</data>
|
|
247
247
|
<key>document_detector.mlmodelc/coremldata.bin</key>
|
|
248
248
|
<data>
|
|
249
|
-
|
|
249
|
+
x3g53PPMGiV+lKaSqDvTgz742wg=
|
|
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>
|
|
@@ -258,7 +258,7 @@
|
|
|
258
258
|
</data>
|
|
259
259
|
<key>document_detector.mlmodelc/model0/coremldata.bin</key>
|
|
260
260
|
<data>
|
|
261
|
-
|
|
261
|
+
ABNV0PCZmD0Me9P64JCCuqQeyZA=
|
|
262
262
|
</data>
|
|
263
263
|
<key>document_detector.mlmodelc/model0/model.espresso.net</key>
|
|
264
264
|
<data>
|
|
@@ -290,7 +290,7 @@
|
|
|
290
290
|
</data>
|
|
291
291
|
<key>document_quality_model.mlmodelc/coremldata.bin</key>
|
|
292
292
|
<data>
|
|
293
|
-
|
|
293
|
+
ZjbzWh+y47NvlZYKO/0EZB7+T4I=
|
|
294
294
|
</data>
|
|
295
295
|
<key>document_quality_model.mlmodelc/metadata.json</key>
|
|
296
296
|
<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
|
+
UYB0NWkm6HWEkMKMyxar7L0PqWuDRMcpd5mhezTwA+I=
|
|
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
|
+
61KWBcztA84GrTzou/u58EasZzqvR0KLzRW04VNNLJs=
|
|
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
|
+
61KWBcztA84GrTzou/u58EasZzqvR0KLzRW04VNNLJs=
|
|
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
|
+
rCIfSg34Rnt0BCqGdCZ6s/s8nwogLX5M+NBOZdvmsig=
|
|
592
592
|
</data>
|
|
593
593
|
</dict>
|
|
594
594
|
<key>Mulish-Bold.ttf</key>
|
|
@@ -749,14 +749,14 @@
|
|
|
749
749
|
<dict>
|
|
750
750
|
<key>hash2</key>
|
|
751
751
|
<data>
|
|
752
|
-
|
|
752
|
+
55dJ0iU5Us0bBh1Ge1AzosaBJLWiPDIkB+UNHveoD08=
|
|
753
753
|
</data>
|
|
754
754
|
</dict>
|
|
755
755
|
<key>document_detector.mlmodelc/metadata.json</key>
|
|
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>
|
|
@@ -770,7 +770,7 @@
|
|
|
770
770
|
<dict>
|
|
771
771
|
<key>hash2</key>
|
|
772
772
|
<data>
|
|
773
|
-
|
|
773
|
+
GkhvG+cIZydp4WKoPZ+jd0bUwj5/zQ7U4A9Dt44QwWg=
|
|
774
774
|
</data>
|
|
775
775
|
</dict>
|
|
776
776
|
<key>document_detector.mlmodelc/model0/model.espresso.net</key>
|
|
@@ -826,7 +826,7 @@
|
|
|
826
826
|
<dict>
|
|
827
827
|
<key>hash2</key>
|
|
828
828
|
<data>
|
|
829
|
-
|
|
829
|
+
rNfbU7X0gd1NnS02j//HfX5yQbjf9Yzamw7ED5reWP4=
|
|
830
830
|
</data>
|
|
831
831
|
</dict>
|
|
832
832
|
<key>document_quality_model.mlmodelc/metadata.json</key>
|
|
Binary file
|
|
@@ -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
|
|
Binary file
|
|
Binary file
|