Skip to content

Commit

Permalink
feat: release 2.15.0 (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
bcorreau authored Jun 19, 2024
1 parent 3207734 commit d01bcbc
Show file tree
Hide file tree
Showing 62 changed files with 13,326 additions and 1,493 deletions.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -550,8 +550,8 @@ SWIFT_CLASS("_TtC9AcessoBio11ProviderDTO")



SWIFT_CLASS("_TtC9AcessoBio26SDKTokenResponseDTOAdapter")
@interface SDKTokenResponseDTOAdapter : NSObject
SWIFT_CLASS("_TtC9AcessoBio27SDKConfigResponseDTOAdapter")
@interface SDKConfigResponseDTOAdapter : NSObject
@property (nonatomic, readonly, copy) NSString * _Nullable facetecSessionToken;
@property (nonatomic, readonly) BOOL geolocationEnabled;
@property (nonatomic, readonly, copy) NSString * _Nonnull key;
Expand Down Expand Up @@ -660,7 +660,7 @@ SWIFT_CLASS("_TtC9AcessoBio25UnicoCameraMetadataOutput")

SWIFT_CLASS("_TtC9AcessoBio25UnicoCheckLivenessAdapter")
@interface UnicoCheckLivenessAdapter : NSObject
- (nonnull instancetype)initWithViewController:(UIViewController * _Nonnull)viewController sdkToken:(SDKTokenResponseDTOAdapter * _Nonnull)sdkToken bioThemeDelegate:(id <AcessoBioThemeDelegate> _Nullable)bioThemeDelegate isHomolog:(BOOL)isHomolog hostKey:(NSString * _Nonnull)hostKey;
- (nonnull instancetype)initWithViewController:(UIViewController * _Nonnull)viewController sdkToken:(SDKConfigResponseDTOAdapter * _Nonnull)sdkToken bioThemeDelegate:(id <AcessoBioThemeDelegate> _Nullable)bioThemeDelegate isHomolog:(BOOL)isHomolog hostKey:(NSString * _Nonnull)hostKey;
- (void)prepareCameraWithSuccess:(void (^ _Nonnull)(void))success failure:(void (^ _Nonnull)(ErrorBio * _Nonnull))failure;
- (void)openCameraWithUnicoSetup:(UnicoSetupData * _Nonnull)unicoSetup timeoutInterval:(double)timeoutInterval success:(void (^ _Nonnull)(NSDictionary<NSString *, id> * _Nonnull))success failure:(void (^ _Nonnull)(ErrorBio * _Nonnull))failure;
- (NSString * _Nonnull)getLivenessKeybody SWIFT_WARN_UNUSED_RESULT;
Expand Down Expand Up @@ -868,7 +868,7 @@ SWIFT_CLASS("_TtC9AcessoBio21UnicoNetworkingModule")
SWIFT_PROTOCOL("_TtP9AcessoBio18UnicoSetupProtocol_")
@protocol UnicoSetupProtocol
- (void)setupSDKWithUnicoSetupData:(UnicoSetupData * _Nonnull)unicoSetupData localeTypes:(LocaleTypes)localeTypes completion:(void (^ _Nonnull)(ErrorBio * _Nullable))completion;
- (SDKTokenResponseDTOAdapter * _Nullable)getSdkTokenObject SWIFT_WARN_UNUSED_RESULT;
- (SDKConfigResponseDTOAdapter * _Nullable)getSdkTokenObject SWIFT_WARN_UNUSED_RESULT;
@property (nonatomic, readonly) BOOL isHomolog;
@end

Expand All @@ -877,7 +877,7 @@ SWIFT_CLASS("_TtC9AcessoBio10UnicoSetup")
@interface UnicoSetup : NSObject <UnicoSetupProtocol>
@property (nonatomic) BOOL isHomolog;
- (void)setupSDKWithUnicoSetupData:(UnicoSetupData * _Nonnull)unicoSetupData localeTypes:(LocaleTypes)localeTypes completion:(void (^ _Nonnull)(ErrorBio * _Nullable))completion;
- (SDKTokenResponseDTOAdapter * _Nullable)getSdkTokenObject SWIFT_WARN_UNUSED_RESULT;
- (SDKConfigResponseDTOAdapter * _Nullable)getSdkTokenObject SWIFT_WARN_UNUSED_RESULT;
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
@end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
@class UnicoSetup;
@class UnicoConfigDelegate;
@class UnicoSetupData;
@class SDKTokenResponseDTOAdapter;
@class SDKConfigResponseDTOAdapter;
@class UnicoJsonLoad;
@class UnicoConfigDataSourceManager;
@class UnicoFaceCameraViewController;
Expand Down Expand Up @@ -74,7 +74,7 @@ typedef NS_ENUM(NSInteger, CameraType) {
BOOL hasImplementationError;

id<UnicoSetupProtocol> unicoSetup;
SDKTokenResponseDTOAdapter *sdkTokenResponse;
SDKConfigResponseDTOAdapter *sdkTokenResponse;

CameraType cameraType;
DocumentEnums documentType;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ NS_ASSUME_NONNULL_BEGIN

@property (readwrite)double secondsTimeoutSession;

@property (strong, nonatomic)SDKTokenResponseDTOAdapter *sdkToken;
@property (strong, nonatomic)SDKConfigResponseDTOAdapter *sdkToken;

#pragma mark - Behaviors

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ extension AcessoBio.DefaultMotionSensorsDevice {
@objc final public func stopUpdate()
}
public protocol UnicoSetupServicesProtocol {
typealias Response = Swift.Result<AcessoBio.SDKTokenResponseDTOAdapter, AcessoBio.ErrorBio>
typealias Response = Swift.Result<AcessoBio.SDKConfigResponseDTOAdapter, AcessoBio.ErrorBio>
typealias Completion = (Self.Response) -> Swift.Void
func getTokenUnico(unicoSetupData: AcessoBio.UnicoSetupData, localeTypes: AcessoBio.LocaleTypes, completion: @escaping Self.Completion)
}
Expand Down Expand Up @@ -177,7 +177,7 @@ extension AcessoBio.UnicoCheckThemes {
public typealias PrepareCompletionFailure = (AcessoBio.ErrorBio) -> Swift.Void
public typealias OpenCompletionSuccess = ([Swift.String : Any]) -> Swift.Void
public typealias OpenCompletionFailure = (AcessoBio.ErrorBio) -> Swift.Void
@objc convenience public init(viewController: UIKit.UIViewController, sdkToken: AcessoBio.SDKTokenResponseDTOAdapter, bioThemeDelegate: (any AcessoBio.AcessoBioThemeDelegate)?, isHomolog: Swift.Bool, hostKey: Swift.String)
@objc convenience public init(viewController: UIKit.UIViewController, sdkToken: AcessoBio.SDKConfigResponseDTOAdapter, bioThemeDelegate: (any AcessoBio.AcessoBioThemeDelegate)?, isHomolog: Swift.Bool, hostKey: Swift.String)
@objc public func prepareCamera(success: @escaping AcessoBio.UnicoCheckLivenessAdapter.PrepareCompletionSuccess, failure: @escaping AcessoBio.UnicoCheckLivenessAdapter.PrepareCompletionFailure)
@objc public func openCamera(unicoSetup: AcessoBio.UnicoSetupData, timeoutInterval: Swift.Double, success: @escaping AcessoBio.UnicoCheckLivenessAdapter.OpenCompletionSuccess, failure: @escaping AcessoBio.UnicoCheckLivenessAdapter.OpenCompletionFailure)
@objc public func getLivenessKeybody() -> Swift.String
Expand Down Expand Up @@ -222,6 +222,9 @@ extension AcessoBio.UnicoSetupData : Swift.Decodable {
}
@objc @_hasMissingDesignatedInitializers public class DataLogger : ObjectiveC.NSObject {
@objc public class func shared() -> AcessoBio.DataLogger
public var sdkSessionId: Swift.String? {
get
}
@objc public func commitBuild()
@objc public func commitPrepareCamera()
@objc public func commitOpenCamera(_ openCamera: AcessoBio.OpenCameraDTO)
Expand Down Expand Up @@ -317,7 +320,7 @@ extension AcessoBio.DefaultProviderFactory : AcessoBio.ProviderFactory {
public protocol Cancellable {
func cancel()
}
@objc @_hasMissingDesignatedInitializers public class SDKTokenResponseDTOAdapter : ObjectiveC.NSObject {
@objc @_hasMissingDesignatedInitializers public class SDKConfigResponseDTOAdapter : ObjectiveC.NSObject {
@objc public var facetecSessionToken: Swift.String? {
@objc get
}
Expand Down Expand Up @@ -368,13 +371,13 @@ public protocol Cancellable {
}
@objc public protocol UnicoSetupProtocol {
@objc func setupSDK(unicoSetupData: AcessoBio.UnicoSetupData, localeTypes: AcessoBio.LocaleTypes, completion: @escaping (AcessoBio.ErrorBio?) -> Swift.Void)
@objc func getSdkTokenObject() -> AcessoBio.SDKTokenResponseDTOAdapter?
@objc func getSdkTokenObject() -> AcessoBio.SDKConfigResponseDTOAdapter?
@objc var isHomolog: Swift.Bool { get }
}
@objc @_inheritsConvenienceInitializers public class UnicoSetup : ObjectiveC.NSObject, AcessoBio.UnicoSetupProtocol {
@objc public var isHomolog: Swift.Bool
@objc public func setupSDK(unicoSetupData: AcessoBio.UnicoSetupData, localeTypes: AcessoBio.LocaleTypes, completion: @escaping (AcessoBio.ErrorBio?) -> Swift.Void)
@objc public func getSdkTokenObject() -> AcessoBio.SDKTokenResponseDTOAdapter?
@objc public func getSdkTokenObject() -> AcessoBio.SDKConfigResponseDTOAdapter?
@objc override dynamic public init()
@objc deinit
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ extension AcessoBio.DefaultMotionSensorsDevice {
@objc final public func stopUpdate()
}
public protocol UnicoSetupServicesProtocol {
typealias Response = Swift.Result<AcessoBio.SDKTokenResponseDTOAdapter, AcessoBio.ErrorBio>
typealias Response = Swift.Result<AcessoBio.SDKConfigResponseDTOAdapter, AcessoBio.ErrorBio>
typealias Completion = (Self.Response) -> Swift.Void
func getTokenUnico(unicoSetupData: AcessoBio.UnicoSetupData, localeTypes: AcessoBio.LocaleTypes, completion: @escaping Self.Completion)
}
Expand Down Expand Up @@ -177,7 +177,7 @@ extension AcessoBio.UnicoCheckThemes {
public typealias PrepareCompletionFailure = (AcessoBio.ErrorBio) -> Swift.Void
public typealias OpenCompletionSuccess = ([Swift.String : Any]) -> Swift.Void
public typealias OpenCompletionFailure = (AcessoBio.ErrorBio) -> Swift.Void
@objc convenience public init(viewController: UIKit.UIViewController, sdkToken: AcessoBio.SDKTokenResponseDTOAdapter, bioThemeDelegate: (any AcessoBio.AcessoBioThemeDelegate)?, isHomolog: Swift.Bool, hostKey: Swift.String)
@objc convenience public init(viewController: UIKit.UIViewController, sdkToken: AcessoBio.SDKConfigResponseDTOAdapter, bioThemeDelegate: (any AcessoBio.AcessoBioThemeDelegate)?, isHomolog: Swift.Bool, hostKey: Swift.String)
@objc public func prepareCamera(success: @escaping AcessoBio.UnicoCheckLivenessAdapter.PrepareCompletionSuccess, failure: @escaping AcessoBio.UnicoCheckLivenessAdapter.PrepareCompletionFailure)
@objc public func openCamera(unicoSetup: AcessoBio.UnicoSetupData, timeoutInterval: Swift.Double, success: @escaping AcessoBio.UnicoCheckLivenessAdapter.OpenCompletionSuccess, failure: @escaping AcessoBio.UnicoCheckLivenessAdapter.OpenCompletionFailure)
@objc public func getLivenessKeybody() -> Swift.String
Expand Down Expand Up @@ -222,6 +222,9 @@ extension AcessoBio.UnicoSetupData : Swift.Decodable {
}
@objc @_hasMissingDesignatedInitializers public class DataLogger : ObjectiveC.NSObject {
@objc public class func shared() -> AcessoBio.DataLogger
public var sdkSessionId: Swift.String? {
get
}
@objc public func commitBuild()
@objc public func commitPrepareCamera()
@objc public func commitOpenCamera(_ openCamera: AcessoBio.OpenCameraDTO)
Expand Down Expand Up @@ -317,7 +320,7 @@ extension AcessoBio.DefaultProviderFactory : AcessoBio.ProviderFactory {
public protocol Cancellable {
func cancel()
}
@objc @_hasMissingDesignatedInitializers public class SDKTokenResponseDTOAdapter : ObjectiveC.NSObject {
@objc @_hasMissingDesignatedInitializers public class SDKConfigResponseDTOAdapter : ObjectiveC.NSObject {
@objc public var facetecSessionToken: Swift.String? {
@objc get
}
Expand Down Expand Up @@ -368,13 +371,13 @@ public protocol Cancellable {
}
@objc public protocol UnicoSetupProtocol {
@objc func setupSDK(unicoSetupData: AcessoBio.UnicoSetupData, localeTypes: AcessoBio.LocaleTypes, completion: @escaping (AcessoBio.ErrorBio?) -> Swift.Void)
@objc func getSdkTokenObject() -> AcessoBio.SDKTokenResponseDTOAdapter?
@objc func getSdkTokenObject() -> AcessoBio.SDKConfigResponseDTOAdapter?
@objc var isHomolog: Swift.Bool { get }
}
@objc @_inheritsConvenienceInitializers public class UnicoSetup : ObjectiveC.NSObject, AcessoBio.UnicoSetupProtocol {
@objc public var isHomolog: Swift.Bool
@objc public func setupSDK(unicoSetupData: AcessoBio.UnicoSetupData, localeTypes: AcessoBio.LocaleTypes, completion: @escaping (AcessoBio.ErrorBio?) -> Swift.Void)
@objc public func getSdkTokenObject() -> AcessoBio.SDKTokenResponseDTOAdapter?
@objc public func getSdkTokenObject() -> AcessoBio.SDKConfigResponseDTOAdapter?
@objc override dynamic public init()
@objc deinit
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</data>
<key>Headers/AcessoBio-Swift.h</key>
<data>
3v/pfuRiXcS39tNce0i9DmdiLu4=
57qJgH2KI3iOLRNBAgOh+LZFbBQ=
</data>
<key>Headers/AcessoBio.h</key>
<data>
Expand Down Expand Up @@ -94,7 +94,7 @@
</data>
<key>Headers/UnicoCheck.h</key>
<data>
g1YQR6itd2gHO8C330ktwRYN2ZA=
Jra92atN+e9exUmBu0UH48MiliU=
</data>
<key>Headers/UnicoCheckThemesDelegate.h</key>
<data>
Expand All @@ -106,7 +106,7 @@
</data>
<key>Headers/UnicoFaceCameraViewController.h</key>
<data>
HYkdGvLKdkP2mjXdKFoD38aTw64=
WB9z1FHpOoO13IqQljyGYHi9Kik=
</data>
<key>Headers/iAcessoBioBuilder.h</key>
<data>
Expand All @@ -118,19 +118,19 @@
</data>
<key>Modules/AcessoBio.swiftmodule/arm64-apple-ios.private.swiftinterface</key>
<data>
Wz3nG6rU3Y+qpSBGdT2glAWzhC4=
lO4Sb4LA/Ikm8BmlhQ88qExbaPU=
</data>
<key>Modules/AcessoBio.swiftmodule/arm64-apple-ios.swiftdoc</key>
<data>
xl+55WlkkI2dfct+Wo0GkJR0TCw=
</data>
<key>Modules/AcessoBio.swiftmodule/arm64-apple-ios.swiftinterface</key>
<data>
Wz3nG6rU3Y+qpSBGdT2glAWzhC4=
lO4Sb4LA/Ikm8BmlhQ88qExbaPU=
</data>
<key>Modules/AcessoBio.swiftmodule/arm64-apple-ios.swiftmodule</key>
<data>
I6mvRXyU40QCJ4TvbDkpWml4NmY=
ZSq4ZRWovTpWMLTqfHR2BVPES9M=
</data>
<key>Modules/module.modulemap</key>
<data>
Expand Down Expand Up @@ -206,7 +206,7 @@
<dict>
<key>hash2</key>
<data>
gmOyyGdE6ed3ZzwNmLL1cB8Zj/pVfbcSCfYAJYANxwI=
c+KNcUOgaosLZB6rVAOxmnmdagyeDNfXzuxStsd9c+U=
</data>
</dict>
<key>Headers/AcessoBio.h</key>
Expand Down Expand Up @@ -353,7 +353,7 @@
<dict>
<key>hash2</key>
<data>
tawc7+GFtf9vNMIDYdOeIJg+bps3Bbin84+IaTQNMAM=
cceBkYzWvJ0M6KFAQ+fbidesfPrgR2Mk021jwoIHgoQ=
</data>
</dict>
<key>Headers/UnicoCheckThemesDelegate.h</key>
Expand All @@ -374,7 +374,7 @@
<dict>
<key>hash2</key>
<data>
Mm4yBbIq3HeWHDTIcaGWuC2wcpAomgWXOMlw0iVJj/c=
YyNiaKy0WK/u/JOG9Kx3KlHLb3e1On04CRzPJ/ZUBps=
</data>
</dict>
<key>Headers/iAcessoBioBuilder.h</key>
Expand All @@ -388,7 +388,7 @@
<dict>
<key>hash2</key>
<data>
4v+G/w8aydp4NC5b46i/xghfqmS2PSOU8S4z0Wblb38=
3VL0cjJf13L+pAw7NsdJS/l6J7mKR1NoD5/qpykjg+4=
</data>
</dict>
<key>Modules/AcessoBio.swiftmodule/arm64-apple-ios.swiftdoc</key>
Expand All @@ -402,14 +402,14 @@
<dict>
<key>hash2</key>
<data>
4v+G/w8aydp4NC5b46i/xghfqmS2PSOU8S4z0Wblb38=
3VL0cjJf13L+pAw7NsdJS/l6J7mKR1NoD5/qpykjg+4=
</data>
</dict>
<key>Modules/AcessoBio.swiftmodule/arm64-apple-ios.swiftmodule</key>
<dict>
<key>hash2</key>
<data>
ejZ6YFsngtPMTkDtGewIffzMU5hC6svVcUnc8DBF2bU=
0czrXAdGyHx98pOOIFzlaRh5cve9zdKH4qGcCicVWbI=
</data>
</dict>
<key>Modules/module.modulemap</key>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -550,8 +550,8 @@ SWIFT_CLASS("_TtC9AcessoBio11ProviderDTO")



SWIFT_CLASS("_TtC9AcessoBio26SDKTokenResponseDTOAdapter")
@interface SDKTokenResponseDTOAdapter : NSObject
SWIFT_CLASS("_TtC9AcessoBio27SDKConfigResponseDTOAdapter")
@interface SDKConfigResponseDTOAdapter : NSObject
@property (nonatomic, readonly, copy) NSString * _Nullable facetecSessionToken;
@property (nonatomic, readonly) BOOL geolocationEnabled;
@property (nonatomic, readonly, copy) NSString * _Nonnull key;
Expand Down Expand Up @@ -660,7 +660,7 @@ SWIFT_CLASS("_TtC9AcessoBio25UnicoCameraMetadataOutput")

SWIFT_CLASS("_TtC9AcessoBio25UnicoCheckLivenessAdapter")
@interface UnicoCheckLivenessAdapter : NSObject
- (nonnull instancetype)initWithViewController:(UIViewController * _Nonnull)viewController sdkToken:(SDKTokenResponseDTOAdapter * _Nonnull)sdkToken bioThemeDelegate:(id <AcessoBioThemeDelegate> _Nullable)bioThemeDelegate isHomolog:(BOOL)isHomolog hostKey:(NSString * _Nonnull)hostKey;
- (nonnull instancetype)initWithViewController:(UIViewController * _Nonnull)viewController sdkToken:(SDKConfigResponseDTOAdapter * _Nonnull)sdkToken bioThemeDelegate:(id <AcessoBioThemeDelegate> _Nullable)bioThemeDelegate isHomolog:(BOOL)isHomolog hostKey:(NSString * _Nonnull)hostKey;
- (void)prepareCameraWithSuccess:(void (^ _Nonnull)(void))success failure:(void (^ _Nonnull)(ErrorBio * _Nonnull))failure;
- (void)openCameraWithUnicoSetup:(UnicoSetupData * _Nonnull)unicoSetup timeoutInterval:(double)timeoutInterval success:(void (^ _Nonnull)(NSDictionary<NSString *, id> * _Nonnull))success failure:(void (^ _Nonnull)(ErrorBio * _Nonnull))failure;
- (NSString * _Nonnull)getLivenessKeybody SWIFT_WARN_UNUSED_RESULT;
Expand Down Expand Up @@ -868,7 +868,7 @@ SWIFT_CLASS("_TtC9AcessoBio21UnicoNetworkingModule")
SWIFT_PROTOCOL("_TtP9AcessoBio18UnicoSetupProtocol_")
@protocol UnicoSetupProtocol
- (void)setupSDKWithUnicoSetupData:(UnicoSetupData * _Nonnull)unicoSetupData localeTypes:(LocaleTypes)localeTypes completion:(void (^ _Nonnull)(ErrorBio * _Nullable))completion;
- (SDKTokenResponseDTOAdapter * _Nullable)getSdkTokenObject SWIFT_WARN_UNUSED_RESULT;
- (SDKConfigResponseDTOAdapter * _Nullable)getSdkTokenObject SWIFT_WARN_UNUSED_RESULT;
@property (nonatomic, readonly) BOOL isHomolog;
@end

Expand All @@ -877,7 +877,7 @@ SWIFT_CLASS("_TtC9AcessoBio10UnicoSetup")
@interface UnicoSetup : NSObject <UnicoSetupProtocol>
@property (nonatomic) BOOL isHomolog;
- (void)setupSDKWithUnicoSetupData:(UnicoSetupData * _Nonnull)unicoSetupData localeTypes:(LocaleTypes)localeTypes completion:(void (^ _Nonnull)(ErrorBio * _Nullable))completion;
- (SDKTokenResponseDTOAdapter * _Nullable)getSdkTokenObject SWIFT_WARN_UNUSED_RESULT;
- (SDKConfigResponseDTOAdapter * _Nullable)getSdkTokenObject SWIFT_WARN_UNUSED_RESULT;
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
@end

Expand Down Expand Up @@ -1484,8 +1484,8 @@ SWIFT_CLASS("_TtC9AcessoBio11ProviderDTO")



SWIFT_CLASS("_TtC9AcessoBio26SDKTokenResponseDTOAdapter")
@interface SDKTokenResponseDTOAdapter : NSObject
SWIFT_CLASS("_TtC9AcessoBio27SDKConfigResponseDTOAdapter")
@interface SDKConfigResponseDTOAdapter : NSObject
@property (nonatomic, readonly, copy) NSString * _Nullable facetecSessionToken;
@property (nonatomic, readonly) BOOL geolocationEnabled;
@property (nonatomic, readonly, copy) NSString * _Nonnull key;
Expand Down Expand Up @@ -1594,7 +1594,7 @@ SWIFT_CLASS("_TtC9AcessoBio25UnicoCameraMetadataOutput")

SWIFT_CLASS("_TtC9AcessoBio25UnicoCheckLivenessAdapter")
@interface UnicoCheckLivenessAdapter : NSObject
- (nonnull instancetype)initWithViewController:(UIViewController * _Nonnull)viewController sdkToken:(SDKTokenResponseDTOAdapter * _Nonnull)sdkToken bioThemeDelegate:(id <AcessoBioThemeDelegate> _Nullable)bioThemeDelegate isHomolog:(BOOL)isHomolog hostKey:(NSString * _Nonnull)hostKey;
- (nonnull instancetype)initWithViewController:(UIViewController * _Nonnull)viewController sdkToken:(SDKConfigResponseDTOAdapter * _Nonnull)sdkToken bioThemeDelegate:(id <AcessoBioThemeDelegate> _Nullable)bioThemeDelegate isHomolog:(BOOL)isHomolog hostKey:(NSString * _Nonnull)hostKey;
- (void)prepareCameraWithSuccess:(void (^ _Nonnull)(void))success failure:(void (^ _Nonnull)(ErrorBio * _Nonnull))failure;
- (void)openCameraWithUnicoSetup:(UnicoSetupData * _Nonnull)unicoSetup timeoutInterval:(double)timeoutInterval success:(void (^ _Nonnull)(NSDictionary<NSString *, id> * _Nonnull))success failure:(void (^ _Nonnull)(ErrorBio * _Nonnull))failure;
- (NSString * _Nonnull)getLivenessKeybody SWIFT_WARN_UNUSED_RESULT;
Expand Down Expand Up @@ -1802,7 +1802,7 @@ SWIFT_CLASS("_TtC9AcessoBio21UnicoNetworkingModule")
SWIFT_PROTOCOL("_TtP9AcessoBio18UnicoSetupProtocol_")
@protocol UnicoSetupProtocol
- (void)setupSDKWithUnicoSetupData:(UnicoSetupData * _Nonnull)unicoSetupData localeTypes:(LocaleTypes)localeTypes completion:(void (^ _Nonnull)(ErrorBio * _Nullable))completion;
- (SDKTokenResponseDTOAdapter * _Nullable)getSdkTokenObject SWIFT_WARN_UNUSED_RESULT;
- (SDKConfigResponseDTOAdapter * _Nullable)getSdkTokenObject SWIFT_WARN_UNUSED_RESULT;
@property (nonatomic, readonly) BOOL isHomolog;
@end

Expand All @@ -1811,7 +1811,7 @@ SWIFT_CLASS("_TtC9AcessoBio10UnicoSetup")
@interface UnicoSetup : NSObject <UnicoSetupProtocol>
@property (nonatomic) BOOL isHomolog;
- (void)setupSDKWithUnicoSetupData:(UnicoSetupData * _Nonnull)unicoSetupData localeTypes:(LocaleTypes)localeTypes completion:(void (^ _Nonnull)(ErrorBio * _Nullable))completion;
- (SDKTokenResponseDTOAdapter * _Nullable)getSdkTokenObject SWIFT_WARN_UNUSED_RESULT;
- (SDKConfigResponseDTOAdapter * _Nullable)getSdkTokenObject SWIFT_WARN_UNUSED_RESULT;
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
@end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
@class UnicoSetup;
@class UnicoConfigDelegate;
@class UnicoSetupData;
@class SDKTokenResponseDTOAdapter;
@class SDKConfigResponseDTOAdapter;
@class UnicoJsonLoad;
@class UnicoConfigDataSourceManager;
@class UnicoFaceCameraViewController;
Expand Down Expand Up @@ -74,7 +74,7 @@ typedef NS_ENUM(NSInteger, CameraType) {
BOOL hasImplementationError;

id<UnicoSetupProtocol> unicoSetup;
SDKTokenResponseDTOAdapter *sdkTokenResponse;
SDKConfigResponseDTOAdapter *sdkTokenResponse;

CameraType cameraType;
DocumentEnums documentType;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ NS_ASSUME_NONNULL_BEGIN

@property (readwrite)double secondsTimeoutSession;

@property (strong, nonatomic)SDKTokenResponseDTOAdapter *sdkToken;
@property (strong, nonatomic)SDKConfigResponseDTOAdapter *sdkToken;

#pragma mark - Behaviors

Expand Down
Loading

0 comments on commit d01bcbc

Please sign in to comment.