Skip to content
This repository has been archived by the owner on Feb 18, 2022. It is now read-only.

Commit

Permalink
ios: Update LinkKit to 1.1.18 (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorge Leandro Perez authored and GitHub Enterprise committed Apr 15, 2019
1 parent 5539039 commit 14af489
Show file tree
Hide file tree
Showing 142 changed files with 30 additions and 18 deletions.
3 changes: 2 additions & 1 deletion LinkKit.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,6 @@
"1.1.14": "https://github.com/plaid/link/releases/download/ios/1.1.14/LinkKit.framework.zip",
"1.1.15": "https://github.com/plaid/link/releases/download/ios/1.1.15/LinkKit.framework.zip",
"1.1.16": "https://github.com/plaid/link/releases/download/ios/1.1.16/LinkKit.framework.zip",
"1.1.17": "https://github.com/plaid/link/releases/download/ios/1.1.17/LinkKit.framework.zip"
"1.1.17": "https://github.com/plaid/link/releases/download/ios/1.1.17/LinkKit.framework.zip",
"1.1.18": "https://github.com/plaid/link/releases/download/ios/1.1.18/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.17'
s.version = '1.1.18'

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

Expand Down
10 changes: 10 additions & 0 deletions ios/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# CHANGELOG

## 2019-04-15 — LinkKit 1.1.18
### Changed
- Fix issue where the end-user was not taken back to enter their credentials when providing an invalid username during the patch flow.
- Disable pinch to zoom when viewing the privacy policy.

### Removed
- Support for APIv1 is now officially deprecated and unavailable. When Linkkit is configured with APIv1 it returns an error.



## 2019-03-15 — LinkKit 1.1.17
### Added
- Add new optional configuration property `countryCodes` to limit selectable institutions and institution search results to institutions available in the given countries
Expand Down
Binary file modified ios/LinkKit.framework/Assets.car
Binary file not shown.
18 changes: 10 additions & 8 deletions ios/LinkKit.framework/Headers/PLKConfiguration.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ typedef NS_ENUM(NSInteger, PLKEnvironment) {
/// For APIv2 testing use.
PLKEnvironmentSandbox,

/// For APIv1 testing use.
PLKEnvironmentTartan,
/// For legacy API testing use.
PLKEnvironmentTartan DEPRECATED_MSG_ATTRIBUTE("the legacy API is no longer supported. Use APIv2 and PLKEnvironmentSandbox instead"),

/// For production use only (APIv1 and APIv2). @remark Requests are billed.
PLKEnvironmentProduction,
Expand All @@ -32,10 +32,12 @@ typedef NS_ENUM(NSInteger, PLKEnvironment) {
The Plaid API version
*/
typedef NS_ENUM(NSInteger, PLKAPIVersion) {
PLKAPIv1 = 0,
PLKAPIv2,
/// APIv2 is the current version of the Plaid API.
PLKAPIv2 = 1,
/// The latest version of the Plaid API; currently PLKAPIv2. *Note:* This may change with future releases.
PLKAPILatest,
/// APIv1 is deprecated and LinkKit will return an error when configured with APIv1.
PLKAPIv1 DEPRECATED_MSG_ATTRIBUTE("transition to APIv2 instead") = 0,
};
/// The default API version to use. *Note:* This may change with future releases
static PLKAPIVersion kPLKAPIVersionDefault = PLKAPIv2;
Expand All @@ -51,11 +53,11 @@ PLK_EXTERN PLKProduct PLKProductFromArray(NSArray<NSString*>* array);
PLK_EXTERN PLKEnvironment PLKEnvironmentFromString(NSString* environment);


/// A Plaid public_key that can be used for testing when using PLKEnvironmentTartan.
PLK_EXTERN NSString* const kPLKTestKey;
/// A Plaid public_key that can be used for testing when using the legacy API and PLKEnvironmentTartan.
PLK_EXTERN NSString* const kPLKTestKey DEPRECATED_MSG_ATTRIBUTE("the legacy API is no longer supported. Use APIv2 and PLKEnvironmentSandbox with your own public key instead");

/// A Plaid public_key that can be used for testing longtail when using PLKEnvironmentTartan.
PLK_EXTERN NSString* const kPLKTestKeyLongtailAuth;
/// A Plaid public_key that can be used for testing longtail when using the legacy API and PLKEnvironmentTartan.
PLK_EXTERN NSString* const kPLKTestKeyLongtailAuth DEPRECATED_MSG_ATTRIBUTE("the legacy API is no longer supported. Use APIv2 and PLKEnvironmentSandbox with your own public key instead");

// Keys customizing panes, see customizeWithDictionary:
/// This pane is shown at the end of an successful update flow.
Expand Down
4 changes: 2 additions & 2 deletions ios/LinkKit.framework/Headers/PLKConstants.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ typedef NS_OPTIONS(NSInteger, PLKProduct) {
/// Account and transaction data to better serve users.
PLKProductTransactions = 1 << 2,
/// Legacy API equivalent of PLKProductTransactions.
PLKProductConnect = 1 << 2,
PLKProductConnect DEPRECATED_MSG_ATTRIBUTE("the legacy API is no longer supported. Use APIv2 and PLKProductTransactions instead") = 1 << 2,

/// Verify user identities with bank account data to reduce fraud.
PLKProductIdentity = 1 << 3,
/// Legacy API equivalent of PLKProductIdentity
PLKProductInfo = 1 << 3,
PLKProductInfo DEPRECATED_MSG_ATTRIBUTE("the legacy API is no longer supported. Use APIv2 and PLKProductIdentity instead") = 1 << 3,

/// Historical snapshots, real-time summaries, and auditable copies.
PLKProductAssets = 1 << 4,
Expand Down
11 changes: 5 additions & 6 deletions ios/LinkKit.framework/Headers/PLKPlaidLinkViewController.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ PLK_EXTERN NSString* const kPLKMetadataInstitutionIdKey;
PLK_EXTERN NSString* const kPLKMetadataInstitutionNameKey;

/// The corresponding value contains the institution type when using the legacy API.
PLK_EXTERN NSString* const kPLKAPIv1MetadataInstitutionTypeKey;
PLK_EXTERN NSString* const kPLKAPIv1MetadataInstitutionTypeKey DEPRECATED_MSG_ATTRIBUTE("the legacy API is no longer supported. Use APIv2 and kPLKMetadataStatusKey instead");

/// The corresponding value contains the institution type.
PLK_EXTERN NSString* const kPLKMetadataInstitution_TypeKey DEPRECATED_MSG_ATTRIBUTE("use kPLKAPIv1MetadataInstitutionTypeKey instead.");
Expand All @@ -74,11 +74,11 @@ PLK_EXTERN NSString* const kPLKMetadataStatusKey;
/// The corresponding value contains a unique APIv2 request ID, which can be shared with Plaid Support to expedite investigation.
PLK_EXTERN NSString* const kPLKMetadataRequestIdKey;

/// The corresponding value contains a unique Link APIv1 request ID, which can be shared with Plaid Support to expedite investigation.
PLK_EXTERN NSString* const kPLKMetadataLinkRequestIdKey;
/// The corresponding value contains a unique Link legacy API request ID, which can be shared with Plaid Support to expedite investigation.
PLK_EXTERN NSString* const kPLKMetadataLinkRequestIdKey DEPRECATED_MSG_ATTRIBUTE("the legacy API is no longer supported. Use APIv2 and kPLKMetadataRequestIdKey instead");

/// The corresponding value contains a unique Plaid APIv1 request ID, which can be shared with Plaid Support to expedite investigation.
PLK_EXTERN NSString* const kPLKMetadataPlaidApiRequestIdKey;
/// The corresponding value contains a unique Plaid legacy API request ID, which can be shared with Plaid Support to expedite investigation.
PLK_EXTERN NSString* const kPLKMetadataPlaidApiRequestIdKey DEPRECATED_MSG_ATTRIBUTE("the legacy API is no longer supported. Use APIv2 and kPLKMetadataRequestIdKey instead");

/// The corresponding value represents a unique and omnipresent identifier for all actions and events throughout a user's session in Link.
PLK_EXTERN NSString* const kPLKMetadataLinkSessionIdKey;
Expand Down Expand Up @@ -233,7 +233,6 @@ PLK_EMPTY_INIT_UNAVAILABLE;
configuration:(PLKConfiguration*)configuration
delegate:(id<PLKPlaidLinkViewDelegate>)delegate;


@end

/**
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 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.
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.
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 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.
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.
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.
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.
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.
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 14af489

Please sign in to comment.