expo-openpay 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.js +5 -0
- package/LICENSE +21 -0
- package/README.md +87 -0
- package/android/build.gradle +76 -0
- package/android/gradle.properties +2 -0
- package/android/src/main/AndroidManifest.xml +2 -0
- package/android/src/main/java/expo/modules/openpay/ExpoOpenpayModule.kt +127 -0
- package/android/src/main/java/expo/modules/openpay/ExpoOpenpayView.kt +30 -0
- package/android/src/main/java/mx/openpay/android/BuildConfig.java +8 -0
- package/android/src/main/java/mx/openpay/android/DeviceCollectorDefaultImpl.java +70 -0
- package/android/src/main/java/mx/openpay/android/JavaScriptInterface.java +19 -0
- package/android/src/main/java/mx/openpay/android/OpCountry.java +24 -0
- package/android/src/main/java/mx/openpay/android/OpenPayResult.java +35 -0
- package/android/src/main/java/mx/openpay/android/Openpay.java +98 -0
- package/android/src/main/java/mx/openpay/android/OpenpayUrls.java +11 -0
- package/android/src/main/java/mx/openpay/android/OperationCallBack.java +13 -0
- package/android/src/main/java/mx/openpay/android/OperationResult.java +14 -0
- package/android/src/main/java/mx/openpay/android/exceptions/OpenpayServiceException.java +93 -0
- package/android/src/main/java/mx/openpay/android/exceptions/ServiceUnavailableException.java +23 -0
- package/android/src/main/java/mx/openpay/android/model/Address.java +123 -0
- package/android/src/main/java/mx/openpay/android/model/Card.java +219 -0
- package/android/src/main/java/mx/openpay/android/model/Token.java +43 -0
- package/android/src/main/java/mx/openpay/android/services/BaseService.java +93 -0
- package/android/src/main/java/mx/openpay/android/services/ServicesFactory.java +47 -0
- package/android/src/main/java/mx/openpay/android/services/TokenService.java +19 -0
- package/android/src/main/java/mx/openpay/android/validation/CardType.java +9 -0
- package/android/src/main/java/mx/openpay/android/validation/CardValidator.java +105 -0
- package/android/src/main/java/mx/openpay/android/validation/LuhnValidator.java +34 -0
- package/build/ExpoOpenpay.types.d.ts +42 -0
- package/build/ExpoOpenpay.types.d.ts.map +1 -0
- package/build/ExpoOpenpay.types.js +2 -0
- package/build/ExpoOpenpay.types.js.map +1 -0
- package/build/ExpoOpenpayModule.d.ts +10 -0
- package/build/ExpoOpenpayModule.d.ts.map +1 -0
- package/build/ExpoOpenpayModule.js +6 -0
- package/build/ExpoOpenpayModule.js.map +1 -0
- package/build/ExpoOpenpayModule.web.d.ts +10 -0
- package/build/ExpoOpenpayModule.web.d.ts.map +1 -0
- package/build/ExpoOpenpayModule.web.js +12 -0
- package/build/ExpoOpenpayModule.web.js.map +1 -0
- package/build/ExpoOpenpayView.d.ts +4 -0
- package/build/ExpoOpenpayView.d.ts.map +1 -0
- package/build/ExpoOpenpayView.js +7 -0
- package/build/ExpoOpenpayView.js.map +1 -0
- package/build/ExpoOpenpayView.web.d.ts +3 -0
- package/build/ExpoOpenpayView.web.d.ts.map +1 -0
- package/build/ExpoOpenpayView.web.js +5 -0
- package/build/ExpoOpenpayView.web.js.map +1 -0
- package/build/assets/AmexLogo.d.ts +4 -0
- package/build/assets/AmexLogo.d.ts.map +1 -0
- package/build/assets/AmexLogo.js +9 -0
- package/build/assets/AmexLogo.js.map +1 -0
- package/build/assets/MCLogo.d.ts +4 -0
- package/build/assets/MCLogo.d.ts.map +1 -0
- package/build/assets/MCLogo.js +9 -0
- package/build/assets/MCLogo.js.map +1 -0
- package/build/assets/VisaLogo.d.ts +4 -0
- package/build/assets/VisaLogo.d.ts.map +1 -0
- package/build/assets/VisaLogo.js +6 -0
- package/build/assets/VisaLogo.js.map +1 -0
- package/build/assets/index.d.ts +4 -0
- package/build/assets/index.d.ts.map +1 -0
- package/build/assets/index.js +4 -0
- package/build/assets/index.js.map +1 -0
- package/build/components/OPCardForm.d.ts +33 -0
- package/build/components/OPCardForm.d.ts.map +1 -0
- package/build/components/OPCardForm.js +120 -0
- package/build/components/OPCardForm.js.map +1 -0
- package/build/components/OPCardNumberInput.d.ts +17 -0
- package/build/components/OPCardNumberInput.d.ts.map +1 -0
- package/build/components/OPCardNumberInput.js +60 -0
- package/build/components/OPCardNumberInput.js.map +1 -0
- package/build/components/OPCvv2Input.d.ts +17 -0
- package/build/components/OPCvv2Input.d.ts.map +1 -0
- package/build/components/OPCvv2Input.js +13 -0
- package/build/components/OPCvv2Input.js.map +1 -0
- package/build/components/OPExpInput.d.ts +17 -0
- package/build/components/OPExpInput.d.ts.map +1 -0
- package/build/components/OPExpInput.js +22 -0
- package/build/components/OPExpInput.js.map +1 -0
- package/build/components/OPExpMonthInput.d.ts +17 -0
- package/build/components/OPExpMonthInput.d.ts.map +1 -0
- package/build/components/OPExpMonthInput.js +6 -0
- package/build/components/OPExpMonthInput.js.map +1 -0
- package/build/components/OPExpYearInput.d.ts +17 -0
- package/build/components/OPExpYearInput.d.ts.map +1 -0
- package/build/components/OPExpYearInput.js +6 -0
- package/build/components/OPExpYearInput.js.map +1 -0
- package/build/components/OPHolderNameInput.d.ts +17 -0
- package/build/components/OPHolderNameInput.d.ts.map +1 -0
- package/build/components/OPHolderNameInput.js +6 -0
- package/build/components/OPHolderNameInput.js.map +1 -0
- package/build/components/forms/ErrorMessage.d.ts +7 -0
- package/build/components/forms/ErrorMessage.d.ts.map +1 -0
- package/build/components/forms/ErrorMessage.js +12 -0
- package/build/components/forms/ErrorMessage.js.map +1 -0
- package/build/components/forms/FormField.d.ts +34 -0
- package/build/components/forms/FormField.d.ts.map +1 -0
- package/build/components/forms/FormField.js +33 -0
- package/build/components/forms/FormField.js.map +1 -0
- package/build/components/forms/SubmitButton.d.ts +11 -0
- package/build/components/forms/SubmitButton.d.ts.map +1 -0
- package/build/components/forms/SubmitButton.js +45 -0
- package/build/components/forms/SubmitButton.js.map +1 -0
- package/build/components/forms/Text.d.ts +7 -0
- package/build/components/forms/Text.d.ts.map +1 -0
- package/build/components/forms/Text.js +12 -0
- package/build/components/forms/Text.js.map +1 -0
- package/build/components/forms/TextInput.d.ts +30 -0
- package/build/components/forms/TextInput.d.ts.map +1 -0
- package/build/components/forms/TextInput.js +195 -0
- package/build/components/forms/TextInput.js.map +1 -0
- package/build/components/forms/index.d.ts +4 -0
- package/build/components/forms/index.d.ts.map +1 -0
- package/build/components/forms/index.js +5 -0
- package/build/components/forms/index.js.map +1 -0
- package/build/components/index.d.ts +8 -0
- package/build/components/index.d.ts.map +1 -0
- package/build/components/index.js +8 -0
- package/build/components/index.js.map +1 -0
- package/build/constants/Colors.d.ts +27 -0
- package/build/constants/Colors.d.ts.map +1 -0
- package/build/constants/Colors.js +27 -0
- package/build/constants/Colors.js.map +1 -0
- package/build/constants/Styles.d.ts +9 -0
- package/build/constants/Styles.d.ts.map +1 -0
- package/build/constants/Styles.js +9 -0
- package/build/constants/Styles.js.map +1 -0
- package/build/context/FormContext.d.ts +22 -0
- package/build/context/FormContext.d.ts.map +1 -0
- package/build/context/FormContext.js +63 -0
- package/build/context/FormContext.js.map +1 -0
- package/build/context/FormThemeContext.d.ts +20 -0
- package/build/context/FormThemeContext.d.ts.map +1 -0
- package/build/context/FormThemeContext.js +21 -0
- package/build/context/FormThemeContext.js.map +1 -0
- package/build/context/index.d.ts +4 -0
- package/build/context/index.d.ts.map +1 -0
- package/build/context/index.js +3 -0
- package/build/context/index.js.map +1 -0
- package/build/index.d.ts +6 -0
- package/build/index.d.ts.map +1 -0
- package/build/index.js +18 -0
- package/build/index.js.map +1 -0
- package/build/utility/cardBranding.d.ts +2 -0
- package/build/utility/cardBranding.d.ts.map +1 -0
- package/build/utility/cardBranding.js +2 -0
- package/build/utility/cardBranding.js.map +1 -0
- package/build/utility/formatting.d.ts +4 -0
- package/build/utility/formatting.d.ts.map +1 -0
- package/build/utility/formatting.js +20 -0
- package/build/utility/formatting.js.map +1 -0
- package/expo-module.config.json +9 -0
- package/ios/ExpoOpenpay.podspec +30 -0
- package/ios/Frameworks/OpenpayKit.xcframework/Info.plist +40 -0
- package/ios/Frameworks/OpenpayKit.xcframework/ios-arm64/OpenpayKit.framework/Headers/OpenpayKit-Swift.h +274 -0
- package/ios/Frameworks/OpenpayKit.xcframework/ios-arm64/OpenpayKit.framework/Info.plist +0 -0
- package/ios/Frameworks/OpenpayKit.xcframework/ios-arm64/OpenpayKit.framework/Modules/OpenpayKit.swiftmodule/arm64-apple-ios.abi.json +5179 -0
- package/ios/Frameworks/OpenpayKit.xcframework/ios-arm64/OpenpayKit.framework/Modules/OpenpayKit.swiftmodule/arm64-apple-ios.private.swiftinterface +127 -0
- package/ios/Frameworks/OpenpayKit.xcframework/ios-arm64/OpenpayKit.framework/Modules/OpenpayKit.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
- package/ios/Frameworks/OpenpayKit.xcframework/ios-arm64/OpenpayKit.framework/Modules/OpenpayKit.swiftmodule/arm64-apple-ios.swiftinterface +127 -0
- package/ios/Frameworks/OpenpayKit.xcframework/ios-arm64/OpenpayKit.framework/Modules/module.modulemap +4 -0
- package/ios/Frameworks/OpenpayKit.xcframework/ios-arm64/OpenpayKit.framework/OpenpayKit +0 -0
- package/ios/Frameworks/OpenpayKit.xcframework/ios-arm64/OpenpayKit.framework/_CodeSignature/CodeResources +287 -0
- package/ios/Frameworks/OpenpayKit.xcframework/ios-arm64/OpenpayKit.framework/en.lproj/CardView.nib +0 -0
- package/ios/Frameworks/OpenpayKit.xcframework/ios-arm64/OpenpayKit.framework/en.lproj/Localizable.strings +0 -0
- package/ios/Frameworks/OpenpayKit.xcframework/ios-arm64/OpenpayKit.framework/es-MX.lproj/CardView.nib +0 -0
- package/ios/Frameworks/OpenpayKit.xcframework/ios-arm64/OpenpayKit.framework/es-MX.lproj/Localizable.strings +0 -0
- package/ios/Frameworks/OpenpayKit.xcframework/ios-arm64/OpenpayKit.framework/es.lproj/CardView.nib +0 -0
- package/ios/Frameworks/OpenpayKit.xcframework/ios-arm64/OpenpayKit.framework/es.lproj/Localizable.strings +0 -0
- package/ios/Frameworks/OpenpayKit.xcframework/ios-arm64_x86_64-simulator/OpenpayKit.framework/Headers/OpenpayKit-Swift.h +544 -0
- package/ios/Frameworks/OpenpayKit.xcframework/ios-arm64_x86_64-simulator/OpenpayKit.framework/Info.plist +0 -0
- package/ios/Frameworks/OpenpayKit.xcframework/ios-arm64_x86_64-simulator/OpenpayKit.framework/Modules/OpenpayKit.swiftmodule/arm64-apple-ios-simulator.abi.json +5179 -0
- package/ios/Frameworks/OpenpayKit.xcframework/ios-arm64_x86_64-simulator/OpenpayKit.framework/Modules/OpenpayKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +127 -0
- package/ios/Frameworks/OpenpayKit.xcframework/ios-arm64_x86_64-simulator/OpenpayKit.framework/Modules/OpenpayKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
- package/ios/Frameworks/OpenpayKit.xcframework/ios-arm64_x86_64-simulator/OpenpayKit.framework/Modules/OpenpayKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface +127 -0
- package/ios/Frameworks/OpenpayKit.xcframework/ios-arm64_x86_64-simulator/OpenpayKit.framework/Modules/OpenpayKit.swiftmodule/x86_64-apple-ios-simulator.abi.json +5179 -0
- package/ios/Frameworks/OpenpayKit.xcframework/ios-arm64_x86_64-simulator/OpenpayKit.framework/Modules/OpenpayKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +127 -0
- package/ios/Frameworks/OpenpayKit.xcframework/ios-arm64_x86_64-simulator/OpenpayKit.framework/Modules/OpenpayKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc +0 -0
- package/ios/Frameworks/OpenpayKit.xcframework/ios-arm64_x86_64-simulator/OpenpayKit.framework/Modules/OpenpayKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +127 -0
- package/ios/Frameworks/OpenpayKit.xcframework/ios-arm64_x86_64-simulator/OpenpayKit.framework/Modules/module.modulemap +4 -0
- package/ios/Frameworks/OpenpayKit.xcframework/ios-arm64_x86_64-simulator/OpenpayKit.framework/OpenpayKit +0 -0
- package/ios/Frameworks/OpenpayKit.xcframework/ios-arm64_x86_64-simulator/OpenpayKit.framework/_CodeSignature/CodeResources +342 -0
- package/ios/Frameworks/OpenpayKit.xcframework/ios-arm64_x86_64-simulator/OpenpayKit.framework/en.lproj/CardView.nib +0 -0
- package/ios/Frameworks/OpenpayKit.xcframework/ios-arm64_x86_64-simulator/OpenpayKit.framework/en.lproj/Localizable.strings +0 -0
- package/ios/Frameworks/OpenpayKit.xcframework/ios-arm64_x86_64-simulator/OpenpayKit.framework/es-MX.lproj/CardView.nib +0 -0
- package/ios/Frameworks/OpenpayKit.xcframework/ios-arm64_x86_64-simulator/OpenpayKit.framework/es-MX.lproj/Localizable.strings +0 -0
- package/ios/Frameworks/OpenpayKit.xcframework/ios-arm64_x86_64-simulator/OpenpayKit.framework/es.lproj/CardView.nib +0 -0
- package/ios/Frameworks/OpenpayKit.xcframework/ios-arm64_x86_64-simulator/OpenpayKit.framework/es.lproj/Localizable.strings +0 -0
- package/ios/src/ExpoOpenpayModule.swift +105 -0
- package/ios/src/ExpoOpenpayView.swift +38 -0
- package/package.json +46 -0
- package/src/ExpoOpenpay.types.ts +47 -0
- package/src/ExpoOpenpayModule.ts +29 -0
- package/src/ExpoOpenpayModule.web.ts +15 -0
- package/src/ExpoOpenpayView.tsx +11 -0
- package/src/ExpoOpenpayView.web.tsx +5 -0
- package/src/assets/AmexLogo.tsx +24 -0
- package/src/assets/MCLogo.tsx +19 -0
- package/src/assets/VisaLogo.tsx +11 -0
- package/src/assets/index.ts +3 -0
- package/src/assets/photos/discover_logo.png +0 -0
- package/src/components/OPCardForm.tsx +303 -0
- package/src/components/OPCardNumberInput.tsx +126 -0
- package/src/components/OPCvv2Input.tsx +62 -0
- package/src/components/OPExpInput.tsx +74 -0
- package/src/components/OPExpMonthInput.tsx +55 -0
- package/src/components/OPExpYearInput.tsx +55 -0
- package/src/components/OPHolderNameInput.tsx +53 -0
- package/src/components/forms/ErrorMessage.tsx +19 -0
- package/src/components/forms/FormField.tsx +96 -0
- package/src/components/forms/SubmitButton.tsx +81 -0
- package/src/components/forms/Text.tsx +20 -0
- package/src/components/forms/TextInput.tsx +329 -0
- package/src/components/forms/index.ts +4 -0
- package/src/components/index.ts +7 -0
- package/src/constants/Colors.ts +26 -0
- package/src/constants/Styles.ts +9 -0
- package/src/context/FormContext.tsx +109 -0
- package/src/context/FormThemeContext.tsx +55 -0
- package/src/context/index.ts +3 -0
- package/src/index.ts +19 -0
- package/src/utility/cardBranding.ts +0 -0
- package/src/utility/formatting.ts +23 -0
- package/tsconfig.json +9 -0
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
// swift-interface-format-version: 1.0
|
|
2
|
+
// swift-compiler-version: Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51)
|
|
3
|
+
// swift-module-flags: -target arm64-apple-ios12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name OpenpayKit
|
|
4
|
+
// swift-module-flags-ignorable: -enable-bare-slash-regex
|
|
5
|
+
import Foundation
|
|
6
|
+
import Swift
|
|
7
|
+
import UIKit
|
|
8
|
+
import WebKit
|
|
9
|
+
import _Concurrency
|
|
10
|
+
import _StringProcessing
|
|
11
|
+
public struct TokenizeCardRequest {
|
|
12
|
+
public init(cardNumber: Swift.String, holderName: Swift.String, expirationYear: Swift.String, expirationMonth: Swift.String, cvv2: Swift.String, address: OpenpayKit.Address? = nil)
|
|
13
|
+
public let cardNumber: Swift.String
|
|
14
|
+
public let holderName: Swift.String
|
|
15
|
+
public let expirationYear: Swift.String
|
|
16
|
+
public let expirationMonth: Swift.String
|
|
17
|
+
public let cvv2: Swift.String
|
|
18
|
+
public var address: OpenpayKit.Address?
|
|
19
|
+
}
|
|
20
|
+
public struct Address : Swift.Codable {
|
|
21
|
+
public let line1: Swift.String?
|
|
22
|
+
public let line2: Swift.String?
|
|
23
|
+
public let line3: Swift.String?
|
|
24
|
+
public let state: Swift.String?
|
|
25
|
+
public let city: Swift.String?
|
|
26
|
+
public let postalCode: Swift.String?
|
|
27
|
+
public var countryCode: Swift.String?
|
|
28
|
+
public var dictionary: [Swift.String : Any] {
|
|
29
|
+
get
|
|
30
|
+
}
|
|
31
|
+
public func encode(to encoder: Swift.Encoder) throws
|
|
32
|
+
public init(from decoder: Swift.Decoder) throws
|
|
33
|
+
}
|
|
34
|
+
public class Openpay {
|
|
35
|
+
public init(withMerchantId merchantId: Swift.String, andApiKey apiKey: Swift.String, isProductionMode: Swift.Bool, isDebug: Swift.Bool = false, countryCode: Swift.String = "MX")
|
|
36
|
+
public func createTokenWithCard(address: OpenpayKit.OPAddress!, successFunction: @escaping (_ responseParams: OpenpayKit.OPToken) -> Swift.Void, failureFunction: @escaping (_ error: Foundation.NSError) -> Swift.Void)
|
|
37
|
+
public func getTokenWithId(tokenId: Swift.String, successFunction: @escaping (_ responseParams: OpenpayKit.OPToken) -> Swift.Void, failureFunction: @escaping (_ error: Foundation.NSError) -> Swift.Void)
|
|
38
|
+
public func createDeviceSessionId(successFunction: @escaping (_ sessionId: Swift.String) -> Swift.Void, failureFunction: @escaping (_ error: Foundation.NSError) -> Swift.Void)
|
|
39
|
+
public func tokenizeCard(card: OpenpayKit.TokenizeCardRequest, successFunction: @escaping (OpenpayKit.OPToken) -> (), failureFunction: @escaping (Foundation.NSError) -> ())
|
|
40
|
+
public func loadCardForm(in viewController: UIKit.UIViewController, successFunction: @escaping () -> Swift.Void, failureFunction: @escaping (_ error: Foundation.NSError) -> Swift.Void, formTitle: Swift.String)
|
|
41
|
+
@objc deinit
|
|
42
|
+
}
|
|
43
|
+
public class OPToken {
|
|
44
|
+
public var id: Swift.String
|
|
45
|
+
public var card: OpenpayKit.OPCard
|
|
46
|
+
public init()
|
|
47
|
+
public init(with dictionary: Swift.Dictionary<Swift.String, Any>)
|
|
48
|
+
@objc deinit
|
|
49
|
+
}
|
|
50
|
+
public class OPCard {
|
|
51
|
+
public enum OPCardType : Swift.Int {
|
|
52
|
+
case OPCardTypeUnknown, OPCardTypeVisa, OPCardTypeMastercard, OPCardTypeAmericanExpress
|
|
53
|
+
public init?(rawValue: Swift.Int)
|
|
54
|
+
public typealias RawValue = Swift.Int
|
|
55
|
+
public var rawValue: Swift.Int {
|
|
56
|
+
get
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
public enum OPCardSecurityCodeCheck : Swift.Int {
|
|
60
|
+
case OPCardSecurityCodeCheckUnknown, OPCardSecurityCodeCheckPassed, OPCardSecurityCodeCheckFailed
|
|
61
|
+
public init?(rawValue: Swift.Int)
|
|
62
|
+
public typealias RawValue = Swift.Int
|
|
63
|
+
public var rawValue: Swift.Int {
|
|
64
|
+
get
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
public var creationDate: Foundation.NSDate
|
|
68
|
+
public var id: Swift.String
|
|
69
|
+
public var bankName: Swift.String
|
|
70
|
+
public var allowPayouts: Swift.Bool
|
|
71
|
+
public var holderName: Swift.String
|
|
72
|
+
public var expirationMonth: Swift.String
|
|
73
|
+
public var expirationYear: Swift.String
|
|
74
|
+
public var address: OpenpayKit.OPAddress!
|
|
75
|
+
public var number: Swift.String {
|
|
76
|
+
get
|
|
77
|
+
set
|
|
78
|
+
}
|
|
79
|
+
public var brand: Swift.String
|
|
80
|
+
public var allowsCharges: Swift.Bool
|
|
81
|
+
public var bankCode: Swift.String
|
|
82
|
+
public var cvv2: Swift.String
|
|
83
|
+
public var errors: Foundation.NSMutableArray
|
|
84
|
+
public var expired: Swift.Bool {
|
|
85
|
+
get
|
|
86
|
+
}
|
|
87
|
+
public var type: OpenpayKit.OPCard.OPCardType {
|
|
88
|
+
get
|
|
89
|
+
}
|
|
90
|
+
public var numberValid: Swift.Bool {
|
|
91
|
+
get
|
|
92
|
+
}
|
|
93
|
+
public var valid: Swift.Bool {
|
|
94
|
+
get
|
|
95
|
+
}
|
|
96
|
+
public var securityCodeCheck: OpenpayKit.OPCard.OPCardSecurityCodeCheck {
|
|
97
|
+
get
|
|
98
|
+
}
|
|
99
|
+
public init()
|
|
100
|
+
public init(with dictionary: Swift.Dictionary<Swift.String, Any>)
|
|
101
|
+
public func asDictionary() -> Swift.Dictionary<Swift.String, Any>
|
|
102
|
+
@objc deinit
|
|
103
|
+
}
|
|
104
|
+
public class OPAddress {
|
|
105
|
+
public var postalCode: Swift.String
|
|
106
|
+
public var line1: Swift.String
|
|
107
|
+
public var line2: Swift.String
|
|
108
|
+
public var line3: Swift.String
|
|
109
|
+
public var city: Swift.String
|
|
110
|
+
public var state: Swift.String
|
|
111
|
+
public var countryCode: Swift.String
|
|
112
|
+
public init()
|
|
113
|
+
public init(with dictionary: Swift.Dictionary<Swift.String, Any>)
|
|
114
|
+
public func asDictionary() -> Swift.Dictionary<Swift.String, Any>
|
|
115
|
+
@objc deinit
|
|
116
|
+
}
|
|
117
|
+
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) public class CardView : UIKit.UIView, UIKit.UITextFieldDelegate {
|
|
118
|
+
@_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect)
|
|
119
|
+
@_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder)
|
|
120
|
+
@objc deinit
|
|
121
|
+
}
|
|
122
|
+
extension OpenpayKit.OPCard.OPCardType : Swift.Equatable {}
|
|
123
|
+
extension OpenpayKit.OPCard.OPCardType : Swift.Hashable {}
|
|
124
|
+
extension OpenpayKit.OPCard.OPCardType : Swift.RawRepresentable {}
|
|
125
|
+
extension OpenpayKit.OPCard.OPCardSecurityCodeCheck : Swift.Equatable {}
|
|
126
|
+
extension OpenpayKit.OPCard.OPCardSecurityCodeCheck : Swift.Hashable {}
|
|
127
|
+
extension OpenpayKit.OPCard.OPCardSecurityCodeCheck : Swift.RawRepresentable {}
|
|
Binary file
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
// swift-interface-format-version: 1.0
|
|
2
|
+
// swift-compiler-version: Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51)
|
|
3
|
+
// swift-module-flags: -target arm64-apple-ios12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name OpenpayKit
|
|
4
|
+
// swift-module-flags-ignorable: -enable-bare-slash-regex
|
|
5
|
+
import Foundation
|
|
6
|
+
import Swift
|
|
7
|
+
import UIKit
|
|
8
|
+
import WebKit
|
|
9
|
+
import _Concurrency
|
|
10
|
+
import _StringProcessing
|
|
11
|
+
public struct TokenizeCardRequest {
|
|
12
|
+
public init(cardNumber: Swift.String, holderName: Swift.String, expirationYear: Swift.String, expirationMonth: Swift.String, cvv2: Swift.String, address: OpenpayKit.Address? = nil)
|
|
13
|
+
public let cardNumber: Swift.String
|
|
14
|
+
public let holderName: Swift.String
|
|
15
|
+
public let expirationYear: Swift.String
|
|
16
|
+
public let expirationMonth: Swift.String
|
|
17
|
+
public let cvv2: Swift.String
|
|
18
|
+
public var address: OpenpayKit.Address?
|
|
19
|
+
}
|
|
20
|
+
public struct Address : Swift.Codable {
|
|
21
|
+
public let line1: Swift.String?
|
|
22
|
+
public let line2: Swift.String?
|
|
23
|
+
public let line3: Swift.String?
|
|
24
|
+
public let state: Swift.String?
|
|
25
|
+
public let city: Swift.String?
|
|
26
|
+
public let postalCode: Swift.String?
|
|
27
|
+
public var countryCode: Swift.String?
|
|
28
|
+
public var dictionary: [Swift.String : Any] {
|
|
29
|
+
get
|
|
30
|
+
}
|
|
31
|
+
public func encode(to encoder: Swift.Encoder) throws
|
|
32
|
+
public init(from decoder: Swift.Decoder) throws
|
|
33
|
+
}
|
|
34
|
+
public class Openpay {
|
|
35
|
+
public init(withMerchantId merchantId: Swift.String, andApiKey apiKey: Swift.String, isProductionMode: Swift.Bool, isDebug: Swift.Bool = false, countryCode: Swift.String = "MX")
|
|
36
|
+
public func createTokenWithCard(address: OpenpayKit.OPAddress!, successFunction: @escaping (_ responseParams: OpenpayKit.OPToken) -> Swift.Void, failureFunction: @escaping (_ error: Foundation.NSError) -> Swift.Void)
|
|
37
|
+
public func getTokenWithId(tokenId: Swift.String, successFunction: @escaping (_ responseParams: OpenpayKit.OPToken) -> Swift.Void, failureFunction: @escaping (_ error: Foundation.NSError) -> Swift.Void)
|
|
38
|
+
public func createDeviceSessionId(successFunction: @escaping (_ sessionId: Swift.String) -> Swift.Void, failureFunction: @escaping (_ error: Foundation.NSError) -> Swift.Void)
|
|
39
|
+
public func tokenizeCard(card: OpenpayKit.TokenizeCardRequest, successFunction: @escaping (OpenpayKit.OPToken) -> (), failureFunction: @escaping (Foundation.NSError) -> ())
|
|
40
|
+
public func loadCardForm(in viewController: UIKit.UIViewController, successFunction: @escaping () -> Swift.Void, failureFunction: @escaping (_ error: Foundation.NSError) -> Swift.Void, formTitle: Swift.String)
|
|
41
|
+
@objc deinit
|
|
42
|
+
}
|
|
43
|
+
public class OPToken {
|
|
44
|
+
public var id: Swift.String
|
|
45
|
+
public var card: OpenpayKit.OPCard
|
|
46
|
+
public init()
|
|
47
|
+
public init(with dictionary: Swift.Dictionary<Swift.String, Any>)
|
|
48
|
+
@objc deinit
|
|
49
|
+
}
|
|
50
|
+
public class OPCard {
|
|
51
|
+
public enum OPCardType : Swift.Int {
|
|
52
|
+
case OPCardTypeUnknown, OPCardTypeVisa, OPCardTypeMastercard, OPCardTypeAmericanExpress
|
|
53
|
+
public init?(rawValue: Swift.Int)
|
|
54
|
+
public typealias RawValue = Swift.Int
|
|
55
|
+
public var rawValue: Swift.Int {
|
|
56
|
+
get
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
public enum OPCardSecurityCodeCheck : Swift.Int {
|
|
60
|
+
case OPCardSecurityCodeCheckUnknown, OPCardSecurityCodeCheckPassed, OPCardSecurityCodeCheckFailed
|
|
61
|
+
public init?(rawValue: Swift.Int)
|
|
62
|
+
public typealias RawValue = Swift.Int
|
|
63
|
+
public var rawValue: Swift.Int {
|
|
64
|
+
get
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
public var creationDate: Foundation.NSDate
|
|
68
|
+
public var id: Swift.String
|
|
69
|
+
public var bankName: Swift.String
|
|
70
|
+
public var allowPayouts: Swift.Bool
|
|
71
|
+
public var holderName: Swift.String
|
|
72
|
+
public var expirationMonth: Swift.String
|
|
73
|
+
public var expirationYear: Swift.String
|
|
74
|
+
public var address: OpenpayKit.OPAddress!
|
|
75
|
+
public var number: Swift.String {
|
|
76
|
+
get
|
|
77
|
+
set
|
|
78
|
+
}
|
|
79
|
+
public var brand: Swift.String
|
|
80
|
+
public var allowsCharges: Swift.Bool
|
|
81
|
+
public var bankCode: Swift.String
|
|
82
|
+
public var cvv2: Swift.String
|
|
83
|
+
public var errors: Foundation.NSMutableArray
|
|
84
|
+
public var expired: Swift.Bool {
|
|
85
|
+
get
|
|
86
|
+
}
|
|
87
|
+
public var type: OpenpayKit.OPCard.OPCardType {
|
|
88
|
+
get
|
|
89
|
+
}
|
|
90
|
+
public var numberValid: Swift.Bool {
|
|
91
|
+
get
|
|
92
|
+
}
|
|
93
|
+
public var valid: Swift.Bool {
|
|
94
|
+
get
|
|
95
|
+
}
|
|
96
|
+
public var securityCodeCheck: OpenpayKit.OPCard.OPCardSecurityCodeCheck {
|
|
97
|
+
get
|
|
98
|
+
}
|
|
99
|
+
public init()
|
|
100
|
+
public init(with dictionary: Swift.Dictionary<Swift.String, Any>)
|
|
101
|
+
public func asDictionary() -> Swift.Dictionary<Swift.String, Any>
|
|
102
|
+
@objc deinit
|
|
103
|
+
}
|
|
104
|
+
public class OPAddress {
|
|
105
|
+
public var postalCode: Swift.String
|
|
106
|
+
public var line1: Swift.String
|
|
107
|
+
public var line2: Swift.String
|
|
108
|
+
public var line3: Swift.String
|
|
109
|
+
public var city: Swift.String
|
|
110
|
+
public var state: Swift.String
|
|
111
|
+
public var countryCode: Swift.String
|
|
112
|
+
public init()
|
|
113
|
+
public init(with dictionary: Swift.Dictionary<Swift.String, Any>)
|
|
114
|
+
public func asDictionary() -> Swift.Dictionary<Swift.String, Any>
|
|
115
|
+
@objc deinit
|
|
116
|
+
}
|
|
117
|
+
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) public class CardView : UIKit.UIView, UIKit.UITextFieldDelegate {
|
|
118
|
+
@_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect)
|
|
119
|
+
@_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder)
|
|
120
|
+
@objc deinit
|
|
121
|
+
}
|
|
122
|
+
extension OpenpayKit.OPCard.OPCardType : Swift.Equatable {}
|
|
123
|
+
extension OpenpayKit.OPCard.OPCardType : Swift.Hashable {}
|
|
124
|
+
extension OpenpayKit.OPCard.OPCardType : Swift.RawRepresentable {}
|
|
125
|
+
extension OpenpayKit.OPCard.OPCardSecurityCodeCheck : Swift.Equatable {}
|
|
126
|
+
extension OpenpayKit.OPCard.OPCardSecurityCodeCheck : Swift.Hashable {}
|
|
127
|
+
extension OpenpayKit.OPCard.OPCardSecurityCodeCheck : Swift.RawRepresentable {}
|
|
Binary file
|
|
@@ -0,0 +1,287 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
+
<plist version="1.0">
|
|
4
|
+
<dict>
|
|
5
|
+
<key>files</key>
|
|
6
|
+
<dict>
|
|
7
|
+
<key>Headers/OpenpayKit-Swift.h</key>
|
|
8
|
+
<data>
|
|
9
|
+
FYMpHV1Y/j5inVJmS5tvI8ZVccA=
|
|
10
|
+
</data>
|
|
11
|
+
<key>Info.plist</key>
|
|
12
|
+
<data>
|
|
13
|
+
9Slrc1jYyXE6fZabDhH1sJ/Grqk=
|
|
14
|
+
</data>
|
|
15
|
+
<key>Modules/OpenpayKit.swiftmodule/arm64-apple-ios.abi.json</key>
|
|
16
|
+
<data>
|
|
17
|
+
U1+Nb+3v7LQKSKppXTjqEgTAMrE=
|
|
18
|
+
</data>
|
|
19
|
+
<key>Modules/OpenpayKit.swiftmodule/arm64-apple-ios.private.swiftinterface</key>
|
|
20
|
+
<data>
|
|
21
|
+
8OSpByq1CBBVlTcrC06zbLZC7cc=
|
|
22
|
+
</data>
|
|
23
|
+
<key>Modules/OpenpayKit.swiftmodule/arm64-apple-ios.swiftdoc</key>
|
|
24
|
+
<data>
|
|
25
|
+
nMEGklZOYejVyOwvxyziBTq7x5I=
|
|
26
|
+
</data>
|
|
27
|
+
<key>Modules/OpenpayKit.swiftmodule/arm64-apple-ios.swiftinterface</key>
|
|
28
|
+
<data>
|
|
29
|
+
8OSpByq1CBBVlTcrC06zbLZC7cc=
|
|
30
|
+
</data>
|
|
31
|
+
<key>Modules/OpenpayKit.swiftmodule/arm64-apple-ios.swiftmodule</key>
|
|
32
|
+
<data>
|
|
33
|
+
D+56Jp/rG5wEiaN2Am8n6JPbcCw=
|
|
34
|
+
</data>
|
|
35
|
+
<key>Modules/module.modulemap</key>
|
|
36
|
+
<data>
|
|
37
|
+
3nGoxr9qhymqGljBaPXkLAIBVuk=
|
|
38
|
+
</data>
|
|
39
|
+
<key>en.lproj/CardView.nib</key>
|
|
40
|
+
<dict>
|
|
41
|
+
<key>hash</key>
|
|
42
|
+
<data>
|
|
43
|
+
grLzmHi4VIo29zEPaj+UDyC5B4w=
|
|
44
|
+
</data>
|
|
45
|
+
<key>optional</key>
|
|
46
|
+
<true/>
|
|
47
|
+
</dict>
|
|
48
|
+
<key>en.lproj/Localizable.strings</key>
|
|
49
|
+
<dict>
|
|
50
|
+
<key>hash</key>
|
|
51
|
+
<data>
|
|
52
|
+
qekEsmlwwIit7QTv/EyQXMUqKMg=
|
|
53
|
+
</data>
|
|
54
|
+
<key>optional</key>
|
|
55
|
+
<true/>
|
|
56
|
+
</dict>
|
|
57
|
+
<key>es-MX.lproj/CardView.nib</key>
|
|
58
|
+
<dict>
|
|
59
|
+
<key>hash</key>
|
|
60
|
+
<data>
|
|
61
|
+
cf1VEjAO3l8nXdqNo2NqEZcqjlk=
|
|
62
|
+
</data>
|
|
63
|
+
<key>optional</key>
|
|
64
|
+
<true/>
|
|
65
|
+
</dict>
|
|
66
|
+
<key>es-MX.lproj/Localizable.strings</key>
|
|
67
|
+
<dict>
|
|
68
|
+
<key>hash</key>
|
|
69
|
+
<data>
|
|
70
|
+
CHuPhhTQgZV1kAB6EjWGnWWbvS4=
|
|
71
|
+
</data>
|
|
72
|
+
<key>optional</key>
|
|
73
|
+
<true/>
|
|
74
|
+
</dict>
|
|
75
|
+
<key>es.lproj/CardView.nib</key>
|
|
76
|
+
<dict>
|
|
77
|
+
<key>hash</key>
|
|
78
|
+
<data>
|
|
79
|
+
bGdWY3EDOMZe3QI+qsWh/TwN3HA=
|
|
80
|
+
</data>
|
|
81
|
+
<key>optional</key>
|
|
82
|
+
<true/>
|
|
83
|
+
</dict>
|
|
84
|
+
<key>es.lproj/Localizable.strings</key>
|
|
85
|
+
<dict>
|
|
86
|
+
<key>hash</key>
|
|
87
|
+
<data>
|
|
88
|
+
CHuPhhTQgZV1kAB6EjWGnWWbvS4=
|
|
89
|
+
</data>
|
|
90
|
+
<key>optional</key>
|
|
91
|
+
<true/>
|
|
92
|
+
</dict>
|
|
93
|
+
</dict>
|
|
94
|
+
<key>files2</key>
|
|
95
|
+
<dict>
|
|
96
|
+
<key>Headers/OpenpayKit-Swift.h</key>
|
|
97
|
+
<dict>
|
|
98
|
+
<key>hash2</key>
|
|
99
|
+
<data>
|
|
100
|
+
VKBq/d97rbGC7s4juQ8VFW/VJ5CCzcQdllYL+4rz+q8=
|
|
101
|
+
</data>
|
|
102
|
+
</dict>
|
|
103
|
+
<key>Modules/OpenpayKit.swiftmodule/arm64-apple-ios.abi.json</key>
|
|
104
|
+
<dict>
|
|
105
|
+
<key>hash2</key>
|
|
106
|
+
<data>
|
|
107
|
+
vr7tR0SoOeMR9CQBA6W8YkuhTMz2yjdyKwgPYUY4DUo=
|
|
108
|
+
</data>
|
|
109
|
+
</dict>
|
|
110
|
+
<key>Modules/OpenpayKit.swiftmodule/arm64-apple-ios.private.swiftinterface</key>
|
|
111
|
+
<dict>
|
|
112
|
+
<key>hash2</key>
|
|
113
|
+
<data>
|
|
114
|
+
aYKObohefjwK0IBLaAYBWlKiaSdvTN/64Dvs5h6Hd7Q=
|
|
115
|
+
</data>
|
|
116
|
+
</dict>
|
|
117
|
+
<key>Modules/OpenpayKit.swiftmodule/arm64-apple-ios.swiftdoc</key>
|
|
118
|
+
<dict>
|
|
119
|
+
<key>hash2</key>
|
|
120
|
+
<data>
|
|
121
|
+
swFZ9gW5b6vLujKnNP6iKbPphh4Evxnbxr28ex6s+Bs=
|
|
122
|
+
</data>
|
|
123
|
+
</dict>
|
|
124
|
+
<key>Modules/OpenpayKit.swiftmodule/arm64-apple-ios.swiftinterface</key>
|
|
125
|
+
<dict>
|
|
126
|
+
<key>hash2</key>
|
|
127
|
+
<data>
|
|
128
|
+
aYKObohefjwK0IBLaAYBWlKiaSdvTN/64Dvs5h6Hd7Q=
|
|
129
|
+
</data>
|
|
130
|
+
</dict>
|
|
131
|
+
<key>Modules/OpenpayKit.swiftmodule/arm64-apple-ios.swiftmodule</key>
|
|
132
|
+
<dict>
|
|
133
|
+
<key>hash2</key>
|
|
134
|
+
<data>
|
|
135
|
+
QsmnwY0ADLeLY7NGNsuZse3yojbCkyjrqBarfuyw57E=
|
|
136
|
+
</data>
|
|
137
|
+
</dict>
|
|
138
|
+
<key>Modules/module.modulemap</key>
|
|
139
|
+
<dict>
|
|
140
|
+
<key>hash2</key>
|
|
141
|
+
<data>
|
|
142
|
+
Kx8MICJIV5Z7OgEk0lltWWaq2pxKo34yPzQ5P29COzk=
|
|
143
|
+
</data>
|
|
144
|
+
</dict>
|
|
145
|
+
<key>en.lproj/CardView.nib</key>
|
|
146
|
+
<dict>
|
|
147
|
+
<key>hash2</key>
|
|
148
|
+
<data>
|
|
149
|
+
xwwMqiwXJrwCqU31Qtkran3UqFxIIS1iVpohR4lBjvw=
|
|
150
|
+
</data>
|
|
151
|
+
<key>optional</key>
|
|
152
|
+
<true/>
|
|
153
|
+
</dict>
|
|
154
|
+
<key>en.lproj/Localizable.strings</key>
|
|
155
|
+
<dict>
|
|
156
|
+
<key>hash2</key>
|
|
157
|
+
<data>
|
|
158
|
+
lD795sRHKk9TfYb05W6VzqNA7pJ6alsPb/07jKU2x6g=
|
|
159
|
+
</data>
|
|
160
|
+
<key>optional</key>
|
|
161
|
+
<true/>
|
|
162
|
+
</dict>
|
|
163
|
+
<key>es-MX.lproj/CardView.nib</key>
|
|
164
|
+
<dict>
|
|
165
|
+
<key>hash2</key>
|
|
166
|
+
<data>
|
|
167
|
+
YX3M02WVGrCsRolkPpC/l7XKECUmyn8CvtW0+oCSmDQ=
|
|
168
|
+
</data>
|
|
169
|
+
<key>optional</key>
|
|
170
|
+
<true/>
|
|
171
|
+
</dict>
|
|
172
|
+
<key>es-MX.lproj/Localizable.strings</key>
|
|
173
|
+
<dict>
|
|
174
|
+
<key>hash2</key>
|
|
175
|
+
<data>
|
|
176
|
+
+R1LCPfbUV/CDbc+NEcpsJWECUXslJpgpj/P4jHBSKg=
|
|
177
|
+
</data>
|
|
178
|
+
<key>optional</key>
|
|
179
|
+
<true/>
|
|
180
|
+
</dict>
|
|
181
|
+
<key>es.lproj/CardView.nib</key>
|
|
182
|
+
<dict>
|
|
183
|
+
<key>hash2</key>
|
|
184
|
+
<data>
|
|
185
|
+
bn+itG8pQSDfi4pXz2yuAe2WRGs14MylLXn3l3dV9oY=
|
|
186
|
+
</data>
|
|
187
|
+
<key>optional</key>
|
|
188
|
+
<true/>
|
|
189
|
+
</dict>
|
|
190
|
+
<key>es.lproj/Localizable.strings</key>
|
|
191
|
+
<dict>
|
|
192
|
+
<key>hash2</key>
|
|
193
|
+
<data>
|
|
194
|
+
+R1LCPfbUV/CDbc+NEcpsJWECUXslJpgpj/P4jHBSKg=
|
|
195
|
+
</data>
|
|
196
|
+
<key>optional</key>
|
|
197
|
+
<true/>
|
|
198
|
+
</dict>
|
|
199
|
+
</dict>
|
|
200
|
+
<key>rules</key>
|
|
201
|
+
<dict>
|
|
202
|
+
<key>^.*</key>
|
|
203
|
+
<true/>
|
|
204
|
+
<key>^.*\.lproj/</key>
|
|
205
|
+
<dict>
|
|
206
|
+
<key>optional</key>
|
|
207
|
+
<true/>
|
|
208
|
+
<key>weight</key>
|
|
209
|
+
<real>1000</real>
|
|
210
|
+
</dict>
|
|
211
|
+
<key>^.*\.lproj/locversion.plist$</key>
|
|
212
|
+
<dict>
|
|
213
|
+
<key>omit</key>
|
|
214
|
+
<true/>
|
|
215
|
+
<key>weight</key>
|
|
216
|
+
<real>1100</real>
|
|
217
|
+
</dict>
|
|
218
|
+
<key>^Base\.lproj/</key>
|
|
219
|
+
<dict>
|
|
220
|
+
<key>weight</key>
|
|
221
|
+
<real>1010</real>
|
|
222
|
+
</dict>
|
|
223
|
+
<key>^version.plist$</key>
|
|
224
|
+
<true/>
|
|
225
|
+
</dict>
|
|
226
|
+
<key>rules2</key>
|
|
227
|
+
<dict>
|
|
228
|
+
<key>.*\.dSYM($|/)</key>
|
|
229
|
+
<dict>
|
|
230
|
+
<key>weight</key>
|
|
231
|
+
<real>11</real>
|
|
232
|
+
</dict>
|
|
233
|
+
<key>^(.*/)?\.DS_Store$</key>
|
|
234
|
+
<dict>
|
|
235
|
+
<key>omit</key>
|
|
236
|
+
<true/>
|
|
237
|
+
<key>weight</key>
|
|
238
|
+
<real>2000</real>
|
|
239
|
+
</dict>
|
|
240
|
+
<key>^.*</key>
|
|
241
|
+
<true/>
|
|
242
|
+
<key>^.*\.lproj/</key>
|
|
243
|
+
<dict>
|
|
244
|
+
<key>optional</key>
|
|
245
|
+
<true/>
|
|
246
|
+
<key>weight</key>
|
|
247
|
+
<real>1000</real>
|
|
248
|
+
</dict>
|
|
249
|
+
<key>^.*\.lproj/locversion.plist$</key>
|
|
250
|
+
<dict>
|
|
251
|
+
<key>omit</key>
|
|
252
|
+
<true/>
|
|
253
|
+
<key>weight</key>
|
|
254
|
+
<real>1100</real>
|
|
255
|
+
</dict>
|
|
256
|
+
<key>^Base\.lproj/</key>
|
|
257
|
+
<dict>
|
|
258
|
+
<key>weight</key>
|
|
259
|
+
<real>1010</real>
|
|
260
|
+
</dict>
|
|
261
|
+
<key>^Info\.plist$</key>
|
|
262
|
+
<dict>
|
|
263
|
+
<key>omit</key>
|
|
264
|
+
<true/>
|
|
265
|
+
<key>weight</key>
|
|
266
|
+
<real>20</real>
|
|
267
|
+
</dict>
|
|
268
|
+
<key>^PkgInfo$</key>
|
|
269
|
+
<dict>
|
|
270
|
+
<key>omit</key>
|
|
271
|
+
<true/>
|
|
272
|
+
<key>weight</key>
|
|
273
|
+
<real>20</real>
|
|
274
|
+
</dict>
|
|
275
|
+
<key>^embedded\.provisionprofile$</key>
|
|
276
|
+
<dict>
|
|
277
|
+
<key>weight</key>
|
|
278
|
+
<real>20</real>
|
|
279
|
+
</dict>
|
|
280
|
+
<key>^version\.plist$</key>
|
|
281
|
+
<dict>
|
|
282
|
+
<key>weight</key>
|
|
283
|
+
<real>20</real>
|
|
284
|
+
</dict>
|
|
285
|
+
</dict>
|
|
286
|
+
</dict>
|
|
287
|
+
</plist>
|
package/ios/Frameworks/OpenpayKit.xcframework/ios-arm64/OpenpayKit.framework/en.lproj/CardView.nib
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|