idwise-react-native-sdk 4.7.2 → 4.7.3-alpha-01
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 -11
- package/android/gradle.properties +1 -3
- package/ios/IDWiseSDK.xcframework/Info.plist +6 -6
- 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 +576 -2085
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.private.swiftinterface +3 -26
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.swiftinterface +3 -26
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/_CodeSignature/CodeResources +15 -26
- 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-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 +576 -2085
- package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/Modules/IDWiseSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +3 -26
- package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/Modules/IDWiseSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +3 -26
- package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/_CodeSignature/CodeResources +11 -22
- package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/document_detector.mlmodelc/coremldata.bin +0 -0
- package/lib/commonjs/IDWise.js.map +1 -1
- package/lib/commonjs/IDWiseConstants.js.map +1 -1
- package/lib/commonjs/IDWiseEventListeners.js.map +1 -1
- package/lib/commonjs/index.js +1 -1
- package/lib/commonjs/index.js.map +1 -1
- package/lib/module/IDWise.js.map +1 -1
- package/lib/module/IDWiseConstants.js.map +1 -1
- package/lib/module/IDWiseEventListeners.js.map +1 -1
- package/lib/module/index.js.map +1 -1
- package/package.json +5 -10
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/Headers/IDWise.h +0 -18
- package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/Headers/IDWise.h +0 -18
|
@@ -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 JourneySummary : 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.JourneySummary.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.JourneySummary.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,29 +466,6 @@ 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
|
-
}
|
|
492
469
|
public struct AccessibilityIdentifier {
|
|
493
470
|
}
|
|
494
471
|
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 JourneySummary : 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.JourneySummary.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.JourneySummary.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,29 +466,6 @@ 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
|
-
}
|
|
492
469
|
public struct AccessibilityIdentifier {
|
|
493
470
|
}
|
|
494
471
|
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
|
+
xMAo0rUn3d6cYklLEi57kn4gKpQ=
|
|
10
10
|
</data>
|
|
11
11
|
<key>BulletCell.nib</key>
|
|
12
12
|
<data>
|
|
@@ -100,13 +100,9 @@
|
|
|
100
100
|
<data>
|
|
101
101
|
UrXQ59FqMa6AyTKJaahdjzW4Yg8=
|
|
102
102
|
</data>
|
|
103
|
-
<key>Headers/IDWise.h</key>
|
|
104
|
-
<data>
|
|
105
|
-
XOs/wRpRLqWNsGDTOQ+2vNVymN0=
|
|
106
|
-
</data>
|
|
107
103
|
<key>Info.plist</key>
|
|
108
104
|
<data>
|
|
109
|
-
|
|
105
|
+
crPHtMWbsLU6evpKCrWZhkXqLBM=
|
|
110
106
|
</data>
|
|
111
107
|
<key>JourneyIntroductionViewController.storyboardc/A5G-4b-J84-view-Avi-oP-H2l.nib/objects-13.0+.nib</key>
|
|
112
108
|
<data>
|
|
@@ -138,11 +134,11 @@
|
|
|
138
134
|
</data>
|
|
139
135
|
<key>Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.abi.json</key>
|
|
140
136
|
<data>
|
|
141
|
-
|
|
137
|
+
4um5YzBMBmuyxBYw348oJnWAqc0=
|
|
142
138
|
</data>
|
|
143
139
|
<key>Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.private.swiftinterface</key>
|
|
144
140
|
<data>
|
|
145
|
-
|
|
141
|
+
xATlGIqampUfH3RboxvTdoVDoh4=
|
|
146
142
|
</data>
|
|
147
143
|
<key>Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.swiftdoc</key>
|
|
148
144
|
<data>
|
|
@@ -150,11 +146,11 @@
|
|
|
150
146
|
</data>
|
|
151
147
|
<key>Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.swiftinterface</key>
|
|
152
148
|
<data>
|
|
153
|
-
|
|
149
|
+
xATlGIqampUfH3RboxvTdoVDoh4=
|
|
154
150
|
</data>
|
|
155
151
|
<key>Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.swiftmodule</key>
|
|
156
152
|
<data>
|
|
157
|
-
|
|
153
|
+
cg3Y1C8MHgg3Bu0W2R9OlIbo8Ls=
|
|
158
154
|
</data>
|
|
159
155
|
<key>Mulish-Bold.ttf</key>
|
|
160
156
|
<data>
|
|
@@ -246,11 +242,11 @@
|
|
|
246
242
|
</data>
|
|
247
243
|
<key>document_detector.mlmodelc/coremldata.bin</key>
|
|
248
244
|
<data>
|
|
249
|
-
|
|
245
|
+
aaXR+BpPN3sTXRWe9mXCzJb/XSU=
|
|
250
246
|
</data>
|
|
251
247
|
<key>document_detector.mlmodelc/metadata.json</key>
|
|
252
248
|
<data>
|
|
253
|
-
|
|
249
|
+
8JCCIDkijTVBZPMsFFPt8S0Upok=
|
|
254
250
|
</data>
|
|
255
251
|
<key>document_detector.mlmodelc/model0/analytics/coremldata.bin</key>
|
|
256
252
|
<data>
|
|
@@ -336,7 +332,7 @@
|
|
|
336
332
|
<dict>
|
|
337
333
|
<key>hash2</key>
|
|
338
334
|
<data>
|
|
339
|
-
|
|
335
|
+
vs6IG0WgNtjGqEoBHnO5t3U7qFxgfg4hZcZR9m2XoF4=
|
|
340
336
|
</data>
|
|
341
337
|
</dict>
|
|
342
338
|
<key>BulletCell.nib</key>
|
|
@@ -500,13 +496,6 @@
|
|
|
500
496
|
aGsas9I4ajFi+AkT2U8Z3WW5KaGPvezSkmwA/klkVos=
|
|
501
497
|
</data>
|
|
502
498
|
</dict>
|
|
503
|
-
<key>Headers/IDWise.h</key>
|
|
504
|
-
<dict>
|
|
505
|
-
<key>hash2</key>
|
|
506
|
-
<data>
|
|
507
|
-
zuiKFljNbrdA3h9D55Ab5wvs6F0ssptyR1Su+xddxBk=
|
|
508
|
-
</data>
|
|
509
|
-
</dict>
|
|
510
499
|
<key>JourneyIntroductionViewController.storyboardc/A5G-4b-J84-view-Avi-oP-H2l.nib/objects-13.0+.nib</key>
|
|
511
500
|
<dict>
|
|
512
501
|
<key>hash2</key>
|
|
@@ -560,14 +549,14 @@
|
|
|
560
549
|
<dict>
|
|
561
550
|
<key>hash2</key>
|
|
562
551
|
<data>
|
|
563
|
-
|
|
552
|
+
QDlCQBtfblELrFqgZlN3gVDdYsEL08xLXMGNCDIiaf0=
|
|
564
553
|
</data>
|
|
565
554
|
</dict>
|
|
566
555
|
<key>Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.private.swiftinterface</key>
|
|
567
556
|
<dict>
|
|
568
557
|
<key>hash2</key>
|
|
569
558
|
<data>
|
|
570
|
-
|
|
559
|
+
ljmvrZzz9msJjcKufXiZyn8rIun3fTfLc7uK08n8i44=
|
|
571
560
|
</data>
|
|
572
561
|
</dict>
|
|
573
562
|
<key>Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.swiftdoc</key>
|
|
@@ -581,14 +570,14 @@
|
|
|
581
570
|
<dict>
|
|
582
571
|
<key>hash2</key>
|
|
583
572
|
<data>
|
|
584
|
-
|
|
573
|
+
ljmvrZzz9msJjcKufXiZyn8rIun3fTfLc7uK08n8i44=
|
|
585
574
|
</data>
|
|
586
575
|
</dict>
|
|
587
576
|
<key>Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.swiftmodule</key>
|
|
588
577
|
<dict>
|
|
589
578
|
<key>hash2</key>
|
|
590
579
|
<data>
|
|
591
|
-
|
|
580
|
+
ss3qlvsDCUqGQifyPLvuoT003FWhaQzNZXRARb7QdM8=
|
|
592
581
|
</data>
|
|
593
582
|
</dict>
|
|
594
583
|
<key>Mulish-Bold.ttf</key>
|
|
@@ -749,14 +738,14 @@
|
|
|
749
738
|
<dict>
|
|
750
739
|
<key>hash2</key>
|
|
751
740
|
<data>
|
|
752
|
-
|
|
741
|
+
xQJZIUpZ6KJpXgBdnbqIWPkaEb9OmFw9J9fAdQEVe8k=
|
|
753
742
|
</data>
|
|
754
743
|
</dict>
|
|
755
744
|
<key>document_detector.mlmodelc/metadata.json</key>
|
|
756
745
|
<dict>
|
|
757
746
|
<key>hash2</key>
|
|
758
747
|
<data>
|
|
759
|
-
|
|
748
|
+
ty9T1qME6Ww4ioQJVUnOmYFflM04Cx+1l7azuzxTAzU=
|
|
760
749
|
</data>
|
|
761
750
|
</dict>
|
|
762
751
|
<key>document_detector.mlmodelc/model0/analytics/coremldata.bin</key>
|
|
Binary file
|
|
@@ -90,9 +90,9 @@
|
|
|
90
90
|
],
|
|
91
91
|
"generatedClassName" : "document_detector",
|
|
92
92
|
"userDefinedMetadata" : {
|
|
93
|
-
"iou_threshold" : "0.45",
|
|
94
93
|
"classes" : "Doc",
|
|
95
|
-
"confidence_threshold" : "0.25"
|
|
94
|
+
"confidence_threshold" : "0.25",
|
|
95
|
+
"iou_threshold" : "0.45"
|
|
96
96
|
},
|
|
97
97
|
"neuralNetworkLayerTypeHistogram" : {
|
|
98
98
|
"Concat" : 13,
|
|
Binary file
|