Skip to content

Commit 1e7f632

Browse files
MSZMSZ
authored andcommitted
V2.41.0
1 parent b8ded26 commit 1e7f632

9 files changed

Lines changed: 23 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to
66
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## 2.41.0 - 2022-2-7
9+
### Added
10+
- Add `showTransferErrorResult` in Dapi Configurations.
11+
- Add `showTransferSuccessfulResult` in Dapi Configurations.
12+
### Removed
13+
-Remove `showTransferResult` in Dapi Configurations.
14+
715
## 2.40.0 - 2022-2-2
816
### Added
917
- Add `showTransferResult` in Dapi Configurations.

DapiConnect.xcframework/Info.plist

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,31 +21,31 @@
2121
</dict>
2222
<dict>
2323
<key>LibraryIdentifier</key>
24-
<string>ios-arm64_armv7</string>
24+
<string>ios-arm64_x86_64-maccatalyst</string>
2525
<key>LibraryPath</key>
2626
<string>DapiConnect.framework</string>
2727
<key>SupportedArchitectures</key>
2828
<array>
2929
<string>arm64</string>
30-
<string>armv7</string>
30+
<string>x86_64</string>
3131
</array>
3232
<key>SupportedPlatform</key>
3333
<string>ios</string>
34+
<key>SupportedPlatformVariant</key>
35+
<string>maccatalyst</string>
3436
</dict>
3537
<dict>
3638
<key>LibraryIdentifier</key>
37-
<string>ios-arm64_x86_64-maccatalyst</string>
39+
<string>ios-arm64_armv7</string>
3840
<key>LibraryPath</key>
3941
<string>DapiConnect.framework</string>
4042
<key>SupportedArchitectures</key>
4143
<array>
4244
<string>arm64</string>
43-
<string>x86_64</string>
45+
<string>armv7</string>
4446
</array>
4547
<key>SupportedPlatform</key>
4648
<string>ios</string>
47-
<key>SupportedPlatformVariant</key>
48-
<string>maccatalyst</string>
4949
</dict>
5050
</array>
5151
<key>CFBundlePackageType</key>
Binary file not shown.
Binary file not shown.

DapiConnect.xcframework/ios-arm64_armv7/DapiConnect.framework/Headers/DPCConfigurations.h

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,10 @@ NS_SWIFT_NAME(DapiConfigurations)
8989

9090
@property (nonatomic, strong) NSString *postSuccessfulConnectionLoadingText;
9191

92-
@property (nonatomic, assign) BOOL showTransferResult;
92+
@property (nonatomic, assign) BOOL showTransferSuccessfulResult;
93+
94+
@property (nonatomic, assign) BOOL showTransferErrorResult;
95+
9396

9497

9598
- (instancetype)initWithCountries:(NSArray<NSString *> *_Nullable)countries environment:(DPCEnvironment _Nullable)environment;
Binary file not shown.

DapiConnect.xcframework/ios-arm64_x86_64-maccatalyst/DapiConnect.framework/Versions/A/Headers/DPCConfigurations.h

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,10 @@ NS_SWIFT_NAME(DapiConfigurations)
8989

9090
@property (nonatomic, strong) NSString *postSuccessfulConnectionLoadingText;
9191

92-
@property (nonatomic, assign) BOOL showTransferResult;
92+
@property (nonatomic, assign) BOOL showTransferSuccessfulResult;
93+
94+
@property (nonatomic, assign) BOOL showTransferErrorResult;
95+
9396

9497

9598
- (instancetype)initWithCountries:(NSArray<NSString *> *_Nullable)countries environment:(DPCEnvironment _Nullable)environment;

DapiSDK.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'DapiSDK'
3-
s.version = '2.40.0'
3+
s.version = '2.41.0'
44
s.summary = 'Financial APIs to connect users bank accounts.'
55
s.homepage = 'https://dapi.com'
66
s.author = { 'Dapi' => 'hello@dapi.co' }

0 commit comments

Comments
 (0)