Skip to content

Commit

Permalink
Merge pull request #24 from xendit/build/xcode11.4
Browse files Browse the repository at this point in the history
New build for Xcode 11.4
  • Loading branch information
hakiemaul authored May 19, 2020
2 parents 3920363 + 25017a4 commit e30c4df
Show file tree
Hide file tree
Showing 31 changed files with 148 additions and 129 deletions.
14 changes: 12 additions & 2 deletions Xendit.framework/Headers/Xendit-Swift.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#if 0
#elif defined(__arm64__) && __arm64__
// Generated by Apple Swift version 5.1.3 (swiftlang-1100.0.282.1 clang-1100.0.33.15)
// Generated by Apple Swift version 5.2.2 (swiftlang-1103.0.32.6 clang-1103.0.32.51)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wgcc-compat"

Expand Down Expand Up @@ -84,6 +84,11 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#else
# define SWIFT_NOESCAPE
#endif
#if __has_attribute(ns_consumed)
# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))
#else
# define SWIFT_RELEASES_ARGUMENT
#endif
#if __has_attribute(warn_unused_result)
# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
#else
Expand Down Expand Up @@ -326,7 +331,7 @@ typedef SWIFT_ENUM_NAMED(NSUInteger, XENLogLevel, "XenditLogLevel", open) {
#pragma clang diagnostic pop

#elif defined(__ARM_ARCH_7A__) && __ARM_ARCH_7A__
// Generated by Apple Swift version 5.1.3 (swiftlang-1100.0.282.1 clang-1100.0.33.15)
// Generated by Apple Swift version 5.2.2 (swiftlang-1103.0.32.6 clang-1103.0.32.51)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wgcc-compat"

Expand Down Expand Up @@ -410,6 +415,11 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#else
# define SWIFT_NOESCAPE
#endif
#if __has_attribute(ns_consumed)
# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))
#else
# define SWIFT_RELEASES_ARGUMENT
#endif
#if __has_attribute(warn_unused_result)
# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
#else
Expand Down
Binary file modified Xendit.framework/Info.plist
Binary file not shown.
Binary file modified Xendit.framework/Modules/Xendit.swiftmodule/arm.swiftdoc
Binary file not shown.
29 changes: 15 additions & 14 deletions Xendit.framework/Modules/Xendit.swiftmodule/arm.swiftinterface
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.1.3 (swiftlang-1100.0.282.1 clang-1100.0.33.15)
// swift-compiler-version: Apple Swift version 5.2.2 (swiftlang-1103.0.32.6 clang-1103.0.32.51)
// swift-module-flags: -target armv7-apple-ios8.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name Xendit
import SystemConfiguration.CaptiveNetwork
import CoreLocation
Expand All @@ -9,12 +9,12 @@ import SystemConfiguration
import UIKit
import WebKit
@_exported import Xendit
@objcMembers @objc(XENAuthentication) open class XenditAuthentication : ObjectiveC.NSObject {
@_inheritsConvenienceInitializers @objcMembers @objc(XENAuthentication) open class XenditAuthentication : ObjectiveC.NSObject {
@objc(authenticationID) open var id: Swift.String!
@objc open var status: Swift.String!
@objc open var authenticationURL: Swift.String?
@objc override dynamic public init()
@objc deinit
@objc override dynamic public init()
}
@objc(XENLogLevel) public enum XenditLogLevel : Swift.UInt {
case verbose, info, warning, error
Expand All @@ -24,23 +24,23 @@ import WebKit
get
}
}
@objcMembers @objc(XENError) open class XenditError : ObjectiveC.NSObject {
@_inheritsConvenienceInitializers @objcMembers @objc(XENError) open class XenditError : ObjectiveC.NSObject {
@objc(errorCode) open var errorCode: Swift.String!
@objc open var message: Swift.String!
@objc override dynamic open var description: Swift.String {
@objc get
}
@objc override dynamic public init()
@objc deinit
@objc override dynamic public init()
}
@objcMembers @objc(XENAuthenticationData) open class AuthenticationData : ObjectiveC.NSObject {
@_inheritsConvenienceInitializers @objcMembers @objc(XENAuthenticationData) open class AuthenticationData : ObjectiveC.NSObject {
@objc open var tokenId: Swift.String!
@objc open var cardCvn: Swift.String!
@objc open var amount: Foundation.NSNumber!
@objc override dynamic public init()
@objc deinit
@objc override dynamic public init()
}
@objcMembers @objc(XENCCToken) open class XenditCCToken : ObjectiveC.NSObject {
@_inheritsConvenienceInitializers @objcMembers @objc(XENCCToken) open class XenditCCToken : ObjectiveC.NSObject {
@objc(tokenID) open var id: Swift.String!
@objc open var status: Swift.String!
@objc open var authenticationId: Swift.String!
Expand All @@ -50,7 +50,7 @@ import WebKit
@objc override dynamic public init()
@objc deinit
}
@objcMembers @objc(Xendit) open class Xendit : ObjectiveC.NSObject {
@_inheritsConvenienceInitializers @objcMembers @objc(Xendit) open class Xendit : ObjectiveC.NSObject {
@objc public static var publishableKey: Swift.String?
@objc public static func createToken(fromViewController: UIKit.UIViewController, cardData: Xendit.CardData!, shouldAuthenticate: Swift.Bool, onBehalfOf: Swift.String, completion: @escaping (Xendit.XenditCCToken?, Xendit.XenditError?) -> Swift.Void)
@objc public static func createToken(fromViewController: UIKit.UIViewController, cardData: Xendit.CardData!, completion: @escaping (Xendit.XenditCCToken?, Xendit.XenditError?) -> Swift.Void)
Expand All @@ -64,10 +64,10 @@ import WebKit
@objc public static func isCvnValidForCardType(creditCardCVN: Swift.String, cardNumber: Swift.String) -> Swift.Bool
public static func setLogLevel(_ level: Xendit.XenditLogLevel?)
public static func setLogDNALevel(_ level: Xendit.ISHLogDNALevel?)
@objc override dynamic public init()
@objc deinit
@objc override dynamic public init()
}
@objcMembers @objc(XEN3DSRecommendation) open class Xendit3DSRecommendation : ObjectiveC.NSObject {
@_inheritsConvenienceInitializers @objcMembers @objc(XEN3DSRecommendation) open class Xendit3DSRecommendation : ObjectiveC.NSObject {
@objc(tokenID) open var tokenId: Swift.String!
open var should3DS: Swift.Bool!
@objc override dynamic public init()
Expand All @@ -89,7 +89,7 @@ public enum CYBCardTypes {
}
public func hash(into hasher: inout Swift.Hasher)
}
@objcMembers @objc(XENCardData) open class CardData : ObjectiveC.NSObject {
@_inheritsConvenienceInitializers @objcMembers @objc(XENCardData) open class CardData : ObjectiveC.NSObject {
@objc open var cardNumber: Swift.String!
@objc open var cardExpMonth: Swift.String!
@objc open var cardExpYear: Swift.String!
Expand All @@ -105,12 +105,13 @@ public enum CYBCardTypes {
}
@objc deinit
}
@objc @objcMembers open class WebViewConstants : ObjectiveC.NSObject {
@objc @_inheritsConvenienceInitializers @objcMembers open class WebViewConstants : ObjectiveC.NSObject {
@objc public static var templateHTMLWithAuthenticateURL: Swift.String
@objc override dynamic public init()
@objc deinit
@objc override dynamic public init()
}
extension Xendit.XenditLogLevel : Swift.Equatable {}
extension Xendit.XenditLogLevel : Swift.Hashable {}
extension Xendit.XenditLogLevel : Swift.RawRepresentable {}
extension Xendit.CYBCardTypes : Swift.Equatable {}
extension Xendit.CYBCardTypes : Swift.Hashable {}
Binary file modified Xendit.framework/Modules/Xendit.swiftmodule/arm.swiftmodule
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.1.3 (swiftlang-1100.0.282.1 clang-1100.0.33.15)
// swift-compiler-version: Apple Swift version 5.2.2 (swiftlang-1103.0.32.6 clang-1103.0.32.51)
// swift-module-flags: -target arm64-apple-ios8.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name Xendit
import SystemConfiguration.CaptiveNetwork
import CoreLocation
Expand All @@ -9,12 +9,12 @@ import SystemConfiguration
import UIKit
import WebKit
@_exported import Xendit
@objcMembers @objc(XENAuthentication) open class XenditAuthentication : ObjectiveC.NSObject {
@_inheritsConvenienceInitializers @objcMembers @objc(XENAuthentication) open class XenditAuthentication : ObjectiveC.NSObject {
@objc(authenticationID) open var id: Swift.String!
@objc open var status: Swift.String!
@objc open var authenticationURL: Swift.String?
@objc override dynamic public init()
@objc deinit
@objc override dynamic public init()
}
@objc(XENLogLevel) public enum XenditLogLevel : Swift.UInt {
case verbose, info, warning, error
Expand All @@ -24,23 +24,23 @@ import WebKit
get
}
}
@objcMembers @objc(XENError) open class XenditError : ObjectiveC.NSObject {
@_inheritsConvenienceInitializers @objcMembers @objc(XENError) open class XenditError : ObjectiveC.NSObject {
@objc(errorCode) open var errorCode: Swift.String!
@objc open var message: Swift.String!
@objc override dynamic open var description: Swift.String {
@objc get
}
@objc override dynamic public init()
@objc deinit
@objc override dynamic public init()
}
@objcMembers @objc(XENAuthenticationData) open class AuthenticationData : ObjectiveC.NSObject {
@_inheritsConvenienceInitializers @objcMembers @objc(XENAuthenticationData) open class AuthenticationData : ObjectiveC.NSObject {
@objc open var tokenId: Swift.String!
@objc open var cardCvn: Swift.String!
@objc open var amount: Foundation.NSNumber!
@objc override dynamic public init()
@objc deinit
@objc override dynamic public init()
}
@objcMembers @objc(XENCCToken) open class XenditCCToken : ObjectiveC.NSObject {
@_inheritsConvenienceInitializers @objcMembers @objc(XENCCToken) open class XenditCCToken : ObjectiveC.NSObject {
@objc(tokenID) open var id: Swift.String!
@objc open var status: Swift.String!
@objc open var authenticationId: Swift.String!
Expand All @@ -50,7 +50,7 @@ import WebKit
@objc override dynamic public init()
@objc deinit
}
@objcMembers @objc(Xendit) open class Xendit : ObjectiveC.NSObject {
@_inheritsConvenienceInitializers @objcMembers @objc(Xendit) open class Xendit : ObjectiveC.NSObject {
@objc public static var publishableKey: Swift.String?
@objc public static func createToken(fromViewController: UIKit.UIViewController, cardData: Xendit.CardData!, shouldAuthenticate: Swift.Bool, onBehalfOf: Swift.String, completion: @escaping (Xendit.XenditCCToken?, Xendit.XenditError?) -> Swift.Void)
@objc public static func createToken(fromViewController: UIKit.UIViewController, cardData: Xendit.CardData!, completion: @escaping (Xendit.XenditCCToken?, Xendit.XenditError?) -> Swift.Void)
Expand All @@ -64,10 +64,10 @@ import WebKit
@objc public static func isCvnValidForCardType(creditCardCVN: Swift.String, cardNumber: Swift.String) -> Swift.Bool
public static func setLogLevel(_ level: Xendit.XenditLogLevel?)
public static func setLogDNALevel(_ level: Xendit.ISHLogDNALevel?)
@objc override dynamic public init()
@objc deinit
@objc override dynamic public init()
}
@objcMembers @objc(XEN3DSRecommendation) open class Xendit3DSRecommendation : ObjectiveC.NSObject {
@_inheritsConvenienceInitializers @objcMembers @objc(XEN3DSRecommendation) open class Xendit3DSRecommendation : ObjectiveC.NSObject {
@objc(tokenID) open var tokenId: Swift.String!
open var should3DS: Swift.Bool!
@objc override dynamic public init()
Expand All @@ -89,7 +89,7 @@ public enum CYBCardTypes {
}
public func hash(into hasher: inout Swift.Hasher)
}
@objcMembers @objc(XENCardData) open class CardData : ObjectiveC.NSObject {
@_inheritsConvenienceInitializers @objcMembers @objc(XENCardData) open class CardData : ObjectiveC.NSObject {
@objc open var cardNumber: Swift.String!
@objc open var cardExpMonth: Swift.String!
@objc open var cardExpYear: Swift.String!
Expand All @@ -105,12 +105,13 @@ public enum CYBCardTypes {
}
@objc deinit
}
@objc @objcMembers open class WebViewConstants : ObjectiveC.NSObject {
@objc @_inheritsConvenienceInitializers @objcMembers open class WebViewConstants : ObjectiveC.NSObject {
@objc public static var templateHTMLWithAuthenticateURL: Swift.String
@objc override dynamic public init()
@objc deinit
@objc override dynamic public init()
}
extension Xendit.XenditLogLevel : Swift.Equatable {}
extension Xendit.XenditLogLevel : Swift.Hashable {}
extension Xendit.XenditLogLevel : Swift.RawRepresentable {}
extension Xendit.CYBCardTypes : Swift.Equatable {}
extension Xendit.CYBCardTypes : Swift.Hashable {}
Binary file not shown.
Binary file modified Xendit.framework/Modules/Xendit.swiftmodule/arm64.swiftdoc
Binary file not shown.
29 changes: 15 additions & 14 deletions Xendit.framework/Modules/Xendit.swiftmodule/arm64.swiftinterface
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.1.3 (swiftlang-1100.0.282.1 clang-1100.0.33.15)
// swift-compiler-version: Apple Swift version 5.2.2 (swiftlang-1103.0.32.6 clang-1103.0.32.51)
// swift-module-flags: -target arm64-apple-ios8.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name Xendit
import SystemConfiguration.CaptiveNetwork
import CoreLocation
Expand All @@ -9,12 +9,12 @@ import SystemConfiguration
import UIKit
import WebKit
@_exported import Xendit
@objcMembers @objc(XENAuthentication) open class XenditAuthentication : ObjectiveC.NSObject {
@_inheritsConvenienceInitializers @objcMembers @objc(XENAuthentication) open class XenditAuthentication : ObjectiveC.NSObject {
@objc(authenticationID) open var id: Swift.String!
@objc open var status: Swift.String!
@objc open var authenticationURL: Swift.String?
@objc override dynamic public init()
@objc deinit
@objc override dynamic public init()
}
@objc(XENLogLevel) public enum XenditLogLevel : Swift.UInt {
case verbose, info, warning, error
Expand All @@ -24,23 +24,23 @@ import WebKit
get
}
}
@objcMembers @objc(XENError) open class XenditError : ObjectiveC.NSObject {
@_inheritsConvenienceInitializers @objcMembers @objc(XENError) open class XenditError : ObjectiveC.NSObject {
@objc(errorCode) open var errorCode: Swift.String!
@objc open var message: Swift.String!
@objc override dynamic open var description: Swift.String {
@objc get
}
@objc override dynamic public init()
@objc deinit
@objc override dynamic public init()
}
@objcMembers @objc(XENAuthenticationData) open class AuthenticationData : ObjectiveC.NSObject {
@_inheritsConvenienceInitializers @objcMembers @objc(XENAuthenticationData) open class AuthenticationData : ObjectiveC.NSObject {
@objc open var tokenId: Swift.String!
@objc open var cardCvn: Swift.String!
@objc open var amount: Foundation.NSNumber!
@objc override dynamic public init()
@objc deinit
@objc override dynamic public init()
}
@objcMembers @objc(XENCCToken) open class XenditCCToken : ObjectiveC.NSObject {
@_inheritsConvenienceInitializers @objcMembers @objc(XENCCToken) open class XenditCCToken : ObjectiveC.NSObject {
@objc(tokenID) open var id: Swift.String!
@objc open var status: Swift.String!
@objc open var authenticationId: Swift.String!
Expand All @@ -50,7 +50,7 @@ import WebKit
@objc override dynamic public init()
@objc deinit
}
@objcMembers @objc(Xendit) open class Xendit : ObjectiveC.NSObject {
@_inheritsConvenienceInitializers @objcMembers @objc(Xendit) open class Xendit : ObjectiveC.NSObject {
@objc public static var publishableKey: Swift.String?
@objc public static func createToken(fromViewController: UIKit.UIViewController, cardData: Xendit.CardData!, shouldAuthenticate: Swift.Bool, onBehalfOf: Swift.String, completion: @escaping (Xendit.XenditCCToken?, Xendit.XenditError?) -> Swift.Void)
@objc public static func createToken(fromViewController: UIKit.UIViewController, cardData: Xendit.CardData!, completion: @escaping (Xendit.XenditCCToken?, Xendit.XenditError?) -> Swift.Void)
Expand All @@ -64,10 +64,10 @@ import WebKit
@objc public static func isCvnValidForCardType(creditCardCVN: Swift.String, cardNumber: Swift.String) -> Swift.Bool
public static func setLogLevel(_ level: Xendit.XenditLogLevel?)
public static func setLogDNALevel(_ level: Xendit.ISHLogDNALevel?)
@objc override dynamic public init()
@objc deinit
@objc override dynamic public init()
}
@objcMembers @objc(XEN3DSRecommendation) open class Xendit3DSRecommendation : ObjectiveC.NSObject {
@_inheritsConvenienceInitializers @objcMembers @objc(XEN3DSRecommendation) open class Xendit3DSRecommendation : ObjectiveC.NSObject {
@objc(tokenID) open var tokenId: Swift.String!
open var should3DS: Swift.Bool!
@objc override dynamic public init()
Expand All @@ -89,7 +89,7 @@ public enum CYBCardTypes {
}
public func hash(into hasher: inout Swift.Hasher)
}
@objcMembers @objc(XENCardData) open class CardData : ObjectiveC.NSObject {
@_inheritsConvenienceInitializers @objcMembers @objc(XENCardData) open class CardData : ObjectiveC.NSObject {
@objc open var cardNumber: Swift.String!
@objc open var cardExpMonth: Swift.String!
@objc open var cardExpYear: Swift.String!
Expand All @@ -105,12 +105,13 @@ public enum CYBCardTypes {
}
@objc deinit
}
@objc @objcMembers open class WebViewConstants : ObjectiveC.NSObject {
@objc @_inheritsConvenienceInitializers @objcMembers open class WebViewConstants : ObjectiveC.NSObject {
@objc public static var templateHTMLWithAuthenticateURL: Swift.String
@objc override dynamic public init()
@objc deinit
@objc override dynamic public init()
}
extension Xendit.XenditLogLevel : Swift.Equatable {}
extension Xendit.XenditLogLevel : Swift.Hashable {}
extension Xendit.XenditLogLevel : Swift.RawRepresentable {}
extension Xendit.CYBCardTypes : Swift.Equatable {}
extension Xendit.CYBCardTypes : Swift.Hashable {}
Binary file modified Xendit.framework/Modules/Xendit.swiftmodule/arm64.swiftmodule
Binary file not shown.
Binary file not shown.
Loading

0 comments on commit e30c4df

Please sign in to comment.