Skip to content

Commit

Permalink
* Updated Direct Tap Framework from v3.0.0 to v3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
torresejay102 committed Apr 4, 2022
1 parent f822bcb commit fde5013
Show file tree
Hide file tree
Showing 84 changed files with 3,802 additions and 5,910 deletions.
10 changes: 5 additions & 5 deletions Sources/Direct/DirectTapFramework.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,30 +6,30 @@
<array>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>DirectTapFramework.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>DirectTapFramework.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by Apple Swift version 5.5.1 (swiftlang-1300.0.31.4 clang-1300.0.29.6)
// Generated by Apple Swift version 5.6 (swiftlang-5.6.0.323.62 clang-1316.0.20.8)
#ifndef DIRECTTAPFRAMEWORK_SWIFT_H
#define DIRECTTAPFRAMEWORK_SWIFT_H
#pragma clang diagnostic push
Expand Down Expand Up @@ -184,6 +184,13 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#if !defined(IBSegueAction)
# define IBSegueAction
#endif
#if !defined(SWIFT_EXTERN)
# if defined(__cplusplus)
# define SWIFT_EXTERN extern "C"
# else
# define SWIFT_EXTERN extern
# endif
#endif
#if __has_feature(modules)
#if __has_warning("-Watimport-in-framework-header")
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// swift-interface-format-version: 1.0
// swift-compiler-version: Apple Swift version 5.5.1 (swiftlang-1300.0.31.4 clang-1300.0.29.6)
// swift-compiler-version: Apple Swift version 5.6 (swiftlang-5.6.0.323.62 clang-1316.0.20.8)
// swift-module-flags: -target arm64-apple-ios12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name DirectTapFramework
import CryptoKit
import Foundation
Expand All @@ -8,13 +8,43 @@ import Swift
import UIKit
import WebKit
import _Concurrency
public struct FundTransferFee {
public var idOnlineTransferLimit: DirectTapFramework.Amount
public var idOnlineTransferFee: DirectTapFramework.Amount
public var idllgTransferLimit: DirectTapFramework.Amount
public var idllgTransferFee: DirectTapFramework.Amount
public var idrtgsTransferFee: DirectTapFramework.Amount
public var phInstapayTransferLimit: DirectTapFramework.Amount
public var phInstapayTransferFee: DirectTapFramework.Amount
public var phPesonetTransferFee: DirectTapFramework.Amount
public var intrabankTransferFee: DirectTapFramework.Amount
public init()
}
public struct FundTransferLimit {
public var currency: DirectTapFramework.Currency
public var interbankMinLimit: DirectTapFramework.Amount
public var interbankMaxLimit: DirectTapFramework.Amount
public var intrabankMinLimit: DirectTapFramework.Amount
public var intrabankMaxLimit: DirectTapFramework.Amount
public init()
}
public struct Bank {
public var bankCode: DirectTapFramework.BankCode
public var country: DirectTapFramework.Country
public var title: Swift.String
public var logoUrl: Swift.String
public var fundTransferLimit: DirectTapFramework.FundTransferLimit
public var fundTransferFee: DirectTapFramework.FundTransferFee
public init(bankCode: DirectTapFramework.BankCode, country: DirectTapFramework.Country, title: Swift.String, logoUrl: Swift.String, fundTransferLimit: DirectTapFramework.FundTransferLimit, fundTransferFee: DirectTapFramework.FundTransferFee)
}
public enum BankCode : Swift.Int {
case Mandiri
case BCA
case BNI
case BRI
case BDO
case BPI
case BPIC
case KB
case PNB
case UB
Expand All @@ -38,14 +68,14 @@ public enum BankCode : Swift.Int {
public func initialize(apiKey: Swift.String, certPath: Swift.String? = nil, isDebug: Swift.Bool = false)
public func checkout(tapRequest: DirectTapFramework.DirectTapRequest, vc: UIKit.UIViewController, closure: @escaping (DirectTapFramework.Transaction?, Swift.String?) -> Swift.Void, showBackButton: Swift.Bool = true) throws
public func checkoutWithinSameScreen(tapRequest: DirectTapFramework.DirectTapRequest, vc: UIKit.UIViewController, closure: @escaping (DirectTapFramework.Transaction?, Swift.String?) -> Swift.Void, showWithinSameScreen: Swift.Bool, showBackButton: Swift.Bool = true) throws
public func retrieveCheckoutURL(tapRequest: DirectTapFramework.DirectTapRequest, vc: UIKit.UIViewController, closure: @escaping (Swift.String?, Swift.String?) -> Swift.Void, showBackButton: Swift.Bool = true) throws
public func retrieveCheckoutURL(tapRequest: DirectTapFramework.DirectTapRequest, vc: UIKit.UIViewController, closure: @escaping (Swift.String?, Swift.String?) -> Swift.Void) throws
public func cancel()
public func clearRememberMe()
@objc public func safariViewControllerDidFinish(_ controller: SafariServices.SFSafariViewController)
public func initSecurityCheck(delegate: DirectTapFramework.CheckDelegate)
public func getBundleSeedID() -> Swift.String?
public func getFrameworkVersion() -> Swift.String
public func getSourceBanks(country: DirectTapFramework.Country, destinationBank: DirectTapFramework.BankCode, closure: @escaping ([DirectTapFramework.BankCode], Swift.String?) -> Swift.Void)
public func getSourceBanks(country: DirectTapFramework.Country, destinationBank: DirectTapFramework.BankCode, closure: @escaping ([DirectTapFramework.Bank], Swift.String?) -> Swift.Void)
public enum TapError : Swift.Error {
case invalidReturnAndFailUrl
public static func == (a: DirectTapFramework.DirectTapSF.TapError, b: DirectTapFramework.DirectTapSF.TapError) -> Swift.Bool
Expand Down Expand Up @@ -282,16 +312,12 @@ public enum Currency : Swift.Int {
case yer
case zrn
case zmw
public init?(rawValue: Swift.Int)
public init(rawValue: Swift.Int)
public typealias RawValue = Swift.Int
public var rawValue: Swift.Int {
get
}
}
public protocol CoreDelegate {
associatedtype T
func onResult(data: Self.T?, error: Swift.String?, errorCode: Swift.String?)
}
public struct DirectTapError {
public static let shared: DirectTapFramework.DirectTapError
}
Expand Down
Binary file not shown.
Loading

0 comments on commit fde5013

Please sign in to comment.