@@ -164,6 +164,7 @@ public enum UNACHCreditComponentCallback {
164164 case unitOnLoad(result: Swift.Result<UNComponents.UNACHCreditOnLoadResponse, UNComponents.UNComponentsError>)
165165}
166166public struct UNCounterparty : Swift.Codable {
167+ public let type: Swift.String?
167168 public let id: Swift.String
168169 public let attributes: UNComponents.UNCounterparty.Attributes
169170 public let relationships: UNComponents.UNCounterparty.Relationships
@@ -212,6 +213,7 @@ public enum UNCounterpartyPermission : Swift.String, Swift.Codable {
212213public enum UNCounterpartyAccountType : Swift.String, Swift.Codable {
213214 case checking
214215 case savings
216+ case loan
215217 public init?(rawValue: Swift.String)
216218 public typealias RawValue = Swift.String
217219 public var rawValue: Swift.String {
@@ -848,9 +850,6 @@ public enum UNComponentsError : Swift.Error {
848850}
849851public typealias UNMultipleCardsComponentCallbacks = (_ callback: UNComponents.UNMultipleCardsComponentCallback) -> Swift.Void
850852public class UNACHDebitViewSettingsBuilder : UNComponents.UNACHDebitViewSettingsProtocol {
851- public var fee: Swift.Double? {
852- get
853- }
854853 public var isAutoFocus: Swift.Bool {
855854 get
856855 }
@@ -872,15 +871,18 @@ public class UNACHDebitViewSettingsBuilder : UNComponents.UNACHDebitViewSettings
872871 public var showSameDaySelection: Swift.Bool {
873872 get
874873 }
875- public init(fee: Swift.Double? = nil, isAutoFocus: Swift.Bool = false, plaidAccountFilters: [UNComponents.UNPlaidAccountFilter]? = nil, plaidLinkCustomizationName: Swift.String? = nil, sameDay: Swift.Bool = false, initialStageBackButton: Swift.Bool = false, finalStageDoneButton: Swift.Bool = false, showSameDaySelection: Swift.Bool = false)
876- public func fee(_ fee: Swift.Double) -> UNComponents.UNACHDebitViewSettingsBuilder
874+ public var allowCounterpartyDelete: Swift.Bool {
875+ get
876+ }
877+ public init(isAutoFocus: Swift.Bool = false, plaidAccountFilters: [UNComponents.UNPlaidAccountFilter]? = nil, plaidLinkCustomizationName: Swift.String? = nil, sameDay: Swift.Bool = false, initialStageBackButton: Swift.Bool = false, finalStageDoneButton: Swift.Bool = false, showSameDaySelection: Swift.Bool = false, allowCounterpartyDelete: Swift.Bool = false)
877878 public func isAutoFocus(_ isAutoFocus: Swift.Bool) -> UNComponents.UNACHDebitViewSettingsBuilder
878879 public func sameDay(_ sameDay: Swift.Bool) -> UNComponents.UNACHDebitViewSettingsBuilder
879880 public func plaidAccountFilters(_ plaidAccountFilters: [UNComponents.UNPlaidAccountFilter]) -> UNComponents.UNACHDebitViewSettingsBuilder
880881 public func plaidLinkCustomizationName(_ plaidLinkCustomizationName: Swift.String) -> UNComponents.UNACHDebitViewSettingsBuilder
881882 public func initialStageBackButton(_ initialStageBackButton: Swift.Bool) -> UNComponents.UNACHDebitViewSettingsBuilder
882883 public func finalStageDoneButton(_ finalStageDoneButton: Swift.Bool) -> UNComponents.UNACHDebitViewSettingsBuilder
883884 public func showSameDaySelection(_ showSameDaySelection: Swift.Bool) -> UNComponents.UNACHDebitViewSettingsBuilder
885+ public func allowCounterpartyDelete(_ allowCounterpartyDelete: Swift.Bool) -> UNComponents.UNACHDebitViewSettingsBuilder
884886 @objc deinit
885887}
886888public struct UNCheckDepositTransaction : Swift.Codable {
@@ -1441,9 +1443,6 @@ public struct UNPaymentAdvance : Swift.Codable {
14411443 public init(from decoder: any Swift.Decoder) throws
14421444}
14431445public class UNACHCreditViewSettingsBuilder : UNComponents.UNACHCreditViewSettingsProtocol {
1444- public var fee: Swift.Double? {
1445- get
1446- }
14471446 public var isAutoFocus: Swift.Bool {
14481447 get
14491448 }
@@ -1468,8 +1467,13 @@ public class UNACHCreditViewSettingsBuilder : UNComponents.UNACHCreditViewSettin
14681467 public var showSameDaySelection: Swift.Bool {
14691468 get
14701469 }
1471- public init(fee: Swift.Double? = nil, isAutoFocus: Swift.Bool = false, withPlaid: Swift.Bool = false, plaidAccountFilters: [UNComponents.UNPlaidAccountFilter]? = nil, plaidLinkCustomizationName: Swift.String? = nil, sameDay: Swift.Bool = false, initialStageBackButton: Swift.Bool = false, finalStageDoneButton: Swift.Bool = false, showSameDaySelection: Swift.Bool = false)
1472- public func fee(_ fee: Swift.Double) -> UNComponents.UNACHCreditViewSettingsBuilder
1470+ public var allowCounterpartyDelete: Swift.Bool {
1471+ get
1472+ }
1473+ public var showAccountTypeSelector: Swift.Bool {
1474+ get
1475+ }
1476+ public init(isAutoFocus: Swift.Bool = false, withPlaid: Swift.Bool = false, plaidAccountFilters: [UNComponents.UNPlaidAccountFilter]? = nil, plaidLinkCustomizationName: Swift.String? = nil, sameDay: Swift.Bool = false, initialStageBackButton: Swift.Bool = false, finalStageDoneButton: Swift.Bool = false, showSameDaySelection: Swift.Bool = false, allowCounterpartyDelete: Swift.Bool = false, showAccountTypeSelector: Swift.Bool = false)
14731477 public func isAutoFocus(_ isAutoFocus: Swift.Bool) -> UNComponents.UNACHCreditViewSettingsBuilder
14741478 public func withPlaid(_ withPlaid: Swift.Bool) -> UNComponents.UNACHCreditViewSettingsBuilder
14751479 public func plaidAccountFilters(_ plaidAccountFilters: [UNComponents.UNPlaidAccountFilter]) -> UNComponents.UNACHCreditViewSettingsBuilder
@@ -1478,6 +1482,8 @@ public class UNACHCreditViewSettingsBuilder : UNComponents.UNACHCreditViewSettin
14781482 public func initialStageBackButton(_ initialStageBackButton: Swift.Bool) -> UNComponents.UNACHCreditViewSettingsBuilder
14791483 public func finalStageDoneButton(_ finalStageDoneButton: Swift.Bool) -> UNComponents.UNACHCreditViewSettingsBuilder
14801484 public func showSameDaySelection(_ showSameDaySelection: Swift.Bool) -> UNComponents.UNACHCreditViewSettingsBuilder
1485+ public func allowCounterpartyDelete(_ allowCounterpartyDelete: Swift.Bool) -> UNComponents.UNACHCreditViewSettingsBuilder
1486+ public func showAccountTypeSelector(_ showAccountTypeSelector: Swift.Bool) -> UNComponents.UNACHCreditViewSettingsBuilder
14811487 @objc deinit
14821488}
14831489public struct UNAtm : Swift.Codable {
@@ -2099,7 +2105,6 @@ public protocol UNACHCreditView : UIKit.UIView {
20992105 var additionalSettings: any UNComponents.UNACHCreditViewSettingsProtocol { get set }
21002106}
21012107public protocol UNACHCreditViewSettingsProtocol {
2102- var fee: Swift.Double? { get }
21032108 var isAutoFocus: Swift.Bool { get }
21042109 var withPlaid: Swift.Bool { get }
21052110 var plaidAccountFilters: [UNComponents.UNPlaidAccountFilter]? { get }
@@ -2108,6 +2113,8 @@ public protocol UNACHCreditViewSettingsProtocol {
21082113 var initialStageBackButton: Swift.Bool { get }
21092114 var finalStageDoneButton: Swift.Bool { get }
21102115 var showSameDaySelection: Swift.Bool { get }
2116+ var allowCounterpartyDelete: Swift.Bool { get }
2117+ var showAccountTypeSelector: Swift.Bool { get }
21112118}
21122119public enum UNCreateCardComponentCallback {
21132120 case unitOnLoad(result: Swift.Result<UNComponents.UNCreateCardComponentResources, UNComponents.UNComponentsError>)
@@ -2127,14 +2134,14 @@ public protocol UNACHDebitView : UIKit.UIView {
21272134 var additionalSettings: any UNComponents.UNACHDebitViewSettingsProtocol { get set }
21282135}
21292136public protocol UNACHDebitViewSettingsProtocol {
2130- var fee: Swift.Double? { get }
21312137 var isAutoFocus: Swift.Bool { get }
21322138 var sameDay: Swift.Bool { get }
21332139 var plaidAccountFilters: [UNComponents.UNPlaidAccountFilter]? { get }
21342140 var plaidLinkCustomizationName: Swift.String? { get }
21352141 var initialStageBackButton: Swift.Bool { get }
21362142 var finalStageDoneButton: Swift.Bool { get }
21372143 var showSameDaySelection: Swift.Bool { get }
2144+ var allowCounterpartyDelete: Swift.Bool { get }
21382145}
21392146public typealias UNAccountComponentCallbacks = (_ callback: UNComponents.UNAccountComponentCallback) -> Swift.Void
21402147public typealias UNComponentsFonts = [UNComponents.UNComponentsFontFamilyName : [UNComponents.UNComponentsFontData]]
@@ -3350,7 +3357,6 @@ public enum UNSnapshotProtectionStrategy {
33503357}
33513358public protocol UNWirePaymentView : UIKit.UIView {
33523359 var accountId: Swift.String? { get set }
3353- var fee: Swift.Double? { get set }
33543360 var additionalSettings: any UNComponents.UNWirePaymentViewSettingsProtocol { get set }
33553361}
33563362public protocol UNWirePaymentViewSettingsProtocol {
0 commit comments