Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: 2.11.0 #86

Merged
merged 5 commits into from
Apr 23, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ jobs:
uses: actions/checkout@v2

- name: Select Xcode
run: sudo xcode-select -switch /Applications/Xcode.app
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '14.3.1'

- name: Build
run: |
Expand Down
Binary file modified AcessoBio.xcframework/ios-arm64/AcessoBio.framework/AcessoBio
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,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;
- (nonnull instancetype)initWithViewController:(UIViewController * _Nonnull)viewController sdkToken:(SDKTokenResponseDTOAdapter * _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 @@ -839,6 +839,7 @@ SWIFT_CLASS("_TtC9AcessoBio10UnicoSetup")

SWIFT_CLASS("_TtC9AcessoBio14UnicoSetupData")
@interface UnicoSetupData : NSObject
- (NSString * _Nullable)getHostKey SWIFT_WARN_UNUSED_RESULT;
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
@end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,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: AcessoBio.AcessoBioThemeDelegate?, isHomolog: Swift.Bool)
@objc convenience public init(viewController: UIKit.UIViewController, sdkToken: AcessoBio.SDKTokenResponseDTOAdapter, bioThemeDelegate: 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 @@ -190,6 +190,7 @@ public class SDKPredictResponseDTO : Swift.Decodable {
@objc func make() -> AcessoBio.SensorsWorker
}
@objc @_hasMissingDesignatedInitializers final public class UnicoSetupData : ObjectiveC.NSObject {
@objc final public func getHostKey() -> Swift.String?
@objc deinit
}
extension AcessoBio.UnicoSetupData : Swift.Decodable {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,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: AcessoBio.AcessoBioThemeDelegate?, isHomolog: Swift.Bool)
@objc convenience public init(viewController: UIKit.UIViewController, sdkToken: AcessoBio.SDKTokenResponseDTOAdapter, bioThemeDelegate: 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 @@ -190,6 +190,7 @@ public class SDKPredictResponseDTO : Swift.Decodable {
@objc func make() -> AcessoBio.SensorsWorker
}
@objc @_hasMissingDesignatedInitializers final public class UnicoSetupData : ObjectiveC.NSObject {
@objc final public func getHostKey() -> Swift.String?
@objc deinit
}
extension AcessoBio.UnicoSetupData : Swift.Decodable {
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>
hgaYCYMCDNG7Gg/pFAh2/yt5wAo=
1i+dRh8G1C5jPEQ0Sz13Qkj4li4=
</data>
<key>Headers/AcessoBio.h</key>
<data>
Expand Down Expand Up @@ -118,19 +118,19 @@
</data>
<key>Modules/AcessoBio.swiftmodule/arm64-apple-ios.private.swiftinterface</key>
<data>
8nID0KmS5mO6P8T+tzDU96nWtnw=
e1V/2EhjenZbFKofeMeDcdtee3M=
</data>
<key>Modules/AcessoBio.swiftmodule/arm64-apple-ios.swiftdoc</key>
<data>
SQWIXb2bUhtzpm7o53N9MdROpio=
</data>
<key>Modules/AcessoBio.swiftmodule/arm64-apple-ios.swiftinterface</key>
<data>
8nID0KmS5mO6P8T+tzDU96nWtnw=
e1V/2EhjenZbFKofeMeDcdtee3M=
</data>
<key>Modules/AcessoBio.swiftmodule/arm64-apple-ios.swiftmodule</key>
<data>
CtuWrShogA64ePBx0B5yyH7/dDM=
1FPrSPnVGVE0gIuld2M+BYCY1T8=
</data>
<key>Modules/module.modulemap</key>
<data>
Expand Down Expand Up @@ -202,7 +202,7 @@
<dict>
<key>hash2</key>
<data>
OwAbvc1kketMFikSq0Q1V0MADSS7OpNPKOiOYoJMdhg=
8GNtzL4/mKSLdUEjgicOkLzB13UrpzgUwBd2Mt0tkGc=
</data>
</dict>
<key>Headers/AcessoBio.h</key>
Expand Down Expand Up @@ -384,7 +384,7 @@
<dict>
<key>hash2</key>
<data>
/mKs5LbJrAhAdxGn1SoZSKqctwVMGER69qokJePOB9I=
f50sgmh4kiId2qi0KXb0ESpHD99zt2bqtvqbdEmdu3M=
</data>
</dict>
<key>Modules/AcessoBio.swiftmodule/arm64-apple-ios.swiftdoc</key>
Expand All @@ -398,14 +398,14 @@
<dict>
<key>hash2</key>
<data>
/mKs5LbJrAhAdxGn1SoZSKqctwVMGER69qokJePOB9I=
f50sgmh4kiId2qi0KXb0ESpHD99zt2bqtvqbdEmdu3M=
</data>
</dict>
<key>Modules/AcessoBio.swiftmodule/arm64-apple-ios.swiftmodule</key>
<dict>
<key>hash2</key>
<data>
dfvh0IgJZnlKqxp+8FvVE5LjZyRK8cEE3Vr+ZH0uqhg=
nRCQnx3/ldDK+ASaE3ol8rsGKzQAYlwdDDvllADafKQ=
</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 @@ -614,7 +614,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;
- (nonnull instancetype)initWithViewController:(UIViewController * _Nonnull)viewController sdkToken:(SDKTokenResponseDTOAdapter * _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 @@ -839,6 +839,7 @@ SWIFT_CLASS("_TtC9AcessoBio10UnicoSetup")

SWIFT_CLASS("_TtC9AcessoBio14UnicoSetupData")
@interface UnicoSetupData : NSObject
- (NSString * _Nullable)getHostKey SWIFT_WARN_UNUSED_RESULT;
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
@end
Expand Down Expand Up @@ -1501,7 +1502,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;
- (nonnull instancetype)initWithViewController:(UIViewController * _Nonnull)viewController sdkToken:(SDKTokenResponseDTOAdapter * _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 @@ -1726,6 +1727,7 @@ SWIFT_CLASS("_TtC9AcessoBio10UnicoSetup")

SWIFT_CLASS("_TtC9AcessoBio14UnicoSetupData")
@interface UnicoSetupData : NSObject
- (NSString * _Nullable)getHostKey SWIFT_WARN_UNUSED_RESULT;
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
@end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4209,7 +4209,7 @@
{
"kind": "Constructor",
"name": "init",
"printedName": "init(viewController:sdkToken:bioThemeDelegate:isHomolog:)",
"printedName": "init(viewController:sdkToken:bioThemeDelegate:isHomolog:hostKey:)",
"children": [
{
"kind": "TypeNominal",
Expand Down Expand Up @@ -4248,13 +4248,19 @@
"name": "Bool",
"printedName": "Swift.Bool",
"usr": "s:Sb"
},
{
"kind": "TypeNominal",
"name": "String",
"printedName": "Swift.String",
"usr": "s:SS"
}
],
"declKind": "Constructor",
"usr": "c:@M@AcessoBio@objc(cs)UnicoCheckLivenessAdapter(im)initWithViewController:sdkToken:bioThemeDelegate:isHomolog:",
"mangledName": "$s9AcessoBio25UnicoCheckLivenessAdapterC14viewController8sdkToken16bioThemeDelegate9isHomologACSo06UIViewH0C_AA26SDKTokenResponseDTOAdapterCSo0ablM0_pSgSbtcfc",
"usr": "c:@M@AcessoBio@objc(cs)UnicoCheckLivenessAdapter(im)initWithViewController:sdkToken:bioThemeDelegate:isHomolog:hostKey:",
"mangledName": "$s9AcessoBio25UnicoCheckLivenessAdapterC14viewController8sdkToken16bioThemeDelegate9isHomolog7hostKeyACSo06UIViewH0C_AA26SDKTokenResponseDTOAdapterCSo0ablM0_pSgSbSStcfc",
"moduleName": "AcessoBio",
"objc_name": "initWithViewController:sdkToken:bioThemeDelegate:isHomolog:",
"objc_name": "initWithViewController:sdkToken:bioThemeDelegate:isHomolog:hostKey:",
"declAttributes": [
"Convenience",
"AccessControl",
Expand Down Expand Up @@ -5246,6 +5252,37 @@
"name": "UnicoSetupData",
"printedName": "UnicoSetupData",
"children": [
{
"kind": "Function",
"name": "getHostKey",
"printedName": "getHostKey()",
"children": [
{
"kind": "TypeNominal",
"name": "Optional",
"printedName": "Swift.String?",
"children": [
{
"kind": "TypeNominal",
"name": "String",
"printedName": "Swift.String",
"usr": "s:SS"
}
],
"usr": "s:Sq"
}
],
"declKind": "Func",
"usr": "c:@M@AcessoBio@objc(cs)UnicoSetupData(im)getHostKey",
"mangledName": "$s9AcessoBio14UnicoSetupDataC10getHostKeySSSgyF",
"moduleName": "AcessoBio",
"declAttributes": [
"Final",
"AccessControl",
"ObjC"
],
"funcSelfKind": "NonMutating"
},
{
"kind": "Constructor",
"name": "init",
Expand Down Expand Up @@ -17476,42 +17513,42 @@
{
"filePath": "\/Users\/runner\/work\/acessobio-ios\/acessobio-ios\/AcessoBio\/setup\/dto\/UnicoSetupData.swift",
"kind": "StringLiteral",
"offset": 919,
"offset": 936,
"length": 11,
"value": "\"host_info\""
},
{
"filePath": "\/Users\/runner\/work\/acessobio-ios\/acessobio-ios\/AcessoBio\/setup\/dto\/UnicoSetupData.swift",
"kind": "StringLiteral",
"offset": 919,
"offset": 936,
"length": 11,
"value": "\"host_info\""
},
{
"filePath": "\/Users\/runner\/work\/acessobio-ios\/acessobio-ios\/AcessoBio\/setup\/dto\/UnicoSetupData.swift",
"kind": "StringLiteral",
"offset": 1004,
"offset": 1021,
"length": 11,
"value": "\"host_info\""
},
{
"filePath": "\/Users\/runner\/work\/acessobio-ios\/acessobio-ios\/AcessoBio\/setup\/dto\/UnicoSetupData.swift",
"kind": "StringLiteral",
"offset": 1039,
"offset": 1056,
"length": 10,
"value": "\"host_key\""
},
{
"filePath": "\/Users\/runner\/work\/acessobio-ios\/acessobio-ios\/AcessoBio\/setup\/dto\/UnicoSetupData.swift",
"kind": "StringLiteral",
"offset": 1004,
"offset": 1021,
"length": 11,
"value": "\"host_info\""
},
{
"filePath": "\/Users\/runner\/work\/acessobio-ios\/acessobio-ios\/AcessoBio\/setup\/dto\/UnicoSetupData.swift",
"kind": "StringLiteral",
"offset": 1039,
"offset": 1056,
"length": 10,
"value": "\"host_key\""
},
Expand Down Expand Up @@ -17968,7 +18005,7 @@
"kind": "StringLiteral",
"offset": 215,
"length": 8,
"value": "\"2.10.0\""
"value": "\"2.11.0\""
},
{
"filePath": "\/Users\/runner\/work\/acessobio-ios\/acessobio-ios\/AcessoBio\/services\/dto\/response\/SDKTokenResponseDTO.swift",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,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: AcessoBio.AcessoBioThemeDelegate?, isHomolog: Swift.Bool)
@objc convenience public init(viewController: UIKit.UIViewController, sdkToken: AcessoBio.SDKTokenResponseDTOAdapter, bioThemeDelegate: 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 @@ -190,6 +190,7 @@ public class SDKPredictResponseDTO : Swift.Decodable {
@objc func make() -> AcessoBio.SensorsWorker
}
@objc @_hasMissingDesignatedInitializers final public class UnicoSetupData : ObjectiveC.NSObject {
@objc final public func getHostKey() -> Swift.String?
@objc deinit
}
extension AcessoBio.UnicoSetupData : Swift.Decodable {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,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: AcessoBio.AcessoBioThemeDelegate?, isHomolog: Swift.Bool)
@objc convenience public init(viewController: UIKit.UIViewController, sdkToken: AcessoBio.SDKTokenResponseDTOAdapter, bioThemeDelegate: 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 @@ -190,6 +190,7 @@ public class SDKPredictResponseDTO : Swift.Decodable {
@objc func make() -> AcessoBio.SensorsWorker
}
@objc @_hasMissingDesignatedInitializers final public class UnicoSetupData : ObjectiveC.NSObject {
@objc final public func getHostKey() -> Swift.String?
@objc deinit
}
extension AcessoBio.UnicoSetupData : Swift.Decodable {
Expand Down
Loading
Loading