Skip to content

Commit

Permalink
Merge pull request #135 from plaid/release/6.0.0-beta5
Browse files Browse the repository at this point in the history
  • Loading branch information
dtroupe-plaid authored and GitHub Enterprise committed Aug 6, 2024
2 parents 21c53da + f587354 commit 1e31909
Show file tree
Hide file tree
Showing 46 changed files with 2,350 additions and 438 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# RELEASES

## LinkKit 6.0.0-beta5 — 2024-08-06
### Requirements

| Name | Version |
|------|---------|
| Xcode | >= 15.3.0 |
| iOS | >= 14.0 |

### Changes

- Resolves bug where large transaction syncs failed.
- Resolves bug where large account balance extraction failed.

## LinkKit 6.0.0-beta4 — 2024-05-29
### Requirements

Expand Down
12 changes: 6 additions & 6 deletions LinkKit.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
<array>
<dict>
<key>BinaryPath</key>
<string>LinkKit.framework/Versions/A/LinkKit</string>
<string>LinkKit.framework/LinkKit</string>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-maccatalyst</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>LinkKit.framework</string>
<key>SupportedArchitectures</key>
Expand All @@ -19,13 +19,13 @@
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>maccatalyst</string>
<string>simulator</string>
</dict>
<dict>
<key>BinaryPath</key>
<string>LinkKit.framework/LinkKit</string>
<string>LinkKit.framework/Versions/A/LinkKit</string>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>ios-arm64_x86_64-maccatalyst</string>
<key>LibraryPath</key>
<string>LinkKit.framework</string>
<key>SupportedArchitectures</key>
Expand All @@ -36,7 +36,7 @@
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
<string>maccatalyst</string>
</dict>
<dict>
<key>BinaryPath</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,8 @@ typedef NS_ENUM(NSInteger, PLKEventNameValue) {
PLKEventNameValueSkipSubmitPhone,
PLKEventNameValueVerifyPhone,
PLKEventNameValueConnectNewInstitution,
PLKEventNameValueLayerReady,
PLKEventNameValueLayerNotAvailable,
// Add new enum cases directly above this line to avoid breaking API changes
};

Expand Down Expand Up @@ -514,6 +516,10 @@ static NSString *const kPLKDefaultErrorDomain = @"com.plaid.link";

@end

@interface PLKSubmissionData : NSObject
@property (nonatomic, copy, nullable) NSString *phoneNumber;
@end

@interface PLKEventMetadata : NSObject

@property(nonatomic, readonly, nullable) PLKExitError *error;
Expand Down Expand Up @@ -595,6 +601,8 @@ typedef void(^PLKDismissalHandler)(UIViewController *);

- (void)resumeAfterTermination:(NSURL *)redirectUri;

- (void) submit:(PLKSubmissionData *)data;

@end

NS_ASSUME_NONNULL_END
Binary file modified LinkKit.xcframework/ios-arm64/LinkKit.framework/Info.plist
Binary file not shown.
Binary file modified LinkKit.xcframework/ios-arm64/LinkKit.framework/LinkKit
Binary file not shown.
Loading

0 comments on commit 1e31909

Please sign in to comment.