diff --git a/LinkKit.json b/LinkKit.json index 0cb2baf1..2ffb6b8e 100644 --- a/LinkKit.json +++ b/LinkKit.json @@ -8,6 +8,7 @@ "1.0.6": "https://github.com/plaid/link/releases/download/ios/1.0.6/LinkKit.framework.zip", "1.0.7": "https://github.com/plaid/link/releases/download/ios/1.0.7/LinkKit.framework.zip", "1.0.8": "https://github.com/plaid/link/releases/download/ios/1.0.8/LinkKit.framework.zip", - "1.0.9": "https://github.com/plaid/link/releases/download/ios/1.0.9/LinkKit.framework.zip", - "1.0.10": "https://github.com/plaid/link/releases/download/ios/1.0.10/LinkKit.framework.zip" + "1.0.9": "https://github.com/plaid/link/releases/download/ios/1.0.9/LinkKit.framework.zip", + "1.0.10": "https://github.com/plaid/link/releases/download/ios/1.0.10/LinkKit.framework.zip", + "1.1.0": "https://github.com/plaid/link/releases/download/ios/1.1.0/LinkKit.framework.zip" } diff --git a/Plaid.podspec b/Plaid.podspec index 17b1cdb9..fffcb1df 100644 --- a/Plaid.podspec +++ b/Plaid.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = 'Plaid' s.module_name = 'LinkKit' - s.version = '1.0.10' + s.version = '1.1.0' s.summary = 'The official Plaid Link SDK for iOS.' diff --git a/ios/CHANGELOG.md b/ios/CHANGELOG.md index 5a046958..5fadc207 100644 --- a/ios/CHANGELOG.md +++ b/ios/CHANGELOG.md @@ -1,5 +1,23 @@ # CHANGELOG +## 2017-10-02 — LinkKit 1.1.0 +### Added +- Add support for iPhone X +- Allow selecting multiple accounts if the corresponding option is enabled in the [Dashboard](https://dashboard.plaid.com/) +- Add `kPLKMetadataAccountsKey` to `metadata` returned in the `PLKPlaidLinkViewDelegate` methods +- Add `kPLKMetadataLinkSessionIdKey` to `metadata` returned in the `PLKPlaidLinkViewDelegate` methods +- Add APIv2 error codes to the `NSError.userInfo` passed to the `linkViewController:didExitWithError:metadata:` `PLKPlaidLinkViewDelegate` method ([#208](https://github.com/plaid/link/issues/208)) +- Extend `PLKPlaidLinkViewDelegate` protocol with `linkViewController:didHandleEvent:metadata`, see https://www.plaid.com/docs/api/#onevent-callback for details. + +### Changed +- Automatically select an account if there is only one available +- Replace `kPLKMetadataRequestIdKey` with `kPLKMetadataLinkRequestIdKey` in `metadata` returned in the `PLKPlaidLinkViewDelegate` methods when using APIv1 + +### Removed +- Remove right `×` exit button from navigation bar on connected pane and select account pane + + + ## 2017-09-04 — LinkKit 1.0.10 ### Changed - Fix issue where an empty select account pane was shown instead of an error message stating that no eligible ACH accounts were available diff --git a/ios/LinkKit.framework/Assets.car b/ios/LinkKit.framework/Assets.car index 665bd9ca..2372af54 100644 Binary files a/ios/LinkKit.framework/Assets.car and b/ios/LinkKit.framework/Assets.car differ diff --git a/ios/LinkKit.framework/Headers/PLKPlaidLinkViewController.h b/ios/LinkKit.framework/Headers/PLKPlaidLinkViewController.h index e6a99043..127ed92d 100644 --- a/ios/LinkKit.framework/Headers/PLKPlaidLinkViewController.h +++ b/ios/LinkKit.framework/Headers/PLKPlaidLinkViewController.h @@ -26,18 +26,71 @@ PLK_EXTERN NSString* const kPLKMetadataAccountIdKey; /// The corresponding value contains a NSDictionary with institution type and identifier. PLK_EXTERN NSString* const kPLKMetadataInstitutionKey; +/// The corresponding value contains the institution identifier +PLK_EXTERN NSString* const kPLKMetadataInstitutionIdKey; + +/// The corresponding value contains the institution name +PLK_EXTERN NSString* const kPLKMetadataInstitutionNameKey; + /// The corresponding value contains the institution type PLK_EXTERN NSString* const kPLKMetadataInstitutionTypeKey; +/// The corresponding value contains the institution type +PLK_EXTERN NSString* const kPLKMetadataInstitution_TypeKey; + /// The corresponding value indicates the point at which the user exited the Link flow. PLK_EXTERN NSString* const kPLKMetadataStatusKey; -/// The corresponding value contains +/// 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 +/// 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 Plaid APIv1 request ID, which can be shared with Plaid Support to expedite investigation. PLK_EXTERN NSString* const kPLKMetadataPlaidApiRequestIdKey; +/// 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; + +/// The corresponding value is the error type that the user encountered. See online documentation for details https://www.plaid.com/docs/api/#errors. +PLK_EXTERN NSString* const kPLKMetadataErrorTypeKey; + +/// The corresponding value is the error code that the user encountered. See online documentation for details https://www.plaid.com/docs/api/#errors. +PLK_EXTERN NSString* const kPLKMetadataErrorCodeKey; + +/// The corresponding value is the error message that the user encountered. See online documentation for details https://www.plaid.com/docs/api/#errors. +PLK_EXTERN NSString* const kPLKMetadataErrorMessageKey; + +/// The corresponding value is the query used to search for institutions. +PLK_EXTERN NSString* const kPLKMetadataInstitutionSearchQueryKey; + +/// The corresponding value indicates the type of MFA the user has encountered. +PLK_EXTERN NSString* const kPLKMetadataMFATypeKey; + +/// The corresponding value is the name of the view on TRANSITION_VIEW events. +PLK_EXTERN NSString* const kPLKMetadataViewNameKey; + +/// The corresponding value is a ISO 8601 formatted string representing the time when the event occurred. +PLK_EXTERN NSString* const kPLKMetadataTimestampKey; + +/// The corresponding value indicates the point at which the user exited the Link flow. +PLK_EXTERN NSString* const kPLKMetadataExitStatusKey; + + +/// The corresponding value is a broad categorization of the error. +PLK_EXTERN NSString* const kPLKErrorTypeKey; + +/// The corresponding value represents a particular error code. +PLK_EXTERN NSString* const kPLKErrorCodeKey; + +/// The corresponding value is a developer-friendly representation of the error code. +PLK_EXTERN NSString* const kPLKErrorMessageKey; + +/// The corresponding value is a user-friendly representation of the error code or [NSNull null] if the error is not related to user action. +PLK_EXTERN NSString* const kPLKDisplayMessageKey; + + @protocol PLKPlaidLinkViewDelegate; /** @@ -70,7 +123,7 @@ PLK_EMPTY_INIT_UNAVAILABLE; @param configuration A custom configuration object to use. @param delegate A delegate object that wishes to receive messages from the inquiry object. - Delegate methods are listed under PLKPlaidLinkViewDelegate. + Delegate methods are listed under PLKPlaidLinkViewDelegate. @return The initialized Plaid Link view controller object or throws an exception if there was a problem initializing the object. */ - (instancetype)initWithConfiguration:(PLKConfiguration*)configuration @@ -164,7 +217,7 @@ PLK_EMPTY_INIT_UNAVAILABLE; @param linkViewController A Plaid Link view controller object informing the delegate about the successful authentication. - @param publicToken The publicToken + @param publicToken A NSString to send to your app server or use for update mode. @param metadata A NSDictionary object containing information about the institution that the user selected and the account if selectAccount was configured. */ @@ -179,6 +232,7 @@ PLK_EMPTY_INIT_UNAVAILABLE; @param linkViewController A Plaid Link view controller object informing the delegate that the Link flow was exited @param error If an error occurred, contains an NSError object that describes the problem, nil otherwise. + The error's userInfo contains entries according to https://plaid.com/docs/api/#errors unless the legacy API is used. @param metadata A NSDictionary object containing information about the institution that the user selected and the most recent API request IDs. Storing this information can be helpful for support. @@ -186,6 +240,21 @@ PLK_EMPTY_INIT_UNAVAILABLE; - (void)linkViewController:(PLKPlaidLinkViewController*)linkViewController didExitWithError:(NSError* _Nullable)error metadata:(NSDictionary* _Nullable)metadata; + +@optional +/** + The delegate method is called when certain events in the Link flow have occurred. + For details about the events see the onEvent documentation: + https://plaid.com/docs/api/#onevent-callback + + @param linkViewController A Plaid Link view controller object informing the delegate a certain + event in the Link flow has occurred. + @param event A NSString indicating the type of Link flow event that occurred. + @param metadata A NSDictionary object containing information about the event. + */ +- (void)linkViewController:(PLKPlaidLinkViewController*)linkViewController + didHandleEvent:(NSString*)event + metadata:(NSDictionary* _Nullable)metadata; @end NS_ASSUME_NONNULL_END diff --git a/ios/LinkKit.framework/Info.plist b/ios/LinkKit.framework/Info.plist index 2367d0a3..31d6594f 100644 Binary files a/ios/LinkKit.framework/Info.plist and b/ios/LinkKit.framework/Info.plist differ diff --git a/ios/LinkKit.framework/LinkKit b/ios/LinkKit.framework/LinkKit index 3388c4a8..7f144f3e 100755 Binary files a/ios/LinkKit.framework/LinkKit and b/ios/LinkKit.framework/LinkKit differ diff --git a/ios/LinkKit.framework/LinkKit.storyboardc/0Bq-dI-4Tg-view-DnT-94-48L.nib b/ios/LinkKit.framework/LinkKit.storyboardc/0Bq-dI-4Tg-view-DnT-94-48L.nib index 72505228..3ca60e3b 100644 Binary files a/ios/LinkKit.framework/LinkKit.storyboardc/0Bq-dI-4Tg-view-DnT-94-48L.nib and b/ios/LinkKit.framework/LinkKit.storyboardc/0Bq-dI-4Tg-view-DnT-94-48L.nib differ diff --git a/ios/LinkKit.framework/LinkKit.storyboardc/6mR-5J-WfM-view-xQC-Ve-E42.nib b/ios/LinkKit.framework/LinkKit.storyboardc/6mR-5J-WfM-view-xQC-Ve-E42.nib index 6407fdab..3dc63511 100644 Binary files a/ios/LinkKit.framework/LinkKit.storyboardc/6mR-5J-WfM-view-xQC-Ve-E42.nib and b/ios/LinkKit.framework/LinkKit.storyboardc/6mR-5J-WfM-view-xQC-Ve-E42.nib differ diff --git a/ios/LinkKit.framework/LinkKit.storyboardc/AccountRoutingNumberPane.nib b/ios/LinkKit.framework/LinkKit.storyboardc/AccountRoutingNumberPane.nib index f9c76fbb..1e10a7da 100644 Binary files a/ios/LinkKit.framework/LinkKit.storyboardc/AccountRoutingNumberPane.nib and b/ios/LinkKit.framework/LinkKit.storyboardc/AccountRoutingNumberPane.nib differ diff --git a/ios/LinkKit.framework/LinkKit.storyboardc/AccountRoutingNumberPaneInfo.nib b/ios/LinkKit.framework/LinkKit.storyboardc/AccountRoutingNumberPaneInfo.nib index 30e951f7..65a6b076 100644 Binary files a/ios/LinkKit.framework/LinkKit.storyboardc/AccountRoutingNumberPaneInfo.nib and b/ios/LinkKit.framework/LinkKit.storyboardc/AccountRoutingNumberPaneInfo.nib differ diff --git a/ios/LinkKit.framework/LinkKit.storyboardc/AccountSelectPane.nib b/ios/LinkKit.framework/LinkKit.storyboardc/AccountSelectPane.nib index f21e98f9..90996d87 100644 Binary files a/ios/LinkKit.framework/LinkKit.storyboardc/AccountSelectPane.nib and b/ios/LinkKit.framework/LinkKit.storyboardc/AccountSelectPane.nib differ diff --git a/ios/LinkKit.framework/LinkKit.storyboardc/CredentialPane.nib b/ios/LinkKit.framework/LinkKit.storyboardc/CredentialPane.nib index 0cd46832..be563d74 100644 Binary files a/ios/LinkKit.framework/LinkKit.storyboardc/CredentialPane.nib and b/ios/LinkKit.framework/LinkKit.storyboardc/CredentialPane.nib differ diff --git a/ios/LinkKit.framework/LinkKit.storyboardc/CustomInitializer.nib b/ios/LinkKit.framework/LinkKit.storyboardc/CustomInitializer.nib index cd619fdf..d59e4d67 100644 Binary files a/ios/LinkKit.framework/LinkKit.storyboardc/CustomInitializer.nib and b/ios/LinkKit.framework/LinkKit.storyboardc/CustomInitializer.nib differ diff --git a/ios/LinkKit.framework/LinkKit.storyboardc/ESp-MX-Loy-view-5s7-Dr-I1J.nib b/ios/LinkKit.framework/LinkKit.storyboardc/ESp-MX-Loy-view-5s7-Dr-I1J.nib index a578e636..5db11bec 100644 Binary files a/ios/LinkKit.framework/LinkKit.storyboardc/ESp-MX-Loy-view-5s7-Dr-I1J.nib and b/ios/LinkKit.framework/LinkKit.storyboardc/ESp-MX-Loy-view-5s7-Dr-I1J.nib differ diff --git a/ios/LinkKit.framework/LinkKit.storyboardc/EgC-RI-D0E-view-unQ-Jv-A97.nib b/ios/LinkKit.framework/LinkKit.storyboardc/EgC-RI-D0E-view-unQ-Jv-A97.nib index 51a70de8..4c8801a6 100644 Binary files a/ios/LinkKit.framework/LinkKit.storyboardc/EgC-RI-D0E-view-unQ-Jv-A97.nib and b/ios/LinkKit.framework/LinkKit.storyboardc/EgC-RI-D0E-view-unQ-Jv-A97.nib differ diff --git a/ios/LinkKit.framework/LinkKit.storyboardc/HHb-xu-Xwl-view-Hdm-uL-Out.nib b/ios/LinkKit.framework/LinkKit.storyboardc/HHb-xu-Xwl-view-Hdm-uL-Out.nib index cbdb91f5..f71c34a8 100644 Binary files a/ios/LinkKit.framework/LinkKit.storyboardc/HHb-xu-Xwl-view-Hdm-uL-Out.nib and b/ios/LinkKit.framework/LinkKit.storyboardc/HHb-xu-Xwl-view-Hdm-uL-Out.nib differ diff --git a/ios/LinkKit.framework/LinkKit.storyboardc/Info.plist b/ios/LinkKit.framework/LinkKit.storyboardc/Info.plist index 3929416a..1e9c476a 100644 Binary files a/ios/LinkKit.framework/LinkKit.storyboardc/Info.plist and b/ios/LinkKit.framework/LinkKit.storyboardc/Info.plist differ diff --git a/ios/LinkKit.framework/LinkKit.storyboardc/InstitutionSelectPane.nib b/ios/LinkKit.framework/LinkKit.storyboardc/InstitutionSelectPane.nib index 3a989258..04a3cf02 100644 Binary files a/ios/LinkKit.framework/LinkKit.storyboardc/InstitutionSelectPane.nib and b/ios/LinkKit.framework/LinkKit.storyboardc/InstitutionSelectPane.nib differ diff --git a/ios/LinkKit.framework/LinkKit.storyboardc/LoadingPane.nib b/ios/LinkKit.framework/LinkKit.storyboardc/LoadingPane.nib index ed8ca123..cdf27e37 100644 Binary files a/ios/LinkKit.framework/LinkKit.storyboardc/LoadingPane.nib and b/ios/LinkKit.framework/LinkKit.storyboardc/LoadingPane.nib differ diff --git a/ios/LinkKit.framework/LinkKit.storyboardc/M9M-iJ-I00-view-D4a-fR-GUq.nib b/ios/LinkKit.framework/LinkKit.storyboardc/M9M-iJ-I00-view-D4a-fR-GUq.nib index 0faedd47..d143254b 100644 Binary files a/ios/LinkKit.framework/LinkKit.storyboardc/M9M-iJ-I00-view-D4a-fR-GUq.nib and b/ios/LinkKit.framework/LinkKit.storyboardc/M9M-iJ-I00-view-D4a-fR-GUq.nib differ diff --git a/ios/LinkKit.framework/LinkKit.storyboardc/MfaCodePane.nib b/ios/LinkKit.framework/LinkKit.storyboardc/MfaCodePane.nib index 32502d72..0ab8fa0c 100644 Binary files a/ios/LinkKit.framework/LinkKit.storyboardc/MfaCodePane.nib and b/ios/LinkKit.framework/LinkKit.storyboardc/MfaCodePane.nib differ diff --git a/ios/LinkKit.framework/LinkKit.storyboardc/MfaDevicePane.nib b/ios/LinkKit.framework/LinkKit.storyboardc/MfaDevicePane.nib index d2cd2ede..a049d3e0 100644 Binary files a/ios/LinkKit.framework/LinkKit.storyboardc/MfaDevicePane.nib and b/ios/LinkKit.framework/LinkKit.storyboardc/MfaDevicePane.nib differ diff --git a/ios/LinkKit.framework/LinkKit.storyboardc/MfaQuestionPane.nib b/ios/LinkKit.framework/LinkKit.storyboardc/MfaQuestionPane.nib index 6539d012..2b7da820 100644 Binary files a/ios/LinkKit.framework/LinkKit.storyboardc/MfaQuestionPane.nib and b/ios/LinkKit.framework/LinkKit.storyboardc/MfaQuestionPane.nib differ diff --git a/ios/LinkKit.framework/LinkKit.storyboardc/MfaSelectionPane.nib b/ios/LinkKit.framework/LinkKit.storyboardc/MfaSelectionPane.nib index e7b8ef2a..ca9b7889 100644 Binary files a/ios/LinkKit.framework/LinkKit.storyboardc/MfaSelectionPane.nib and b/ios/LinkKit.framework/LinkKit.storyboardc/MfaSelectionPane.nib differ diff --git a/ios/LinkKit.framework/LinkKit.storyboardc/PLKInstitutionSelectPaneCollectionViewController.nib b/ios/LinkKit.framework/LinkKit.storyboardc/PLKInstitutionSelectPaneCollectionViewController.nib index 19f54219..5d9d80f4 100644 Binary files a/ios/LinkKit.framework/LinkKit.storyboardc/PLKInstitutionSelectPaneCollectionViewController.nib and b/ios/LinkKit.framework/LinkKit.storyboardc/PLKInstitutionSelectPaneCollectionViewController.nib differ diff --git a/ios/LinkKit.framework/LinkKit.storyboardc/PLKInstitutionsViewController.nib b/ios/LinkKit.framework/LinkKit.storyboardc/PLKInstitutionsViewController.nib index b2f4717c..30b4280b 100644 Binary files a/ios/LinkKit.framework/LinkKit.storyboardc/PLKInstitutionsViewController.nib and b/ios/LinkKit.framework/LinkKit.storyboardc/PLKInstitutionsViewController.nib differ diff --git a/ios/LinkKit.framework/LinkKit.storyboardc/RecaptchaPane.nib b/ios/LinkKit.framework/LinkKit.storyboardc/RecaptchaPane.nib index 79746c50..45a5292b 100644 Binary files a/ios/LinkKit.framework/LinkKit.storyboardc/RecaptchaPane.nib and b/ios/LinkKit.framework/LinkKit.storyboardc/RecaptchaPane.nib differ diff --git a/ios/LinkKit.framework/LinkKit.storyboardc/ResultPane.nib b/ios/LinkKit.framework/LinkKit.storyboardc/ResultPane.nib index b257d3a5..9d61cb1c 100644 Binary files a/ios/LinkKit.framework/LinkKit.storyboardc/ResultPane.nib and b/ios/LinkKit.framework/LinkKit.storyboardc/ResultPane.nib differ diff --git a/ios/LinkKit.framework/LinkKit.storyboardc/SMJ-Wh-8D8-view-ZlQ-BQ-Zvi.nib b/ios/LinkKit.framework/LinkKit.storyboardc/SMJ-Wh-8D8-view-ZlQ-BQ-Zvi.nib index ecfd620c..a803e120 100644 Binary files a/ios/LinkKit.framework/LinkKit.storyboardc/SMJ-Wh-8D8-view-ZlQ-BQ-Zvi.nib and b/ios/LinkKit.framework/LinkKit.storyboardc/SMJ-Wh-8D8-view-ZlQ-BQ-Zvi.nib differ diff --git a/ios/LinkKit.framework/LinkKit.storyboardc/SandboxInfo.nib b/ios/LinkKit.framework/LinkKit.storyboardc/SandboxInfo.nib index 4dc9c48b..56c2f929 100644 Binary files a/ios/LinkKit.framework/LinkKit.storyboardc/SandboxInfo.nib and b/ios/LinkKit.framework/LinkKit.storyboardc/SandboxInfo.nib differ diff --git a/ios/LinkKit.framework/LinkKit.storyboardc/UITableViewController-bb3-sJ-2bn.nib b/ios/LinkKit.framework/LinkKit.storyboardc/UITableViewController-bb3-sJ-2bn.nib index 780eabe6..6a760230 100644 Binary files a/ios/LinkKit.framework/LinkKit.storyboardc/UITableViewController-bb3-sJ-2bn.nib and b/ios/LinkKit.framework/LinkKit.storyboardc/UITableViewController-bb3-sJ-2bn.nib differ diff --git a/ios/LinkKit.framework/LinkKit.storyboardc/UITableViewController-dRH-ob-ugS.nib b/ios/LinkKit.framework/LinkKit.storyboardc/UITableViewController-dRH-ob-ugS.nib index e0a4f973..f4b96f71 100644 Binary files a/ios/LinkKit.framework/LinkKit.storyboardc/UITableViewController-dRH-ob-ugS.nib and b/ios/LinkKit.framework/LinkKit.storyboardc/UITableViewController-dRH-ob-ugS.nib differ diff --git a/ios/LinkKit.framework/LinkKit.storyboardc/UITableViewController-hT7-A2-vMe.nib b/ios/LinkKit.framework/LinkKit.storyboardc/UITableViewController-hT7-A2-vMe.nib index 1f3b6d10..e15ff170 100644 Binary files a/ios/LinkKit.framework/LinkKit.storyboardc/UITableViewController-hT7-A2-vMe.nib and b/ios/LinkKit.framework/LinkKit.storyboardc/UITableViewController-hT7-A2-vMe.nib differ diff --git a/ios/LinkKit.framework/LinkKit.storyboardc/UITableViewController-nzj-ip-Nv4.nib b/ios/LinkKit.framework/LinkKit.storyboardc/UITableViewController-nzj-ip-Nv4.nib index 7816bf1b..de9047e1 100644 Binary files a/ios/LinkKit.framework/LinkKit.storyboardc/UITableViewController-nzj-ip-Nv4.nib and b/ios/LinkKit.framework/LinkKit.storyboardc/UITableViewController-nzj-ip-Nv4.nib differ diff --git a/ios/LinkKit.framework/LinkKit.storyboardc/bb3-sJ-2bn-view-Opu-Da-wwV.nib b/ios/LinkKit.framework/LinkKit.storyboardc/bb3-sJ-2bn-view-Opu-Da-wwV.nib index 21b35723..361e3a0c 100644 Binary files a/ios/LinkKit.framework/LinkKit.storyboardc/bb3-sJ-2bn-view-Opu-Da-wwV.nib and b/ios/LinkKit.framework/LinkKit.storyboardc/bb3-sJ-2bn-view-Opu-Da-wwV.nib differ diff --git a/ios/LinkKit.framework/LinkKit.storyboardc/cqI-0z-J6R-view-eWc-qS-LMN.nib b/ios/LinkKit.framework/LinkKit.storyboardc/cqI-0z-J6R-view-eWc-qS-LMN.nib index a2776952..0b3758f9 100644 Binary files a/ios/LinkKit.framework/LinkKit.storyboardc/cqI-0z-J6R-view-eWc-qS-LMN.nib and b/ios/LinkKit.framework/LinkKit.storyboardc/cqI-0z-J6R-view-eWc-qS-LMN.nib differ diff --git a/ios/LinkKit.framework/LinkKit.storyboardc/dRH-ob-ugS-view-duH-kA-xCF.nib b/ios/LinkKit.framework/LinkKit.storyboardc/dRH-ob-ugS-view-duH-kA-xCF.nib index a5545541..2136f1de 100644 Binary files a/ios/LinkKit.framework/LinkKit.storyboardc/dRH-ob-ugS-view-duH-kA-xCF.nib and b/ios/LinkKit.framework/LinkKit.storyboardc/dRH-ob-ugS-view-duH-kA-xCF.nib differ diff --git a/ios/LinkKit.framework/LinkKit.storyboardc/hT7-A2-vMe-view-8zq-lv-Xnk.nib b/ios/LinkKit.framework/LinkKit.storyboardc/hT7-A2-vMe-view-8zq-lv-Xnk.nib index de7abbcf..f1b3943a 100644 Binary files a/ios/LinkKit.framework/LinkKit.storyboardc/hT7-A2-vMe-view-8zq-lv-Xnk.nib and b/ios/LinkKit.framework/LinkKit.storyboardc/hT7-A2-vMe-view-8zq-lv-Xnk.nib differ diff --git a/ios/LinkKit.framework/LinkKit.storyboardc/jRm-qg-1gm-view-5Lw-Ly-r7R.nib b/ios/LinkKit.framework/LinkKit.storyboardc/jRm-qg-1gm-view-5Lw-Ly-r7R.nib index c4c1461d..65678ad5 100644 Binary files a/ios/LinkKit.framework/LinkKit.storyboardc/jRm-qg-1gm-view-5Lw-Ly-r7R.nib and b/ios/LinkKit.framework/LinkKit.storyboardc/jRm-qg-1gm-view-5Lw-Ly-r7R.nib differ diff --git a/ios/LinkKit.framework/LinkKit.storyboardc/k7h-sR-e5r-view-oQQ-TY-6Qf.nib b/ios/LinkKit.framework/LinkKit.storyboardc/k7h-sR-e5r-view-oQQ-TY-6Qf.nib index ae31dac2..a7ff8e22 100644 Binary files a/ios/LinkKit.framework/LinkKit.storyboardc/k7h-sR-e5r-view-oQQ-TY-6Qf.nib and b/ios/LinkKit.framework/LinkKit.storyboardc/k7h-sR-e5r-view-oQQ-TY-6Qf.nib differ diff --git a/ios/LinkKit.framework/LinkKit.storyboardc/lj2-lB-1fX-view-eZz-FF-EWC.nib b/ios/LinkKit.framework/LinkKit.storyboardc/lj2-lB-1fX-view-eZz-FF-EWC.nib index 649cc99f..5eb404d6 100644 Binary files a/ios/LinkKit.framework/LinkKit.storyboardc/lj2-lB-1fX-view-eZz-FF-EWC.nib and b/ios/LinkKit.framework/LinkKit.storyboardc/lj2-lB-1fX-view-eZz-FF-EWC.nib differ diff --git a/ios/LinkKit.framework/LinkKit.storyboardc/nzj-ip-Nv4-view-Ucg-qS-HF1.nib b/ios/LinkKit.framework/LinkKit.storyboardc/nzj-ip-Nv4-view-Ucg-qS-HF1.nib index 3402b82e..4adf3ec9 100644 Binary files a/ios/LinkKit.framework/LinkKit.storyboardc/nzj-ip-Nv4-view-Ucg-qS-HF1.nib and b/ios/LinkKit.framework/LinkKit.storyboardc/nzj-ip-Nv4-view-Ucg-qS-HF1.nib differ diff --git a/ios/LinkKit.framework/LinkKit.storyboardc/sfl-ir-G9L-view-za7-ve-F2l.nib b/ios/LinkKit.framework/LinkKit.storyboardc/sfl-ir-G9L-view-za7-ve-F2l.nib index a57acf15..a9922847 100644 Binary files a/ios/LinkKit.framework/LinkKit.storyboardc/sfl-ir-G9L-view-za7-ve-F2l.nib and b/ios/LinkKit.framework/LinkKit.storyboardc/sfl-ir-G9L-view-za7-ve-F2l.nib differ diff --git a/ios/LinkKit.framework/LinkKit.storyboardc/uxo-Ec-dRd-view-iYM-Iw-qxL.nib b/ios/LinkKit.framework/LinkKit.storyboardc/uxo-Ec-dRd-view-iYM-Iw-qxL.nib index d29e9ff7..0849cdb6 100644 Binary files a/ios/LinkKit.framework/LinkKit.storyboardc/uxo-Ec-dRd-view-iYM-Iw-qxL.nib and b/ios/LinkKit.framework/LinkKit.storyboardc/uxo-Ec-dRd-view-iYM-Iw-qxL.nib differ diff --git a/ios/LinkKit.framework/LinkKit.storyboardc/vVq-hh-Ybb-view-ZHT-aQ-aJ5.nib b/ios/LinkKit.framework/LinkKit.storyboardc/vVq-hh-Ybb-view-ZHT-aQ-aJ5.nib index e6cd4c5b..cb0970df 100644 Binary files a/ios/LinkKit.framework/LinkKit.storyboardc/vVq-hh-Ybb-view-ZHT-aQ-aJ5.nib and b/ios/LinkKit.framework/LinkKit.storyboardc/vVq-hh-Ybb-view-ZHT-aQ-aJ5.nib differ