Skip to content

Commit

Permalink
ios: Update LinkKit to 1.1.7 (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
afh authored and GitHub Enterprise committed Mar 21, 2018
1 parent 094827a commit 0de0e1f
Show file tree
Hide file tree
Showing 50 changed files with 41 additions and 15 deletions.
3 changes: 2 additions & 1 deletion LinkKit.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,6 @@
"1.1.3": "https://github.com/plaid/link/releases/download/ios/1.1.3/LinkKit.framework.zip",
"1.1.4": "https://github.com/plaid/link/releases/download/ios/1.1.4/LinkKit.framework.zip",
"1.1.5": "https://github.com/plaid/link/releases/download/ios/1.1.5/LinkKit.framework.zip",
"1.1.6": "https://github.com/plaid/link/releases/download/ios/1.1.6/LinkKit.framework.zip"
"1.1.6": "https://github.com/plaid/link/releases/download/ios/1.1.6/LinkKit.framework.zip",
"1.1.7": "https://github.com/plaid/link/releases/download/ios/1.1.7/LinkKit.framework.zip"
}
2 changes: 1 addition & 1 deletion Plaid.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = 'Plaid'
s.module_name = 'LinkKit'
s.version = '1.1.6'
s.version = '1.1.7'

s.summary = 'The official Plaid Link SDK for iOS.'

Expand Down
16 changes: 13 additions & 3 deletions ios/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# CHANGELOG

## 2018-03-20 — LinkKit 1.1.7
### Added
- Add customizable exit button below search results (addresses [#228](https://github.com/plaid/link/issues/228)).
- For the select account flow the account mask, type, and subtype are now returned in the metadata of the `linkViewController:didSucceedWithPublicToken:metadata` handler.

### Changed
- Deprecate `kPLKMetadataInstitutionType` constant in favor of `kPLKMetadataType` and `kPLKMetadataInstitution_Type` in favor of `kPLKAPIv1MetadataInstitutionType`

### Removed
- Remove the Success view when Select Accout is enabled in the Plaid Dashboard, to match the behaviour in Link Web



## 2018-03-01 — LinkKit 1.1.6
### Added
- Add warning log message when third-party password manager support is not setup properly
Expand All @@ -9,9 +22,6 @@
- Fix sandbox only crash when submitting credentials after having viewed the development mode info view ([#234](https://github.com/plaid/link/issues/234))
- Fix crash when customized institution select pane contained certain institutions ([#235](https://github.com/plaid/link/issues/235))

### Removed




## 2018-02-15 — LinkKit 1.1.5
Expand Down
Binary file modified ios/LinkKit.framework/Assets.car
Binary file not shown.
35 changes: 25 additions & 10 deletions ios/LinkKit.framework/Headers/PLKPlaidLinkViewController.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,32 +11,47 @@

NS_ASSUME_NONNULL_BEGIN

/// The corresponding value contains the identifier for the account
/// The corresponding value contains the identifier for the account.
PLK_EXTERN NSString* const kPLKMetadataIdKey;

/// The corresponding value contains the name of the account or institution.
PLK_EXTERN NSString* const kPLKMetadataNameKey;

/// The corresponding value contains the name of the account or institution.
/// The corresponding value contains the masked account number.
PLK_EXTERN NSString* const kPLKMetadataMaskKey;

/// The corresponding value contains the type of the account or institution.
PLK_EXTERN NSString* const kPLKMetadataTypeKey;

/// The corresponding value contains the subtype of the account.
PLK_EXTERN NSString* const kPLKMetadataSubtypeKey;

/// The corresponding value contains a NSDictionary with an account's name, identifier, mask, type, and subtype.
PLK_EXTERN NSString* const kPLKMetadataAccountKey;

/// The corresponding value contains a NSDictionary with the accounts name and identifier.
/// The corresponding value contains an NSArray with multiple NSDictionary for the selected accounts; the keys in the NSDictionary are the same as with the kPLKMetadataAccountKey.
PLK_EXTERN NSString* const kPLKMetadataAccountsKey;

/// The corresponding value contains the identifier for the account.
PLK_EXTERN NSString* const kPLKMetadataAccountIdKey;

/// The corresponding value contains a NSDictionary with institution type and identifier.
/// The corresponding value contains a NSDictionary with the name and identifier of the institution.
PLK_EXTERN NSString* const kPLKMetadataInstitutionKey;

/// The corresponding value contains the institution identifier
/// The corresponding value contains the identifier for the institution.
PLK_EXTERN NSString* const kPLKMetadataInstitutionIdKey;

/// The corresponding value contains the institution name
/// The corresponding value contains the name of the institution.
PLK_EXTERN NSString* const kPLKMetadataInstitutionNameKey;

/// The corresponding value contains the institution type
PLK_EXTERN NSString* const kPLKMetadataInstitutionTypeKey;
/// The corresponding value contains the institution type when using the legacy API.
PLK_EXTERN NSString* const kPLKAPIv1MetadataInstitutionTypeKey;

/// The corresponding value contains the institution type.
PLK_EXTERN NSString* const kPLKMetadataInstitution_TypeKey DEPRECATED_MSG_ATTRIBUTE("use kPLKAPIv1MetadataInstitutionTypeKey instead.");

/// The corresponding value contains the institution type
PLK_EXTERN NSString* const kPLKMetadataInstitution_TypeKey;
/// The corresponding value contains the institution type.
PLK_EXTERN NSString* const kPLKMetadataInstitutionTypeKey DEPRECATED_MSG_ATTRIBUTE("use kPLKMetadataTypeKey instead.");

/// The corresponding value indicates the point at which the user exited the Link flow.
PLK_EXTERN NSString* const kPLKMetadataStatusKey;
Expand Down
Binary file modified ios/LinkKit.framework/Info.plist
Binary file not shown.
Binary file modified ios/LinkKit.framework/LinkKit
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified ios/LinkKit.framework/LinkKit.storyboardc/AccountSelectPane.nib
Binary file not shown.
Binary file modified ios/LinkKit.framework/LinkKit.storyboardc/CredentialPane.nib
Binary file not shown.
Binary file modified ios/LinkKit.framework/LinkKit.storyboardc/CustomInitializer.nib
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified ios/LinkKit.framework/LinkKit.storyboardc/ExitConfirmPane.nib
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified ios/LinkKit.framework/LinkKit.storyboardc/Info.plist
Binary file not shown.
Binary file not shown.
Binary file modified ios/LinkKit.framework/LinkKit.storyboardc/LoadingPane.nib
Binary file not shown.
Binary file modified ios/LinkKit.framework/LinkKit.storyboardc/MfaCodePane.nib
Binary file not shown.
Binary file modified ios/LinkKit.framework/LinkKit.storyboardc/MfaDevicePane.nib
Binary file not shown.
Binary file modified ios/LinkKit.framework/LinkKit.storyboardc/MfaQuestionPane.nib
Binary file not shown.
Binary file modified ios/LinkKit.framework/LinkKit.storyboardc/MfaSelectionPane.nib
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified ios/LinkKit.framework/LinkKit.storyboardc/RecaptchaPane.nib
Binary file not shown.
Binary file modified ios/LinkKit.framework/LinkKit.storyboardc/ResultPane.nib
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified ios/LinkKit.framework/LinkKit.storyboardc/SandboxInfo.nib
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit 0de0e1f

Please sign in to comment.