idwise-nfc-react-native-sdk 5.0.3 → 5.0.9-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.
Files changed (20) hide show
  1. package/android/gradle.properties +1 -1
  2. package/idwise-react-native-sdk.podspec +2 -2
  3. package/ios/IDWiseNFC.framework/Assets.car +0 -0
  4. package/ios/IDWiseNFC.framework/IDWiseNFC +0 -0
  5. package/ios/IDWiseNFC.framework/Info.plist +0 -0
  6. package/ios/IDWiseNFC.framework/Modules/IDWiseNFC.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo +0 -0
  7. package/ios/IDWiseNFC.framework/Modules/IDWiseNFC.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo +0 -0
  8. package/ios/IDWiseNFC.framework/Modules/IDWiseNFC.swiftmodule/arm64-apple-ios.abi.json +3305 -1848
  9. package/ios/IDWiseNFC.framework/Modules/IDWiseNFC.swiftmodule/arm64-apple-ios.private.swiftinterface +24 -1
  10. package/ios/IDWiseNFC.framework/Modules/IDWiseNFC.swiftmodule/arm64-apple-ios.swiftinterface +24 -1
  11. package/ios/IDWiseNFC.framework/Modules/IDWiseNFC.swiftmodule/arm64-apple-ios.swiftmodule +0 -0
  12. package/ios/IDWiseNFC.framework/Modules/IDWiseNFC.swiftmodule/x86_64-apple-ios-simulator.abi.json +3305 -1848
  13. package/ios/IDWiseNFC.framework/Modules/IDWiseNFC.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +24 -1
  14. package/ios/IDWiseNFC.framework/Modules/IDWiseNFC.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +24 -1
  15. package/ios/IDWiseNFC.framework/Modules/IDWiseNFC.swiftmodule/x86_64-apple-ios-simulator.swiftmodule +0 -0
  16. package/ios/IDWiseNFC.framework/ProcessJourneyViewController.storyboardc/yS7-79-T86-view-owr-v5-NaP.nib/objects-13.0+.nib +0 -0
  17. package/ios/IDWiseNFC.framework/ProcessJourneyViewController.storyboardc/yS7-79-T86-view-owr-v5-NaP.nib/runtime.nib +0 -0
  18. package/ios/IDWiseNFC.framework/document_detector.mlmodelc/coremldata.bin +0 -0
  19. package/ios/IDWiseNFC.framework/document_detector.mlmodelc/metadata.json +2 -2
  20. package/package.json +1 -1
@@ -297,6 +297,8 @@ public struct StepCapturedInfo {
297
297
  public let stepId: Swift.String
298
298
  public let originalImage: UIKit.UIImage?
299
299
  public let croppedImage: UIKit.UIImage?
300
+ public let originalImageBack: UIKit.UIImage?
301
+ public let croppedImageBack: UIKit.UIImage?
300
302
  }
301
303
  @_hasMissingDesignatedInitializers public class UIUtilities {
302
304
  public static func addCircle(atPoint point: CoreFoundation.CGPoint, to view: UIKit.UIView, color: UIKit.UIColor, radius: CoreFoundation.CGFloat)
@@ -508,10 +510,13 @@ public struct JourneySummary : Swift.Codable {
508
510
  public var stepSummaries: [IDWiseNFC.JourneySummary.StepSummary]?
509
511
  public var journeyResult: IDWiseNFC.JourneySummary.JourneyResult?
510
512
  public struct StepSummary : Swift.Codable {
513
+ public var definition: IDWiseNFC.JourneySummary.StepDefinition
514
+ public var result: IDWiseNFC.StepResult?
511
515
  public func encode(to encoder: any Swift.Encoder) throws
512
516
  public init(from decoder: any Swift.Decoder) throws
513
517
  }
514
518
  public struct StepDefinition : Swift.Codable {
519
+ public var stepId: Swift.Int
515
520
  public func encode(to encoder: any Swift.Encoder) throws
516
521
  public init(from decoder: any Swift.Decoder) throws
517
522
  }
@@ -535,7 +540,25 @@ public struct StepResult : Swift.Codable {
535
540
  public func encode(to encoder: any Swift.Encoder) throws
536
541
  public init(from decoder: any Swift.Decoder) throws
537
542
  }
538
- public struct ErrorCodes {
543
+ public struct IDWiseErrorCode {
544
+ public static let emptyParameters: Swift.String
545
+ public static let sdkNotInitialized: Swift.String
546
+ public static let wrongCredentials: Swift.String
547
+ public static let emptyJourneyId: Swift.String
548
+ public static let fileTooLarge: Swift.String
549
+ public static let stepNotFound: Swift.String
550
+ public static let wrongStepId: Swift.String
551
+ public static let internalServerError: Swift.String
552
+ public static let networkError: Swift.String
553
+ public static let actionNotSupported: Swift.String
554
+ public static let stepNotStarted: Swift.String
555
+ public static let journeyNotCompleted: Swift.String
556
+ public static let invalidFlowId: Swift.String
557
+ public static let noActiveJourney: Swift.String
558
+ public static let journeyNotStarted: Swift.String
559
+ public static let stepConcluded: Swift.String
560
+ public static let nfcScanError: Swift.String
561
+ public static let noJourneyToResume: Swift.String
539
562
  }
540
563
  public struct IDWiseError : Swift.Codable {
541
564
  public let code: Swift.String
@@ -297,6 +297,8 @@ public struct StepCapturedInfo {
297
297
  public let stepId: Swift.String
298
298
  public let originalImage: UIKit.UIImage?
299
299
  public let croppedImage: UIKit.UIImage?
300
+ public let originalImageBack: UIKit.UIImage?
301
+ public let croppedImageBack: UIKit.UIImage?
300
302
  }
301
303
  @_hasMissingDesignatedInitializers public class UIUtilities {
302
304
  public static func addCircle(atPoint point: CoreFoundation.CGPoint, to view: UIKit.UIView, color: UIKit.UIColor, radius: CoreFoundation.CGFloat)
@@ -508,10 +510,13 @@ public struct JourneySummary : Swift.Codable {
508
510
  public var stepSummaries: [IDWiseNFC.JourneySummary.StepSummary]?
509
511
  public var journeyResult: IDWiseNFC.JourneySummary.JourneyResult?
510
512
  public struct StepSummary : Swift.Codable {
513
+ public var definition: IDWiseNFC.JourneySummary.StepDefinition
514
+ public var result: IDWiseNFC.StepResult?
511
515
  public func encode(to encoder: any Swift.Encoder) throws
512
516
  public init(from decoder: any Swift.Decoder) throws
513
517
  }
514
518
  public struct StepDefinition : Swift.Codable {
519
+ public var stepId: Swift.Int
515
520
  public func encode(to encoder: any Swift.Encoder) throws
516
521
  public init(from decoder: any Swift.Decoder) throws
517
522
  }
@@ -535,7 +540,25 @@ public struct StepResult : Swift.Codable {
535
540
  public func encode(to encoder: any Swift.Encoder) throws
536
541
  public init(from decoder: any Swift.Decoder) throws
537
542
  }
538
- public struct ErrorCodes {
543
+ public struct IDWiseErrorCode {
544
+ public static let emptyParameters: Swift.String
545
+ public static let sdkNotInitialized: Swift.String
546
+ public static let wrongCredentials: Swift.String
547
+ public static let emptyJourneyId: Swift.String
548
+ public static let fileTooLarge: Swift.String
549
+ public static let stepNotFound: Swift.String
550
+ public static let wrongStepId: Swift.String
551
+ public static let internalServerError: Swift.String
552
+ public static let networkError: Swift.String
553
+ public static let actionNotSupported: Swift.String
554
+ public static let stepNotStarted: Swift.String
555
+ public static let journeyNotCompleted: Swift.String
556
+ public static let invalidFlowId: Swift.String
557
+ public static let noActiveJourney: Swift.String
558
+ public static let journeyNotStarted: Swift.String
559
+ public static let stepConcluded: Swift.String
560
+ public static let nfcScanError: Swift.String
561
+ public static let noJourneyToResume: Swift.String
539
562
  }
540
563
  public struct IDWiseError : Swift.Codable {
541
564
  public let code: Swift.String