Skip to content

Commit

Permalink
iOS: Release 1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
skirsche-ieffects committed Feb 23, 2022
1 parent 313dbbc commit 05565a3
Show file tree
Hide file tree
Showing 80 changed files with 456 additions and 144 deletions.
2 changes: 1 addition & 1 deletion Datatrans.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "Datatrans"
spec.version = "1.5.0"
spec.version = "1.5.1"
spec.summary = "Datatrans iOS SDK - Accept payments on your iOS apps"
spec.description = <<-DESC
Accept payments on your iOS apps: Our mobile SDKs support your entire payment and
Expand Down
10 changes: 5 additions & 5 deletions Datatrans.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>Datatrans.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>Datatrans.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 modified Datatrans.xcframework/ios-arm64/Datatrans.framework/Assets.car
Binary file not shown.
Binary file modified Datatrans.xcframework/ios-arm64/Datatrans.framework/Datatrans
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -921,6 +921,22 @@ SWIFT_PROTOCOL_NAMED("TransactionDelegate")
/// This class includes the error message and other details of a transaction.
SWIFT_CLASS_NAMED("TransactionError")
@interface DTTransactionError : NSError
/// The error code for technical errors.
/// Use this constant to compare it to a <code>TransactionError</code>’s <code>code</code>.
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSInteger technical;)
+ (NSInteger)technical SWIFT_WARN_UNUSED_RESULT;
/// The error code for validation errors.
/// Use this constant to compare it to a <code>TransactionError</code>’s <code>code</code>.
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSInteger validation;)
+ (NSInteger)validation SWIFT_WARN_UNUSED_RESULT;
/// The error code for authentication errors.
/// Use this constant to compare it to a <code>TransactionError</code>’s <code>code</code>.
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSInteger authentication;)
+ (NSInteger)authentication SWIFT_WARN_UNUSED_RESULT;
/// The error code for authorization errors.
/// Use this constant to compare it to a <code>TransactionError</code>’s <code>code</code>.
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSInteger authorization;)
+ (NSInteger)authorization SWIFT_WARN_UNUSED_RESULT;
/// The payment method used during the transaction.
/// This is for use from Objective-C only. This property wraps the
/// <code>rawValue</code> of a <code>DTPaymentMethodType</code> in an <code>NSNumber</code>.
Expand Down
Binary file modified Datatrans.xcframework/ios-arm64/Datatrans.framework/Info.plist
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ import Swift
import UIKit
import WebKit
@_inheritsConvenienceInitializers @objc(DTTransactionError) public class TransactionError : Foundation.NSError {
@objc public static let technical: Swift.Int
@objc public static let validation: Swift.Int
@objc public static let authentication: Swift.Int
@objc public static let authorization: Swift.Int
public var paymentMethodType: Datatrans.PaymentMethodType? {
get
}
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ import Swift
import UIKit
import WebKit
@_inheritsConvenienceInitializers @objc(DTTransactionError) public class TransactionError : Foundation.NSError {
@objc public static let technical: Swift.Int
@objc public static let validation: Swift.Int
@objc public static let authentication: Swift.Int
@objc public static let authorization: Swift.Int
public var paymentMethodType: Datatrans.PaymentMethodType? {
get
}
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -923,6 +923,22 @@ SWIFT_PROTOCOL_NAMED("TransactionDelegate")
/// This class includes the error message and other details of a transaction.
SWIFT_CLASS_NAMED("TransactionError")
@interface DTTransactionError : NSError
/// The error code for technical errors.
/// Use this constant to compare it to a <code>TransactionError</code>’s <code>code</code>.
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSInteger technical;)
+ (NSInteger)technical SWIFT_WARN_UNUSED_RESULT;
/// The error code for validation errors.
/// Use this constant to compare it to a <code>TransactionError</code>’s <code>code</code>.
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSInteger validation;)
+ (NSInteger)validation SWIFT_WARN_UNUSED_RESULT;
/// The error code for authentication errors.
/// Use this constant to compare it to a <code>TransactionError</code>’s <code>code</code>.
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSInteger authentication;)
+ (NSInteger)authentication SWIFT_WARN_UNUSED_RESULT;
/// The error code for authorization errors.
/// Use this constant to compare it to a <code>TransactionError</code>’s <code>code</code>.
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSInteger authorization;)
+ (NSInteger)authorization SWIFT_WARN_UNUSED_RESULT;
/// The payment method used during the transaction.
/// This is for use from Objective-C only. This property wraps the
/// <code>rawValue</code> of a <code>DTPaymentMethodType</code> in an <code>NSNumber</code>.
Expand Down Expand Up @@ -1917,6 +1933,22 @@ SWIFT_PROTOCOL_NAMED("TransactionDelegate")
/// This class includes the error message and other details of a transaction.
SWIFT_CLASS_NAMED("TransactionError")
@interface DTTransactionError : NSError
/// The error code for technical errors.
/// Use this constant to compare it to a <code>TransactionError</code>’s <code>code</code>.
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSInteger technical;)
+ (NSInteger)technical SWIFT_WARN_UNUSED_RESULT;
/// The error code for validation errors.
/// Use this constant to compare it to a <code>TransactionError</code>’s <code>code</code>.
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSInteger validation;)
+ (NSInteger)validation SWIFT_WARN_UNUSED_RESULT;
/// The error code for authentication errors.
/// Use this constant to compare it to a <code>TransactionError</code>’s <code>code</code>.
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSInteger authentication;)
+ (NSInteger)authentication SWIFT_WARN_UNUSED_RESULT;
/// The error code for authorization errors.
/// Use this constant to compare it to a <code>TransactionError</code>’s <code>code</code>.
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSInteger authorization;)
+ (NSInteger)authorization SWIFT_WARN_UNUSED_RESULT;
/// The payment method used during the transaction.
/// This is for use from Objective-C only. This property wraps the
/// <code>rawValue</code> of a <code>DTPaymentMethodType</code> in an <code>NSNumber</code>.
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ import Swift
import UIKit
import WebKit
@_inheritsConvenienceInitializers @objc(DTTransactionError) public class TransactionError : Foundation.NSError {
@objc public static let technical: Swift.Int
@objc public static let validation: Swift.Int
@objc public static let authentication: Swift.Int
@objc public static let authorization: Swift.Int
public var paymentMethodType: Datatrans.PaymentMethodType? {
get
}
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ import Swift
import UIKit
import WebKit
@_inheritsConvenienceInitializers @objc(DTTransactionError) public class TransactionError : Foundation.NSError {
@objc public static let technical: Swift.Int
@objc public static let validation: Swift.Int
@objc public static let authentication: Swift.Int
@objc public static let authorization: Swift.Int
public var paymentMethodType: Datatrans.PaymentMethodType? {
get
}
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ import Swift
import UIKit
import WebKit
@_inheritsConvenienceInitializers @objc(DTTransactionError) public class TransactionError : Foundation.NSError {
@objc public static let technical: Swift.Int
@objc public static let validation: Swift.Int
@objc public static let authentication: Swift.Int
@objc public static let authorization: Swift.Int
public var paymentMethodType: Datatrans.PaymentMethodType? {
get
}
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ import Swift
import UIKit
import WebKit
@_inheritsConvenienceInitializers @objc(DTTransactionError) public class TransactionError : Foundation.NSError {
@objc public static let technical: Swift.Int
@objc public static let validation: Swift.Int
@objc public static let authentication: Swift.Int
@objc public static let authorization: Swift.Int
public var paymentMethodType: Datatrans.PaymentMethodType? {
get
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<dict>
<key>Assets.car</key>
<data>
ntzF7PmBQ5BnXysElw9s/2ufKX4=
9KW04jgOpLhQD09/JfXsbkDWQrs=
</data>
<key>Headers/CardIOCreditCardInfo.h</key>
<data>
Expand Down Expand Up @@ -202,63 +202,63 @@
</data>
<key>Headers/Datatrans-Swift.h</key>
<data>
LbyN2p4hv6gIwYvg8hBptRVOU1E=
rhIndghNQg0VN2aOPwkoY/C7F4Y=
</data>
<key>Headers/Datatrans.h</key>
<data>
9ibWHQ6meZGzn47+SyVsaaCeRv8=
</data>
<key>Info.plist</key>
<data>
KaHPaZ2mc0+NMJ42k3vBnqDCKRs=
Hpix4fTASTlfVB219i5v0CVjru8=
</data>
<key>Modules/Datatrans.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
<data>
zHfNL+gJ8Ba0KGfQ52WJY4s1AP8=
KW7UGUIUfyT6iHrIZm9pLIxMCkM=
</data>
<key>Modules/Datatrans.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
<data>
HdPgCTapbInrRCzyOVBkzZx4Vig=
0C8iSkWBMY/FKXeg9gIgkba3Be0=
</data>
<key>Modules/Datatrans.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
<data>
rmE0XEQOpHcFrQ3KWXltnQdM5JM=
AngFS+4AfVc5ljCcv1IKs16wC5A=
</data>
<key>Modules/Datatrans.swiftmodule/arm64.swiftdoc</key>
<data>
zHfNL+gJ8Ba0KGfQ52WJY4s1AP8=
KW7UGUIUfyT6iHrIZm9pLIxMCkM=
</data>
<key>Modules/Datatrans.swiftmodule/arm64.swiftinterface</key>
<data>
HdPgCTapbInrRCzyOVBkzZx4Vig=
0C8iSkWBMY/FKXeg9gIgkba3Be0=
</data>
<key>Modules/Datatrans.swiftmodule/arm64.swiftmodule</key>
<data>
rmE0XEQOpHcFrQ3KWXltnQdM5JM=
AngFS+4AfVc5ljCcv1IKs16wC5A=
</data>
<key>Modules/Datatrans.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
<data>
/HnadGCr3nVfFkMc2ztnd6j92wE=
8S08RUxyDBNEAnB+J6zEe5pGSxY=
</data>
<key>Modules/Datatrans.swiftmodule/x86_64-apple-ios-simulator.swiftinterface</key>
<data>
2Oo3TCV048kj/5gW4/Q/SJNaCx8=
5qCGd0X/iuN+36ku2OU1RVryUww=
</data>
<key>Modules/Datatrans.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
<data>
aBDBDMijf4rWbqrDWAblA6wJRyk=
eRpnaY/RG1nuVJoCPUbxJ6iVdxE=
</data>
<key>Modules/Datatrans.swiftmodule/x86_64.swiftdoc</key>
<data>
/HnadGCr3nVfFkMc2ztnd6j92wE=
8S08RUxyDBNEAnB+J6zEe5pGSxY=
</data>
<key>Modules/Datatrans.swiftmodule/x86_64.swiftinterface</key>
<data>
2Oo3TCV048kj/5gW4/Q/SJNaCx8=
5qCGd0X/iuN+36ku2OU1RVryUww=
</data>
<key>Modules/Datatrans.swiftmodule/x86_64.swiftmodule</key>
<data>
aBDBDMijf4rWbqrDWAblA6wJRyk=
eRpnaY/RG1nuVJoCPUbxJ6iVdxE=
</data>
<key>Modules/module.modulemap</key>
<data>
Expand Down Expand Up @@ -307,7 +307,7 @@
<dict>
<key>hash2</key>
<data>
pbtBszS3gge4uNEsK4hWk4T0tfqUXxSQJmG1qZFT3Kc=
JQxEJeSGfrrg79YtafdRwEjOqgTPoKyuL8VIKOOP/Ls=
</data>
</dict>
<key>Headers/CardIOCreditCardInfo.h</key>
Expand Down Expand Up @@ -650,7 +650,7 @@
<dict>
<key>hash2</key>
<data>
dIRkoXiznoCMO/qMGIC0x74MZ24BEi0Me473g4ykObQ=
DXcbZ7KRgVUzzHu8pX4EOZTf9QTZ03Zo4ozbmsD2/NI=
</data>
</dict>
<key>Headers/Datatrans.h</key>
Expand All @@ -664,84 +664,84 @@
<dict>
<key>hash2</key>
<data>
+qbuRG2WDaYjhhrlV6WveEuvFKgkRaatxSzHWzoeYXY=
RYMhktrvsp6ErykE+8n4DNprWZpUrhl8f4Syvr+7shk=
</data>
</dict>
<key>Modules/Datatrans.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
<dict>
<key>hash2</key>
<data>
ARoUew351eLKmOyGcgRPZrQIuxmvHuhfkoLJQNZaahc=
MuvCrKQlKkHfY164/xAJp+SVH84DY034ENbX44niI8g=
</data>
</dict>
<key>Modules/Datatrans.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
<dict>
<key>hash2</key>
<data>
AfELtfBxrSr8texocsm7xfPbSKZvd2mrejDHAZtSMRE=
jQGW9GAdKVvdv5p5wMdqjdDJGYQ1uTsw9+N58+3gFbk=
</data>
</dict>
<key>Modules/Datatrans.swiftmodule/arm64.swiftdoc</key>
<dict>
<key>hash2</key>
<data>
+qbuRG2WDaYjhhrlV6WveEuvFKgkRaatxSzHWzoeYXY=
RYMhktrvsp6ErykE+8n4DNprWZpUrhl8f4Syvr+7shk=
</data>
</dict>
<key>Modules/Datatrans.swiftmodule/arm64.swiftinterface</key>
<dict>
<key>hash2</key>
<data>
ARoUew351eLKmOyGcgRPZrQIuxmvHuhfkoLJQNZaahc=
MuvCrKQlKkHfY164/xAJp+SVH84DY034ENbX44niI8g=
</data>
</dict>
<key>Modules/Datatrans.swiftmodule/arm64.swiftmodule</key>
<dict>
<key>hash2</key>
<data>
AfELtfBxrSr8texocsm7xfPbSKZvd2mrejDHAZtSMRE=
jQGW9GAdKVvdv5p5wMdqjdDJGYQ1uTsw9+N58+3gFbk=
</data>
</dict>
<key>Modules/Datatrans.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
<dict>
<key>hash2</key>
<data>
a/5x4aNh6Zbjw/JaqtQ6AR5wb0VyhcGyhokwbxzGNzE=
rOEOlrZc9iFviOE+hO7cxfGcxuqTVpckmSqB4pgxCJA=
</data>
</dict>
<key>Modules/Datatrans.swiftmodule/x86_64-apple-ios-simulator.swiftinterface</key>
<dict>
<key>hash2</key>
<data>
fKwdRcp61QakOToPirTQMhjRUMKqm3EalTbUV5pcK18=
YLnQZ3C1329ExE/a0iYBaP7W8eAa3TlK2cN1d/iz/JM=
</data>
</dict>
<key>Modules/Datatrans.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
<dict>
<key>hash2</key>
<data>
GRDWNAR6nDaZiySTdtce1zXXnX4V2tNvqln/rbF0Efs=
MAV6OenLXteaAwyFqH0LSLHa5bHxjkEEs6PxwhvCUwg=
</data>
</dict>
<key>Modules/Datatrans.swiftmodule/x86_64.swiftdoc</key>
<dict>
<key>hash2</key>
<data>
a/5x4aNh6Zbjw/JaqtQ6AR5wb0VyhcGyhokwbxzGNzE=
rOEOlrZc9iFviOE+hO7cxfGcxuqTVpckmSqB4pgxCJA=
</data>
</dict>
<key>Modules/Datatrans.swiftmodule/x86_64.swiftinterface</key>
<dict>
<key>hash2</key>
<data>
fKwdRcp61QakOToPirTQMhjRUMKqm3EalTbUV5pcK18=
YLnQZ3C1329ExE/a0iYBaP7W8eAa3TlK2cN1d/iz/JM=
</data>
</dict>
<key>Modules/Datatrans.swiftmodule/x86_64.swiftmodule</key>
<dict>
<key>hash2</key>
<data>
GRDWNAR6nDaZiySTdtce1zXXnX4V2tNvqln/rbF0Efs=
MAV6OenLXteaAwyFqH0LSLHa5bHxjkEEs6PxwhvCUwg=
</data>
</dict>
<key>Modules/module.modulemap</key>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# **Datatrans iOS SDK**
![Version](https://img.shields.io/badge/Version-1.5.0-5B728F)
![Version](https://img.shields.io/badge/Version-1.5.1-5B728F)
[![License](https://img.shields.io/badge/License-Datatrans-lightgrey)](https://raw.githubusercontent.com/datatrans/ios-sdk/master/LICENSE)
[![Platform](https://img.shields.io/badge/platform-ios-0BAF73)](https://github.com/datatrans/ios-sdk)

Expand Down
Loading

0 comments on commit 05565a3

Please sign in to comment.