Skip to content

Commit d12ef5c

Browse files
update xcframwork directory. Version - 0.8.0
1 parent 7df2e92 commit d12ef5c

File tree

25 files changed

+2165
-65
lines changed

25 files changed

+2165
-65
lines changed
Binary file not shown.

UNComponents.xcframework/ios-arm64/UNComponents.framework/Modules/UNComponents.swiftmodule/arm64-apple-ios.abi.json

Lines changed: 668 additions & 10 deletions
Large diffs are not rendered by default.

UNComponents.xcframework/ios-arm64/UNComponents.framework/Modules/UNComponents.swiftmodule/arm64-apple-ios.private.swiftinterface

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,9 +119,13 @@ public class UNACHDebitViewSettingsBuilder : UNComponents.UNACHDebitViewSettings
119119
public var isAutoFocus: Swift.Bool {
120120
get
121121
}
122-
public init(fee: Swift.Double? = nil, isAutoFocus: Swift.Bool = false)
122+
public var sameDay: Swift.Bool {
123+
get
124+
}
125+
public init(fee: Swift.Double? = nil, isAutoFocus: Swift.Bool = false, sameDay: Swift.Bool = false)
123126
public func fee(_ fee: Swift.Double) -> UNComponents.UNACHDebitViewSettingsBuilder
124127
public func isAutoFocus(_ isAutoFocus: Swift.Bool) -> UNComponents.UNACHDebitViewSettingsBuilder
128+
public func sameDay(_ sameDay: Swift.Bool) -> UNComponents.UNACHDebitViewSettingsBuilder
125129
@objc deinit
126130
}
127131
public struct UNCheckCounterparty : Swift.Codable {
@@ -217,10 +221,14 @@ public class UNACHCreditViewSettingsBuilder : UNComponents.UNACHCreditViewSettin
217221
public var withPlaid: Swift.Bool {
218222
get
219223
}
220-
public init(fee: Swift.Double? = nil, isAutoFocus: Swift.Bool = false, withPlaid: Swift.Bool = false)
224+
public var sameDay: Swift.Bool {
225+
get
226+
}
227+
public init(fee: Swift.Double? = nil, isAutoFocus: Swift.Bool = false, withPlaid: Swift.Bool = false, sameDay: Swift.Bool = false)
221228
public func fee(_ fee: Swift.Double) -> UNComponents.UNACHCreditViewSettingsBuilder
222229
public func isAutoFocus(_ isAutoFocus: Swift.Bool) -> UNComponents.UNACHCreditViewSettingsBuilder
223230
public func withPlaid(_ withPlaid: Swift.Bool) -> UNComponents.UNACHCreditViewSettingsBuilder
231+
public func sameDay(_ sameDay: Swift.Bool) -> UNComponents.UNACHCreditViewSettingsBuilder
224232
@objc deinit
225233
}
226234
public typealias UNBookPaymentComponentCallbacks = (_ callback: UNComponents.UNBookPaymentComponentCallback) -> Swift.Void
@@ -242,6 +250,7 @@ public protocol UNACHCreditViewSettingsProtocol {
242250
var fee: Swift.Double? { get }
243251
var isAutoFocus: Swift.Bool { get }
244252
var withPlaid: Swift.Bool { get }
253+
var sameDay: Swift.Bool { get }
245254
}
246255
public protocol UNACHDebitView : UIKit.UIView {
247256
var accountId: Swift.String { get set }
@@ -250,6 +259,7 @@ public protocol UNACHDebitView : UIKit.UIView {
250259
public protocol UNACHDebitViewSettingsProtocol {
251260
var fee: Swift.Double? { get }
252261
var isAutoFocus: Swift.Bool { get }
262+
var sameDay: Swift.Bool { get }
253263
}
254264
public typealias UNAccountComponentCallbacks = (_ callback: UNComponents.UNAccountComponentCallback) -> Swift.Void
255265
public typealias UNFonts = [UNComponents.UNFontFamilyName : [UNComponents.UNFontData]]
@@ -333,6 +343,7 @@ public enum UNCardType : Swift.String, Swift.Codable {
333343
public protocol UNManagerProtocol : AnyObject {
334344
var customerToken: UNComponents.UNCustomerToken? { get set }
335345
var environment: UNComponents.UNEnvironment? { get set }
346+
var webVersioningStrategy: UNComponents.UNWebVersioningStrategy { get set }
336347
var ui: UNComponents.UNUI { get }
337348
var services: UNComponents.UNServices { get }
338349
}
@@ -723,6 +734,11 @@ public struct UNErrorResponse : Swift.Codable {
723734
public func encode(to encoder: Swift.Encoder) throws
724735
public init(from decoder: Swift.Decoder) throws
725736
}
737+
public enum UNWebVersioningStrategy {
738+
case exact(major: Swift.Int, minor: Swift.Int, patch: Swift.Int)
739+
case upToNextMinor(major: Swift.Int, minor: Swift.Int)
740+
case upToNextMajor(major: Swift.Int)
741+
}
726742
public protocol UNUI {
727743
func setTheme(_ theme: UNComponents.UNTheme?)
728744
func setLanguage(_ language: UNComponents.UNLanguage?)
@@ -770,6 +786,8 @@ public protocol UNCardView : UIKit.UIView {
770786
var additionalSetting: UNComponents.UNCardViewSettingsProtocol { get set }
771787
func openActionsMenu()
772788
func open(action: UNComponents.UNCardMenuAction)
789+
func showSensitiveData()
790+
func hideSensitiveData()
773791
}
774792
public protocol UNCardViewSettingsProtocol {
775793
var hideActionsMenuButton: Swift.Bool { get }

UNComponents.xcframework/ios-arm64/UNComponents.framework/Modules/UNComponents.swiftmodule/arm64-apple-ios.swiftinterface

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,9 +119,13 @@ public class UNACHDebitViewSettingsBuilder : UNComponents.UNACHDebitViewSettings
119119
public var isAutoFocus: Swift.Bool {
120120
get
121121
}
122-
public init(fee: Swift.Double? = nil, isAutoFocus: Swift.Bool = false)
122+
public var sameDay: Swift.Bool {
123+
get
124+
}
125+
public init(fee: Swift.Double? = nil, isAutoFocus: Swift.Bool = false, sameDay: Swift.Bool = false)
123126
public func fee(_ fee: Swift.Double) -> UNComponents.UNACHDebitViewSettingsBuilder
124127
public func isAutoFocus(_ isAutoFocus: Swift.Bool) -> UNComponents.UNACHDebitViewSettingsBuilder
128+
public func sameDay(_ sameDay: Swift.Bool) -> UNComponents.UNACHDebitViewSettingsBuilder
125129
@objc deinit
126130
}
127131
public struct UNCheckCounterparty : Swift.Codable {
@@ -217,10 +221,14 @@ public class UNACHCreditViewSettingsBuilder : UNComponents.UNACHCreditViewSettin
217221
public var withPlaid: Swift.Bool {
218222
get
219223
}
220-
public init(fee: Swift.Double? = nil, isAutoFocus: Swift.Bool = false, withPlaid: Swift.Bool = false)
224+
public var sameDay: Swift.Bool {
225+
get
226+
}
227+
public init(fee: Swift.Double? = nil, isAutoFocus: Swift.Bool = false, withPlaid: Swift.Bool = false, sameDay: Swift.Bool = false)
221228
public func fee(_ fee: Swift.Double) -> UNComponents.UNACHCreditViewSettingsBuilder
222229
public func isAutoFocus(_ isAutoFocus: Swift.Bool) -> UNComponents.UNACHCreditViewSettingsBuilder
223230
public func withPlaid(_ withPlaid: Swift.Bool) -> UNComponents.UNACHCreditViewSettingsBuilder
231+
public func sameDay(_ sameDay: Swift.Bool) -> UNComponents.UNACHCreditViewSettingsBuilder
224232
@objc deinit
225233
}
226234
public typealias UNBookPaymentComponentCallbacks = (_ callback: UNComponents.UNBookPaymentComponentCallback) -> Swift.Void
@@ -242,6 +250,7 @@ public protocol UNACHCreditViewSettingsProtocol {
242250
var fee: Swift.Double? { get }
243251
var isAutoFocus: Swift.Bool { get }
244252
var withPlaid: Swift.Bool { get }
253+
var sameDay: Swift.Bool { get }
245254
}
246255
public protocol UNACHDebitView : UIKit.UIView {
247256
var accountId: Swift.String { get set }
@@ -250,6 +259,7 @@ public protocol UNACHDebitView : UIKit.UIView {
250259
public protocol UNACHDebitViewSettingsProtocol {
251260
var fee: Swift.Double? { get }
252261
var isAutoFocus: Swift.Bool { get }
262+
var sameDay: Swift.Bool { get }
253263
}
254264
public typealias UNAccountComponentCallbacks = (_ callback: UNComponents.UNAccountComponentCallback) -> Swift.Void
255265
public typealias UNFonts = [UNComponents.UNFontFamilyName : [UNComponents.UNFontData]]
@@ -333,6 +343,7 @@ public enum UNCardType : Swift.String, Swift.Codable {
333343
public protocol UNManagerProtocol : AnyObject {
334344
var customerToken: UNComponents.UNCustomerToken? { get set }
335345
var environment: UNComponents.UNEnvironment? { get set }
346+
var webVersioningStrategy: UNComponents.UNWebVersioningStrategy { get set }
336347
var ui: UNComponents.UNUI { get }
337348
var services: UNComponents.UNServices { get }
338349
}
@@ -723,6 +734,11 @@ public struct UNErrorResponse : Swift.Codable {
723734
public func encode(to encoder: Swift.Encoder) throws
724735
public init(from decoder: Swift.Decoder) throws
725736
}
737+
public enum UNWebVersioningStrategy {
738+
case exact(major: Swift.Int, minor: Swift.Int, patch: Swift.Int)
739+
case upToNextMinor(major: Swift.Int, minor: Swift.Int)
740+
case upToNextMajor(major: Swift.Int)
741+
}
726742
public protocol UNUI {
727743
func setTheme(_ theme: UNComponents.UNTheme?)
728744
func setLanguage(_ language: UNComponents.UNLanguage?)
@@ -770,6 +786,8 @@ public protocol UNCardView : UIKit.UIView {
770786
var additionalSetting: UNComponents.UNCardViewSettingsProtocol { get set }
771787
func openActionsMenu()
772788
func open(action: UNComponents.UNCardMenuAction)
789+
func showSensitiveData()
790+
func hideSensitiveData()
773791
}
774792
public protocol UNCardViewSettingsProtocol {
775793
var hideActionsMenuButton: Swift.Bool { get }
Binary file not shown.
Binary file not shown.

UNComponents.xcframework/ios-arm64/UNComponents.framework/html.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,5 +173,14 @@
173173
document.querySelector("unit-elements-account").dispatchEvent(new CustomEvent("unitRequestAccountAction", {detail: {action: action}}))
174174
}
175175

176+
const dispatchRequestHideSensitiveData = (componentName) => {
177+
document.querySelector(componentName).dispatchEvent(new CustomEvent("unitRequestHideSensitiveData"))
178+
}
179+
180+
const dispatchRequestShowSensitiveData = (componentName) => {
181+
document.querySelector(componentName).dispatchEvent(new CustomEvent("unitRequestShowSensitiveData"))
182+
}
183+
184+
176185
</script>
177186
</body>

UNComponents.xcframework/ios-arm64/dSYMs/UNComponents.framework.dSYM/Contents/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<key>CFBundleSignature</key>
1414
<string>????</string>
1515
<key>CFBundleShortVersionString</key>
16-
<string>0.6.1</string>
16+
<string>0.7.0</string>
1717
<key>CFBundleVersion</key>
1818
<string>0</string>
1919
</dict>

0 commit comments

Comments
 (0)