idwise-react-native-sdk 4.7.0 → 4.7.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.
Files changed (24) hide show
  1. package/android/build.gradle +10 -1
  2. package/android/gradle.properties +2 -0
  3. package/ios/IDWiseSDK.xcframework/Info.plist +6 -6
  4. package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/Assets.car +0 -0
  5. package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/Headers/IDWise.h +18 -0
  6. package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/IDWiseSDK +0 -0
  7. package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/Info.plist +0 -0
  8. package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.abi.json +2039 -530
  9. package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.private.swiftinterface +26 -3
  10. package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.swiftinterface +26 -3
  11. package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/_CodeSignature/CodeResources +26 -15
  12. package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/document_detector.mlmodelc/coremldata.bin +0 -0
  13. package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/document_detector.mlmodelc/metadata.json +2 -2
  14. package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/Headers/IDWise.h +18 -0
  15. package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/IDWiseSDK +0 -0
  16. package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/Info.plist +0 -0
  17. package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/Modules/IDWiseSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json +2039 -530
  18. package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/Modules/IDWiseSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +26 -3
  19. package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/Modules/IDWiseSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +26 -3
  20. package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/_CodeSignature/CodeResources +22 -11
  21. package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/document_detector.mlmodelc/coremldata.bin +0 -0
  22. package/package.json +7 -2
  23. package/android/frontend-sdk-ui-testing/bitbucket-pipelines.yml +0 -37
  24. package/android/frontend-sdk-ui-testing/version.txt +0 -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 JourneySummary : Swift.Codable {
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.JourneySummary.StepSummary]
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.JourneySummary.StepDefinition
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 JourneySummary : Swift.Codable {
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.JourneySummary.StepSummary]
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.JourneySummary.StepDefinition
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 {
@@ -6,7 +6,7 @@
6
6
  <dict>
7
7
  <key>Assets.car</key>
8
8
  <data>
9
- xMAo0rUn3d6cYklLEi57kn4gKpQ=
9
+ 2bWMk+3s5ANTedMrlENFLAh6HQA=
10
10
  </data>
11
11
  <key>BulletCell.nib</key>
12
12
  <data>
@@ -100,9 +100,13 @@
100
100
  <data>
101
101
  UrXQ59FqMa6AyTKJaahdjzW4Yg8=
102
102
  </data>
103
+ <key>Headers/IDWise.h</key>
104
+ <data>
105
+ XOs/wRpRLqWNsGDTOQ+2vNVymN0=
106
+ </data>
103
107
  <key>Info.plist</key>
104
108
  <data>
105
- crPHtMWbsLU6evpKCrWZhkXqLBM=
109
+ S9M2l2psSwRNJ0aCEi/KXkTceYY=
106
110
  </data>
107
111
  <key>JourneyIntroductionViewController.storyboardc/A5G-4b-J84-view-Avi-oP-H2l.nib/objects-13.0+.nib</key>
108
112
  <data>
@@ -134,11 +138,11 @@
134
138
  </data>
135
139
  <key>Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.abi.json</key>
136
140
  <data>
137
- 4um5YzBMBmuyxBYw348oJnWAqc0=
141
+ NOK2vJetG3Ss+AbmmP4v2qWMTWU=
138
142
  </data>
139
143
  <key>Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.private.swiftinterface</key>
140
144
  <data>
141
- xATlGIqampUfH3RboxvTdoVDoh4=
145
+ /VFwGlJ8HhyyRzhO2vpABwMYkRw=
142
146
  </data>
143
147
  <key>Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.swiftdoc</key>
144
148
  <data>
@@ -146,11 +150,11 @@
146
150
  </data>
147
151
  <key>Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.swiftinterface</key>
148
152
  <data>
149
- xATlGIqampUfH3RboxvTdoVDoh4=
153
+ /VFwGlJ8HhyyRzhO2vpABwMYkRw=
150
154
  </data>
151
155
  <key>Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.swiftmodule</key>
152
156
  <data>
153
- cg3Y1C8MHgg3Bu0W2R9OlIbo8Ls=
157
+ fmu4pRoq5Q+luar3cYCq+TPtErs=
154
158
  </data>
155
159
  <key>Mulish-Bold.ttf</key>
156
160
  <data>
@@ -242,11 +246,11 @@
242
246
  </data>
243
247
  <key>document_detector.mlmodelc/coremldata.bin</key>
244
248
  <data>
245
- aaXR+BpPN3sTXRWe9mXCzJb/XSU=
249
+ x3g53PPMGiV+lKaSqDvTgz742wg=
246
250
  </data>
247
251
  <key>document_detector.mlmodelc/metadata.json</key>
248
252
  <data>
249
- 8JCCIDkijTVBZPMsFFPt8S0Upok=
253
+ BsMj9R+3QGkJQhV5WvgqNChPGx4=
250
254
  </data>
251
255
  <key>document_detector.mlmodelc/model0/analytics/coremldata.bin</key>
252
256
  <data>
@@ -332,7 +336,7 @@
332
336
  <dict>
333
337
  <key>hash2</key>
334
338
  <data>
335
- vs6IG0WgNtjGqEoBHnO5t3U7qFxgfg4hZcZR9m2XoF4=
339
+ sUvvPunw/D2VhdSxEXyOhJn51S6c4Co4gN4FIhxeVDk=
336
340
  </data>
337
341
  </dict>
338
342
  <key>BulletCell.nib</key>
@@ -496,6 +500,13 @@
496
500
  aGsas9I4ajFi+AkT2U8Z3WW5KaGPvezSkmwA/klkVos=
497
501
  </data>
498
502
  </dict>
503
+ <key>Headers/IDWise.h</key>
504
+ <dict>
505
+ <key>hash2</key>
506
+ <data>
507
+ zuiKFljNbrdA3h9D55Ab5wvs6F0ssptyR1Su+xddxBk=
508
+ </data>
509
+ </dict>
499
510
  <key>JourneyIntroductionViewController.storyboardc/A5G-4b-J84-view-Avi-oP-H2l.nib/objects-13.0+.nib</key>
500
511
  <dict>
501
512
  <key>hash2</key>
@@ -549,14 +560,14 @@
549
560
  <dict>
550
561
  <key>hash2</key>
551
562
  <data>
552
- QDlCQBtfblELrFqgZlN3gVDdYsEL08xLXMGNCDIiaf0=
563
+ UYB0NWkm6HWEkMKMyxar7L0PqWuDRMcpd5mhezTwA+I=
553
564
  </data>
554
565
  </dict>
555
566
  <key>Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.private.swiftinterface</key>
556
567
  <dict>
557
568
  <key>hash2</key>
558
569
  <data>
559
- ljmvrZzz9msJjcKufXiZyn8rIun3fTfLc7uK08n8i44=
570
+ 61KWBcztA84GrTzou/u58EasZzqvR0KLzRW04VNNLJs=
560
571
  </data>
561
572
  </dict>
562
573
  <key>Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.swiftdoc</key>
@@ -570,14 +581,14 @@
570
581
  <dict>
571
582
  <key>hash2</key>
572
583
  <data>
573
- ljmvrZzz9msJjcKufXiZyn8rIun3fTfLc7uK08n8i44=
584
+ 61KWBcztA84GrTzou/u58EasZzqvR0KLzRW04VNNLJs=
574
585
  </data>
575
586
  </dict>
576
587
  <key>Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.swiftmodule</key>
577
588
  <dict>
578
589
  <key>hash2</key>
579
590
  <data>
580
- ss3qlvsDCUqGQifyPLvuoT003FWhaQzNZXRARb7QdM8=
591
+ rCIfSg34Rnt0BCqGdCZ6s/s8nwogLX5M+NBOZdvmsig=
581
592
  </data>
582
593
  </dict>
583
594
  <key>Mulish-Bold.ttf</key>
@@ -738,14 +749,14 @@
738
749
  <dict>
739
750
  <key>hash2</key>
740
751
  <data>
741
- xQJZIUpZ6KJpXgBdnbqIWPkaEb9OmFw9J9fAdQEVe8k=
752
+ 55dJ0iU5Us0bBh1Ge1AzosaBJLWiPDIkB+UNHveoD08=
742
753
  </data>
743
754
  </dict>
744
755
  <key>document_detector.mlmodelc/metadata.json</key>
745
756
  <dict>
746
757
  <key>hash2</key>
747
758
  <data>
748
- ty9T1qME6Ww4ioQJVUnOmYFflM04Cx+1l7azuzxTAzU=
759
+ ttavkHwMq00AMNq8YVdvk0QgFrY/3Ct3L2XGHkZqFr8=
749
760
  </data>
750
761
  </dict>
751
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
+ "iou_threshold" : "0.45",
93
94
  "classes" : "Doc",
94
- "confidence_threshold" : "0.25",
95
- "iou_threshold" : "0.45"
95
+ "confidence_threshold" : "0.25"
96
96
  },
97
97
  "neuralNetworkLayerTypeHistogram" : {
98
98
  "Concat" : 13,
@@ -0,0 +1,18 @@
1
+ //
2
+ // IDWise_ios_sdk.h
3
+ // IDWise_ios_sdk
4
+ //
5
+ // Created by Hussein Alshlash on 10.04.2021.
6
+ //
7
+
8
+ #import <Foundation/Foundation.h>
9
+
10
+ //! Project version number for IDWise_ios_sdk.
11
+ FOUNDATION_EXPORT double IDWiseVersionNumber;
12
+
13
+ //! Project version string for IDWise_ios_sdk.
14
+ FOUNDATION_EXPORT const unsigned char IDWiseVersionString[];
15
+
16
+ // In this header, you should import all the public headers of your framework using statements like #import <IDWise_ios_sdk/PublicHeader.h>
17
+
18
+